/*
 * 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;
    }

:root {
    --aside-width: 300px;
    --spacing-content-xsmall: clamp(1rem,calc(1rem + .016 * (100vw - 600px)),1.5rem);
    --spacing-content-small: clamp(1rem,calc(1rem + .016 * (100vw - 600px)),2rem);
    --spacing-content-medium: clamp(1.5rem,calc(1.5rem + .024 * (100vw - 600px)),3rem);
    --spacing-content-large: clamp(2rem,calc(2rem + .032 * (100vw - 600px)),4rem);
    --spacing-content-xlarge: clamp(3rem,calc(3rem + .048 * (100vw - 600px)),6rem);
    }

@font-face{font-family:'FontAwesome';src:url(https://cdn.evance.me/portal/web/739/theme/pec-lights-2026-05/common/plugin/font-awesome/css/../fonts/fontawesome-webfont.eot?v=1778685684);src:url(https://cdn.evance.me/portal/web/739/theme/pec-lights-2026-05/common/plugin/font-awesome/css/../fonts/fontawesome-webfont.eot?v=1778685684#iefix&v=4.7.0) format('embedded-opentype'),url(https://cdn.evance.me/portal/web/739/theme/pec-lights-2026-05/common/plugin/font-awesome/css/../fonts/fontawesome-webfont.woff2?v=1778685684) format('woff2'),url(https://cdn.evance.me/portal/web/739/theme/pec-lights-2026-05/common/plugin/font-awesome/css/../fonts/fontawesome-webfont.woff?v=1778685684) format('woff'),url(https://cdn.evance.me/portal/web/739/theme/pec-lights-2026-05/common/plugin/font-awesome/css/../fonts/fontawesome-webfont.ttf?v=1778685684) format('truetype'),url(https://cdn.evance.me/portal/web/739/theme/pec-lights-2026-05/common/plugin/font-awesome/css/../fonts/fontawesome-webfont.svg?v=1778685684#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height: .75em;vertical-align: -15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul > li{position:relative}.fa-li{position:absolute;left: -2.14285714em;width:2.14285714em;top: .14285714em;text-align:center}.fa-li.fa-lg{left: -1.85714286em}.fa-border{padding: .2em .25em .15em;border:solid .08em #eee;border-radius: .1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right: .3em}.fa.fa-pull-right{margin-left: .3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right: .3em}.fa.pull-right{margin-left: .3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,
.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,
.fa-close:before,
.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,
.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,
.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,
.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,
.fa-image:before,
.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,
.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,
.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,
.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,
.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,
.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,
.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,
.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,
.fa-users:before{content:"\f0c0"}.fa-chain:before,
.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,
.fa-scissors:before{content:"\f0c4"}.fa-copy:before,
.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,
.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,
.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,
.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,
.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,
.fa-undo:before{content:"\f0e2"}.fa-legal:before,
.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,
.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,
.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,
.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,
.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,
.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,
.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,
.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,
.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,
.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,
.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,
.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,
.fa-usd:before{content:"\f155"}.fa-rupee:before,
.fa-inr:before{content:"\f156"}.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before{content:"\f157"}.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before{content:"\f158"}.fa-won:before,
.fa-krw:before{content:"\f159"}.fa-bitcoin:before,
.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,
.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,
.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,
.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,
.fa-bank:before,
.fa-university:before{content:"\f19c"}.fa-mortar-board:before,
.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,
.fa-car:before{content:"\f1b9"}.fa-cab:before,
.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,
.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,
.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,
.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before{content:"\f1d0"}.fa-ge:before,
.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,
.fa-weixin:before{content:"\f1d7"}.fa-send:before,
.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,
.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,
.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,
.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,
.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,
.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,
.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,
.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,
.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,
.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,
.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,
.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,
.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,
.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,
.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,
.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,
.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,
.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,
.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,
.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,
.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,
.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,
.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,
.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,
.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,
.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,
.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,
.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin: -1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,
.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
/**
 * 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 {
    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(0px,0px,0px);
    }
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    }
.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: 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;
    }
}

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

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

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
    }
.owl-carousel .owl-item img.owl-lazy {
    -webkit-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/739/theme/pec-lights-2026-05/common/plugin/owl.carousel/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: -webkit-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;
    transition: opacity 400ms ease;
    }
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    }

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
    }
.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
    }
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
    }
.scroll-element {
    display: none;
    }
.scroll-element,
.scroll-element div {
    box-sizing: content-box;
    }
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
    }
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
    }
.scroll-textarea {
    border: 1px solid #ccc;
    border-top-color: #999;
    }
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
    }
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
    }
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
    }

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
    }
.scrollbar-inner > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
    }
.scrollbar-inner > .scroll-element .scroll-element_outer {
    overflow: hidden;
    }
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    }
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -webkit-filter: alpha(opacity=40);
    filter: alpha(opacity=40);
    opacity: .4;
    }
.scrollbar-inner > .scroll-element .scroll-element_track {
    background-color: #e0e0e0;
    }
.scrollbar-inner > .scroll-element .scroll-bar {
    background-color: #c2c2c2;
    }
.scrollbar-inner > .scroll-element:hover .scroll-bar {
    background-color: #919191;
    }
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -12px;
    }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -12px;
    }
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -12px;
    }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -12px;
    }

/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-outer > .scroll-element {
    background-color: #fff;
    }
.scrollbar-outer > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-outer > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    width: 100%;
    }
.scrollbar-outer > .scroll-element.scroll-y {
    height: 100%;
    right: 0;
    top: 0;
    width: 12px;
    }
.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
    height: 8px;
    top: 2px;
    }
.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
    left: 2px;
    width: 8px;
    }
.scrollbar-outer > .scroll-element .scroll-element_outer {
    overflow: hidden;
    }
.scrollbar-outer > .scroll-element .scroll-element_track {
    background-color: #eee;
    }
.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    }
.scrollbar-outer > .scroll-element .scroll-bar {
    background-color: #d9d9d9;
    }
.scrollbar-outer > .scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    }
.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
    left: -12px;
    margin-left: 12px;
    }
.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
    top: -12px;
    margin-top: 12px;
    }
.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
    min-width: 10px;
    }
.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
    min-height: 10px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -14px;
    }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -14px;
    }
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -14px;
    }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -14px;
    }

/*************** SCROLLBAR MAC OS X ***************/
.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-macosx > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-macosx > .scroll-element .scroll-element_track {
    display: none;
    }
.scrollbar-macosx > .scroll-element .scroll-bar {
    background-color: #6C6E71;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-filter: alpha(opacity=0);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    -ms-transition: opacity .2s linear;
    transition: opacity .2s linear;
    }
.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-filter: alpha(opacity=70);
    filter: alpha(opacity=70);
    opacity: .7;
    }
.scrollbar-macosx > .scroll-element.scroll-x {
    bottom: 0px;
    height: 0px;
    left: 0;
    min-width: 100%;
    overflow: visible;
    width: 100%;
    }
.scrollbar-macosx > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0px;
    top: 0;
    width: 0px;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
    height: 7px;
    min-width: 10px;
    top: -9px;
    }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
    left: -9px;
    min-height: 10px;
    width: 7px;
    }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
    left: 2px;
    }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
    }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
    top: 2px;
    }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px;
    }
.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px;
    }

/*************** SCROLLBAR LIGHT ***************/
.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-light > .scroll-element {
    background-color: #fff;
    }
.scrollbar-light > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-light > .scroll-element .scroll-element_outer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    }
.scrollbar-light > .scroll-element .scroll-element_size {
    background: #dbdbdb;
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
    background: -moz-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,#dbdbdb),color-stop(100%,#e8e8e8));
    background: -webkit-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: -o-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: -ms-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: linear-gradient(to right,#dbdbdb 0%,#e8e8e8 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    }
.scrollbar-light > .scroll-element.scroll-x {
    bottom: 0;
    height: 17px;
    left: 0;
    min-width: 100%;
    width: 100%;
    }
.scrollbar-light > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 17px;
    }
.scrollbar-light > .scroll-element .scroll-bar {
    background: #fefefe;
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
    background: -moz-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,#fefefe),color-stop(100%,#f5f5f5));
    background: -webkit-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: -o-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: -ms-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: linear-gradient(to right,#fefefe 0%,#f5f5f5 100%);
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-light > .scroll-content.scroll-scrolly_visible {
    left: -17px;
    margin-left: 17px;
    }
.scrollbar-light > .scroll-content.scroll-scrollx_visible {
    top: -17px;
    margin-top: 17px;
    }
.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
    height: 10px;
    min-width: 10px;
    top: 0px;
    }
.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
    left: 0px;
    min-height: 10px;
    width: 10px;
    }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
    height: 12px;
    left: 2px;
    top: 2px;
    }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
    }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
    left: 2px;
    top: 2px;
    width: 12px;
    }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -19px;
    }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -19px;
    }
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -19px;
    }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -19px;
    }

/*************** SCROLLBAR RAIL ***************/
.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-rail > .scroll-element {
    background-color: #fff;
    }
.scrollbar-rail > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-rail > .scroll-element .scroll-element_size {
    background-color: #999;
    background-color: rgba(0,0,0,.3);
    }
.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
    background-color: #666;
    background-color: rgba(0,0,0,.5);
    }
.scrollbar-rail > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    min-width: 100%;
    padding: 3px 0 2px;
    width: 100%;
    }
.scrollbar-rail > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    padding: 0 2px 0 3px;
    right: 0;
    top: 0;
    width: 12px;
    }
.scrollbar-rail > .scroll-element .scroll-bar {
    background-color: #d0b9a0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0,0,0,.5);
    }
.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
    box-shadow: 1px 1px 3px rgba(0,0,0,.6);
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
    left: -17px;
    margin-left: 17px;
    }
.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
    margin-top: 17px;
    top: -17px;
    }
.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
    height: 10px;
    min-width: 10px;
    top: 1px;
    }
.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
    left: 1px;
    min-height: 10px;
    width: 10px;
    }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
    height: 15px;
    left: 5px;
    }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
    height: 2px;
    left: -10px;
    top: 5px;
    }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
    top: 5px;
    width: 15px;
    }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
    left: 5px;
    top: -10px;
    width: 2px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -25px;
    }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -25px;
    }
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -25px;
    }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -25px;
    }

/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-dynamic > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-dynamic > .scroll-element.scroll-x {
    bottom: 2px;
    height: 7px;
    left: 0;
    min-width: 100%;
    width: 100%;
    }
.scrollbar-dynamic > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 2px;
    top: 0;
    width: 7px;
    }
.scrollbar-dynamic > .scroll-element .scroll-element_outer {
    opacity: .3;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    }
.scrollbar-dynamic > .scroll-element .scroll-element_size {
    background-color: #ccc;
    opacity: 0;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
    transition: opacity .2s;
    }
.scrollbar-dynamic > .scroll-element .scroll-bar {
    background-color: #6c6e71;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
    bottom: 0;
    height: 7px;
    min-width: 24px;
    top: auto;
    }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
    left: auto;
    min-height: 24px;
    right: 0;
    width: 7px;
    }
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
    bottom: 0;
    top: auto;
    left: 2px;
    -webkit-transition: height .2s;
    -moz-transition: height .2s;
    -o-transition: height .2s;
    -ms-transition: height .2s;
    transition: height .2s;
    }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
    left: auto;
    right: 0;
    top: 2px;
    -webkit-transition: width .2s;
    -moz-transition: width .2s;
    -o-transition: width .2s;
    -ms-transition: width .2s;
    transition: width .2s;
    }
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
    }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px;
    }
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px;
    }

/* hover & drag */
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
    overflow: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-filter: alpha(opacity=70);
    filter: alpha(opacity=70);
    opacity: .7;
    }
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
    opacity: 1;
    }
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
    height: 100%;
    width: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    }
.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
    height: 20px;
    min-height: 7px;
    }
.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
    min-width: 7px;
    width: 20px;
    }

/*************** SCROLLBAR GOOGLE CHROME ***************/
.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-chrome > .scroll-element {
    background-color: #fff;
    }
.scrollbar-chrome > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-chrome > .scroll-element .scroll-element_track {
    background: #f1f1f1;
    border: 1px solid #dbdbdb;
    }
.scrollbar-chrome > .scroll-element.scroll-x {
    bottom: 0;
    height: 16px;
    left: 0;
    min-width: 100%;
    width: 100%;
    }
.scrollbar-chrome > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 16px;
    }
.scrollbar-chrome > .scroll-element .scroll-bar {
    background-color: #d9d9d9;
    border: 1px solid #bdbdbd;
    cursor: default;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    }
.scrollbar-chrome > .scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    border-color: #a9a9a9;
    }
.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    border-color: #7e7e7e;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
    left: -16px;
    margin-left: 16px;
    }
.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
    top: -16px;
    margin-top: 16px;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
    height: 8px;
    min-width: 10px;
    top: 3px;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
    left: 3px;
    min-height: 10px;
    width: 8px;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
    border-left: 1px solid #dbdbdb;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
    height: 14px;
    left: -3px;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
    height: 14px;
    left: -4px;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
    border-top: 1px solid #dbdbdb;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
    top: -3px;
    width: 14px;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    width: 14px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -19px;
    }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -19px;
    }
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -19px;
    }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -19px;
    }

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    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;
    }
.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;
    margin-top: -10px;
    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;
    }

/* Dots */
.slick-dots {
    position: relative;
    bottom: 0;
    font-size: 0;
    width: auto;
    display: inline-block !important;
    z-index: 5;
    }
ul.slick-dots li.slick-active button {
    background-color: #fff;
    opacity: 1;
    }
ul.slick-dots {
    position: absolute;
    left: 46%;
    }
ul.slick-dots li {
    display: inline;
    margin-right: 18px;
    }
ul.slick-dots button {
    border: none;
    padding: 9px;
    border-radius: 50%;
    margin-bottom: 20px;
    outline: none;
    opacity: .7;
    }
.slick-dots button:hover {
    background-color: #fff;
    opacity: 1;
    transition: all .3s;
    }

@charset "UTF-8";
/* Slider */
.slick-loading .slick-list {
    background: #fff url(/portal/web/739/theme/pec-lights-2026-05/common/plugin/slickjs/ajax-loader.gif) center center no-repeat;
    }

/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url(/portal/web/739/theme/pec-lights-2026-05/common/plugin/slickjs/fonts/slick.eot);
    src: url(/portal/web/739/theme/pec-lights-2026-05/common/plugin/slickjs/fonts/slick.eot#iefix) format('embedded-opentype'),url(/portal/web/739/theme/pec-lights-2026-05/common/plugin/slickjs/fonts/slick.woff) format('woff'),url(/portal/web/739/theme/pec-lights-2026-05/common/plugin/slickjs/fonts/slick.ttf) format('truetype'),url(/portal/web/739/theme/pec-lights-2026-05/common/plugin/slickjs/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 {
    font-family: "FontAwesome";
    content: '\f053';
    color: #cc232a;
    font-size: 50px;
    }
[dir='rtl'] .slick-prev:before {
    font-family: "FontAwesome";
    content: '\f053';
    color: #cc232a;
    font-size: 50px;
    }
.slick-next {
    right: -25px;
    }
[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
    }
.slick-next:before {
    font-family: "FontAwesome";
    content: '\f054';
    color: #cc232a;
    font-size: 50px;
    }
[dir='rtl'] .slick-next:before {
    font-family: "FontAwesome";
    content: '\f054';
    color: #666;
    font-size: 50px;
    }

/* 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;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
@supports (-ms-ime-align: auto) {
/* EDGE 13 & 14 */
#page-links #header-action > .wrapper-inner {
    width: auto;
    margin: 0 0 0 auto;
    }
@media screen and (max-width: 1000px) {
#page-links #header-menu-toggle {
    width: 45px;
    }
#page-links #header-action {
    padding-right: 3px;
    }
}

.vertical_tab_nav .tabbed_wrapper article {
    padding: 4% 0;
    }
.evCategoryProduct .image {
    height: 225px;
    padding-bottom: 0;
    }
.evCategoryProduct[data-grid="5"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="4"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="3"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 450px;
    }
@media screen and (max-width: /*style._content_width(*/1440px/*)*/) {
.evCategoryProduct .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 400px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 450px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 200px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 250px;
    }
}

@media screen and (max-width: 1200px) {
.evCategoryProduct .image {
    height: 250px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 350px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 400px;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evCategoryProduct .image {
    height: 200px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 350px;
    }
}

@media screen and (max-width: 800px) {
.evCategoryProduct .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 250px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 300px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 160px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 200px;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.evCategoryProduct .image,
.evCategoryProduct[data-grid] .image {
    height: 150px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 125px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 155px;
    }
.productSlideshow .slickSlideshow .evCategoryProduct .image,
.productSlideshow .slickSlideshow .evCategoryProduct[data-grid] .image {
    height: 250px;
    }
}

}

@media all and (-ms-high-contrast: none),(-ms-high-contrast: active) {
/* IE 10 & 11 */
.flexbox #page-header #header-logo {
    width: 230px;
    max-width: 100%;
    }
.vertical_tab_nav .tabbed_wrapper article {
    padding: 4% 0;
    }
.evCategoryProduct .image {
    height: 225px;
    padding-bottom: 0;
    }
.evCategoryProduct[data-grid="5"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="4"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="3"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 450px;
    }
@media screen and (max-width: /*style._content_width(*/1440px/*)*/) {
.evCategoryProduct .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 400px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 450px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 200px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 250px;
    }
}

@media screen and (max-width: 1200px) {
.evCategoryProduct .image {
    height: 250px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 350px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 400px;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evCategoryProduct .image {
    height: 200px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 350px;
    }
}

@media screen and (max-width: 800px) {
.evCategoryProduct .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 250px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 300px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 160px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 200px;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.evCategoryProduct .image,
.evCategoryProduct[data-grid] .image {
    height: 150px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 125px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 155px;
    }
.productSlideshow .slickSlideshow .evCategoryProduct .image,
.productSlideshow .slickSlideshow .evCategoryProduct[data-grid] .image {
    height: 250px;
    }
}

}

@-moz-document url-prefix() {
/* Firefox */
.vertical_tab_nav article {
    padding: 4% 0;
    }
.evCategoryProduct .image {
    height: 225px;
    padding-bottom: 0;
    }
.evCategoryProduct[data-grid="5"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="4"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="3"] .image {
    height: 225px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 450px;
    }
@media screen and (max-width: /*style._content_width(*/1440px/*)*/) {
.evCategoryProduct .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 400px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 450px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 200px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 250px;
    }
}

@media screen and (max-width: 1200px) {
.evCategoryProduct .image {
    height: 250px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 350px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 400px;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evCategoryProduct .image {
    height: 200px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 350px;
    }
}

@media screen and (max-width: 800px) {
.evCategoryProduct .image {
    height: 300px;
    }
.evCategoryProduct[data-grid="5"] .image,
.evCategoryProduct[data-grid="4"] .image,
.evCategoryProduct[data-grid="3"] .image {
    height: 250px;
    }
.evCategoryProduct[data-grid="2"] .image {
    height: 300px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 160px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 200px;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.evCategoryProduct .image,
.evCategoryProduct[data-grid] .image {
    height: 150px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="5"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="4"] .image,
.vertical_tab_nav .evCategoryProduct[data-grid="3"] .image {
    height: 125px;
    }
.vertical_tab_nav .evCategoryProduct[data-grid="2"] .image {
    height: 155px;
    }
.productSlideshow .slickSlideshow .evCategoryProduct .image,
.productSlideshow .slickSlideshow .evCategoryProduct[data-grid] .image {
    height: 250px;
    }
}

}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
body,
input,
textarea {
    font-family: /*style.text_font_family(*/"Open Sans"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    color: /*style.text_color(*/#686868/*)*/;
    }
html,
body {
    font-family: /*style.text_font_family(*/"Open Sans"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    }
body {
    background: #f3f3f3;
    color: /*style.footer_text_color(*/#fff/*)*/;
    }
body.blankLayout {
    background: /*style.body_background_color(*/#fff/*)*/;
    color: /*style.text_color(*/#686868/*)*/;
    }
body.evDialogOpen {
    overflow: hidden;
    }
.evButtonRed {
    color: #fff;
    background-color: #cb1e1d !important;
    }
.evButtonRed:hover {
    background-color: #b51818 !important;
    }

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

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

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

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

.fixed-nav body,
.fixed-nav2 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: bold;
    }

/*
	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.
    
    This is duplicated in definitions for @fragment h1-style till h6-style
*/
h1,
h2,
h3,
h4,
h5,
h6,
.title {
    font-family: /*style.heading_font_family(*/"Open Sans"/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    line-height: /*style.heading_line_height(*/1.143/*)*/;
    text-transform: /*style.heading_text_transformation(*/none/*)*/;
    color: /*style.heading_color(*/#333/*)*/;
    }
h1:only-child,
h2:only-child,
h3:only-child,
h4:only-child,
h5:only-child,
h6:only-child,
.title:only-child,
h1.last,
h1:last-child,
h2.last,
h2:last-child,
h3.last,
h3:last-child,
h4.last,
h4:last-child,
h5.last,
h5:last-child,
h6.last,
h6:last-child,
.title.last,
.title:last-child {
    margin-bottom: 0px;
    }
h1,
.h1-Style,
.h1-style {
    font-size: /*style.h1_font_size(*/26px/*)*/;
    color: /*style.primary(*/#cc232a/*)*/;
    }
h2,
.h2-Style,
.h2-style {
    font-size: /*style.h2_font_size(*/24px/*)*/;
    }
h3,
.h3-Style,
.h3-style {
    font-size: /*style.h3_font_size(*/22px/*)*/;
    }
h4,
.h4-Style,
.h4-style {
    font-size: /*style.h4_font_size(*/20px/*)*/;
    }
h5,
.h5-Style,
.h5-style {
    font-size: /*style.h5_font_size(*/18px/*)*/;
    }
h6,
.h6-Style,
.h6-style {
    font-size: /*style.h6_font_size(*/16px/*)*/;
    }
.title {
    font-size: /*style.h5_font_size(*/18px/*)*/;
    display: block;
    }
.subtitle {
    font-size: 18px;
    display: block;
    }
.subtitle ~ a {
    margin-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
h4,
h5,
h6,
.h4-style,
.h4-Style,
.h5-style,
.h5-Style,
.h6-style,
.h6-Style {
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    }
p {
    font-size: /*style.text_font_size(*/14px/*)*/;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    max-width: 100%;
    }
p:only-child,
p.last,
p:last-child {
    margin-bottom: 0;
    }
#reviewForm p {
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
p ~ ul,
p ~ ol {
    margin-top: -10px;
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
p.large {
    font-size: 18px;
    }
p.error,
span[class="error"] {
    color: /*style._error_text_color(*/#ef4242/*)*/;
    font-weight: bold;
    }
strong {
    font-size: 1em;
    font-weight: bold;
    }
label {
    margin: 5px 1px;
    font-size: /*style.text_font_size(*/14px/*)*/;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    }
span.label,
span.iconLabel {
    vertical-align: middle;
    }
.emphasise {
    color: inherit;
    }
quote {
    margin-top: 20px;
    display: block;
    font-weight: 600;
    font-style: italic;
    font-size: 120%;
    color: #a7a7a7;
    }
quote:before {
    content: "\201C";
    }
quote:after {
    content: "\201D";
    }

/*
	Links:
	------
	The style and colouring of links is specific to each site.
	The styles below are purely for shared styles.
*/
a:link,
a:visited {
    color: #cc232a;
    outline: 0;
    }
a:link.tag,
a:visited.tag {
    color: /*style.heading_color(*/#333/*)*/;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 8px;
    background: /*style.border_color(*/#fafafa/*)*/;
    }
a:link.tag:hover,
a:visited.tag:hover {
    text-decoration: none;
    color: /*style.primary(*/#cc232a/*)*/;
    }
a:link.textAnchor,
a:visited.textAnchor {
    color: #686868;
    text-align: center;
    }
a:link.textAnchor .icon,
a:visited.textAnchor .icon {
    font-size: 22px;
    }
a:link.textAnchor .icon + .label,
a:visited.textAnchor .icon + .label {
    padding-left: 5px;
    }
a:link.textAnchor .label,
a:visited.textAnchor .label {
    font-size: 14px;
    }
a:link.textAnchor:hover,
a:visited.textAnchor:hover {
    text-decoration: none;
    }
a:link.textAnchor:hover .label,
a:visited.textAnchor:hover .label {
    text-decoration: underline;
    }
a:link.wishlist,
a:visited.wishlist {
    display: block;
    padding: 10px 20px;
    text-align: center;
    }
a:link.wishlist .label,
a:visited.wishlist .label {
    font-weight: /*style.strong_text_font_weight(*/700/*)*/;
    }
a:link.boldAfter:after,
a:visited.boldAfter:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
a:hover,
a.hover,
a:focus,
a.focus {
    color: #cc232a;
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    outline: 0;
    }
a:hover.tag,
a.hover.tag,
a:focus.tag,
a.focus.tag {
    color: inherit;
    }

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

/*
    Rows and Columns
	----------------
	The only two columns that should need changing are the
	thirds as these are represented by pixel values rather
	than percentages.
	Generally you use these on container elements and pad
	an inner element. Although this adds more elements it is
	much easier to standardise.
*/
.column1of1,
.grid1of1 {
    width: 100%;
    }
.column1of3,
.grid1of3 {
    width: 33.33333%;
    }
.column2of3,
.grid2of3 {
    width: 66.66666%;
    }
.grid1of5,
.grid2of5,
.grid3of5,
.grid4of5 {
    float: left;
    }
.grid1of5 {
    width: 20%;
    }
.grid2of5 {
    width: 40%;
    }
.grid3of5 {
    width: 60%;
    }
.grid4of5 {
    width: 80%;
    }
@media (max-width:/*style._first_content_break_min(*/1001px/*)*/) {
.grid1of3,
.grid2of3,
.grid1of4,
.grid2of4,
.grid3of4,
.grid1of5,
.grid2of5,
.grid3of5,
.grid4of5,
.grid1of1:nth-child(even) {
    width: 50%;
    }

/*.gridContainer > [class^="grid"]:nth-child(odd):last-child{ width:100%; }*/
}

@media (max-width:/*style._second_special_content_break_min(*/701px/*)*/) {
.grid1of2,
.grid1of3,
.grid2of3,
.grid1of4,
.grid2of4,
.grid3of4,
.grid1of5,
.grid2of5,
.grid3of5,
.grid4of5,
.grid1of1:nth-child(even) {
    width: 100%;
    }
}

.gridContainer,
#reviewForm .gridContainer,
.gridRow,
#reviewForm .gridRow {
    margin: 0 -10px;
    }
.gridContainer.flex,
#reviewForm .gridContainer.flex,
.gridRow.flex,
#reviewForm .gridRow.flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    }
.gridContainer.flex.flexstart,
#reviewForm .gridContainer.flex.flexstart,
.gridRow.flex.flexstart,
#reviewForm .gridRow.flex.flexstart {
    align-items: flex-start;
    }
.gridContainer .grid1of1,
.gridContainer .grid1of2,
.gridContainer .grid1of3,
.gridContainer .grid2of3,
.gridContainer .grid1of4,
.gridContainer .grid3of4,
.gridContainer .grid1of5,
.gridContainer .grid2of5,
.gridContainer .grid3of5,
.gridContainer .grid4of5,
#reviewForm .gridContainer .grid1of1,
#reviewForm .gridContainer .grid1of2,
#reviewForm .gridContainer .grid1of3,
#reviewForm .gridContainer .grid2of3,
#reviewForm .gridContainer .grid1of4,
#reviewForm .gridContainer .grid3of4,
#reviewForm .gridContainer .grid1of5,
#reviewForm .gridContainer .grid2of5,
#reviewForm .gridContainer .grid3of5,
#reviewForm .gridContainer .grid4of5,
.gridRow .grid1of1,
.gridRow .grid1of2,
.gridRow .grid1of3,
.gridRow .grid2of3,
.gridRow .grid1of4,
.gridRow .grid3of4,
.gridRow .grid1of5,
.gridRow .grid2of5,
.gridRow .grid3of5,
.gridRow .grid4of5,
#reviewForm .gridRow .grid1of1,
#reviewForm .gridRow .grid1of2,
#reviewForm .gridRow .grid1of3,
#reviewForm .gridRow .grid2of3,
#reviewForm .gridRow .grid1of4,
#reviewForm .gridRow .grid3of4,
#reviewForm .gridRow .grid1of5,
#reviewForm .gridRow .grid2of5,
#reviewForm .gridRow .grid3of5,
#reviewForm .gridRow .grid4of5 {
    display: block;
    float: left;
    zoom: 1;
    box-sizing: border-box;
    }
.gridContainer .grid1of1:not(.gridContainer),
.gridContainer .grid1of2:not(.gridContainer),
.gridContainer .grid1of3:not(.gridContainer),
.gridContainer .grid2of3:not(.gridContainer),
.gridContainer .grid1of4:not(.gridContainer),
.gridContainer .grid3of4:not(.gridContainer),
.gridContainer .grid1of5:not(.gridContainer),
.gridContainer .grid2of5:not(.gridContainer),
.gridContainer .grid3of5:not(.gridContainer),
.gridContainer .grid4of5:not(.gridContainer),
#reviewForm .gridContainer .grid1of1:not(.gridContainer),
#reviewForm .gridContainer .grid1of2:not(.gridContainer),
#reviewForm .gridContainer .grid1of3:not(.gridContainer),
#reviewForm .gridContainer .grid2of3:not(.gridContainer),
#reviewForm .gridContainer .grid1of4:not(.gridContainer),
#reviewForm .gridContainer .grid3of4:not(.gridContainer),
#reviewForm .gridContainer .grid1of5:not(.gridContainer),
#reviewForm .gridContainer .grid2of5:not(.gridContainer),
#reviewForm .gridContainer .grid3of5:not(.gridContainer),
#reviewForm .gridContainer .grid4of5:not(.gridContainer),
.gridRow .grid1of1:not(.gridContainer),
.gridRow .grid1of2:not(.gridContainer),
.gridRow .grid1of3:not(.gridContainer),
.gridRow .grid2of3:not(.gridContainer),
.gridRow .grid1of4:not(.gridContainer),
.gridRow .grid3of4:not(.gridContainer),
.gridRow .grid1of5:not(.gridContainer),
.gridRow .grid2of5:not(.gridContainer),
.gridRow .grid3of5:not(.gridContainer),
.gridRow .grid4of5:not(.gridContainer),
#reviewForm .gridRow .grid1of1:not(.gridContainer),
#reviewForm .gridRow .grid1of2:not(.gridContainer),
#reviewForm .gridRow .grid1of3:not(.gridContainer),
#reviewForm .gridRow .grid2of3:not(.gridContainer),
#reviewForm .gridRow .grid1of4:not(.gridContainer),
#reviewForm .gridRow .grid3of4:not(.gridContainer),
#reviewForm .gridRow .grid1of5:not(.gridContainer),
#reviewForm .gridRow .grid2of5:not(.gridContainer),
#reviewForm .gridRow .grid3of5:not(.gridContainer),
#reviewForm .gridRow .grid4of5:not(.gridContainer) {
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
.gridContainer .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea) {
    padding: /*style._content_gap(*/20px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
.evEditable .gridContainer.flex,
.evEditable .gridRow.flex {
    align-items: flex-start;
    }

/*
    Table
    -----
*/
table td,
table th {
    text-align: left;
    border-bottom: 2px solid /*style.body_background_color(*/#fff/*)*/;
    }
table td,
table td[class*="halfpad"],
table td[class*="stdpad"],
table td[class*="doublepad"],
table th,
table th[class*="halfpad"],
table th[class*="stdpad"],
table th[class*="doublepad"] {
    padding: /*style._content_half_gap(*/10px/*)*/;
    }
table td:not([width]),
table th:not([width]) {
    width: auto;
    }
table td.first,
table td:first-child,
table th.first,
table th:first-child {
    padding-left: 0px;
    }
table td.last,
table td:last-child,
table th.last,
table th:last-child {
    padding-right: 0px;
    }
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 tr.last td,
table tr:last-child td,
table tr.last th,
table tr:last-child th {
    padding-bottom: /*style._content_half_gap(*/10px/*)*/;
    }
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: 0px;
    }
table.specifications td,
table.specifications th {
    padding: 3px /*style._content_gap(*/20px/*)*/;
    padding-top: 0;
    font-weight: normal;
    text-align: left;
    }
table.specifications td.first,
table.specifications td:first-child,
table.specifications th.first,
table.specifications th:first-child {
    padding-left: 0;
    }
table.specifications td.last,
table.specifications td:last-child,
table.specifications th.last,
table.specifications th:last-child {
    padding-right: 0;
    }
table.specifications td.alignCenter,
table.specifications td[align="center"],
table.specifications th.alignCenter,
table.specifications th[align="center"] {
    text-align: center;
    }
table.specifications td.alignRight,
table.specifications td[align="right"],
table.specifications th.alignRight,
table.specifications th[align="right"] {
    text-align: right;
    }
table.specifications th {
    padding: 3px;
    padding-top: 0;
    width: auto;
    min-width: /*style._button_min_width(*/120px/*)*/;
    }
table.specifications th > span {
    display: block;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    }
@media(max-width: /*style._second_content_break(*/448px/*)*/) {
table.specifications th > span {
    padding: 3px 5px;
    }
}

table.specifications tr.last td,
table.specifications tr:last-child td,
table.specifications tr.last th,
table.specifications tr:last-child th {
    padding-bottom: 0px;
    }
table.evProductVolumePrices:not(:last-child) {
    margin-bottom: /*style._content_gap(*/20px/*)*/;
    }
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: 0px;
    }
table.evCartLines td,
table.evCartLines th,
.evCartLines > table td,
.evCartLines > table th {
    padding: /*style._content_half_gap(*/10px/*)*/;
    }
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: 0px;
    }
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: 0px;
    }
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 td.qty,
table.evCartLines th.qty,
.evCartLines > table td.qty,
.evCartLines > table th.qty {
    width: 150px;
    }
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(*/10px/*)*/;
    }
table.evAccountTable td,
table.evAccountTable th {
    color: /*style.text_color(*/#686868/*)*/;
    }
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(*/#5fc050/*)*/;
    }
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;
    }
div.datepickerContainer table td,
div.datepickerContainer table th {
    padding: 0;
    }
#page-body .optionsTable,
#page-body .availablePostage {
    background-color: /*style.body_background_color(*/#fcfcfc/*).colorAdjust(0,0,-1,0)*/;
    border-color: /*style.border_color(*/#fafafa/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    }
#page-body .optionsTable table td,
#page-body .availablePostage table td {
    vertical-align: middle;
    padding: /*style._content_half_gap(*/10px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    border-color: /*style.border_color(*/#fafafa/*)*/;
    line-height: 1;
    }
#page-body .optionsTable table td.checkbox,
#page-body .availablePostage table td.checkbox {
    padding-left: /*style._content_gap(*/20px/*)*/;
    }
#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 label,
#page-body .availablePostage table td label {
    margin: 0 0 1px;
    width: 100%;
    }

/*
    Lists
    -----
*/
ul,
ol {
    padding-left: 45px;
    }
ul li,
ol li {
    padding-top: 0px;
    }
ul li.last,
ul li:last-child,
ol li.last,
ol li:last-child {
    padding-bottom: 0px;
    }
ul.evListOfOptions li {
    padding: 0 !important;
    line-height: 36px;
    }
ul.evListOfOptions li a {
    padding: 10px 15px 10px 15px !important;
    display: block;
    }
ul.evListOfOptions li a:hover {
    text-decoration: none;
    }
ul.evListOfOptions li a:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
ul.listOfDownloads {
    list-style: none;
    padding-left: 0px;
    }
ul.listOfDownloads li {
    padding-bottom: /*style._content_half_gap(*/10px/*)*/;
    }
ul.listOfDownloads li.last,
ul.listOfDownloads li:last-child {
    padding-bottom: 0;
    }
ul.listOfDownloads a {
    color: /*style.text_color(*/#686868/*)*/;
    font-weight: bold;
    text-decoration: none;
    }
ul.listOfDownloads a:hover,
ul.listOfDownloads a.hover,
ul.listOfDownloads a:focus,
ul.listOfDownloads a.focus,
ul.listOfDownloads a:active,
ul.listOfDownloads a.active {
    color: /*style.primary(*/#cc232a/*)*/;
    }

/*
    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: 0px;
    }
.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: 0px;
    }
.asideItem {
    padding-top: /*style._content_half_gap(*/10px/*)*/;
    padding-bottom: /*style._content_half_gap(*/10px/*)*/;
    }
.contentBlock {
    padding-left: 0px;
    padding-right: 0px;
    }
.contentSection[class*="halfpad"],
.contentSection[class*="stdpad"],
.contentSection[class*="doublepad"] {
    padding-top: /*style._content_gap(*/20px/*)*/;
    padding-right: 0px;
    padding-bottom: /*style._content_gap(*/20px/*)*/;
    padding-left: 0px;
    }
.contentSection + .contentSection {
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    }
.contentSection.headerContainer + .contentSection {
    border-top: 0px none;
    }
.contentSection.tabContainer {
    padding-bottom: 0px;
    }
.contentSection.hasShadow {
    box-shadow: 0 4px 10px -3px rgba(0,0,0,.3);
    }
.asideSection:last-child {
    padding-bottom: /*style._content_double_gap(*/40px/*)*/;
    }
.asideSection + .asideSection {
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    }
.asideSection div[data-reference] {
    padding-right: 5px;
    }
.toolbarSection > .inner,
.paginationSection > .inner {
    display: table;
    }
.toolbarSection > .inner > div,
.paginationSection > .inner > div {
    display: table-cell;
    vertical-align: middle;
    }
.toolbarSection .resultcount-container,
.paginationSection .resultcount-container {
    width: 100%;
    }
.toolbarSection .resultcount-container .filter-results-anchor,
.paginationSection .resultcount-container .filter-results-anchor {
    margin-left: /*style._content_third_gap(*/10px/*)*/;
    border-left: 1px solid /*style.border_color(*/#fafafa/*)*/;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox .toolbarSection > .inner,
.flexbox .paginationSection > .inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: -10px;
    }
.flexbox .toolbarSection > .inner > div,
.flexbox .paginationSection > .inner > div {
    display: block;
    width: auto;
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.flexbox .toolbarSection > .inner > div,
.flexbox .paginationSection > .inner > div {
    width: 100%;
    text-align: center;
    }
}

.resultcount-container {
    display: none;
    }
.sortpage-container {
    text-align: right;
    white-space: nowrap;
    }
.sortpage-container > * {
    display: inline-block;
    vertical-align: middle;
    }
.sortpage-container > span {
    margin-right: 8px;
    }
.perpage-container {
    white-space: nowrap;
    }
.perpage-container > * {
    display: inline-block;
    vertical-align: middle;
    }
.perpage-container > span {
    margin-right: 8px;
    }
@media (min-width:/*style._second_special_content_break_min(*/701px/*)*/) {
.sortpage-container .evSelectButton,
.perpage-container .evSelectButton {
    width: auto;
    }
.sortpage-container .evSelectButton .evButton,
.perpage-container .evSelectButton .evButton {
    width: auto;
    margin: 0 !important;
    }
.sortpage-container .evSelectButton .evButton .label,
.perpage-container .evSelectButton .evButton .label {
    width: auto;
    }
.sortpage-container .evSelectButton .evSelect,
.perpage-container .evSelectButton .evSelect {
    position: absolute;
    top: 0;
    margin: 0;
    left: 0;
    }
}

.evSortPage .evSelectButton,
.evPerPage .evSelectButton {
    width: auto;
    }
.evSortPage .evSelectButton .evButton,
.evPerPage .evSelectButton .evButton {
    width: auto;
    margin: 0 !important;
    }
.evSortPage .evSelectButton .evButton .label,
.evPerPage .evSelectButton .evButton .label {
    width: auto;
    }
.evSortPage .evSelectButton .evSelect,
.evPerPage .evSelectButton .evSelect {
    position: absolute;
    top: 0;
    margin: 0;
    left: 0;
    }
.evPagination {
    float: right;
    }
@media screen and (max-width: /*style._second_special_content_break_min(*/701px/*)*/) {
.evSortPage {
    width: calc(100vw - /*style._content_two_third_gap(*/20px/*)*/);
    text-align: center;
    }
.evPerPage .evSelectButton {
    width: auto;
    }
.evPerPage .evSelectButton .evButton {
    width: auto;
    margin: 0 !important;
    }
.evPerPage .evSelectButton .evButton .label {
    width: auto;
    }
.evPerPage .evSelectButton .evSelect {
    position: absolute;
    top: 0;
    margin: 0;
    left: 0;
    }
.evPagination {
    float: none;
    }
}

.pagination-container {
    width: 100%;
    text-align: right;
    }
@media screen and (min-width: /*style._first_content_break_min(*/1001px/*)*/) {
.toolbarSection .resultcount-container .filter-results-anchor {
    display: none;
    }
}

.headerContainer {
    position: relative;
    width: 100%;
    padding: 0px 0px /*style._content_gap(*/20px/*)*/ 0px;
    }
.headerContainer + .contentSection,
.headerContainer + .contentBlock {
    padding-top: 0px;
    }

/*
    Alerts and Notices
    ------------------
*/
.evAlert {
    background-image: none;
    background-color: /*style.primary(*/rgba(204,35,42,.1)/*).colorAdjust(0,0,0,-90%)*/;
    border-color: /*style.primary(*/rgba(204,35,42,.3)/*).colorAdjust(0,0,0,-70%)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/20px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    color: #111;
    }
.evAlert h1,
.evAlert h2,
.evAlert h3,
.evAlert h4,
.evAlert h5,
.evAlert h6,
.evAlert .title {
    color: inherit;
    }
.evAlert + div {
    margin-top: /*style._content_gap(*/20px/*)*/;
    }
.evNotices .error-summary {
    background-color: /*style._error_text_color(*/#ef4242/*)*/;
    margin: /*style._content_third_gap(*/10px/*)*/ 0 /*style._content_two_third_gap(*/20px/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    color: #fff;
    }
.evNotices h1,
.evNotices h2,
.evNotices h3,
.evNotices h4,
.evNotices h5,
.evNotices h6,
.evNotices .title {
    color: inherit;
    }

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

/*
    Widgets
    -------
*/
.widgetSection:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.widgetSection > .gridContainer {
    margin: -10px;
    }
@media (max-width:/*style._second_content_break_max(*/448px/*)*/) {
.widgetSection {
    padding-bottom: 0;
    }
.widgetSection > .gridContainer {
    margin: 0 -10px;
    }
.widgetSection > .gridContainer > [class^='grid'] {
    padding-top: 0;
    }
}

.evWidget {
    position: relative;
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 560px;
    padding: /*style._content_half_gap(*/10px/*)*/;
    text-align: left;
    color: /*style.pod_content_text_color(*/#fff/*)*/;
    }
.evWidget > .inner {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    max-width: /*style._pod_content_width(*/400px/*)*/;
    position: relative;
    z-index: 2;
    }
.evWidget h1,
.evWidget h2,
.evWidget h3,
.evWidget h4,
.evWidget h5,
.evWidget h6,
.evWidget .title,
.evWidget p {
    color: inherit;
    }
.evWidget.evPod {
    border: 0px none;
    padding: /*style._content_gap(*/20px/*)*/ /*style._content_double_gap(*/40px/*)*/;
    }
.evWidget.evPod:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: /*style.pod_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100)*/;
    }
.evWidget.evPod:not([style*="background-image"]) {
    padding: /*style._content_double_gap(*/40px/*)*/;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
.evWidget.evPod {
    padding: /*style._content_gap(*/20px/*)*/;
    }
}

.flexbox .evWidget {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    }
.flexbox .grid2of3 .evWidget.flexstart,
.flexbox .grid1of1 .evWidget.flexstart {
    align-items: flex-start;
    text-align: left;
    }
.flexbox .grid2of3 .evWidget.flexend,
.flexbox .grid1of1 .evWidget.flexend {
    align-items: flex-end;
    text-align: left;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
.flexbox .grid2of3 .evWidget.flexstart,
.flexbox .grid2of3 .evWidget.flexend,
.flexbox .grid1of1 .evWidget.flexstart,
.flexbox .grid1of1 .evWidget.flexend {
    align-items: center;
    text-align: center;
    }
}

.table .cell.vAlignTop {
    vertical-align: top;
    }
.table .cell.vAlignBottom {
    vertical-align: bottom;
    }
ul.faq {
    padding: 0;
    margin: 0;
    list-style-type: none;
    }
ul.faq li {
    position: relative;
    padding-left: 30px;
    }
ul.faq li:before {
    content: "";
    color: /*style.primary(*/#cc232a/*)*/;
    position: absolute;
    left: 5px;
    top: 0px;
    }
ul.faq li:nth-child(2n):before {
    content: "A";
    }
ul.faq li:nth-child(2n-1) {
    padding-top: 10px;
    }
ul.faq li:nth-child(2n-1):before {
    content: "Q";
    top: 10px;
    }

/* Vertical Tab navigation */
.vertical_tab_nav .fa-plus {
    color: white;
    position: absolute;
    left: 13px;
    top: 18px;
    }
.vertical_tab_nav .numeric_prefix {
    position: absolute;
    left: 13px;
    top: 10px;
    }
.vertical_tab_nav {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    align-items: stretch;
    justify-content: stretch;
    }
.vertical_tab_nav ul.tabs {
    display: block;
    margin: 0 10px 0 0;
    padding: 0;
    list-style: none;
    width: 30%;
    background-color: /*style.primary(*/#cc232a/*)*/;
    }
.vertical_tab_nav ul.tabs li {
    border-bottom: 1px solid #ac1c22;
    margin-bottom: 1px;
    text-align: left;
    padding: 0px;
    }
.vertical_tab_nav ul.tabs li:last-child {
    margin-bottom: 0px;
    border-bottom: 0;
    }
.vertical_tab_nav ul.tabs li a {
    display: block;
    font-size: 14pt;
    color: #fff;
    text-decoration: none;
    padding: 10px 40px;
    background-color: /*style.primary(*/#cc232a/*)*/;
    position: relative;
    }
.vertical_tab_nav ul.tabs li a:hover {
    background: #ac1c22;
    transition: all .2s;
    }
.vertical_tab_nav ul.tabs li a.selected {
    background: #fff;
    color: /*style.primary(*/#cc232a/*)*/;
    }
.vertical_tab_nav ul.tabs li a.selected:after {
    font-family: FontAwesome;
    font-style: normal;
    content: "\f054";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #dfdfdf;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    }
.vertical_tab_nav h2 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    }
.vertical_tab_nav .tabbed-wrapper {
    position: relative;
    display: block;
    background: #fff;
    width: 69.9%;
    padding: 4% 3%;
    margin: 0;
    }
.vertical_tab_nav .tabbed-wrapper.grey {
    background: /*style.border_color(*/#fafafa/*)*/;
    }
.vertical_tab_nav .tabbed-wrapper .tabbed-img {
    width: 300px;
    margin: 30px 20px 0 0;
    float: left;
    }
.vertical_tab_nav .tabbed-wrapper article {
    display: none;
    margin: 0px;
    color: #000;
    }
.vertical_tab_nav .tabbed-wrapper div.text-content {
    width: 100%;
    display: inline-block;
    float: left;
    margin-top: 0px;
    }
.vertical_tab_nav .tabbed-wrapper p {
    margin: 0px 0px 20px 0px;
    padding-top: 10px;
    }
@media screen and (max-width: 1024px) {
.vertical_tab_nav .tabbed-wrapper {
    width: 70%;
    }
}

@media screen and (max-width: 900px) {
.vertical_tab_nav {
    flex-flow: column nowrap;
    }
.vertical_tab_nav ul.tabs {
    width: 100%;
    }
.vertical_tab_nav .tabbed-wrapper {
    width: 100%;
    min-height: 0;
    }
}

/* Bottom boxes on homepage */
.info-partial-wrap {
    margin: 0 auto;
    max-width: 1424px;
    padding: 0;
    }
.info-partial-wrap .information-boxes {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    text-align: center;
    margin: -10px;
    }
.info-partial-wrap .information-boxes .evEditable {
    margin: 0 auto;
    }
.info-partial-wrap .information-boxes article {
    background: #fff;
    width: 25%;
    width: calc(25% - 20px);
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    align-items: flex-start;
    }
.info-partial-wrap .information-boxes article div[data-reference] {
    max-width: 100%;
    }
.info-partial-wrap .information-boxes article ul {
    list-style-type: none;
    padding-top: 20px;
    }
.info-partial-wrap .information-boxes article ul li {
    padding-left: 15px;
    padding-bottom: 10px;
    text-align: left;
    position: relative;
    }
.info-partial-wrap .information-boxes article .fa-asterisk {
    font-size: .5rem;
    color: /*style.primary(*/#cc232a/*)*/;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 7px;
    }
.info-partial-wrap .information-boxes article .box-titles {
    font-size: 20px;
    color: /*style.primary(*/#cc232a/*)*/;
    font-weight: 600;
    margin-top: 20px;
    }
.info-partial-wrap .information-boxes article p {
    padding: 10px 30px;
    font-size: 16px;
    color: #333;
    }
.info-partial-wrap .information-boxes article img {
    display: block;
    margin: 30px auto;
    }
.info-partial-wrap .information-boxes article a.actionButton {
    margin: auto auto 5px;
    }
.info-partial-wrap .information-boxes article a.actionButton span {
    display: inline-block;
    vertical-align: middle;
    }
.info-partial-wrap .information-boxes article a.actionButton .icon {
    width: 15px;
    height: auto;
    font-size: 30px;
    color: #cdcdcd;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
.info-partial-wrap .information-boxes {
    flex-flow: row wrap;
    }
.info-partial-wrap .information-boxes article {
    width: 50%;
    width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
.info-partial-wrap .information-boxes article {
    width: 100%;
    }
}

.info-partial-wrap .aside-boxes {
    display: flex;
    flex-flow: column wrap;
    justify-content: stretch;
    text-align: center;
    margin: 10px -10px;
    }
.info-partial-wrap .aside-boxes .evEditable {
    margin: 0 auto;
    }
.info-partial-wrap .aside-boxes article {
    width: calc(100% - 20px);
    margin: 10px;
    border: 0;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
.info-partial-wrap .aside-boxes {
    flex-flow: row wrap;
    }
.info-partial-wrap .aside-boxes article {
    width: 50%;
    width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
.info-partial-wrap .aside-boxes article {
    width: 100%;
    }
}

.ev-checkout-summary img {
    min-width: 64px;
    }

/* Basic flex layout */
.ev-layout {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    }
.ev-layout.column {
    flex-direction: column;
    }
.ev-layout.column.reverse {
    flex-direction: column-reverse;
    }
.ev-layout.row {
    flex-direction: row;
    }
.ev-layout.row.reverse {
    flex-direction: row-reverse;
    }
.ev-layout.nowrap {
    flex-wrap: nowrap;
    }
.justify-content-between {
    justify-content: space-between !important;
    }
.align-items-center {
    align-items: center !important;
    }
.ev-block.xs-6 {
    flex: 1 0 50%;
    }
.ev-block.xs-12 {
    flex: 1 0 100%;
    }
.ev-block.xs-auto {
    flex: 0 0 auto;
    }
@media all and (min-width: 960px) {
.ev-block.md-6 {
    flex: 1 0 50%;
    }
.ev-block.md-12 {
    flex: 1 0 100%;
    }
.ev-block.md-auto {
    flex: 0 0 auto;
    }
}

.seo-content {
    background: #FFF;
    padding: 1rem;
    }
.pec-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    }
.pec-card-image {
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    }
.pec-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

/* Lozenges */
.ev-lozenge {
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 9px;
    }
.ev-lozenge.inventory.in-stock {
    background-color: rgba(85,211,58,.15);
    color: #295F1D;
    }
.ev-lozenge.inventory.in-stock.has-icon:before {
    content: url(/portal/web/739/theme/pec-lights-2026-05/common/images/stock-icons/in-stock.svg?v=1778850084);
    padding-right: 5px;
    }
.ev-lozenge.inventory.low-stock {
    background-color: rgba(248,165,56,.20);
    color: #5F3916;
    }
.ev-lozenge.inventory.low-stock.has-icon:before {
    content: url(/portal/web/739/theme/pec-lights-2026-05/common/images/stock-icons/limited-stock.svg?v=1778850129);
    padding-right: 5px;
    }
.ev-lozenge.inventory.out-of-stock {
    background-color: rgba(233,83,90,.15);
    color: #5C1E20;
    }
.ev-lozenge.inventory.out-of-stock.has-icon:before {
    content: url(/portal/web/739/theme/pec-lights-2026-05/common/images/stock-icons/out-of-stock.svg?v=1778850144);
    padding-right: 5px;
    }
.ev-lozenge.inventory.local {
    background-color: rgba(255,240,0,.25);
    color: #5A540E;
    }
.ev-lozenge.inventory.local.has-icon:before {
    content: url(/portal/web/739/theme/pec-lights-2026-05/common/images/stock-icons/available-yellow.svg?v=1778850047);
    padding-right: 5px;
    }
.ev-lozenge.inventory.on-demand {
    background-color: rgba(248,165,56,.20);
    color: #5F3916;
    }
.ev-lozenge.inventory.on-demand.has-icon:before {
    content: url(/portal/web/739/theme/pec-lights-2026-05/common/images/stock-icons/available-orange.svg?v=1778849903);
    padding-right: 5px;
    }
.ev-lozenge.inventory.special {
    background-color: rgba(36,187,218,.15);
    color: #1F4758;
    }
.ev-lozenge.inventory.special.has-icon:before {
    content: url(/portal/web/739/theme/pec-lights-2026-05/common/images/stock-icons/special-order.svg?v=1778850169);
    padding-right: 5px;
    }
#specialOrderDialog.evDialog .evDialogWindow {
    padding: 4rem 2rem 2rem 2rem;
    }
#specialOrderDialog.evDialog .evDialogWindow input,
#specialOrderDialog.evDialog .evDialogWindow textarea {
    width: 100%;
    }
#specialOrderDialog.evDialog .evDialogWindow .closeIcon {
    top: 1rem;
    }
.pec-card-content {
    padding: var(--spacing-content-small);
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Page Canvas
	-----------
*/
#page-canvas {
    position: relative;
    display: block;
    padding: 0px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
    }

/*
	Wrappers
	--------
*/
#wrapper-links,
#wrapper-header,
#wrapper-navigation,
#wrapper-notice,
#wrapper-banner,
#wrapper-breadcrumbs,
#wrapper-body,
#wrapper-footer,
#wrapper-company {
    display: block;
    clear: both;
    margin: 0 auto;
    padding: 0;
    position: relative;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#wrapper-body,
#wrapper-notice,
#wrapper-banner {
    padding: 0 /*style._content_gap(*/20px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#wrapper-body,
#wrapper-notice,
#wrapper-banner {
    padding: 0;
    }
#wrapper-notice {
    display: none;
    }
}

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

/*
    Cookie Consent
    --------------
*/
#page-cookie {
    padding-left: /*style._content_gap(*/20px/*)*/;
    padding-right: /*style._content_gap(*/20px/*)*/;
    }

/*
    Products in forms
    -----------------
*/
@media (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evFormWidgetCategories {
    width: 25%;
    }
}

@media (max-width: 450px) {
.evFormWidgetCategories {
    width: 100%;
    }
}

.evFormWidgetProducts {
    margin: 0;
    }
.evFormWidgetProducts:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
@media (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evFormWidgetProducts {
    width: 75%;
    }
}

@media (max-width: 450px) {
.evFormWidgetProducts {
    width: 100%;
    }
}

@media (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evFormWidgetProducts .evFormWidgetProduct {
    width: 33.33%;
    }
}

@media (max-width: 1150px) {
.evFormWidgetProducts .evFormWidgetProduct {
    width: 50%;
    }
}

@media (max-width: /*style._second_special_content_break_max(*/700px/*)*/) {
.evFormWidgetProducts .evFormWidgetProduct .blurb {
    display: none;
    }
}

@media (max-width: 550px) {
.evFormWidgetProducts .evFormWidgetProduct {
    width: 100%;
    }
.evFormWidgetProducts .evFormWidgetProduct .image {
    text-align: center;
    }
.evFormWidgetProducts .evFormWidgetProduct .image img {
    max-height: 200px;
    }
}

a.tel-number {
    font-size: 1.8em;
    margin-left: -35px;
    font-weight: 600;
    color: inherit;
    }
a.tel-number img {
    padding-right: 3px;
    }
.offer-percent {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    }
.offer-percent span {
    width: 50px;
    height: 50px;
    display: block;
    margin: 5px;
    padding: 6px 3px 3px 5px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-align: center;
    font-size: 12px;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Links
    -----
*/
#wrapper-links {
    z-index: 10;
    background-color: #cb1e1d;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
#page-links {
    display: table;
    width: 100%;
    padding: 0 20px;
    color: #fff;
    }
#page-links #header-links {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    width: 100%;
    }
#page-links #header-links ul.evMenu {
    display: inline-block;
    vertical-align: middle;
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    }
#page-links #header-links ul.evMenu > li > a {
    opacity: .8;
    line-height: 20px;
    letter-spacing: .8px;
    }
#page-links #header-links ul.evMenu > li > a:hover,
#page-links #header-links ul.evMenu > li > a.hover,
#page-links #header-links ul.evMenu > li > a:focus,
#page-links #header-links ul.evMenu > li > a.focus,
#page-links #header-links ul.evMenu > li.active > a {
    opacity: 1;
    text-decoration: /*style.header_menu_hover_decoration(*/none/*)*/;
    }
#page-links #header-action {
    display: table-cell;
    vertical-align: middle;
    margin-left: 20px;
    }
#page-links #header-action > .wrapper-inner {
    display: table;
    width: 100%;
    text-align: right;
    }
#page-links #header-action > .wrapper-inner > a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    padding: 17px 19px;
    color: /*style.primary(*/#cc232a/*)*/;
    line-height: 1;
    }
#page-links #header-action > .wrapper-inner > a:hover,
#page-links #header-action > .wrapper-inner > a.active,
#page-links #header-action > .wrapper-inner > a:focus {
    background-color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: /*style.header_menu_hover_decoration(*/none/*)*/;
    }
#page-links #header-action > .wrapper-inner > a .icon {
    width: auto;
    height: auto;
    vertical-align: middle;
    font-size: 16px;
    }
#page-links #header-action > .wrapper-inner > a .iconText {
    margin-left: 10px;
    font-weight: 600;
    }
@media (max-width: /*style._second_content_break(*/448px/*)*/) {
#page-links #header-action > .wrapper-inner > a .iconText {
    display: none;
    }
}

#page-links #header-action > .wrapper-inner > a#header-phone {
    display: none;
    }
#page-links #header-action > .wrapper-inner > a#search-anchor {
    display: /*style.header_search_field(*/inline-block/*)*/;
    padding: 16px 19px;
    }
#page-links #header-action > .wrapper-inner > a#search-anchor .icon {
    font-size: 18px;
    }
#page-links #header-action > .wrapper-inner > a .icon + .label {
    letter-spacing: 1px;
    }
#page-links #header-action > .wrapper-inner > a .icon + .label,
#page-links #header-action > .wrapper-inner > a .icon + .label b {
    padding-left: 5px;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor {
    background-color: /*style.secondary(*/#30bb65/*)*/;
    color: /*style.text_color_on_secondary(*/#fff/*)*/;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor span {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor:hover,
#page-links #header-action > .wrapper-inner #minicart-anchor.active,
#page-links #header-action > .wrapper-inner #minicart-anchor:focus {
    text-decoration: none;
    background-color: /*style._darker_secondary(*//*style.secondary(*/#2ba75a/*).colorAdjust(0,0,-5,0)*//*)*/;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor:hover .lighter,
#page-links #header-action > .wrapper-inner #minicart-anchor.active .lighter,
#page-links #header-action > .wrapper-inner #minicart-anchor:focus .lighter {
    opacity: 1;
    }
#page-links #header-action > .wrapper-inner #miniCartBubble {
    text-align: left;
    color: /*style.text_color(*/#686868/*)*/;
    }
#page-links #header-action > .wrapper-inner #miniCartBubble .minicart-items--empty {
    padding: 15px 20px;
    }
#page-links #header-action #header-cart {
    display: table-cell;
    vertical-align: middle;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total {
    color: /*style.text_color(*/#686868/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table {
    width: 100%;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td {
    border-bottom: 1px solid /*style.border_color(*/#fafafa/*)*/;
    padding: /*style._content_half_gap(*/10px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    vertical-align: middle;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.cartline-thumbnail,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.cartline-thumbnail {
    min-width: 110px;
    padding-top: 0;
    padding-bottom: 0;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.price,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.price {
    text-align: right;
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    color: /*style.heading_color(*/#333/*)*/;
    padding-top: 41.994px;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td a.cartline-title,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td a.cartline-title {
    display: inline-block;
    font-size: /*style.text_font_size(*/14px/*)*/;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    color: /*style.heading_color(*/#333/*)*/;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.first,
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td:first-child,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.first,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td:first-child {
    padding-left: /*style._content_gap(*/20px/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.last,
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td:last-child,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.last,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td:last-child {
    padding-right: /*style._content_gap(*/20px/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items--empty {
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    text-align: center;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer {
    padding: 0px;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total {
    font-weight: 600;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total table {
    width: 100%;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total table td {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    border-bottom: 0px none;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total table td.price {
    font-size: 16px;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-actions {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-actions .evButton {
    width: 50%;
    margin: 0;
    border-radius: 0;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-actions .evButton:only-child {
    margin: 0 auto;
    }
#page-links #header-action #accountBubble {
    top: 58px !important;
    color: /*style.text_color(*/#686868/*)*/;
    text-align: center;
    }
#page-links #header-action #accountBubble .userThumbnail {
    padding: 20px;
    overflow: hidden;
    text-transform: none;
    }
#page-links #header-action #accountBubble .userThumbnail .evAvatar {
    margin-bottom: /*style._content_half_gap(*/10px/*)*/;
    border-width: 2px;
    font-size: 20px;
    font-weight: 600;
    line-height: 56px;
    color: /*style.primary(*/#cc232a/*)*/;
    overflow: hidden;
    }
#page-links #header-action #accountBubble .userThumbnail .loginAvatar {
    background-color: /*style.primary(*/#cc232a/*)*/;
    border: 0px none;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    font-size: 60px;
    overflow: hidden;
    }
#page-links #header-action #accountBubble .userThumbnail .loginAvatar:before {
    transition: top .25s;
    top: 50px;
    position: relative;
    }
#page-links #header-action #accountBubble .userThumbnail h1,
#page-links #header-action #accountBubble .userThumbnail h2,
#page-links #header-action #accountBubble .userThumbnail h3,
#page-links #header-action #accountBubble .userThumbnail h4,
#page-links #header-action #accountBubble .userThumbnail h5,
#page-links #header-action #accountBubble .userThumbnail h6,
#page-links #header-action #accountBubble .userThumbnail .title {
    margin: 10px 0;
    }
#page-links #header-action #accountBubble.open .loginAvatar:before {
    top: 10px;
    }
#page-links #header-action #accountBubble .userMenu {
    text-align: left;
    font-weight: 600;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu {
    display: block;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu li a {
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_gap(*/20px/*)*/;
    text-align: center;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu li a:hover {
    text-decoration: /*style.header_menu_hover_decoration(*/none/*)*/;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu li.bubbleHide {
    display: none;
    }
#page-links #header-action #accountBubble .userForm .fieldContainer {
    padding: 0px /*style._content_two_third_gap(*/20px/*)*/;
    text-align: left;
    padding-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
#page-links #header-action #accountBubble .userForm button {
    margin: 0 !important;
    }
#page-links #header-action #accountBubble .userForm a.registerButton {
    display: block;
    font-family: /*style.text_font_family(*/"Open Sans"/*)*/;
    font-size: 12px;
    font-weight: 600;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    text-align: center;
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    }
#page-links #header-action #accountBubble .userForm a:hover {
    color: /*style.text_color(*/#686868/*)*/ !important;
    }

/*
    Header
    ------
*/
/**** Header Tel Number ****/
a.tel-number {
    color: #cb1e1d;
    }
#header-tools-container span {
    color: #cb1e1d;
    }
#wrapper-header {
    z-index: 8;
    background-color: /*style.header_background_color(*/#fff/*)*/;
    color: /*style.header_text_color(*//*)*/;
    }
#header-menu-toggle {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding: 0;
    }
#header-menu-toggle .inner {
    padding: 6px 10px;
    display: inline-block;
    }
#page-header {
    display: table;
    padding: 20px;
    width: 100%;
    }
#page-header #header-logo {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    width: 20%;
    //max-width: 230px;
    }
#page-header #header-search {
    display: table-cell;
    vertical-align: middle;
    width: 60%;
    padding: 10px 50px 10px 50px;
    }
#page-header #header-tools-container {
    display: table-cell;
    vertical-align: middle;
    padding-left: 50px;
    margin-left: auto;
    white-space: nowrap;
    //max-width: 230px;
    width: 20%;
    }
#page-header #header-tools-container #header-tools {
    display: table;
    width: 100%;
    }
#page-header #header-tools-container #header-tools #header-search {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding-right: /*style._content_half_gap(*/10px/*)*/;
    }
#page-header #header-tools-container #header-tools #header-search > form {
    display: /*style.header_search_field(*/inline-block/*)*/;
    min-width: /*style._header_search_field_min_width(*/250px/*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField {
    display: /*style.header_search_field(*/inline-block/*)*/;
    background-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/;
    border-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,13.2,0)*/;
    color: /*style.header_text_color(*//*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input:-ms-input-placeholder {
    color: /*style.header_text_color(*//*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input::-webkit-input-placeholder {
    color: /*style.header_text_color(*//*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input:-moz-placeholder {
    color: /*style.header_text_color(*//*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input::placeholder {
    color: /*style.header_text_color(*//*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input.placeholder-state {
    color: /*style.header_text_color(*//*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField > .evTextFieldInput > input:-webkit-autofill {
    -webkit-box-shadow: /*style._field_box_shadow(*/0px 0px 0px 0px rgba(0,0,0,0)/*)*/,0 0 0 50px /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/ inset;
    color: /*style.header_text_color(*//*)*/;
    -webkit-text-fill-color: /*style.header_text_color(*//*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField > .evTextFieldInput > input:-webkit-autofill:focus {
    -webkit-box-shadow: /*style._field_box_shadow(*/0px 0px 0px 0px rgba(0,0,0,0)/*)*/,0 0 0 50px /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/ inset;
    color: /*style.header_text_color(*//*)*/;
    -webkit-text-fill-color: /*style.header_text_color(*//*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField:hover,
#page-header #header-tools-container #header-tools #header-search .evTextField.hover,
#page-header #header-tools-container #header-tools #header-search .evTextField:focus,
#page-header #header-tools-container #header-tools #header-search .evTextField.focus,
#page-header #header-tools-container #header-tools #header-search .evTextField:active,
#page-header #header-tools-container #header-tools #header-search .evTextField.active {
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);
    color: /*style.header_text_color(*//*)*/;
    color: /*style.header_text_color(*//*)*/;
    }
.flexbox #page-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    }
.flexbox #page-header #header-logo {
    width: 100%;
    }
@media (max-width: 1250px) {
.flexbox #page-header #header-logo {
    flex: 0 1 auto;
    }
}

@media (max-width: 1250px) {
.flexbox #page-header #header-search {
    padding: 10px;
    margin: auto;
    width: 100%;
    }
}

.flexbox #page-header #header-tools-container {
    flex: 1 0 auto;
    }
@media (max-width: 1250px) {
.flexbox #page-header #header-tools-container {
    flex: 0 1 auto;
    margin-left: auto;
    }
}

.telephone-header {
    margin-right: 14px;
    }
@media screen and (min-width: /*style._first_content_break_min(*/1001px/*)*/) {
#wrapper-links,
#wrapper-navigation {
    text-transform: none;
    }
#header-menu-toggle {
    display: none;
    }
#page-header #header-logo img {
    max-width: none;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#page-links {
    padding: 0;
    }
#header-links {
    display: none !important;
    }
#header-phone {
    display: table-cell !important;
    }
#page-header {
    display: block !important;
    }
#page-header #header-logo {
    display: block !important;
    text-align: center;
    margin: 0 auto 10px auto;
    }
#page-header #header-search {
    margin: 0 auto !important;
    }
#page-header #header-tools-container {
    display: none;
    }
#header-menu-toggle.is-active .inner {
    background-color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
.evMenuToggle.is-active span,
.evMenuToggle.is-active span:before,
.evMenuToggle.is-active span:after {
    background-color: /*style.primary(*/#cc232a/*)*/;
    }
}

@media screen and (max-width:530px) {
.flexbox #header-logo {
    margin: 0 auto;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#header-menu-toggle .inner {
    display: block;
    padding: 3px;
    }
#page-links #header-action {
    font-size: 12px;
    padding-right: 3px;
    }
#page-links #header-action > .wrapper-inner > a {
    padding: 12px 12px;
    line-height: 1;
    }
#page-header {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
#page-header #header-logo img {
    max-height: 45px;
    }
#page-notice {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
#header-menu-toggle.is-active .inner {
    background-color: transparent;
    }
#miniCartBubble {
    right: 4px;
    width: 100vw;
    width: calc(100vw - 8px);
    left: auto !important;
    }
#accountBubble {
    right: 7px;
    left: auto !important;
    }
#accountBubble .triangleWrapper {
    right: 131px;
    }
}

/*
    Special Notice
    --------------
*/
#wrapper-notice-flash {
    z-index: 6;
    background-color: /*style.notice_background_color(*/#fff/*)*/;
    color: /*style.notice_text_color(*/#727272/*)*/;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
#wrapper-notice-flash {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
}

#wrapper-notice {
    z-index: 6;
    background-color: /*style.notice_background_color(*/#fff/*)*/;
    color: /*style.notice_text_color(*/#727272/*)*/;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
#wrapper-notice {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
}

.notice {
    padding: 40px 20px;
    }
.notice .page-notice-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    }
.notice .page-notice-inner > * {
    display: flex;
    align-items: center;
    max-width: 100%;
    }
@media (max-width:1000px) {
.notice .page-notice-inner > * {
    max-width: 325px;
    }
.notice .page-notice-inner > * .special-notices-text {
    text-align: left;
    }
}

.notice .page-notice-inner > * .special-notices-image {
    height: fit-content;
    max-width: 50px;
    }
.notice .page-notice-inner > * .special-notices-text {
    margin-left: 15px;
    }
.notice .page-notice-inner > * .special-notices-text span.gold {
    color: #FFB752 !important;
    }
.notice .page-notice-inner > * .special-notices-text img.feefo {
    position: relative;
    bottom: 3px;
    left: 3px;
    }
.notice .page-notice-inner > * span {
    font-size: 1.4em;
    font-weight: 600;
    }
.notice .page-notice-inner > * p {
    font-size: 14px;
    color: #666;
    }
@media (max-width: 1200px) {
.notice .page-notice-inner > * {
    width: 50%;
    justify-content: center;
    }
.notice .page-notice-inner > *:nth-child(-n + 2) {
    margin-bottom: 30px;
    }
}

@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
.notice .page-notice-inner {
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    }
.notice .page-notice-inner > * {
    width: 100%;
    }
.notice .page-notice-inner > *:not(:last-child) {
    margin-bottom: 30px;
    }
}

@keyframes process-prompt {
from {
    transform: translateX(0);
    }
to {
    transform: translateX(1em);
    }
}

.evCheckoutButton .icon {
    animation-name: process-prompt;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Mobile
    ------
*/
#wrapper-mobile {
    display: none;
    z-index: 9;
    color: /*style.header_text_color(*//*)*/;
    padding-top: 51px;
    background-color: rgba(0,0,0,.65);
    width: 100%;
    text-transform: none;
    }
#page-mobile {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 50px;
    height: calc(100vh - 48px);
    width: 400px;
    max-width: 100%;
    background-color: /*style.header_background_color(*/#fff/*)*/;
    box-shadow: 0 0 18px 3px rgba(35,31,32,.5);
    overflow: auto;
    }
#page-mobile #mobile-search > form {
    display: /*style.header_search_field(*/inline-block/*)*/;
    }
#page-mobile #mobile-search .icon.search {
    font-size: 20px;
    }
#page-mobile #mobile-search .evTextField {
    display: /*style.header_search_field(*/inline-block/*)*/;
    padding: 0px;
    border: 0px none;
    background-color: /*style.text_color_on_primary(*/#fff/*).colorAdjust(0,0,7.8,0)*/;
    border-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,13.2,0)*/;
    }
#page-mobile #mobile-search .evTextField input:-ms-input-placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input::-webkit-input-placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input:-moz-placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input::placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input.placeholder-state {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField > .evTextFieldInput > input {
    height: 45px;
    padding: 0px /*style._content_half_gap(*/10px/*)*/;
    font-size: 14px;
    }
#page-mobile #mobile-search .evTextField > .evTextFieldIcon {
    padding-left: 18px;
    }
#page-mobile #mobile-search .evTextField:hover {
    box-shadow: none;
    }
#page-mobile #mobile-navigation {
    margin: 0 0 /*style._content_two_third_gap(*/20px/*)*/;
    text-transform: /*style.mobile_menu_text_transformation(*/uppercase/*)*/;
    background-color: /*style.bg_colour_navigation(*/#F0F4F5/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: left;
    overflow: hidden;
    width: 100%;
    }
#page-mobile #mobile-navigation ul.evMenu > li > a {
    font-size: 16px;
    }
#page-mobile #mobile-navigation ul.evMenu li:not(.evMenuLevel_1) {
    padding-left: /*style._content_half_gap(*/10px/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuLevel_4 ul {
    left: auto;
    top: auto;
    position: relative;
    box-shadow: none;
    }
#page-mobile #mobile-navigation ul.evMenu li {
    display: block;
    float: none;
    padding-top: 1px;
    padding-bottom: 1px;
    border: 0px;
    }
#page-mobile #mobile-navigation ul.evMenu li a {
    font-weight: inherit;
    color: /*style.mobile_menu_text_color(*/#7d7d7d/*)*/;
    position: relative;
    }
#page-mobile #mobile-navigation ul.evMenu li a > .evMenuLinkTitle {
    color: inherit;
    white-space: normal;
    font-weight: bold;
    letter-spacing: 1.5px;
    }
#page-mobile #mobile-navigation ul.evMenu li a > .evMenuLinkDescription {
    text-transform: none;
    color: /*style.header_text_color(*//*).colorAdjust(0,0,0,-15)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li > a {
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: /*style._content_gap(*/20px/*)*/;
    padding-left: /*style._content_two_third_gap(*/20px/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li > a:hover,
#page-mobile #mobile-navigation ul.evMenu li > a.hover,
#page-mobile #mobile-navigation ul.evMenu li > a:focus,
#page-mobile #mobile-navigation ul.evMenu li > a.focus,
#page-mobile #mobile-navigation ul.evMenu li.active > a,
#page-mobile #mobile-navigation ul.evMenu li.accordion-open > a {
    color: /*style.heading_color(*/#333/*)*/;
    text-decoration: none;
    text-decoration: /*style.aside_menu_hover_decoration(*/none/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle {
    position: absolute;
    display: block;
    top: 0px;
    right: 2px;
    bottom: 0px;
    padding: 0 /*style._content_two_third_gap(*/20px/*)*/;
    font-size: 26px;
    background-color: /*style.text_color_on_primary(*/#fff/*).colorAdjust(0,0,7.8,0)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle:after {
    content: "\e096";
    font-family: 'ev2';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > a:after {
    display: none;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent.accordion-open > a > span.evMenuAccordionToggle:after {
    content: "\e098";
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > ul {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    background: none transparent;
    box-shadow: none;
    color: inherit;
    padding-top: 1px;
    padding-bottom: 1px;
    }
#page-mobile #mobile-navigation ul.evMenu li.active > a {
    color: /*style.heading_color(*/#333/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.active > a > span.evMenuAccordionToggle {
    color: /*style.heading_color(*/#333/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a {
    padding-left: 94px;
    padding-right: 10px;
    width: auto;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a > .evMenuLinkThumbnail {
    top: 8px;
    left: /*style._content_gap(*/20px/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuColumn {
    padding-top: 0px;
    padding-bottom: 0px;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuColumn > ul {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuFooter > a {
    text-align: inherit;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuMegamenu ul {
    padding-right: 0;
    }
#page-mobile #mobile-navigation ul.evMenu.header-links {
    color: /*style.header_text_color(*//*).colorAdjust(0,0,0,-45)*/;
    }
#page-mobile #mobile-navigation ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent > a:after {
    display: none;
    }
#page-mobile #mobile-navigation ul.evMenu[data-tiers="1"] li[data-level="1"] > ul {
    display: none;
    }
#page-mobile #mobile-account {
    display: table;
    width: 100%;
    }
#page-mobile #mobile-account > .evButton {
    display: table-cell;
    width: 50%;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    border: 0px none;
    }
#page-mobile #mobile-account > .cell-divider {
    display: table-cell;
    width: 2px;
    min-width: 2px;
    }
#page-mobile #mobile-languages {
    color: /*style.header_text_color(*//*).colorAdjust(0,0,0,-45)*/;
    padding: 5px /*style._content_half_gap(*/10px/*)*/;
    }
#page-mobile #mobile-languages > .evButton {
    width: 100%;
    border: 0px none;
    padding: 0px /*style._content_half_gap(*/10px/*)*/ !important;
    text-align: left;
    }
#page-mobile #mobile-languages > .evButton > .icon {
    line-height: 48px;
    }
#page-mobile #mobile-languages > .evButton > .label {
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.fixed-nav #wrapper-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#mobile-search {
    display: block;
    }
.fixed-nav #page-mobile {
    width: 100%;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Navigation
    ----------
*/
#wrapper-navigation {
    z-index: 7;
    background-color: /*style.bg_colour_navigation(*/#F0F4F5/*)*/;
    color: /*style.text_colour_navigation(*/#797979/*)*/;
    position: relative;
    padding: 8px;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
#wrapper-navigation {
    display: none !important;
    }
}

#page-navigation ul.evMenu {
    white-space: normal;
    text-align: /*style.header_menu_alignment(*/center/*)*/;
    }
#page-navigation ul.evMenu > li {
    float: none;
    }
#page-navigation ul.evMenu > li > a {
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    padding: 4px 8px;
    text-align: center;
    }
#page-navigation ul.evMenu > li:not(:last-child) > a {
    border-right: 1px solid #66A6BF;
    }
#page-navigation ul.evMenu > li > a:hover,
#page-navigation ul.evMenu > li > a.hover,
#page-navigation ul.evMenu > li > a:focus,
#page-navigation ul.evMenu > li > a.focus,
#page-navigation ul.evMenu > li.active > a {
    text-decoration: none;
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.open a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.active a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout:hover a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.hover a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout:focus a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.focus a {
    background: transparent;
    text-decoration: inherit;
    color: inherit;
    }
#page-navigation ul.evMenu > li.evMenuMegamenu li:not(.evMenuLevel_2).active > a,
#page-navigation ul.evMenu > li.evMenuMegamenu li:not(.evMenuLevel_2) > a:hover {
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
#page-navigation ul.evMenu > li.evMenuMegamenu li:not(.evMenuLevel_2).evMenuParent ul {
    padding-left: 10px;
    display: none;
    }
#page-navigation ul.evMenu > li.evMenuMegamenu li.accordion-open > ul {
    display: block !important;
    }
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).open > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).active > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1):hover > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).hover > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1):focus > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).focus > a,
#page-navigation ul.evMenu li.evMenuFlyout li.open > a,
#page-navigation ul.evMenu li.evMenuFlyout li.active > a,
#page-navigation ul.evMenu li.evMenuFlyout li:hover > a,
#page-navigation ul.evMenu li.evMenuFlyout li.hover > a,
#page-navigation ul.evMenu li.evMenuFlyout li:focus > a,
#page-navigation ul.evMenu li.evMenuFlyout li.focus > a {
    background: /*style.primary(*/#cc232a/*)*/;
    text-decoration: none;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
#page-navigation ul.evMenu li.evMenuParent > a:after {
    content: "";
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul {
    padding: 0px;
    max-width: 900px;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2.evMenuParent {
    width: 300px;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2.evMenuParent > a {
    font-size: 18.2px;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2.evMenuParent > a .evMenuLinkTitle {
    white-space: normal !important;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent) {
    padding: 0;
    width: 25%;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent) .evMenuLinkTitle {
    white-space: normal;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent).open > a,
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent).active > a,
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent):hover > a,
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent).hover > a,
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent):focus > a,
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2:not(.evMenuParent).focus > a {
    background: /*style.primary(*/#cc232a/*)*/;
    text-decoration: none;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
#page-navigation ul.evMenu li.custom > a {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
#page-navigation ul.evMenu li.custom > a .evMenuLinkTitle {
    text-align: center;
    font-weight: normal;
    }
#page-navigation ul.evMenu li.custom > a:hover .evMenuLinkTitle {
    text-decoration: none;
    }
#page-navigation ul.evMenu .evMenuLinkTitle {
    white-space: nowrap;
    }
#page-navigation ul.evMenu .evMenuAccordionToggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    }
#page-navigation ul.evMenu .evMenuAccordionToggle:after {
    display: block;
    content: "\e098";
    font-family: 'ev2';
    padding: 0 10px;
    }
.accordion-open #page-navigation ul.evMenu .evMenuAccordionToggle:after {
    content: "\e097";
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#page-navigation {
    display: none;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Banner
    ------
*/
#wrapper-banner {
    z-index: 3;
    background-color: /*style.body_background_color(*/#fff/*)*/;
    box-shadow: 2px 2px 2px 1px rgba(0,0,0,.2);
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
#wrapper-banner {
    padding: 0 !important;
    }
}

#wrapper-banner .wrapper-inner {
    max-width: none;
    }
#wrapper-banner #page-banner {
    padding: 0px;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
#wrapper-banner #page-banner {
    margin: 0 !important;
    }
}

#page-banner .bannerMobile {
    display: none;
    }
@media screen and (max-width: /*style._first_content_break(*/1000px/*)*/) {
#page-banner .bannerDesktop {
    display: none;
    }
#page-banner .bannerMobile {
    display: block;
    }
#page-banner .bannerMobile .banner-image .banner-subimage,
#page-banner .bannerMobile .banner-image.content-right .banner-subimage,
#page-banner .bannerMobile .banner-image.content-left .banner-subimage {
    transform: none !important;
    max-width: 80%;
    max-height: 200px;
    }
#page-banner .banner-controller-container {
    top: calc(100% - 60px);
    }
#page-banner .evController li {
    box-shadow: 0 0 10px 3px rgba(0,0,0,.1);
    }
}

@media screen and (max-width: /*style._first_content_break(*/1000px/*)*/) {
#page-banner .banner-content-container {
    position: relative !important;
    padding-bottom: 50px;
    }
#page-banner .banner-content-container .wrapper {
    position: relative !important;
    }
#page-banner .banner-content-container .wrapper .content {
    position: relative !important;
    width: 100% !important;
    }
#page-banner .banner-content-container .wrapper .content.content-left .content_inner {
    text-align: center !important;
    }
#page-banner .banner-content-container .wrapper .content .content_inner {
    background: none;
    }
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference],
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid {
    max-width: 100%;
    }
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] h1,
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] h2,
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] h3,
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] h4,
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] h5,
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] h6,
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] .title,
#page-banner .banner-content-container .wrapper .content .content_inner div[data-reference] p,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable h1,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable h2,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable h3,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable h4,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable h5,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable h6,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable .title,
#page-banner .banner-content-container .wrapper .content .content_inner .evEditable p,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable h1,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable h2,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable h3,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable h4,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable h5,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable h6,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable .title,
#page-banner .banner-content-container .wrapper .content .content_inner eveditable p,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid h1,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid h2,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid h3,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid h4,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid h5,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid h6,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid .title,
#page-banner .banner-content-container .wrapper .content .content_inner .evLangid p {
    max-width: 100%;
    }
#page-banner .banner-content-container .wrapper .content:before {
    content: initial !important;
    }
}

#page-banner #evPageBanner,
#page-banner #evPageBanner2 {
    max-height: 85vh;
    }
#page-banner #evPageBanner a,
#page-banner #evPageBanner2 a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    }
#page-banner #evPageBanner .banner-image,
#page-banner #evPageBanner2 .banner-image {
    width: 100%;
    height: 100%;
    background-position: 50% center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    }
#page-banner #evPageBanner .banner-image.content-right .banner-subimage,
#page-banner #evPageBanner .banner-image .banner-subimage,
#page-banner #evPageBanner2 .banner-image.content-right .banner-subimage,
#page-banner #evPageBanner2 .banner-image .banner-subimage {
    transform: translateX(-50%);
    max-width: 50%;
    }
#page-banner #evPageBanner .banner-image.content-left .banner-subimage,
#page-banner #evPageBanner2 .banner-image.content-left .banner-subimage {
    transform: translateX(50%);
    max-width: 50%;
    }
#page-banner .banner-controller-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: /*style._content_width_with_gaps(*/1440px/*)*/;
    margin: 0 auto;
    padding-left: /*style._content_gap(*/20px/*)*/;
    padding-right: /*style._content_gap(*/20px/*)*/;
    text-align: /*style.banner_controller_align(*/center/*)*/;
    z-index: 3;
    }
#page-banner .banner-controller-container ul.evController {
    float: none;
    padding: /*style._content_two_third_gap(*/20px/*)*/ 0;
    }
#page-banner .banner-content-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    pointer-events: none;
    }
#page-banner .banner-content-container .wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    }
#page-banner .banner-content-container .content {
    display: flex;
    align-items: center;
    pointer-events: auto;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: 0 /*style._content_gap(*/20px/*)*/;
    height: 100%;
    max-width: 100%;
    width: 720px;
    top: 0;
    }
#page-banner .banner-content-container .content .content_inner {
    padding: /*style._content_gap(*/20px/*)*/ 0 /*style._content_double_gap(*/40px/*)*/;
    margin: 0;
    z-index: 2;
    position: relative;
    }
#page-banner .banner-content-container .content .content_inner h1,
#page-banner .banner-content-container .content .content_inner h2,
#page-banner .banner-content-container .content .content_inner h3,
#page-banner .banner-content-container .content .content_inner h4,
#page-banner .banner-content-container .content .content_inner h5,
#page-banner .banner-content-container .content .content_inner h6,
#page-banner .banner-content-container .content .content_inner .title {
    color: inherit;
    }
#page-banner .banner-content-container .content .content_inner div[data-reference],
#page-banner .banner-content-container .content .content_inner .evEditable,
#page-banner .banner-content-container .content .content_inner eveditable,
#page-banner .banner-content-container .content .content_inner .evLangid {
    max-width: 450px;
    }
#page-banner .banner-content-container .content .content_inner div[data-reference] h1,
#page-banner .banner-content-container .content .content_inner div[data-reference] h2,
#page-banner .banner-content-container .content .content_inner div[data-reference] h3,
#page-banner .banner-content-container .content .content_inner div[data-reference] h4,
#page-banner .banner-content-container .content .content_inner div[data-reference] h5,
#page-banner .banner-content-container .content .content_inner div[data-reference] h6,
#page-banner .banner-content-container .content .content_inner div[data-reference] .title,
#page-banner .banner-content-container .content .content_inner div[data-reference] p,
#page-banner .banner-content-container .content .content_inner .evEditable h1,
#page-banner .banner-content-container .content .content_inner .evEditable h2,
#page-banner .banner-content-container .content .content_inner .evEditable h3,
#page-banner .banner-content-container .content .content_inner .evEditable h4,
#page-banner .banner-content-container .content .content_inner .evEditable h5,
#page-banner .banner-content-container .content .content_inner .evEditable h6,
#page-banner .banner-content-container .content .content_inner .evEditable .title,
#page-banner .banner-content-container .content .content_inner .evEditable p,
#page-banner .banner-content-container .content .content_inner eveditable h1,
#page-banner .banner-content-container .content .content_inner eveditable h2,
#page-banner .banner-content-container .content .content_inner eveditable h3,
#page-banner .banner-content-container .content .content_inner eveditable h4,
#page-banner .banner-content-container .content .content_inner eveditable h5,
#page-banner .banner-content-container .content .content_inner eveditable h6,
#page-banner .banner-content-container .content .content_inner eveditable .title,
#page-banner .banner-content-container .content .content_inner eveditable p,
#page-banner .banner-content-container .content .content_inner .evLangid h1,
#page-banner .banner-content-container .content .content_inner .evLangid h2,
#page-banner .banner-content-container .content .content_inner .evLangid h3,
#page-banner .banner-content-container .content .content_inner .evLangid h4,
#page-banner .banner-content-container .content .content_inner .evLangid h5,
#page-banner .banner-content-container .content .content_inner .evLangid h6,
#page-banner .banner-content-container .content .content_inner .evLangid .title,
#page-banner .banner-content-container .content .content_inner .evLangid p {
    max-width: 450px;
    }
@media (max-width: /*style._pod_content_width_with_padding(*/460px/*)*/) {
#page-banner .banner-content-container .content .content_inner div[data-reference],
#page-banner .banner-content-container .content .content_inner .evEditable,
#page-banner .banner-content-container .content .content_inner eveditable,
#page-banner .banner-content-container .content .content_inner .evLangid {
    max-width: 100%;
    width: auto;
    }
#page-banner .banner-content-container .content .content_inner div[data-reference] h1,
#page-banner .banner-content-container .content .content_inner div[data-reference] h2,
#page-banner .banner-content-container .content .content_inner div[data-reference] h3,
#page-banner .banner-content-container .content .content_inner div[data-reference] h4,
#page-banner .banner-content-container .content .content_inner div[data-reference] h5,
#page-banner .banner-content-container .content .content_inner div[data-reference] h6,
#page-banner .banner-content-container .content .content_inner div[data-reference] .title,
#page-banner .banner-content-container .content .content_inner div[data-reference] p,
#page-banner .banner-content-container .content .content_inner .evEditable h1,
#page-banner .banner-content-container .content .content_inner .evEditable h2,
#page-banner .banner-content-container .content .content_inner .evEditable h3,
#page-banner .banner-content-container .content .content_inner .evEditable h4,
#page-banner .banner-content-container .content .content_inner .evEditable h5,
#page-banner .banner-content-container .content .content_inner .evEditable h6,
#page-banner .banner-content-container .content .content_inner .evEditable .title,
#page-banner .banner-content-container .content .content_inner .evEditable p,
#page-banner .banner-content-container .content .content_inner eveditable h1,
#page-banner .banner-content-container .content .content_inner eveditable h2,
#page-banner .banner-content-container .content .content_inner eveditable h3,
#page-banner .banner-content-container .content .content_inner eveditable h4,
#page-banner .banner-content-container .content .content_inner eveditable h5,
#page-banner .banner-content-container .content .content_inner eveditable h6,
#page-banner .banner-content-container .content .content_inner eveditable .title,
#page-banner .banner-content-container .content .content_inner eveditable p,
#page-banner .banner-content-container .content .content_inner .evLangid h1,
#page-banner .banner-content-container .content .content_inner .evLangid h2,
#page-banner .banner-content-container .content .content_inner .evLangid h3,
#page-banner .banner-content-container .content .content_inner .evLangid h4,
#page-banner .banner-content-container .content .content_inner .evLangid h5,
#page-banner .banner-content-container .content .content_inner .evLangid h6,
#page-banner .banner-content-container .content .content_inner .evLangid .title,
#page-banner .banner-content-container .content .content_inner .evLangid p {
    max-width: 100%;
    }
}

@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
#page-banner .banner-content-container .content .content_inner {
    padding: /*style._content_gap(*/20px/*)*/ /*style._content_half_gap(*/10px/*)*/ /*style._content_double_gap(*/40px/*)*/;
    background: rgba(255,255,255,.7);
    }
}

#page-banner .banner-content-container .content,
#page-banner .banner-content-container .content.content-left {
    position: absolute;
    right: 50%;
    }
#page-banner .banner-content-container .content .content_inner,
#page-banner .banner-content-container .content.content-left .content_inner {
    text-align: left;
    }
#page-banner .banner-content-container .content.content-center {
    position: relative;
    margin: 0 auto;
    right: auto;
    }
#page-banner .banner-content-container .content.content-center .content_inner {
    margin: 0 auto;
    text-align: center;
    }
#page-banner .banner-content-container .content.content-right {
    position: absolute;
    left: 50%;
    right: auto;
    }
#page-banner .banner-content-container .content.content-right .content_inner {
    margin: 0 0 0 auto;
    text-align: left;
    }
@media (max-width:/*style._content_width(*/1440px/*)*/) {
#page-banner .banner-content-container .content,
#page-banner .banner-content-container .content.content-left {
    position: absolute;
    right: auto;
    left: 0;
    }
#page-banner .banner-content-container .content.content-center {
    position: relative;
    margin: 0 auto;
    right: auto;
    }
#page-banner .banner-content-container .content.content-right {
    position: absolute;
    left: auto;
    right: 0;
    }
}

#page-banner.homepageBanner .banner-content-container .content {
    display: flex;
    align-items: center;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: 0 /*style._content_gap(*/20px/*)*/;
    height: 100%;
    max-width: 100%;
    width: 720px;
    }
#page-banner.homepageBanner .banner-content-container .content:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 50vw;
    z-index: 1;
    background: /*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/;
    background: -moz-linear-gradient(left,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 0%,/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: -webkit-linear-gradient(left,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 0%/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: linear-gradient(to right,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 0%,/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=1);
    }
#page-banner.homepageBanner .banner-content-container .content.content-center:before {
    right: auto;
    left: -50vw;
    width: 200vw;
    background: /*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/;
    background: -moz-linear-gradient(top,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 0%,/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: -webkit-linear-gradient(top,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 0%/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: linear-gradient(to bottom,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 0%,/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=0);
    }
#page-banner.homepageBanner .banner-content-container .content.content-right:before {
    right: auto;
    left: 0;
    background: /*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/;
    background: -moz-linear-gradient(left,/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100)*/ 0%,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 100%);
    background: -webkit-linear-gradient(left,/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100)*/ 0%/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 100%);
    background: linear-gradient(to right,/*style.banner_content_background_color(*/rgba(0,0,0,0)/*).colorAdjust(0,0,0,-100)*/ 0%,/*style.banner_content_background_color(*/rgba(0,0,0,.25)/*).colorAdjust(0,0,0,-75)*/ 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#3F000000',GradientType=1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#3F000000',GradientType=1);
    }
@media (max-width:/*style._content_width(*/1440px/*)*/) {
#page-banner.homepageBanner .banner-content-container .content:before,
#page-banner.homepageBanner .banner-content-container .content.content-left:before {
    left: 0;
    }
#page-banner.homepageBanner .banner-content-container .content.content-right:before {
    right: 0;
    left: auto;
    }
}

#page-banner.standardPageBanner .banner-content-container .content {
    height: 100%;
    max-width: 100%;
    width: 720px;
    }
#page-banner.standardPageBanner .banner-content-container .content .content_inner {
    width: /*style._standard_banner_content_width_with_padding(*/600px/*)*/;
    max-width: 100%;
    background: /*style.standard_banner_content_background_color(*/rgba(255,255,255,.95)/*).colorAdjust(0,0,0,-5)*/;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: /*style._content_gap(*/20px/*)*/;
    }
#page-banner.standardPageBanner .banner-content-container .content .content_inner div[data-reference],
#page-banner.standardPageBanner .banner-content-container .content .content_inner .evEditable,
#page-banner.standardPageBanner .banner-content-container .content .content_inner eveditable,
#page-banner.standardPageBanner .banner-content-container .content .content_inner .evLangid {
    max-width: 100%;
    width: auto;
    }
@media (max-width:/*style._content_width(*/1440px/*)*/) {
#page-banner.standardPageBanner .banner-content-container .content:before,
#page-banner.standardPageBanner .banner-content-container .content.content-left:before {
    left: 0;
    }
#page-banner.standardPageBanner .banner-content-container .content.content-right:before {
    right: 0;
    left: auto;
    }
}

#page-banner.categoryBanner #evPageBanner,
#page-banner.categoryBanner #evPageBanner2 {
    height: 335px;
    background: /*style.body_background_color(*/#fff/*)*/;
    }
#page-banner.categoryBanner .content {
    width: /*style._standard_banner_content_width_with_padding(*/600px/*)*/;
    transform: translateX(50%);
    }
#page-banner.categoryBanner .content .content_inner {
    width: 100%;
    background: /*style.standard_banner_content_background_color(*/rgba(255,255,255,.95)/*).colorAdjust(0,0,0,-5)*/;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: /*style._content_gap(*/20px/*)*/;
    }
#page-banner.categoryBanner .content .content_inner div[data-reference],
#page-banner.categoryBanner .content .content_inner .evEditable,
#page-banner.categoryBanner .content .content_inner eveditable,
#page-banner.categoryBanner .content .content_inner .evLangid {
    max-width: 100%;
    width: auto;
    }
@media (max-width:/*style._content_width(*/1440px/*)*/) {
#page-banner.categoryBanner .content {
    right: 50%;
    left: auto;
    }
}

@media (max-width:/*style._second_content_break(*/448px/*)*/) {
#page-banner.categoryBanner .content {
    width: 100%;
    }
#page-banner.categoryBanner .content .content_inner {
    width: 100%;
    }
}

h1.banner-title,
h2.banner-title,
h3.banner-title,
h4.banner-title,
h5.banner-title,
h6.banner-title,
.title.banner-title {
    font-size: 4em;
    font-weight: 500 !important;
    line-height: 74px;
    margin: 0;
    color: #cc232a !important;
    }
h1.banner-title ~ p,
h2.banner-title ~ p,
h3.banner-title ~ p,
h4.banner-title ~ p,
h5.banner-title ~ p,
h6.banner-title ~ p,
.title.banner-title ~ p {
    color: #858484;
    font-size: 1.1em;
    }

/* Flexbox Enhancement */
.flexbox #page-banner .banner-content-container .wrapper {
    display: flex;
    align-items: center;
    }
@media (max-width:/*style._first_content_break(*/1000px/*)*/) {
#wrapper-banner #page-banner {
    margin: 0 15px;
    }
}

@media (max-width:/*style._second_content_break(*/448px/*)*/) {
#wrapper-banner #page-banner {
    margin: 0 10px;
    }
#page-banner .banner-content-container .content {
    padding: 0 /*style._content_two_third_gap(*/20px/*)*/;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Body
    ----
*/
#wrapper-body,
#wrapper-breadcrumbs {
    z-index: 4;
    background-color: /*style._body_background(*/#F0F4F5/*)*/;
    background-image: /*style.body_background_image(*/url()/*)*/;
    color: /*style.text_color(*/#686868/*)*/;
    }
#page-breadcrumbs a:link,
#page-breadcrumbs a:visited {
    color: inherit;
    }
#page-breadcrumbs a:hover,
#page-breadcrumbs a.hover,
#page-breadcrumbs a:focus,
#page-breadcrumbs a.focus {
    color: /*style.primary(*/#cc232a/*)*/;
    }
#page-breadcrumbs ul.evBreadcrumbs {
    text-transform: none;
    display: /*style.breadcrumbs_toggle(*/block/*)*/;
    padding: /*style._content_half_gap(*/10px/*)*/ /*style._content_gap(*/20px/*)*/;
    }
@media (max-width:/*style._first_content_break_min(*/1001px/*)*/) {
#page-breadcrumbs ul.evBreadcrumbs {
    padding: /*style._content_half_gap(*/10px/*)*/ /*style._content_double_gap(*/40px/*)*/;
    }
}

@media (max-width:/*style._second_content_break_min(*/449px/*)*/) {
#page-breadcrumbs ul.evBreadcrumbs {
    padding: /*style._content_half_gap(*/10px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
}

#page-breadcrumbs ul.evBreadcrumbs,
#page-breadcrumbs ul.evBreadcrumbs span {
    font-size: 13px;
    }
#page-breadcrumbs ul.evBreadcrumbs li {
    vertical-align: middle;
    padding: 2px 0px;
    }
#page-breadcrumbs ul.evBreadcrumbs li.separator {
    padding-left: 5px;
    padding-right: 5px;
    }
#page-breadcrumbs ul.evBreadcrumbs li.separator {
    padding: 0 5px;
    font-size: 0;
    font-weight: lighter;
    line-height: 0;
    }
#page-breadcrumbs ul.evBreadcrumbs li.separator:before {
    font-family: "ev2";
    font-size: 15px;
    line-height: 15px;
    content: "\e092";
    content: /*style.breadcrumbs_separator(*/"\e092"/*)*/;
    }
#page-body .breadcrumbsContainer,
#page-body ul.evBreadcrumbs {
    display: none;
    }
#page-body aside,
#page-body .aside {
    flex: 0 0 300px;
    }
#page-body aside .asideItem .asideItem-heading,
#page-body aside .asideItem h1,
#page-body aside .asideItem h2,
#page-body aside .asideItem h3,
#page-body aside .asideItem h4,
#page-body aside .asideItem h5,
#page-body aside .asideItem h6,
#page-body aside .asideItem .title,
#page-body .aside .asideItem .asideItem-heading,
#page-body .aside .asideItem h1,
#page-body .aside .asideItem h2,
#page-body .aside .asideItem h3,
#page-body .aside .asideItem h4,
#page-body .aside .asideItem h5,
#page-body .aside .asideItem h6,
#page-body .aside .asideItem .title {
    margin-bottom: 7px;
    }
#page-body aside .asideItem .asideItem-heading.last,
#page-body aside .asideItem .asideItem-heading:last-child,
#page-body aside .asideItem h1.last,
#page-body aside .asideItem h1:last-child,
#page-body aside .asideItem h2.last,
#page-body aside .asideItem h2:last-child,
#page-body aside .asideItem h3.last,
#page-body aside .asideItem h3:last-child,
#page-body aside .asideItem h4.last,
#page-body aside .asideItem h4:last-child,
#page-body aside .asideItem h5.last,
#page-body aside .asideItem h5:last-child,
#page-body aside .asideItem h6.last,
#page-body aside .asideItem h6:last-child,
#page-body aside .asideItem .title.last,
#page-body aside .asideItem .title:last-child,
#page-body .aside .asideItem .asideItem-heading.last,
#page-body .aside .asideItem .asideItem-heading:last-child,
#page-body .aside .asideItem h1.last,
#page-body .aside .asideItem h1:last-child,
#page-body .aside .asideItem h2.last,
#page-body .aside .asideItem h2:last-child,
#page-body .aside .asideItem h3.last,
#page-body .aside .asideItem h3:last-child,
#page-body .aside .asideItem h4.last,
#page-body .aside .asideItem h4:last-child,
#page-body .aside .asideItem h5.last,
#page-body .aside .asideItem h5:last-child,
#page-body .aside .asideItem h6.last,
#page-body .aside .asideItem h6:last-child,
#page-body .aside .asideItem .title.last,
#page-body .aside .asideItem .title:last-child {
    margin: 0;
    }
#page-body aside .asideItem .asideItem-heading a:link,
#page-body aside .asideItem .asideItem-heading a:visited,
#page-body aside .asideItem h1 a:link,
#page-body aside .asideItem h1 a:visited,
#page-body aside .asideItem h2 a:link,
#page-body aside .asideItem h2 a:visited,
#page-body aside .asideItem h3 a:link,
#page-body aside .asideItem h3 a:visited,
#page-body aside .asideItem h4 a:link,
#page-body aside .asideItem h4 a:visited,
#page-body aside .asideItem h5 a:link,
#page-body aside .asideItem h5 a:visited,
#page-body aside .asideItem h6 a:link,
#page-body aside .asideItem h6 a:visited,
#page-body aside .asideItem .title a:link,
#page-body aside .asideItem .title a:visited,
#page-body .aside .asideItem .asideItem-heading a:link,
#page-body .aside .asideItem .asideItem-heading a:visited,
#page-body .aside .asideItem h1 a:link,
#page-body .aside .asideItem h1 a:visited,
#page-body .aside .asideItem h2 a:link,
#page-body .aside .asideItem h2 a:visited,
#page-body .aside .asideItem h3 a:link,
#page-body .aside .asideItem h3 a:visited,
#page-body .aside .asideItem h4 a:link,
#page-body .aside .asideItem h4 a:visited,
#page-body .aside .asideItem h5 a:link,
#page-body .aside .asideItem h5 a:visited,
#page-body .aside .asideItem h6 a:link,
#page-body .aside .asideItem h6 a:visited,
#page-body .aside .asideItem .title a:link,
#page-body .aside .asideItem .title a:visited {
    color: inherit;
    }
#page-body aside .asideItem.asideMenu:not(.filterMenu) .asideItem-content,
#page-body .aside .asideItem.asideMenu:not(.filterMenu) .asideItem-content {
    margin: 0 -10px;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
#page-body aside .asideItem.asideMenu:not(.filterMenu) .asideItem-content,
#page-body .aside .asideItem.asideMenu:not(.filterMenu) .asideItem-content {
    margin: 0;
    }
}

#page-body main,
#page-body .main,
#page-body .bodyContainer {
    width: 100%;
    margin: 0 auto;
    }
#page-body .bodyContainer {
    padding: 20px;
    background: #fff;
    }
.flexbox #page-body {
    display: flex;
    flex-flow: row wrap;
    }
.flexbox #page-body aside,
.flexbox #page-body .aside {
    flex: 0 0 /*style._aside_width(*/300px/*)*/;
    height: 556px;
    }
.flexbox #page-body aside + main,
.flexbox #page-body aside + .main,
.flexbox #page-body .aside + main,
.flexbox #page-body .aside + .main {
    flex: 1 0 0;
    float: none;
    margin-bottom: 40px;
    }
.flexbox #page-body aside .asideSection,
.flexbox #page-body .aside .asideSection {
    background: #fff;
    padding: 20px;
    }
.flexbox #page-body aside .get-in-touch,
.flexbox #page-body .aside .get-in-touch {
    padding: 20px;
    background: #FFF;
    margin-top: 20px;
    }
.flexbox #page-body aside .get-in-touch h4,
.flexbox #page-body .aside .get-in-touch h4 {
    color: #cc232a;
    margin-bottom: 10px;
    }
.flexbox #page-body aside .get-in-touch a button,
.flexbox #page-body .aside .get-in-touch a button {
    background: #cc232a;
    color: #FFF;
    padding: 15px 20px;
    border: none;
    box-shadow: none;
    border-radius: 4px;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.flexbox #page-body aside,
.flexbox #page-body .aside {
    order: 1;
    padding: /*style._content_gap(*/20px/*)*/ 0px 0px;
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    margin: 0 auto;
    }
.flexbox #page-body aside .asideItem,
.flexbox #page-body .aside .asideItem {
    text-align: center;
    }
.flexbox #page-body aside .asideItem.asideMenu,
.flexbox #page-body .aside .asideItem.asideMenu {
    text-align: left;
    }
.flexbox #page-body aside + main,
.flexbox #page-body aside + .main,
.flexbox #page-body .aside + main,
.flexbox #page-body .aside + .main {
    flex: initial;
    width: 100%;
    }
}

.flexbox .sortPageWrap {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: end;
    }
.flexbox .sortPageWrap.padL {
    padding-left: /*style._aside_width_with_gaps(*/370px/*)*/;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
.flexbox .sortPageWrap {
    flex-flow: row wrap;
    }
.flexbox .sortPageWrap,
.flexbox .sortPageWrap.padL {
    padding: 0;
    }
.flexbox .sortPageWrap #viewButton-container {
    display: none;
    }
}

@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) and (min-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.flexbox .sortPageWrap {
    margin: 0 -40px;
    }
.flexbox .sortPageWrap .pagination-container {
    width: auto;
    margin-left: auto;
    }
.flexbox .sortPageWrap .evSelectButton > .evButton {
    padding: 0 !important;
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.flexbox .sortPageWrap {
    flex-flow: row wrap;
    justify-content: center;
    }
.flexbox .sortPageWrap .pagination-container {
    text-align: center;
    }
}

@media (max-width:/*style._second_content_break_max(*/448px/*)*/) {
.flexbox .sortPageWrap .perpage-container {
    padding-left: 0;
    }
.flexbox .sortPageWrap .sortpage-container,
.flexbox .sortPageWrap .perpage-container {
    width: 80%;
    }
}

@media (min-width:/*style._second_special_content_break_min(*/701px/*)*/) {
.sortpage-container.perpage-container,
.perpage-container.perpage-container {
    padding-left: 16px;
    }
}

@media (min-width:/*style._first_content_break_max(*/1000px/*)*/) {
.sortpage-container {
    padding-left: 0px;
    margin-left: 5px;
    }
}

@media (min-width: 702px) {
.sortpage-container span.sort-title {
    display: none;
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.pagination-container .evPagination {
    margin-top: /*style._content_third_gap(*/10px/*)*/;
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
}

/*
     * Other specific stuff not in pages/
     *
     */
#evAuthRegisterForm > .gridContainer {
    margin: 0;
    }
#evAuthLoginArea,
#evCheckoutLoginArea {
    padding: 10px;
    }
.blog_latest {
    order: 3;
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.blog_latest {
    padding-top: 0;
    }
.blog_latest > .contentSection {
    padding-bottom: 0;
    }
}

.searchTypeDropdown.evDropdown > .content {
    margin-top: 15px;
    }
.searchTypeDropdown.evDropdown ul.evListOfOptions li a {
    padding: 0 !important;
    }
@media (max-width: 500px) {
#evTicketForm .eventTicketQTY {
    width: 100%;
    text-align: right;
    }
#evTicketForm .eventTicketQTY:before {
    content: "Amount: ";
    }
#evTicketForm .eventTicketQTY .fieldArea {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    }
}

#evAccountScreen h1,
#evAccountScreen h2 {
    font-family: /*style.heading_font_family(*/"Open Sans"/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    line-height: /*style.heading_line_height(*/1.143/*)*/;
    text-transform: /*style.heading_text_transformation(*/none/*)*/;
    color: /*style.heading_color(*/#333/*)*/;
    font-size: /*style.h4_font_size(*/20px/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-weight: bold;
    }
#evAccountScreen h3,
#evAccountScreen h4 {
    font-family: /*style.heading_font_family(*/"Open Sans"/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    line-height: /*style.heading_line_height(*/1.143/*)*/;
    text-transform: /*style.heading_text_transformation(*/none/*)*/;
    color: /*style.heading_color(*/#333/*)*/;
    font-size: /*style.h5_font_size(*/18px/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    }
#evCartUpsellScreen form > .contentSection.doublepad.stdpad > .inline-block.vAlignMiddle.stdpad {
    padding: 10px 0;
    margin-left: -10px;
    }
#evCartUpsellScreen table.standard td:first-child {
    width: 70px;
    }
#evCartUpsellScreen table.standard td:first-child input {
    text-align: right;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
#evCartUpsellScreen table.standard td:nth-child(2),
#evCartUpsellScreen table.standard td:nth-child(3) {
    display: none;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Footer
    ------
*/
#wrapper-product-footer > div {
    margin-top: /*style._content_gap(*/20px/*)*/;
    background: /*style.body_background_color(*/#fff/*)*/;
    }
#wrapper-product-footer #product-footer {
    padding-bottom: /*style._content_half_gap(*/10px/*)*/;
    }
@media (max-width:/*style._first_content_break(*/1000px/*)*/) {
#wrapper-product-footer {
    margin: 0 -20px;
    padding: 0 /*style._content_gap(*/20px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#wrapper-product-footer {
    margin: 0 -10px;
    padding: 0 /*style._content_third_gap(*/10px/*)*/;
    }
}

#wrapper-footer-upper {
    z-index: 2;
    }
#footer-upper {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: /*style._content_gap(*/20px/*)*/;
    padding-right: /*style._content_gap(*/20px/*)*/;
    }
@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#footer-upper {
    padding: /*style._content_four_third_gap(*/40px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
}

#wrapper-footer {
    z-index: 2;
    background-color: white;
    background-image: /*style.newsletter_background_image(*/url()/*)*/;
    color: /*style.newsletter_text_color(*/#686868/*)*/;
    }
#wrapper-footer #page-footer {
    padding-top: 35px;
    padding-bottom: 35px;
    }
#wrapper-footer #page-footer padding-right: /*style._content_gap(*/20px/*)*/ h1,
#wrapper-footer #page-footer padding-right: /*style._content_gap(*/20px/*)*/ h2,
#wrapper-footer #page-footer padding-right: /*style._content_gap(*/20px/*)*/ h3,
#wrapper-footer #page-footer padding-right: /*style._content_gap(*/20px/*)*/ h4,
#wrapper-footer #page-footer padding-right: /*style._content_gap(*/20px/*)*/ h5,
#wrapper-footer #page-footer padding-right: /*style._content_gap(*/20px/*)*/ h6,
#wrapper-footer #page-footer padding-right: /*style._content_gap(*/20px/*)*/ .title {
    margin-bottom: 7px;
    }
#wrapper-footer #page-footer > .row {
    display: table;
    width: 100%;
    }
#wrapper-footer #page-footer > .row > div {
    display: table-cell;
    vertical-align: top;
    padding: /*style._content_gap(*/20px/*)*/;
    padding-top: 0px;
    }
#wrapper-footer #page-footer #footer-content .columns2,
#wrapper-footer #page-footer #footer-content .columns3,
#wrapper-footer #page-footer #footer-content .columns4 {
    margin: -10px;
    }
#wrapper-footer #page-footer #footer-newsletter {
    width: 430px;
    max-width: 100%;
    float: right;
    }
#wrapper-footer #page-footer #footer-newsletter .newsletter-heading {
    padding-left: 70px;
    position: relative;
    line-height: 50px;
    }
#wrapper-footer #page-footer #footer-newsletter .newsletter-heading .newsletter-icon {
    position: absolute;
    left: 0;
    top: 0;
    }
#wrapper-footer #page-footer #footer-newsletter form {
    margin-top: /*style._content_gap(*/20px/*)*/;
    }
#wrapper-footer .wrapper-inner {
    margin-top: 30px;
    }
#wrapper-footer .wrapper-inner p.trusted {
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    }
#wrapper-footer .wrapper-inner .footer-logos {
    width: 380px;
    max-width: 100%;
    float: left;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    }
#wrapper-footer .wrapper-inner .footer-logos div {
    position: relative;
    width: 50%;
    padding: 5px 5px 20px;
    }
@media screen and (max-width: /*style._content_width(*/1440px/*)*/) {
.flexbox #page-footer {
    display: flex;
    flex-flow: row nowrap;
    }
.flexbox #page-footer .footer-logos {
    height: 100%;
    }
.flexbox #page-footer > .row {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    }
.flexbox #page-footer > .row > div {
    display: block;
    padding: /*style._content_gap(*/20px/*)*/;
    padding-top: 0px;
    }
.flexbox #page-footer #footer-newsletter {
    min-width: 0px;
    width: 100%;
    margin-left: auto;
    }
}

@media screen and (max-width: 1250px) {
.flexbox #page-footer {
    flex-flow: row wrap;
    }
.flexbox #page-footer #footer-lower-links {
    margin: 0 auto;
    }
.flexbox #page-footer #footer-newsletter {
    margin: 30px auto;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.flexbox #page-footer {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    }
.flexbox #page-footer #footer-lower-links {
    margin: 30px auto 0;
    }
.flexbox #page-footer > .row {
    text-align: center;
    }
}

.telephone-footer {
    display: block;
    margin-top: 30px;
    padding-left: 45px;
    position: relative;
    }
.telephone-footer img {
    position: absolute;
    max-width: 40px;
    left: 0;
    top: 10px;
    }
.telephone-footer .tel-number {
    font-size: 1.8em;
    color: /*style.primary(*/#cc232a/*)*/;
    font-weight: 600;
    margin: 0;
    }
.address-footer {
    display: block;
    margin-top: 30px;
    padding-left: 45px;
    position: relative;
    }
.address-footer img {
    position: absolute;
    max-width: 40px;
    left: 0;
    top: 10px;
    }

/*
    Lower Footer
    ------------
*/
#wrapper-footer-lower {
    z-index: 5;
    position: relative;
    background-color: /*style.footer_background_color(*/#404040/*)*/;
    color: /*style.footer_text_color(*/#fff/*)*/;
    }
#page-footer-lower {
    width: 100%;
    display: table;
    padding-left: /*style._content_two_third_gap(*/20px/*)*/;
    padding-right: /*style._content_two_third_gap(*/20px/*)*/;
    font-weight: bold;
    }
#page-footer-lower a:link,
#page-footer-lower a:visited,
#page-footer-lower a:hover,
#page-footer-lower a.hover,
#page-footer-lower a:focus,
#page-footer-lower a.focus {
    color: inherit;
    }
#page-footer-lower ul {
    padding: 0;
    list-style: none;
    }
#page-footer-lower ul.evMenu > li {
    border-bottom: 2px solid transparent;
    transition: all .15s ease-in-out;
    }
#page-footer-lower ul.evMenu > li.evMenuLevel_1.active,
#page-footer-lower ul.evMenu > li.evMenuLevel_1:hover,
#page-footer-lower ul.evMenu > li.evMenuLevel_1.hover,
#page-footer-lower ul.evMenu > li.evMenuLevel_1:focus,
#page-footer-lower ul.evMenu > li.evMenuLevel_1.focus {
    border-bottom-color: /*style.primary(*/#cc232a/*)*/;
    }
#page-footer-lower ul.evMenu > li > a:hover,
#page-footer-lower ul.evMenu > li > a.hover,
#page-footer-lower ul.evMenu > li > a:focus,
#page-footer-lower ul.evMenu > li > a.focus,
#page-footer-lower ul.evMenu > li.active > a {
    text-decoration: none;
    }
#page-footer-lower ul.evSocialLinks,
#page-footer-lower ul.evByLinks {
    font-size: 0px;
    vertical-align: middle;
    color: #fff;
    }
#page-footer-lower ul.evSocialLinks li a,
#page-footer-lower ul.evByLinks li a {
    text-decoration: none;
    }
#page-footer-lower ul.evSocialLinks li a .socialIcon,
#page-footer-lower ul.evSocialLinks li a .shareIcon,
#page-footer-lower ul.evSocialLinks li a .byIcon,
#page-footer-lower ul.evByLinks li a .socialIcon,
#page-footer-lower ul.evByLinks li a .shareIcon,
#page-footer-lower ul.evByLinks li a .byIcon {
    margin-right: 5px;
    color: inherit;
    }
#page-footer-lower ul.evSocialLinks li a .socialIcon:before,
#page-footer-lower ul.evSocialLinks li a .shareIcon:before,
#page-footer-lower ul.evSocialLinks li a .byIcon:before,
#page-footer-lower ul.evByLinks li a .socialIcon:before,
#page-footer-lower ul.evByLinks li a .shareIcon:before,
#page-footer-lower ul.evByLinks li a .byIcon:before {
    color: inherit;
    }
#page-footer-lower ul.evSocialLinks li a .socialIcon + .label,
#page-footer-lower ul.evSocialLinks li a .shareIcon + .label,
#page-footer-lower ul.evSocialLinks li a .byIcon + .label,
#page-footer-lower ul.evByLinks li a .socialIcon + .label,
#page-footer-lower ul.evByLinks li a .shareIcon + .label,
#page-footer-lower ul.evByLinks li a .byIcon + .label {
    display: none;
    }
#page-footer-lower #footer-poweredby,
#page-footer-lower #footer-lower,
#page-footer-lower #footer-sociallinks {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    padding: /*style._content_third_gap(*/10px/*)*/;
    float: left;
    }
#page-footer-lower #footer-lower {
    width: 100%;
    white-space: normal;
    }
#page-footer-lower #footer-lower ul.evMenu.evMenu--inline {
    margin: 0;
    }
#page-footer-lower #footer-lower ul.evMenu.evMenu--inline li {
    text-align: inherit;
    }
.flexbox #page-footer-lower {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0 /*style._content_half_gap(*/10px/*)*/;
    }
.flexbox #page-footer-lower #footer-poweredby,
.flexbox #page-footer-lower #footer-lower,
.flexbox #page-footer-lower #footer-sociallinks {
    padding: 3px /*style._content_half_gap(*/10px/*)*/ 0;
    }
.flexbox #page-footer-lower #footer-lower {
    flex: 1 0 440px;
    }
.flexbox #page-footer-lower #footer-lower ul {
    white-space: normal;
    }
.flexbox #page-footer-lower #footer-poweredby,
.flexbox #page-footer-lower #footer-sociallinks {
    flex: 0 1 0;
    line-height: 30px;
    padding: 8px 0;
    }
@media screen and (max-width: /*style._content_width(*/1440px/*)*/) {
.flexbox #page-lower {
    justify-content: space-around;
    }
.flexbox #page-lower #footer-lower {
    flex: 0 1 440px;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.flexbox #page-footer-lower {
    padding: 0 30px /*style._content_two_third_gap(*/20px/*)*/;
    }
.flexbox #page-footer-lower #footer-lower {
    padding: 0 5px;
    flex: 0 1 100%;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu {
    margin-top: /*style._content_two_third_gap(*/20px/*)*/;
    text-align: inherit;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu li {
    float: left;
    clear: left;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu li a {
    padding: 5px /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox #page-footer-lower #footer-sociallinks {
    padding-top: /*style._content_gap(*/20px/*)*/;
    flex: 0 1 100%;
    }
.flexbox #page-footer-lower #footer-sociallinks .label {
    display: block;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox #page-footer-lower #footer-sociallinks .evSocialLinks {
    margin-left: -7px;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#page-footer {
    padding: /*style._content_gap(*/20px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox #page-footer-lower {
    padding: 0 /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    }
.flexbox #page-footer-lower #footer-lower {
    padding: 0;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu li a {
    padding-left: 0;
    }
.flexbox #page-footer-lower #footer-sociallinks {
    padding: /*style._content_gap(*/20px/*)*/ 0;
    }
}

/* Footer - Newsletter styles */
.newsletter-icon {
    margin-right: 20px;
    }
.footer-reg {
    margin-left: auto;
    }

/* Footer Navigation links */
#footer-lower-links {
    display: inline-block;
    max-width: 500px;
    width: 100%;
    }
@media screen and (max-width: 1000px) {
#footer-lower-links {
    display: block;
    }
}

#footer-lower-links ul.evMenu {
    white-space: normal;
    }
#footer-lower-links ul.evMenu li.evMenuLevel_1 {
    margin-bottom: 20px;
    }
#footer-lower-links ul.evMenu li.evMenuLevel_1 > a {
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    }
#footer-lower-links ul.evMenu li a {
    padding: 5px /*style._content_third_gap(*/10px/*)*/;
    }
#footer-lower-links ul.evMenu li a:after {
    content: none;
    display: none;
    }
#footer-lower-links ul.evMenu li ul {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    padding: 0px;
    width: auto;
    background: none transparent;
    box-shadow: none;
    color: inherit;
    }
#footer-lower-links ul.evMenu > li > a {
    font-size: /*style.h6_font_size(*/16px/*)*/;
    line-height: /*style.heading_line_height(*/1.143/*)*/;
    }
.flexbox #footer-lower-links ul.evMenu {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    }
.flexbox #footer-lower-links ul.evMenu li {
    flex: 0 0 50%;
    }
@media (max-width:/*style._second_content_break(*/448px/*)*/) {
.flexbox #footer-lower-links ul.evMenu li {
    flex: 0 0 100%;
    }
}

.ev-container,
.wrapper-inner {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    }
.ev-stack,
.ev-inline {
    display: flex;
    min-width: 0;
    min-height: 0;
    }
.ev-stack {
    flex-direction: column;
    }
.gap-content-small {
    gap: var(--spacing-content-small);
    }
.gap-content-medium {
    gap: var(--spacing-content-medium);
    }
.gap-content-large {
    gap: var(--spacing-content-large);
    }
.gap-content-xlarge {
    gap: var(--spacing-content-xlarge);
    }
.pa-content-xsmall {
    padding: var(--spacing-content-xsmall);
    }
.pa-content-small {
    padding: var(--spacing-content-small);
    }
.pa-content-medium {
    padding: var(--spacing-content-medium);
    }
.pa-content-large {
    padding: var(--spacing-content-large);
    }
.pa-content-xlarge {
    padding: var(--spacing-content-xlarge);
    }

/*
    `ev-grid`
    used for 2D layouts
*/
.ev-grid {
    --ev-grid-cols: 1;
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(var(--ev-grid-cols),minmax(0,1fr));
    }
.ev-grid.grid-cols-2 {
    --ev-grid-cols: 2;
    }
.ev-grid.grid-cols-3 {
    --ev-grid-cols: 3;
    }
.ev-grid.grid-cols-4 {
    --ev-grid-cols: 4;
    }

/* SM */
@media all and (min-width: 37.5rem) {
.ev-grid.sm\:grid-cols-2 {
    --ev-grid-cols: 2;
    }
.ev-grid.sm\:grid-cols-3 {
    --ev-grid-cols: 3;
    }
.ev-grid.sm\:grid-cols-4 {
    --ev-grid-cols: 4;
    }
}

/* MD */
@media all and (min-width: 60rem) {
.ev-grid.md\:grid-cols-2 {
    --ev-grid-cols: 2;
    }
.ev-grid.md\:grid-cols-3 {
    --ev-grid-cols: 3;
    }
.ev-grid.md\:grid-cols-4 {
    --ev-grid-cols: 4;
    }
}

/* LG */
@media all and (min-width: 75rem) {
.ev-grid.lg\:grid-cols-2 {
    --ev-grid-cols: 2;
    }
.ev-grid.lg\:grid-cols-3 {
    --ev-grid-cols: 3;
    }
.ev-grid.lg\:grid-cols-4 {
    --ev-grid-cols: 4;
    }
}

/* XL */
@media all and (min-width: 100rem) {
.ev-grid.xl\:grid-cols-2 {
    --ev-grid-cols: 2;
    }
.ev-grid.xl\:grid-cols-3 {
    --ev-grid-cols: 3;
    }
.ev-grid.xl\:grid-cols-4 {
    --ev-grid-cols: 4;
    }
}

/**
 * @section Display helpers
 * 1. Conditionally display an element based upon the current viewport (hidden-{breakpoint}-{condition})
 * 2. Overflow helpers
 * 3. Display block types
 */
/* 1 */
@media only screen and (max-width: 37.4375rem) {
.hidden-xs-only {
    display: none !important;
    }
}

@media only screen and (min-width: 37.5rem) and (max-width: 59.9375rem) {
.hidden-sm-only {
    display: none !important;
    }
}

@media only screen and (max-width: 59.9375rem) {
.hidden-sm-and-down {
    display: none !important;
    }
}

@media only screen and (min-width: 37.5rem) {
.hidden-sm-and-up {
    display: none !important;
    }
}

@media only screen and (min-width: 60rem) and (max-width: 74.9375rem) {
.hidden-md-only {
    display: none !important;
    }
}

@media only screen and (max-width: 74.9375rem) {
.hidden-md-and-down {
    display: none !important;
    }
}

@media only screen and (min-width: 60rem) {
.hidden-md-and-up {
    display: none !important;
    }
}

@media only screen and (min-width: 75rem) and (max-width: 99.9375rem) {
.hidden-lg-only {
    display: none !important;
    }
}

@media only screen and (max-width: 99.9375rem) {
.hidden-lg-and-down {
    display: none !important;
    }
}

@media only screen and (min-width: 75rem) {
.hidden-lg-and-up {
    display: none !important;
    }
}

@media only screen and (min-width: 100rem) {
.hidden-xl-only {
    display: none !important;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	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: 'socialIcons';
    src: url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/socialIcons/socialIcons.eot?-y9ukkv=&v=1778685683);
    src: url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/socialIcons/socialIcons.eot?v=1778685683#iefix-y9ukkv) format('embedded-opentype'),url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/socialIcons/socialIcons.woff?-y9ukkv=&v=1778685683) format('woff'),url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/socialIcons/socialIcons.ttf?-y9ukkv=&v=1778685683) format('truetype'),url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/socialIcons/socialIcons.svg?-y9ukkv=&v=1778685683#socialIcons) format('svg');
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
@font-face {
    font-family: 'themeIcons';
    src: url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/theme/icons.eot?-y9ukkv=&v=1778685683);
    src: url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/theme/icons.eot?v=1778685683#iefix-y9ukkv) format('embedded-opentype'),url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/theme/icons.woff?-y9ukkv=&v=1778685683) format('woff'),url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/theme/icons.ttf?-y9ukkv=&v=1778685683) format('truetype'),url(/portal/web/739/theme/pec-lights-2026-05/common/fonts/theme/icons.svg?-y9ukkv=&v=1778685683#icons) format('svg');
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.icon {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    font-size: 1em;
    line-height: 1;
    transition: all .3s;
    }
.icon + .label,
.icon + .iconLabel {
    display: inline-block;
    vertical-align: middle;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.buttonWrap:hover .icon.arrowRight {
    color: #cc232a;
    transition: all .3s;
    transform: translateX(4px);
    }
.icon.loading {
    line-height: 1em;
    }
.icon.spinner-2:before,
.icon.loading:before {
    font-family: 'ev2' !important;
    content: "\e0fa" !important;
    }
.icon.plus,
.icon.minus {
    font-size: 20px;
    }

/*
    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: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    }
.evSocialLinks,
.evShareLinks,
.evSocialLinks li,
.evShareLinks li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    }
.evSocialLinks span.label,
.evShareLinks span.label,
.evSocialLinks li span.label,
.evShareLinks li span.label {
    display: none;
    }
.evShareLinks {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    }
.evShareLinks .shareIcon:before {
    color: #cc232a;
    }
.socialIcon,
.shareIcon {
    position: relative;
    background-image: none !important;
    height: /*style._social_icon_height(*/60px/*)*/;
    width: /*style._social_icon_height(*/60px/*)*/;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: /*style._social_icon_font_size(*/30px/*)*/;
    line-height: 30px;
    padding: 15px;
    border-width: /*style._social_icon_border_width(*/0/*)*/;
    border-style: solid;
    border-radius: /*style.social_icon_border_radius(*/100%/*)*/;
    border-color: inherit;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon:before,
.shareIcon:before {
    font-family: 'socialIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: baseline;
    transition: color /*style.animation_speed(*/0.3s/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    }
.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: /*style._hover_social_icon_color(*/#fff/*)*/;
    }
.socialIcon.facebook,
.shareIcon.facebook {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #3b5998;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #3b5998;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #3b5998;
    background-color: #3b5998;
    }
.socialIcon.flickr,
.shareIcon.flickr {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #ff0084;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #ff0084;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #ff0084;
    background-color: #ff0084;
    }
.socialIcon.googlePlus,
.shareIcon.googlePlus {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #dc4e41;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #dc4e41;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #dc4e41;
    background-color: #dc4e41;
    }
.socialIcon.linkedIn,
.shareIcon.linkedIn {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #0077b5;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #0077b5;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #0077b5;
    background-color: #0077b5;
    }
.socialIcon.pinterest,
.shareIcon.pinterest {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #bd081c;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #bd081c;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #bd081c;
    background-color: #bd081c;
    }
.socialIcon.twitter,
.shareIcon.twitter {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #55acee;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #55acee;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #55acee;
    background-color: #55acee;
    }
.socialIcon.vimeo,
.shareIcon.vimeo {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #1ab7ea;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #1ab7ea;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #1ab7ea;
    background-color: #1ab7ea;
    }
.socialIcon.youTube,
.shareIcon.youTube {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #cd201f;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #cd201f;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #cd201f;
    background-color: #cd201f;
    }
.socialIcon.instagram,
.shareIcon.instagram {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #3f729b;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #3f729b;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #3f729b;
    background-color: #3f729b;
    }
.socialIcon.dribbble,
.shareIcon.dribbble {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #ea4c89;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #ea4c89;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #ea4c89;
    background-color: #ea4c89;
    }
.socialIcon.tumblr,
.shareIcon.tumblr {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #35465c;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #35465c;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #35465c;
    background-color: #35465c;
    }
.socialIcon.foursquare,
.shareIcon.foursquare {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #f94877;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #f94877;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #f94877;
    background-color: #f94877;
    }
.socialIcon.vine,
.shareIcon.vine {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #00b488;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #00b488;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #00b488;
    background-color: #00b488;
    }
.socialIcon.soundcloud,
.shareIcon.soundcloud {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #f80;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #f80;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #f80;
    background-color: #f80;
    }
.socialIcon.spotify,
.shareIcon.spotify {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #2ebd59;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #2ebd59;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #2ebd59;
    background-color: #2ebd59;
    }
.socialIcon.behance,
.shareIcon.behance {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #1769ff;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #1769ff;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #1769ff;
    background-color: #1769ff;
    }
.socialIcon.github,
.shareIcon.github {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #4183c4;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #4183c4;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #4183c4;
    background-color: #4183c4;
    }
.socialIcon.twitch,
.shareIcon.twitch {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #6441a5;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #6441a5;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #6441a5;
    background-color: #6441a5;
    }
.socialIcon.azexis,
.shareIcon.azexis {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #000;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #000;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #000;
    background-color: #000;
    }
.socialIcon.evance,
.shareIcon.evance {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #6c40af;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #6c40af;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #6c40af;
    background-color: #6c40af;
    }
.socialIcon.feed,
.shareIcon.feed {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #f57321;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #f57321;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #f57321;
    background-color: #f57321;
    }
.socialIcon.send,
.shareIcon.send {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #000;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #000;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #000;
    background-color: #000;
    }
.socialIcon.favourite,
.shareIcon.favourite {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #cc232a;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #cc232a;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #cc232a;
    background-color: #cc232a;
    }

/*
    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: /*style._social_icon_height(*/60px/*)*/;
    width: /*style._social_icon_height(*/60px/*)*/;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: /*style._social_icon_font_size(*/30px/*)*/;
    line-height: 30px;
    padding: 15px;
    border-width: /*style._social_icon_border_width(*/0/*)*/;
    border-style: solid;
    border-color: inherit;
    border-radius: /*style.social_icon_border_radius(*/100%/*)*/;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.byIcon:before {
    font-family: 'socialIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: baseline;
    transition: color /*style.animation_speed(*/0.3s/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: /*style._social_icon_color(*/#363636/*)*/;
    }
.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: /*style._hover_social_icon_color(*/#fff/*)*/;
    }
.byIcon.azexis {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #000;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #000;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #000;
    background-color: #000;
    }
.byIcon.evance {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #6c40af;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.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: #6c40af;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #6c40af;
    background-color: #6c40af;
    }

/*
    evRating
    --------
*/
.evRating {
    color: /*style.star_rating_color(*/#ffc600/*)*/;
    }
.evRating > .icon {
    color: inherit;
    margin-right: 3px;
    text-decoration: none;
    }
.evRating > .icon.last,
.evRating > .icon:last-child {
    margin-right: 0px;
    }
form .evRating {
    font-size: 20px;
    }
form .evRating > .icon {
    padding: 2px;
    width: auto;
    height: auto;
    color: #d2d2d2;
    vertical-align: middle;
    }
form .evRating > .icon:before {
    content: "\e05e";
    }
form .evRating > .icon.active,
form .evRating > .icon.hover {
    font-size: 24px;
    padding: 0;
    color: /*style.star_rating_color(*/#ffc600/*)*/;
    }
form .evRating > .icon.hover ~ .icon.active:not(.hover):before {
    content: "\e05c";
    }

/*
    Theme Icons
    -----------
*/
/*
        themeIcon
    	----------
		@fragment themeIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
.icon.flag {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.flag:before {
    font-family: "themeIcons";
    content: "\e90f";
    }
.icon.check {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.check:before {
    font-family: "themeIcons";
    content: "\e900";
    }
.icon.arrow-down {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-down:before {
    font-family: "themeIcons";
    content: "\e901";
    }
.icon.arrow-left {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-left:before {
    font-family: "themeIcons";
    content: "\e902";
    }
.icon.arrow-right {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-right:before {
    font-family: "themeIcons";
    content: "\e903";
    }
.icon.arrow-up {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-up:before {
    font-family: "themeIcons";
    content: "\e904";
    }
.icon.cancel {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.cancel:before {
    font-family: "themeIcons";
    content: "\e905";
    }
.icon.email {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.email:before {
    font-family: "themeIcons";
    content: "\e906";
    }
.icon.link {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.link:before {
    font-family: "themeIcons";
    content: "\e907";
    }
.icon.heartOn {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.heartOn:before {
    font-family: "themeIcons";
    content: "\e908";
    }
.icon.heartOff {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.heartOff:before {
    font-family: "themeIcons";
    content: "\e909";
    }
.icon.pin {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.pin:before {
    font-family: "themeIcons";
    content: "\e90a";
    }
.icon.search {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.search:before {
    font-family: "themeIcons";
    content: "\e90b";
    }
.icon.menu {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.menu:before {
    font-family: "themeIcons";
    content: "\e90c";
    }
.icon.minus {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.minus:before {
    font-family: "themeIcons";
    content: "\e90d";
    }
.icon.phone {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.phone:before {
    font-family: "themeIcons";
    content: "\e90e";
    }
.icon.plus {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.plus:before {
    font-family: "themeIcons";
    content: "\e910";
    }
.icon.print {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.print:before {
    font-family: "themeIcons";
    content: "\e911";
    }
.icon.quote {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.quote:before {
    font-family: "themeIcons";
    content: "\e912";
    }
.icon.cart {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.cart:before {
    font-family: "themeIcons";
    content: "\e913";
    }
.icon.reviewOn {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.reviewOn:before {
    font-family: "themeIcons";
    content: "\e914";
    }
.icon.arrow-down2 {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-down2:before {
    font-family: "themeIcons";
    content: "\e915";
    }
.icon.arrow-left2 {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-left2:before {
    font-family: "themeIcons";
    content: "\e916";
    }
.icon.arrow-right2 {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-right2:before {
    font-family: "themeIcons";
    content: "\e917";
    }
.icon.arrow-up2 {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.arrow-up2:before {
    font-family: "themeIcons";
    content: "\e91a";
    }
.icon.public {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.public:before {
    font-family: "themeIcons";
    content: "\e918";
    }
.icon.user {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.user:before {
    font-family: "themeIcons";
    content: "\e919";
    }

/* duplicate icons */
.icon.previous {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.previous:before {
    font-family: "themeIcons";
    content: "\e902";
    }
.icon.next {
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    margin-left: 0px;
    }
.icon.next:before {
    font-family: "themeIcons";
    content: "\e903";
    }

/* css icons */
.icon.square {
    display: inline-block;
    width: 10px;
    height: 12px;
    background: #686868;
    content: "";
    display: inline-block;
    }
.icon.square + .icon {
    margin-left: 3px;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Menu
    ----
*/
/* Override main menu display of child ul */
/*#wrapper-navigation {
        ul.evMenu {
            >li.evMenuParent {
                position: relative;
                >ul {
                    display: none;
                    position: absolute;
                    left: 0;
                }
            }            
        }
    }*/
ul.evMenu {
    text-align: left;
    }
ul.evMenu li {
    text-align: left;
    transition: all .15s ease-in-out;
    }
ul.evMenu li a {
    border: 0px none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    color: inherit;
    transition: all .15s ease-in-out;
    }
ul.evMenu li a .evMenuLinkTitle:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
ul.evMenu li a:hover,
ul.evMenu li a.hover,
ul.evMenu li a:focus,
ul.evMenu li a.focus {
    background: none transparent;
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
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 {
    border: 0px none;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    z-index: auto;
    }
ul.evMenu li ul > li {
    border-bottom: 1px solid /*style._dropdown_menu_link_seperator_color(*/transparent/*)*/;
    }
ul.evMenu li ul > li.last,
ul.evMenu li ul > li:last-child {
    border-bottom: 0px none;
    }
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 {
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
ul.evMenu li ul > li.evMenuPrimary.first > a,
ul.evMenu li ul > li.evMenuPrimary:first-child > a {
    border-top-left-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    border-top-right-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    }
ul.evMenu li ul > li.evMenuPrimary.last > a,
ul.evMenu li ul > li.evMenuPrimary:last-child > a {
    border-bottom-left-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    border-bottom-right-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    }
ul.evMenu li ul > li.evMenuPrimary > a {
    background-color: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
ul.evMenu li ul > li.evMenuFooter > a {
    text-align: center;
    }
ul.evMenu li.evMenuFlyout > ul li > a {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
ul.evMenu li.evMenuFlyout > ul li > ul {
    left: 100%;
    top: 0;
    }
ul.evMenu li.evMenuFlyout > ul li.evMenuParent > a {
    position: relative;
    padding-right: 18px;
    }
ul.evMenu li.evMenuFlyout > ul li.evMenuParent > a:after {
    content: "\e096";
    font-family: 'ev2';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    }
ul.evMenu li.evMenuGrid > ul li > a .evMenuLinkTitle {
    font-weight: bold;
    }
ul.evMenu li.evMenuGrid > ul li > a .evMenuLinkTitle + .evMenuLinkDescription:not(:empty) {
    padding-top: 5px;
    }
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: underline;
    }
ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a {
    min-height: 84px;
    padding-top: /*style._content_half_gap(*/10px/*)*/;
    padding-bottom: /*style._content_half_gap(*/10px/*)*/;
    padding-left: 84px;
    width: 400px;
    }
ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a > .evMenuLinkThumbnail {
    top: /*style._content_half_gap(*/10px/*)*/;
    left: /*style._content_half_gap(*/10px/*)*/;
    border-radius: 1000px;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 {
    border-bottom: 0px none;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > a,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 > a {
    position: relative;
    }
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: 0px;
    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: 7px;
    padding-bottom: 7px;
    }
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: 0px;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4 {
    border-bottom: 0px none;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4 ul {
    display: none;
    position: absolute !important;
    left: 98% !important;
    top: 2px !important;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    background: white;
    z-index: 1;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4:hover > ul,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4.open > ul {
    display: block;
    }
ul.evMenu li.evMenuMegamenu > ul > li {
    padding: /*style._content_third_gap(*/10px/*)*/ 0px 0px;
    }
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 {
    display: block;
    }
ul.evMenu.evMenu--inline > li.evMenuParent > ul {
    text-transform: /*style.header_menu_text_transformation(*/none/*)*/;
    top: 100%;
    top: calc(100% + 2px);
    left: 10px;
    min-width: 115%;
    box-shadow: /*style._first_dropdown_box_shadow(*/2px 3px 7px 1px rgba(0,0,0,.2)/*)*/;
    }
.asideMenu ul.evMenu li > a {
    white-space: normal;
    color: /*style.aside_menu_link_color(*/#727272/*)*/;
    }
.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.primary(*/#cc232a/*)*/;
    text-decoration: /*style.aside_menu_hover_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(*/#cc232a/*)*/;
    }
.asideMenu ul.evMenu li.evMenuParent > a {
    position: relative;
    padding-right: 18px;
    }
.asideMenu ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle {
    position: absolute;
    display: block;
    top: 6px;
    right: 0;
    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%;
    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;
    box-shadow: none;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    overflow: hidden;
    }
.asideMenu ul.evMenu li.evMenuParent > ul > li {
    border: 0px none;
    }
.asideMenu ul.evMenu li.evMenuParent > ul > li > a {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
.asideMenu.filterMenu ul.evMenu {
    font-size: 14px;
    line-height: 20px;
    }
.asideMenu.filterMenu ul.evMenu > li {
    margin-bottom: 5px;
    border-bottom: 1px solid #cfcfcf;
    }
.asideMenu.filterMenu ul.evMenu > li > a {
    color: /*style.heading_color(*/#333/*)*/;
    font-weight: 400;
    text-decoration: none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul {
    padding: 0 10px 30px;
    overflow: visible;
    }
.asideMenu.filterMenu ul.evMenu > li > ul:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch {
    float: left;
    line-height: 0;
    width: 25%;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch:hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch.hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch:focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch.focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch.active:before {
    content: "";
    position: absolute;
    top: 1px;
    left: -4px;
    border-radius: 999px;
    width: 48px;
    height: 48px;
    border: 2px solid /*style.primary(*/#cc232a/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a {
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
    width: 100%;
    display: flex;
    gap: .25rem;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a .icon {
    display: none;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: /*style.field_background_color(*/#fff/*)*/;
    border: 1px solid /*style.field_border_color(*/#ddd/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    width: 12px;
    height: 12px;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"] > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"] > .label {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:focus,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].focus,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:focus,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].focus {
    text-decoration: none;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].focus:before {
    background: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:focus > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].focus > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:focus > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].focus > .label {
    text-decoration: underline;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"] {
    background-color: #efefef;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 5000px;
    position: relative;
    margin: 5px 0;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"] .label {
    opacity: 0;
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
    background-color: /*style.heading_color(*/#333/*)*/;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    transition: all 250ms ease-in;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"] .label:before {
    content: '';
    display: block;
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: /*style.heading_color(*/#333/*)*/;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"]:hover .label {
    z-index: 2;
    opacity: 1;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li.active > a[data-widget="checkbox"]:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.active > a[data-widget="radio"]:before {
    background: /*style.primary(*/#cc232a/*)*/;
    border-color: /*style.primary(*/#cc232a/*)*/;
    }
@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.asideMenu.filterMenu ul.evMenu li.evMenuLevel_1:first-child {
    border-top: 1px solid #cfcfcf;
    }
}

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;
    }

/*
    evMenuToggle
    ------------
*/
.evMenuToggle {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 20px;
    width: 16px;
    height: 23px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    background-color: /*style.bg_colour_navigation(*/#F0F4F5/*)*/;
    transition: background /*style.animation_speed(*/0.3s/*)*/;
    }
.evMenuToggle span {
    display: block;
    position: absolute;
    top: 19px;
    left: 12px;
    width: 16px;
    height: 2px;
    background: /*style.primary(*/#cc232a/*)*/;
    transition: background 0s /*style.animation_speed(*/0.3s/*)*/;
    }
.evMenuToggle span:before,
.evMenuToggle span:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: /*style.primary(*/#cc232a/*)*/;
    transition-duration: /*style.animation_speed(*/0.3s/*)*/,/*style.animation_speed(*/0.3s/*)*/;
    transition-delay: /*style.animation_speed(*/0.3s/*)*/,0s;
    }
.evMenuToggle span:before {
    top: -5px;
    transition-property: top,transform;
    }
.evMenuToggle span:after {
    bottom: -5px;
    transition-property: bottom,transform;
    }
.evMenuToggle.is-active span {
    background: none !important;
    }
.evMenuToggle.is-active span:before,
.evMenuToggle.is-active span:after {
    transition-delay: 0s,/*style.animation_speed(*/0.3s/*)*/;
    }
.evMenuToggle.is-active span:before {
    top: 0;
    transform: rotate(45deg);
    }
.evMenuToggle.is-active span:after {
    bottom: 0;
    transform: rotate(-45deg);
    }

/*
    evTabs
    ------
*/
ul.evTabs {
    width: 100%;
    background: #f9f9f9;
    }
ul.evTabs li.active {
    margin: 0 0 -2px;
    border-top: 2px solid #ddd;
    border-width: 0 0 2px;
    background-color: #f5f5f5;
    }
ul.evTabs li a:link,
ul.evTabs li a:visited {
    color: /*style.heading_color(*/#333/*)*/;
    white-space: nowrap;
    display: block;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    text-align: center;
    font-size: 1.2em;
    }
ul.evTabs li a:link .label,
ul.evTabs li a:visited .label {
    text-decoration: none;
    font-size: 18px;
    }
ul.evTabs li a:link .label:after,
ul.evTabs li a:visited .label:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
ul.evTabs li a:link:hover,
ul.evTabs li a:visited:hover {
    color: /*style.primary(*/#cc232a/*)*/;
    text-decoration: none;
    background-color: #f5f5f5;
    }
ul.evTabs li.active a:link,
ul.evTabs li.active a:visited {
    color: /*style.primary(*/#cc232a/*)*/;
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
@media (max-width:/*style._second_content_break_max(*/448px/*)*/) {
ul.evTabs li {
    display: block;
    }
}

.tabContainer > .evAccordionTab {
    display: none;
    margin: 0;
    }
.tabContainer > .evAccordionTab:not(:first-of-type) {
    border-width: 2px 0px 0px;
    border-style: solid;
    border-color: #ddd;
    }
.tabContainer > .evAccordionTab a:link,
.tabContainer > .evAccordionTab a:visited {
    display: block;
    color: /*style.heading_color(*/#333/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/20px/*)*/;
    }
.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 {
    color: /*style.primary(*/#cc232a/*)*/;
    font-weight: bold;
    text-decoration: none;
    }
.tabContainer .tabbedContent {
    border-top: 2px solid #ddd;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_third_gap(*/10px/*)*/ !important;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.tabContainer .tabContainer > .evAccordionTab {
    border-width: 2px 2px 0px;
    }
.tabContainer .tabbedContent {
    border-bottom: 0px none;
    padding-right: /*style._content_third_gap(*/10px/*)*/ !important;
    padding-left: /*style._content_third_gap(*/10px/*)*/ !important;
    }
html:not(.edit) .tabContainer > ul.evTabs {
    display: none;
    }
html:not(.edit) .tabContainer > .evAccordionTab {
    display: block;
    }
html:not(.edit) .tabContainer > .evAccordionTab + div:not(.evAccordionTab) > .tabbedContent {
    padding-top: /*style._content_third_gap(*/10px/*)*/ !important;
    padding-bottom: /*style._content_gap(*/20px/*)*/ !important;
    }
}

.tabContainer.asideList {
    border: 2px solid #ddd;
    }
.tabContainer.asideList:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.tabContainer.asideList ul.evTabs {
    width: 20%;
    width: calc(20% + 2px);
    float: left;
    margin: 0 -2px -2px 0;
    border: 1px solid #ddd;
    border-width: 0 2px 2px 0;
    }
.tabContainer.asideList ul.evTabs li {
    border-color: transparent;
    display: block;
    }
.tabContainer.asideList ul.evTabs li + li {
    border-top: 2px solid #ddd;
    }
.tabContainer.asideList ul.evTabs li a:link,
.tabContainer.asideList ul.evTabs li a:visited {
    color: /*style.heading_color(*/#333/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/20px/*)*/;
    white-space: nowrap;
    display: block;
    text-align: left;
    }
.tabContainer.asideList ul.evTabs li a:link .label,
.tabContainer.asideList ul.evTabs li a:visited .label {
    text-decoration: none;
    }
.tabContainer.asideList ul.evTabs li a:link:hover,
.tabContainer.asideList ul.evTabs li a:visited:hover {
    color: /*style.primary(*/#cc232a/*)*/;
    text-decoration: none;
    }
.tabContainer.asideList ul.evTabs li.active {
    border-top-color: #ddd;
    border-right-color: #ddd;
    border-bottom-color: #ddd;
    border-left-color: #ddd;
    }
.tabContainer.asideList ul.evTabs li.active a:link,
.tabContainer.asideList ul.evTabs li.active a:visited {
    color: /*style.primary(*/#cc232a/*)*/;
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
.tabContainer.asideList .tabbedContent {
    width: 80%;
    float: right;
    border: 2px solid #ddd;
    border-width: 0 0 0 2px;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
.tabContainer.asideList ul.evTabs {
    float: none;
    width: 100%;
    margin: 0 !important;
    border-width: 0 0 2px;
    }
.tabContainer.asideList .tabbedContent {
    float: none;
    width: 100%;
    border: 0;
    }
}

@media screen and (min-width: 1001px) {
ul.evMenu li.evMenuFlyout > ul,
ul.evMenu li.evMenuMegamenu > ul {
    z-index: 999;
    }
ul.evMenu li.evMenuFlyout > ul li > a,
ul.evMenu li.evMenuMegamenu > ul li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Bubble
    ------
*/
.evBubble {
    background-color: /*style.body_background_color(*/#fff/*)*/;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    text-transform: none;
    }
.evBubble > .triangleWrapper {
    position: absolute;
    left: 50px;
    top: -10px;
    width: 16px;
    height: 10px;
    overflow: hidden;
    }
.evBubble > .evBubbleBody {
    overflow: auto;
    }
.evBubble > .evBubbleBody a:not(.evButton) {
    color: /*style.text_color(*/#686868/*)*/;
    }
.evBubble > .evBubbleBody a:not(.evButton):hover,
.evBubble > .evBubbleBody a:not(.evButton).hover,
.evBubble > .evBubbleBody a:not(.evButton):focus,
.evBubble > .evBubbleBody a:not(.evButton).focus {
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
.evBubble > .evBubbleBody a:not(.evButton).active {
    background: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
.evBubble > .evBubbleBody ul.evListOfOptions li > a {
    padding: 0 10px !important;
    }
.evBubble > .evBubbleBody ul.evListOfOptions li:first-child:hover > a:before {
    left: auto;
    right: 23px;
    top: -5px;
    width: 10px;
    height: 10px;
    background: /*style.primary(*/#cc232a/*)*/;
    content: "";
    display: inline-block;
    position: absolute;
    transform: rotate(45deg);
    }
.evBubble > .evBubbleBody li.active,
.evBubble > .evBubbleBody li:hover,
.evBubble > .evBubbleBody li.hover,
.evBubble > .evBubbleBody li:focus,
.evBubble > .evBubbleBody li.focus {
    background-color: /*style.primary(*/#cc232a/*)*/;
    }
.evBubble > .evBubbleBody li.active a,
.evBubble > .evBubbleBody li:hover a,
.evBubble > .evBubbleBody li.hover a,
.evBubble > .evBubbleBody li:focus a,
.evBubble > .evBubbleBody li.focus a {
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
.evBubble > .evBubbleBody ul.evListOfLanguages li:hover a {
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
.evBubble > .footer {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    }

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

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Button
    ------
*/
.evDropdown {
    font-family: /*style.text_font_family(*/"Open Sans"/*)*/;
    font-size: 12px;
    color: inherit;
    height: auto;
    padding: 0px;
    }
.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: 0px;
    }
.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: 0px;
    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(*//*)*/;
    border: 0 none;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    font-size: 14px;
    line-height: 20px;
    z-index: 1;
    }
.evDropdown > .content li {
    line-height: 1;
    border: 0px none;
    border-bottom: 1px solid /*style.border_color(*/#fafafa/*)*/;
    border-bottom-color: /*style.dropdown_menu_link_seperator_color(*//*)*/;
    padding: 0px;
    margin: 0px;
    }
.evDropdown > .content li.last,
.evDropdown > .content li:last-child {
    border-bottom: 0px none;
    }
.evDropdown > .content li > a,
.evDropdown > .content li > label {
    position: relative;
    display: block;
    border: 0px 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 {
    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(*/#cc232a/*)*/;
    box-shadow: 0 0 3px /*style.primary(*/#cc232a/*)*/;
    color: /*style.field_text_color(*/#5e5e5e/*)*/ !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(*/#cc232a/*)*/;
    border-color: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/ !important;
    }
.evDropdown.open > .link {
    background: none transparent;
    border: 0px none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    border-radius: 0px;
    }
.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;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Button
	------
*/
.evButton {
    font-family: /*style.text_font_family(*/"Open Sans"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: 600;
    color: inherit;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    text-align: center;
    height: /*style._button_height(*/48px/*)*/;
    min-width: /*style._button_min_width(*/120px/*)*/;
    line-height: 1;
    padding: 0px /*style._button_padding(*/25px/*)*/ !important;
    border-width: /*style._button_border_width(*/1px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    transition: all /*style.animation_speed(*/0.3s/*)*/ linear;
    backface-visibility: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    }
.evButton:link,
.evButton:visited {
    color: inherit;
    }
.evButton:hover,
.evButton.hover,
.evButton:focus,
.evButton.focus,
.evButton:active,
.evButton.active {
    background: rgba(0,106,149,1);
    border-color: transparent !important;
    color: /*style.button_text_color(*/#fff/*)*/;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    }
.evDropdown.open > .evButton.link {
    background: /*style._darker_button_background_color(*//*style.button_background_color(*/#b51b1a/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent !important;
    color: /*style.button_text_color(*/#fff/*)*/;
    }
.evButton > .icon {
    font-size: 1.2em;
    line-height: 1;
    text-decoration: none !important;
    color: inherit;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 46px;
    }
.evButton > .icon + .label {
    padding-left: 10px;
    }
.evButton > .label + .icon {
    padding-left: 10px;
    }
.evButton > .label {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0px;
    text-decoration: inherit !important;
    text-transform: inherit !important;
    height: 46px;
    line-height: 44px;
    }
.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(*/#cc232a/*)*/;
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: spin 1s infinite linear;
    }
.evButton.is-loading:hover:after,
.evButton.is-loading.hover:after,
.evButton.is-loading:focus:after,
.evButton.is-loading.focus:after,
.evButton.is-loading:active:after,
.evButton.is-loading.active:after {
    border: 2px solid #fff;
    border-right-color: transparent;
    border-bottom-color: transparent;
    }
a.button,
a.actionButton,
a.proceedButton,
a.primaryButton,
a.underlineButton,
a.assetButton {
    display: inline-block;
    font-family: /*style.text_font_family(*/"Open Sans"/*)*/;
    font-weight: 600;
    color: /*style.button_text_color(*/#fff/*)*/;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    text-align: center;
    height: auto;
    min-height: /*style._button_height(*/48px/*)*/;
    min-width: /*style._button_min_width(*/120px/*)*/;
    padding: 0px /*style._button_padding(*/25px/*)*/;
    background: /*style.button_background_color(*/#cb1e1d/*)*/;
    border-width: /*style._button_border_width(*/1px/*)*/;
    border-style: solid;
    border-color: /*style.button_background_color(*/#cb1e1d/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    margin: 5px;
    line-height: 44px;
    }
a.button.shadow,
a.actionButton.shadow,
a.proceedButton.shadow,
a.primaryButton.shadow,
a.underlineButton.shadow,
a.assetButton.shadow {
    box-shadow: 0 3px 5px rgba(0,0,0,.2);
    }
a.button:not(:last-child),
a.actionButton:not(:last-child),
a.proceedButton:not(:last-child),
a.primaryButton:not(:last-child),
a.underlineButton:not(:last-child),
a.assetButton:not(:last-child) {
    margin-bottom: /*style.text_font_size(*/14px/*)*/;
    }
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,
a.proceedButton:hover,
a.proceedButton.hover,
a.proceedButton:focus,
a.proceedButton.focus,
a.proceedButton:active,
a.proceedButton.active,
a.primaryButton:hover,
a.primaryButton.hover,
a.primaryButton:focus,
a.primaryButton.focus,
a.primaryButton:active,
a.primaryButton.active,
a.underlineButton:hover,
a.underlineButton.hover,
a.underlineButton:focus,
a.underlineButton.focus,
a.underlineButton:active,
a.underlineButton.active,
a.assetButton:hover,
a.assetButton.hover,
a.assetButton:focus,
a.assetButton.focus,
a.assetButton:active,
a.assetButton.active {
    background: /*style._darker_button_background_color(*//*style.button_background_color(*/#b51b1a/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_button_background_color(*//*style.button_background_color(*/#b51b1a/*).colorAdjust(0,0,-5,0)*//*)*/;
    color: /*style.button_text_color(*/#fff/*)*/;
    text-decoration: none;
    }
.fa-chevron-right {
    margin-left: 8px;
    }
.fa-chevron-right:hover [class*="fa-chevron-right"] {
    transform: translateX(4px);
    transition: all .3s;
    }

/* Action Button */
.evButtonAction {
    background: transparent;
    border-color: /*style.action_button_background_color(*/#999/*)*/ !important;
    color: /*style.action_button_text_color(*/#6F6F6F/*)*/;
    }
.evButtonAction:link,
.evButtonAction:visited {
    color: /*style.action_button_text_color(*/#6F6F6F/*)*/;
    }
.evButtonAction:hover,
.evButtonAction.hover,
.evButtonAction:focus,
.evButtonAction.focus,
.evButtonAction:active,
.evButtonAction.active {
    background: transparent;
    border-color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/;
    }
.evDropdown.open > .evButtonAction.link {
    background: transparent;
    border-color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/;
    }
a.actionButton {
    background: transparent;
    border-color: /*style.action_button_background_color(*/#999/*)*/;
    color: /*style.action_button_text_color(*/#6F6F6F/*)*/;
    }
a.actionButton:hover,
a.actionButton.hover,
a.actionButton:focus,
a.actionButton.focus,
a.actionButton:active,
a.actionButton.active {
    background: transparent;
    border-color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/;
    color: #cc232a;
    }

/* Proceed Button */
.evButtonProceed {
    background: /*style.proceed_button_background_color(*/#39c05f/*)*/;
    border-color: transparent !important;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
.evButtonProceed:link,
.evButtonProceed:visited {
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
.evButtonProceed:hover,
.evButtonProceed.hover,
.evButtonProceed:focus,
.evButtonProceed.focus,
.evButtonProceed:active,
.evButtonProceed.active {
    background: /*style._darker_proceed_button_background_color(*//*style.proceed_button_background_color(*/#33ac55/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent !important;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
.evDropdown.open > .evButtonProceed.link {
    background: /*style._darker_proceed_button_background_color(*//*style.proceed_button_background_color(*/#33ac55/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent !important;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
.evButtonProceed.is-loading:after {
    border: 2px solid #fff;
    border-right-color: transparent;
    border-bottom-color: transparent;
    }
a.proceedButton {
    background: /*style.proceed_button_background_color(*/#39c05f/*)*/;
    border-color: transparent;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
a.proceedButton:hover,
a.proceedButton.hover,
a.proceedButton:focus,
a.proceedButton.focus,
a.proceedButton:active,
a.proceedButton.active {
    background: /*style._darker_proceed_button_background_color(*//*style.proceed_button_background_color(*/#33ac55/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }

/* Cancel Button */
.evButtonCancel {
    background: /*style._cancel_button_background_color(*/#e5e5e5/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_button_text_color(*/#565656/*)*/;
    }
.evButtonCancel:link,
.evButtonCancel:visited {
    color: /*style._cancel_button_text_color(*/#565656/*)*/;
    }
.evButtonCancel:hover,
.evButtonCancel.hover,
.evButtonCancel:focus,
.evButtonCancel.focus,
.evButtonCancel:active,
.evButtonCancel.active {
    border-color: transparent !important;
    color: /*style._cancel_hover_button_text_color(*/#2e2e2e/*)*/;
    }
.evDropdown.open > .evButtonCancel.link {
    background: /*style._cancel_hover_button_background_color(*/#d1d1d1/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_hover_button_text_color(*/#2e2e2e/*)*/;
    }
a.evButtonCancel {
    background: /*style._cancel_button_background_color(*/#e5e5e5/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_button_text_color(*/#565656/*)*/;
    }
a.evButtonCancel:hover,
a.evButtonCancel.hover,
a.evButtonCancel:focus,
a.evButtonCancel.focus,
a.evButtonCancel:active,
a.evButtonCancel.active {
    background: /*style._cancel_hover_button_background_color(*/#d1d1d1/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_hover_button_text_color(*/#2e2e2e/*)*/;
    }

/* Primary Button */
.evButtonPrimary {
    background: /*style.primary(*/#cc232a/*)*/;
    border-color: /*style.primary(*/#cc232a/*)*/ !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 {
    background: /*style._darker_primary(*//*style.primary(*/#b61f26/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_primary(*//*style.primary(*/#b61f26/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    }
.evDropdown.open > .evButtonPrimary.link {
    background: /*style._darker_primary(*//*style.primary(*/#b61f26/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_primary(*//*style.primary(*/#b61f26/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    }
a.primaryButton {
    background: /*style.primary(*/#cc232a/*)*/;
    border-color: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
a.primaryButton:hover,
a.primaryButton.hover,
a.primaryButton:focus,
a.primaryButton.focus,
a.primaryButton:active,
a.primaryButton.active {
    background: /*style._darker_primary(*//*style.primary(*/#b61f26/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_primary(*//*style.primary(*/#b61f26/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }

/* Underline Button */
.evButtonUnderline {
    background: transparent;
    border-width: 0px;
    color: /*style.heading_color(*/#333/*)*/;
    }
.evButtonUnderline:link,
.evButtonUnderline:visited {
    color: /*style.heading_color(*/#333/*)*/;
    }
.evButtonUnderline:hover,
.evButtonUnderline.hover,
.evButtonUnderline:focus,
.evButtonUnderline.focus,
.evButtonUnderline:active,
.evButtonUnderline.active {
    background: transparent;
    color: /*style.heading_color(*/#333/*)*/;
    }
.evDropdown.open > .evButtonUnderline.link {
    background: transparent;
    color: /*style.heading_color(*/#333/*)*/;
    }
.evButtonUnderline > .icon {
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    border-bottom: /*style.heading_color(*/#333/*)*/ solid;
    }
.evButtonUnderline > .label {
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    border-bottom: /*style.heading_color(*/#333/*)*/ solid;
    }
a.underlineButton {
    background: transparent;
    color: /*style.heading_color(*/#333/*)*/;
    padding: 0px;
    min-width: 0px;
    border-width: 0px 0px /*style._button_border_width(*/1px/*)*/ 0px;
    line-height: 46px;
    }
a.underlineButton:hover,
a.underlineButton.hover,
a.underlineButton:focus,
a.underlineButton.focus,
a.underlineButton:active,
a.underlineButton.active {
    color: /*style.heading_color(*/#333/*)*/;
    }

/* Asset Button */
.evButtonAsset {
    background: /*style.asset_button_background_color(*/#fff/*).colorAdjust(0,0,0,-0)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evButtonAsset:link,
.evButtonAsset:visited {
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evButtonAsset:hover,
.evButtonAsset.hover,
.evButtonAsset:focus,
.evButtonAsset.focus,
.evButtonAsset:active,
.evButtonAsset.active {
    background: /*style.asset_button_background_color(*/#fff/*)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evDropdown.open > .evButtonAsset.link {
    background: /*style.asset_button_background_color(*/#fff/*)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
a.assetButton {
    background: /*style.asset_button_background_color(*/#fff/*).colorAdjust(0,0,0,-0)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
a.assetButton:hover,
a.assetButton.hover,
a.assetButton:focus,
a.assetButton.focus,
a.assetButton:active,
a.assetButton.active {
    background: /*style.asset_button_background_color(*/#fff/*)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }

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

/* Grey Button */
.evButtonGrey {
    background: #f2f2f2;
    border-color: #f2f2f2 !important;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evButtonGrey:link,
.evButtonGrey:visited {
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evButtonGrey:hover,
.evButtonGrey.hover,
.evButtonGrey:focus,
.evButtonGrey.focus,
.evButtonGrey:active,
.evButtonGrey.active {
    background: #bfbfbf;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    border-color: transparent !important;
    }
.evDropdown.open > .evButtonGrey.link {
    background: #bfbfbf;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    border-color: transparent !important;
    }

/* CMS Styles */
.evEditable a.button,
.evEditable a.actionButton,
.evEditable a.proceedButton,
.evEditable a.cancelButton,
.evEditable a.primaryButton,
.evEditable a.assetButton,
div[data-reference] a.button,
div[data-reference] a.actionButton,
div[data-reference] a.proceedButton,
div[data-reference] a.cancelButton,
div[data-reference] a.primaryButton,
div[data-reference] a.assetButton {
    position: inherit;
    }
.evEditable .evButton:not(:last-child),
div[data-reference] .evButton:not(:last-child) {
    margin-bottom: 1em;
    }
@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
a.button,
a.actionButton,
a.proceedButton,
a.cancelButton,
a.primaryButton,
a.assetButton {
    min-width: 180px;
    }
}

/*
    Pagination
    ----------
*/
.evPagination .evButton {
    border-radius: 0;
    border: 0;
    padding: 10px 7px !important;
    min-width: 0;
    background-color: /*style.text_color_on_primary(*/#fff/*)*/;
    margin: 5px 10px 0 0;
    color: /*style.primary(*/#cc232a/*)*/;
    font-weight: inherit;
    height: auto;
    }
.evPagination .evButton .label {
    padding: 5px 8px;
    height: auto;
    width: auto;
    line-height: 1;
    font-size: /*style.text_font_size(*/14px/*)*/;
    }
.evPagination .evButton .icon {
    line-height: 1;
    }
.evPagination .evButton.active,
.evPagination .evButton.focus,
.evPagination .evButton:hover {
    box-shadow: none;
    background: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
.evPagination .evButton.evPaginationPrevious .icon,
.evPagination .evButton.evPaginationNext .icon {
    padding-left: 3px;
    opacity: .4;
    }
.evPagination .evButton.evPaginationPrevious .icon:before,
.evPagination .evButton.evPaginationNext .icon:before {
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
    }
.evPagination .evButton.evPaginationPrevious:hover .label,
.evPagination .evButton.evPaginationNext:hover .label {
    text-decoration: none !important;
    }
.evPagination .evButton.evPaginationPrevious:hover .ev-icon,
.evPagination .evButton.evPaginationPrevious:hover .icon,
.evPagination .evButton.evPaginationNext:hover .ev-icon,
.evPagination .evButton.evPaginationNext:hover .icon {
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    opacity: 1;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Select
    ------
*/
.evSelectButton {
    border-collapse: separate;
    width: 100%;
    }
.evSelectButton > .evButton {
    display: table;
    width: 100%;
    min-width: 0px;
    margin-bottom: -41px;
    background-color: /*style.field_background_color(*/#fff/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-color: /*style.field_border_color(*/#ddd/*)*/ !important;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    font-weight: 400;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    padding: 0 /*style._field_padding(*/15px/*)*/ !important;
    text-align: left;
    text-transform: initial;
    }
.evSelectButton > .evButton > .label {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    margin: 0;
    }
.evSelectButton > .evButton > .label > .prefix,
.evSelectButton > .evButton > .label > .postfix {
    opacity: .7;
    }
.evSelectButton > .evButton > .label > .prefix {
    padding-right: /*style._field_padding(*/15px/*)*/;
    }
.evSelectButton > .evButton > .label > .postfix {
    padding-left: /*style._field_padding(*/15px/*)*/;
    }
.evSelectButton > .evButton > .icon.select {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    top: auto;
    right: auto;
    }
.evSelectButton > .evButton:hover,
.evSelectButton > .evButton.hover,
.evSelectButton > .evButton:focus,
.evSelectButton > .evButton.focus,
.evSelectButton > .evButton:active,
.evSelectButton > .evButton.active {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/ !important;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
select.evSelect {
    height: 45px;
    margin-top: -5px;
    }
.evSelectButton.error > .evButton {
    background-color: /*style._error_field_background_color(*/#fcf7f7/*)*/;
    border-color: /*style._error_field_border_color(*/#ef4242/*)*/ !important;
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    }

/*
    Combo
    -----
*/
.evCombo .evComboOptions {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
.evCombo .evComboOptions .active {
    background: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
.evCombo .evComboOptions li:last-child {
    border-bottom: 0px none;
    }

/*
    Textfield
    ---------
*/
.evTextField {
    background-color: /*style.field_background_color(*/#fff/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    border-color: /*style.field_border_color(*/#ddd/*)*/;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    font-family: /*style.text_font_family(*/"Open Sans"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: 400;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    }
.evTextField:hover,
.evTextField.hover,
.evTextField:focus,
.evTextField.focus,
.evTextField:active,
.evTextField.active {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    outline: none;
    }
.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.focus_field_border_color(*/#c1c1c1/*)*/;
    }
.evTextField.error {
    background-color: /*style._error_field_background_color(*/#fcf7f7/*)*/;
    border-color: /*style._error_field_border_color(*/#ef4242/*)*/;
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    }
.evTextField.error :-ms-input-placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error ::-webkit-input-placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error :-moz-placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error ::placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error .placeholder-state {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error > .evTextFieldPostfix .evDropdown {
    border-color: /*style._error_field_border_color(*/#ef4242/*)*/;
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    }
.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 > .evTextFieldIcon {
    padding-left: /*style._field_padding(*/15px/*)*/;
    }
.evTextField > .evTextFieldPrefix {
    padding-left: /*style._field_padding(*/15px/*)*/;
    }
.evTextField > .evTextFieldPrefix .label {
    padding-right: 5px;
    line-height: 1.8;
    }
.evTextField > .evTextFieldPostfix {
    padding-right: /*style._field_padding(*/15px/*)*/;
    }
.evTextField > .evTextFieldPostfix .evDropdown {
    border-color: /*style.field_border_color(*/#ddd/*)*/;
    margin: 0;
    height: 39px;
    line-height: 37px;
    }
.evTextField > .evTextFieldPostfix .evDropdown > .link {
    padding: 0px;
    padding-left: /*style._field_padding(*/15px/*)*/;
    height: 39px;
    line-height: 37px;
    }
.evTextField > .evTextFieldInput > input {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0 /*style._field_padding(*/15px/*)*/;
    height: 46px;
    }
.evTextField > .evTextFieldInput > input:-webkit-autofill {
    -webkit-box-shadow: /*style._field_box_shadow(*/0px 0px 0px 0px rgba(0,0,0,0)/*)*/,0 0 0 50px /*style.field_background_color(*/#fff/*)*/ inset;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    }
.evTextField > .evTextFieldInput > input:-webkit-autofill:focus {
    -webkit-box-shadow: /*style._focus_field_box_shadow(*/0px 0px 5px 0px rgba(0,0,0,.1)/*)*/,0 0 0 50px /*style.focus_field_background_color(*/#fff/*)*/ inset;
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    }
.evTextField > .evTextFieldInput > input:placeholder-shown {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input::-ms-input-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input:-ms-input-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input::-moz-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input::-webkit-input-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input:-moz-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px /*style.field_text_color(*/#5e5e5e/*)*/ inset;
    -webkit-text-fill-color: /*style.field_background_color(*/#fff/*)*/;
    }
.evTextField > .evTextFieldInput > input input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px /*style.field_text_color(*/#5e5e5e/*)*/ inset;
    -webkit-text-fill-color: /*style.field_background_color(*/#fff/*)*/;
    }

/*
    Textarea
    --------
*/
.evTextArea {
    background-color: /*style.field_background_color(*/#fff/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    border-color: /*style.field_border_color(*/#ddd/*)*/;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    font-family: /*style.text_font_family(*/Open Sans/*)*/;
    font-size: inherit;
    font-weight: 400;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    }
.evTextArea:hover,
.evTextArea.hover {
    box-shadow: none;
    }
.evTextArea:focus,
.evTextArea.focus {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    outline: none;
    }
.evTextArea textarea {
    font-weight: inherit;
    color: inherit;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._field_padding(*/15px/*)*/;
    }

/*
    Checkbox / Radio
    ----------------
*/
a.evCheckbox,
a.evRadio {
    border-color: #ccc;
    color: /*style.field_text_color(*/#5e5e5e/*)*/ !important;
    text-decoration: none;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    width: 16px;
    height: 16px;
    line-height: 12px;
    background-color: #fff;
    }
a.evCheckbox:after,
a.evRadio:after {
    font-size: 11px;
    line-height: 1;
    }
a.evCheckbox:hover,
a.evCheckbox.hover,
a.evRadio:hover,
a.evRadio.hover {
    border-color: /*style.primary(*/#cc232a/*)*/;
    box-shadow: 0 0 3px /*style.primary(*/#cc232a/*)*/;
    color: /*style.field_text_color(*/#5e5e5e/*)*/ !important;
    }
a.evCheckbox:checked,
a.evCheckbox.checked,
a.evRadio:checked,
a.evRadio.checked {
    background-color: /*style.primary(*/#cc232a/*)*/;
    border-color: /*style.primary(*/#cc232a/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/ !important;
    }
a.evCheckbox ~ label,
a.evRadio ~ label {
    display: inline-table;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
a.evCheckbox ~ label .title,
a.evRadio ~ label .title {
    display: table-cell;
    vertical-align: middle;
    }
.evCheckoutSubscription .evCheckbox {
    margin-top: 2px;
    }

/*
    Range Slider
    ------------
*/
.ui-slider {
    border: 0px none;
    }
.ui-slider .ui-slider-range {
    background-color: /*style.rebrand_blue(*/#006A95/*)*/;
    }
.ui-slider .ui-slider-handle {
    height: 14px;
    width: 14px;
    padding: 0px;
    top: -4px;
    margin-left: -7px;
    border: 0px none;
    background-color: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    }
.ui-slider-horizontal {
    height: 6px;
    background-color: /*style.field_border_color(*/#ddd/*)*/;
    box-shadow: none;
    }

/*
    Date Picker
    -----------
*/
div.datepicker {
    font-family: /*style.text_font_family(*/Open Sans/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    color: /*style.text_color(*/#686868/*)*/;
    }
div.datepicker .icon {
    height: auto;
    width: auto;
    }
div.datepicker a:link,
div.datepicker a:visited {
    color: inherit;
    }
div.datepicker td.datepickerSelected {
    background: /*style.primary(*/#cc232a/*)*/ !important;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }

/*
    Inline Buttons
    --------------
*/
.inline-buttons {
    font-size: 0px;
    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: 0px !important;
    }
.inline-buttons > .evButton.first,
.inline-buttons > .evButton:first-child {
    border-top-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evButton.last,
.inline-buttons > .evButton:last-child {
    border-top-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evDropdown > .evButton {
    border-radius: 0px !important;
    }
.inline-buttons > .evDropdown.first > .evButton,
.inline-buttons > .evDropdown:first-child > .evButton {
    border-top-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evDropdown.open.first > .evButton,
.inline-buttons > .evDropdown.open:first-child > .evButton {
    border-bottom-left-radius: 0px !important;
    }
.inline-buttons > .evDropdown.last > .evButton,
.inline-buttons > .evDropdown:last-child > .evButton {
    border-top-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evDropdown.open.last > .evButton,
.inline-buttons > .evDropdown.open:last-child > .evButton {
    border-bottom-right-radius: 0px !important;
    }
.inline-buttons .evTextFieldButton > .evTextField {
    border-radius: 0px !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(*/2px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons .evTextFieldButton.last > .evTextField,
.inline-buttons .evTextFieldButton:last-child > .evTextField {
    border-top-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons.quantity-buttons {
    display: table;
    width: auto;
    }
.inline-buttons.quantity-buttons > * {
    display: table-cell;
    vertical-align: middle;
    line-height: 0px;
    }
.inline-buttons.quantity-buttons .evButton {
    min-width: 0px;
    background-color: /*style.field_background_color(*/#fff/*)*/;
    padding: 0px /*style._field_padding(*/15px/*)*/ !important;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-color: /*style.field_border_color(*/#ddd/*)*/ !important;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    font-weight: 400;
    margin: 5px;
    width: 45px;
    height: 40px;
    }
.inline-buttons.quantity-buttons .evButton.minus,
.inline-buttons.quantity-buttons .evButton.plus {
    font-size: 20px;
    }
.inline-buttons.quantity-buttons .evButton.minus {
    border-radius: 3px 0 0 3px !important;
    }
.inline-buttons.quantity-buttons .evButton.plus {
    border-radius: 0 3px 3px 0 !important;
    }
.inline-buttons.quantity-buttons .evButton > .label {
    height: 37px;
    line-height: 39px;
    padding: 0;
    color: #cfcfcf;
    }
.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 {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/ !important;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
.inline-buttons.quantity-buttons .evButton:hover > .label,
.inline-buttons.quantity-buttons .evButton.hover > .label,
.inline-buttons.quantity-buttons .evButton:focus > .label,
.inline-buttons.quantity-buttons .evButton.focus > .label,
.inline-buttons.quantity-buttons .evButton:active > .label,
.inline-buttons.quantity-buttons .evButton.active > .label {
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
.inline-buttons.quantity-buttons .evTextFieldButton {
    padding: 0;
    }
.inline-buttons.quantity-buttons .evTextFieldButton .evTextField {
    width: 100% !important;
    }
.inline-buttons.quantity-buttons .evTextFieldButton .evTextField .evTextFieldInput > input {
    height: 48px;
    }
.inline-buttons.quantity-buttons .evButton.minus + .evTextFieldButton .evTextField {
    border-width: 1px 0;
    }

/*
    Form / Field Styling
    --------------------
*/
.fieldHeader,
.formHeader {
    padding: 0px 0px /*style._content_third_gap(*/10px/*)*/ 0px;
    }
.fieldHeader:not(:first-child),
.formHeader:not(:first-child) {
    margin-top: /*style._content_gap(*/20px/*)*/;
    }
.fieldHeader + .evNotices,
.formHeader + .evNotices {
    margin-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
.fieldFooter,
.formFooter {
    padding: /*style._content_third_gap(*/10px/*)*/ 0px 0px 0px;
    }
.fieldArea {
    padding: /*style._content_third_gap(*/10px/*)*/ 0px;
    }
.fieldArea.first:not(.cell.grid1of1.gridBlock),
.fieldArea.first:not(.cell.grid1of2.gridBlock),
.fieldArea.first:not(.cell.grid1of3.gridBlock),
.fieldArea.first:not(.cell.grid2of3.gridBlock),
.fieldArea.first:not(.cell.grid1of4.gridBlock),
.fieldArea.first:not(.cell.grid3of4.gridBlock),
.fieldArea.first:not(.cell.grid1of5.gridBlock),
.fieldArea.first:not(.cell.grid2of5.gridBlock),
.fieldArea.first:not(.cell.grid3of5.gridBlock),
.fieldArea.first:not(.cell.grid4of5.gridBlock),
.fieldArea:first-child:not(.cell.grid1of1.gridBlock),
.fieldArea:first-child:not(.cell.grid1of2.gridBlock),
.fieldArea:first-child:not(.cell.grid1of3.gridBlock),
.fieldArea:first-child:not(.cell.grid2of3.gridBlock),
.fieldArea:first-child:not(.cell.grid1of4.gridBlock),
.fieldArea:first-child:not(.cell.grid3of4.gridBlock),
.fieldArea:first-child:not(.cell.grid1of5.gridBlock),
.fieldArea:first-child:not(.cell.grid2of5.gridBlock),
.fieldArea:first-child:not(.cell.grid3of5.gridBlock),
.fieldArea:first-child:not(.cell.grid4of5.gridBlock) {
    padding-top: 0px;
    }
.fieldArea.last:not(.cell.grid1of1.gridBlock),
.fieldArea.last:not(.cell.grid1of2.gridBlock),
.fieldArea.last:not(.cell.grid1of3.gridBlock),
.fieldArea.last:not(.cell.grid2of3.gridBlock),
.fieldArea.last:not(.cell.grid1of4.gridBlock),
.fieldArea.last:not(.cell.grid3of4.gridBlock),
.fieldArea.last:not(.cell.grid1of5.gridBlock),
.fieldArea.last:not(.cell.grid2of5.gridBlock),
.fieldArea.last:not(.cell.grid3of5.gridBlock),
.fieldArea.last:not(.cell.grid4of5.gridBlock),
.fieldArea:last-child:not(.cell.grid1of1.gridBlock),
.fieldArea:last-child:not(.cell.grid1of2.gridBlock),
.fieldArea:last-child:not(.cell.grid1of3.gridBlock),
.fieldArea:last-child:not(.cell.grid2of3.gridBlock),
.fieldArea:last-child:not(.cell.grid1of4.gridBlock),
.fieldArea:last-child:not(.cell.grid3of4.gridBlock),
.fieldArea:last-child:not(.cell.grid1of5.gridBlock),
.fieldArea:last-child:not(.cell.grid2of5.gridBlock),
.fieldArea:last-child:not(.cell.grid3of5.gridBlock),
.fieldArea:last-child:not(.cell.grid4of5.gridBlock) {
    padding-bottom: 0px;
    }
#reviewForm .fieldArea:first-of-type {
    padding-top: 0px;
    }
#reviewForm .fieldArea:last-of-type {
    padding-bottom: 0px;
    }
.fieldContainer {
    padding: 0;
    }
.fieldContainer .fieldArea {
    padding: /*style._content_third_gap(*/10px/*)*/ 0px;
    }
.fieldContainer .fieldArea.first,
.fieldContainer .fieldArea:first-child {
    padding-top: 0px;
    }
.fieldContainer .fieldArea.first.cell,
.fieldContainer .fieldArea:first-child.cell,
.fieldContainer .fieldArea.first.grid1of1,
.fieldContainer .fieldArea.first.grid1of2,
.fieldContainer .fieldArea.first.grid1of3,
.fieldContainer .fieldArea.first.grid2of3,
.fieldContainer .fieldArea.first.grid1of4,
.fieldContainer .fieldArea.first.grid3of4,
.fieldContainer .fieldArea.first.grid1of5,
.fieldContainer .fieldArea.first.grid2of5,
.fieldContainer .fieldArea.first.grid3of5,
.fieldContainer .fieldArea.first.grid4of5,
.fieldContainer .fieldArea:first-child.grid1of1,
.fieldContainer .fieldArea:first-child.grid1of2,
.fieldContainer .fieldArea:first-child.grid1of3,
.fieldContainer .fieldArea:first-child.grid2of3,
.fieldContainer .fieldArea:first-child.grid1of4,
.fieldContainer .fieldArea:first-child.grid3of4,
.fieldContainer .fieldArea:first-child.grid1of5,
.fieldContainer .fieldArea:first-child.grid2of5,
.fieldContainer .fieldArea:first-child.grid3of5,
.fieldContainer .fieldArea:first-child.grid4of5,
.fieldContainer .fieldArea.first.gridBlock,
.fieldContainer .fieldArea:first-child.gridBlock {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer .fieldArea.last,
.fieldContainer .fieldArea:last-child {
    padding-bottom: 0px;
    }
.fieldContainer .fieldArea.last.cell,
.fieldContainer .fieldArea:last-child.cell,
.fieldContainer .fieldArea.last.grid1of1,
.fieldContainer .fieldArea.last.grid1of2,
.fieldContainer .fieldArea.last.grid1of3,
.fieldContainer .fieldArea.last.grid2of3,
.fieldContainer .fieldArea.last.grid1of4,
.fieldContainer .fieldArea.last.grid3of4,
.fieldContainer .fieldArea.last.grid1of5,
.fieldContainer .fieldArea.last.grid2of5,
.fieldContainer .fieldArea.last.grid3of5,
.fieldContainer .fieldArea.last.grid4of5,
.fieldContainer .fieldArea:last-child.grid1of1,
.fieldContainer .fieldArea:last-child.grid1of2,
.fieldContainer .fieldArea:last-child.grid1of3,
.fieldContainer .fieldArea:last-child.grid2of3,
.fieldContainer .fieldArea:last-child.grid1of4,
.fieldContainer .fieldArea:last-child.grid3of4,
.fieldContainer .fieldArea:last-child.grid1of5,
.fieldContainer .fieldArea:last-child.grid2of5,
.fieldContainer .fieldArea:last-child.grid3of5,
.fieldContainer .fieldArea:last-child.grid4of5,
.fieldContainer .fieldArea.last.gridBlock,
.fieldContainer .fieldArea:last-child.gridBlock {
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer header,
.fieldContainer footer {
    padding: /*style._content_third_gap(*/10px/*)*/ 0px;
    }
.fieldContainer .gridContainer {
    margin-top: 0px;
    margin-bottom: 0px;
    }
.fieldContainer .gridContainer .fieldArea.first,
.fieldContainer .gridContainer .fieldArea:first-child {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer .gridContainer .fieldArea.last,
.fieldContainer .gridContainer .fieldArea:last-child {
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer .gridContainer.first .fieldArea,
.fieldContainer .gridContainer:first-child .fieldArea {
    padding-top: 0;
    }
.fieldContainer .gridContainer.last .fieldArea,
.fieldContainer .gridContainer:last-child .fieldArea {
    padding-bottom: 0;
    }
.fieldContainer + .fieldContainer,
.fieldContainer + .fieldFooter {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
.fieldContainer:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }

/*
    Form Field Combo
    ----------------
*/
form.fieldCombo {
    display: table;
    width: 100%;
    }
form.fieldCombo > .textfieldContainer {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    }
form.fieldCombo > .textfieldContainer.first .evTextField,
form.fieldCombo > .textfieldContainer:first-child .evTextField {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    }
form.fieldCombo > .textfieldContainer.last .evTextField,
form.fieldCombo > .textfieldContainer:last-child .evTextField {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    }
form.fieldCombo > .buttonContainer {
    display: table-cell;
    vertical-align: middle;
    }
form.fieldCombo > .buttonContainer.first .evButton,
form.fieldCombo > .buttonContainer:first-child .evButton {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    }
form.fieldCombo > .buttonContainer.last .evButton,
form.fieldCombo > .buttonContainer:last-child .evButton {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    }

/*
    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%;
    }

/*
    Errors
    ---
*/
.ev-errors .ev-errors-field-message {
    margin-top: .5rem;
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-weight: 600;
    }
.ev-errors .ev-errors-form-message {
    padding: 2rem;
    background: /*style._error_field_border_color(*/#ef4242/*)*/;
    color: #fff;
    border-radius: 5px;
    }
.ev-errors .ev-errors-form-message p {
    font-size: 1rem;
    }
.ev-errors .ev-errors-form-message h2 {
    color: #fff;
    }
.evFormComplete {
    background: #e5fff2;
    padding: 1.5rem !important;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #b0e7cc;
    }
.fieldArea.zipArea {
    padding: 0 0 0 1rem;
    vertical-align: top;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
.entriesContainer {
    margin: -10px;
    font-size: 0px;
    }
.flexbox .entriesContainer {
    display: flex;
    flex-flow: row wrap;
    }
.entriesContainer > .evEntry,
.entriesContainer .evCategory,
.entriesContainer .evCategoryProduct {
    margin: /*style._content_third_gap(*/10px/*)*/;
    vertical-align: top;
    font-size: /*style.text_font_size(*/14px/*)*/;
    display: inline-block;
    }
.entriesContainer > .evReviewEntry {
    margin: /*style._content_half_gap(*/10px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    font-size: 1rem;
    }
.entriesContainer:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
@media screen and (max-width: /*style._first_content_break(*/1000px/*)*/) {
.entriesContainer > .evEntry,
.entriesContainer > .evReviewEntry,
.entriesContainer > .evCategory,
.entriesContainer .evCategoryProduct {
    text-align: left;
    }
}

@media screen and (max-width: /*style._second_special_content_break_max(*/700px/*)*/) {
.entriesContainer > .evReviewEntry {
    padding: 0 /*style._content_half_gap(*/10px/*)*/;
    width: 100%;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.entriesContainer > .evReviewEntry {
    padding: 0;
    }
}

/********* Product Box ************/
.featuredCategory {
    padding-top: 10px !important;
    min-height: 300px;
    }
.featuredCategory div[data-reference^="FEATURED_CATEGORY_"] {
    position: relative;
    }
.evEditable #product-footer .topSellerIcon img,
.evEditable .categoryList .topSellerIcon img,
.evEditable .featuredCategory .topSellerIcon img {
    margin: 0;
    }
#product-footer .top-selling-title,
.categoryList .top-selling-title,
.featuredCategory .top-selling-title {
    color: /*style.primary(*/#cc232a/*)*/;
    font-weight: 700;
    font-size: 1.5rem;
    }
#product-footer + .featuredCategory,
.categoryList + .featuredCategory,
.featuredCategory + .featuredCategory {
    padding-top: 20px !important;
    border: 0;
    }
@media (max-width: /*style._second_content_break(*/448px/*)*/) {
#product-footer + .featuredCategory,
.categoryList + .featuredCategory,
.featuredCategory + .featuredCategory {
    padding-top: 80px !important;
    }
#product-footer .topSellerIcon,
.categoryList .topSellerIcon,
.featuredCategory .topSellerIcon {
    top: -70px;
    left: 20px;
    }
#product-footer.featuredProducts .topSellerIcon,
.categoryList.featuredProducts .topSellerIcon,
.featuredCategory.featuredProducts .topSellerIcon {
    top: 0px;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#product-footer,
.categoryList,
.featuredCategory {
    padding-bottom: /*style._content_third_gap(*/10px/*)*/ !important;
    }
#product-footer .entriesContainer,
.categoryList .entriesContainer,
.featuredCategory .entriesContainer {
    margin: 0 15px;
    }
}

#product-footer .entriesSlideshow,
.categoryList .entriesSlideshow,
.featuredCategory .entriesSlideshow {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    }
#product-footer .entriesSlideshow .slick-track,
.categoryList .entriesSlideshow .slick-track,
.featuredCategory .entriesSlideshow .slick-track {
    display: flex;
    }
@media (max-width: /*style._second_content_break(*/448px/*)*/) {
#product-footer .entriesSlideshow,
.categoryList .entriesSlideshow,
.featuredCategory .entriesSlideshow {
    margin-top: 50px;
    }
}

.entriesSlideshow > .header {
    padding: /*style._content_four_third_gap(*/40px/*)*/ 0;
    }
@media (max-width:/*style._special_content_break(*/900px/*)*/) {
.entriesSlideshow > .header {
    padding: /*style._content_gap(*/20px/*)*/ 0;
    }
}

.entriesSlideshow > .body {
    position: relative;
    overflow: hidden;
    }
.entriesSlideshow > .body > .evSlideshow {
    position: static;
    overflow: visible;
    }
.entriesSlideshow > .body > .evSlideshow > .evSlideshowMask {
    overflow: visible !important;
    }
.entriesSlideshow > .body > .evSlideshow > .evSlideshowMask .evCategoryProduct {
    padding: /*style._content_half_gap(*/10px/*)*/ 0;
    }
.entriesSlideshow > .footer {
    padding-top: /*style._content_gap(*/20px/*)*/;
    width: 100%;
    }
.entriesSlideshow .recentProducts {
    height: 252px;
    }
.entriesSlideshow .recentProducts .evSlideshowMask {
    height: 230px !important;
    }
.entriesSlideshow .recentProducts a {
    display: inline-block;
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    position: relative;
    }
.entriesSlideshow .recentProducts a img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all .15 ease-in;
    }
.entriesSlideshow + .entriesSlideshow {
    margin-top: /*style._content_gap(*/20px/*)*/;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.entriesSlideshow > .body {
    margin: 0px -20px;
    padding: 0px /*style._content_gap(*/20px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.entriesSlideshow > .body {
    margin: 0px -20px;
    padding: 0 8px;
    }
}

/*
    Entries
    -------
*/
.evEntry {
    position: relative;
    width: 20%;
    width: calc(20% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evEntry > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evEntry .image {
    width: 100%;
    }
.evEntry .image img {
    width: 100%;
    height: 100%;
    }
.evEntry .image:hover ~ .titleAndBlurb a {
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
.evEntry .titleAndBlurb {
    margin: /*style._content_half_gap(*/10px/*)*/;
    text-align: center;
    }
.evEntry .titleAndBlurb a {
    display: inline-block;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evEntry {
    width: 25%;
    width: calc(25% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evEntry .image {
    float: none;
    }
.evEntry .titleAndBlurb {
    margin: 0px;
    margin-top: /*style._content_half_gap(*/10px/*)*/;
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.evEntry {
    width: 50%;
    width: calc(50% - /*style._content_half_gap(*/10px/*)*/);
    }
.evEntry:nth-child(2n) {
    margin-left: 5px;
    }
.evEntry:nth-child(2n - 1) {
    margin-right: 5px;
    }
}

/*
    Categories
*/
.evCategory {
    position: relative;
    width: /*style._category_entry_width(*/calc(20% - 20px)/*)*/;
    padding: 35px 50px;
    }
.entriesContainer > .evCategory {
    margin-bottom: 0;
    }
.evCategory[data-grid="5"] {
    width: calc(20% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategory[data-grid="4"] {
    width: calc(25% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategory[data-grid="3"] {
    width: calc(33.33% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategory[data-grid="2"] {
    width: calc(50% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategory > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evCategory .image {
    position: relative;
    }
.evCategory .image:hover ~ .content a {
    color: /*style.primary(*/#cc232a/*)*/;
    }
.evCategory .image a {
    text-align: center;
    display: inline-block;
    width: 100%;
    }
.evCategory .image img {
    max-width: 100%;
    max-height: 225px;
    }
.evCategory .content {
    background: /*style.body_background_color(*/rgba(255,255,255,.8)/*).colorAdjust(0,0,0,-20)*/;
    }
.evCategory .content .titleAndBlurb {
    text-align: center;
    padding-bottom: /*style._content_half_gap(*/10px/*)*/;
    }
.evCategory .content .blurb {
    padding-top: /*style._content_half_gap(*/10px/*)*/;
    }
.evCategory .content .buttonWrap {
    text-align: center;
    }
.evCategory .content .buttonWrap a {
    min-width: 150px;
    }
.evCategory .content .buttonWrap a span {
    padding-right: 5px;
    }
.evCategory .content h1,
.evCategory .content h2,
.evCategory .content h3,
.evCategory .content h4,
.evCategory .content h5,
.evCategory .content h6,
.evCategory .content .title {
    margin-bottom: 7px;
    }
.evCategory .content h1 a,
.evCategory .content h2 a,
.evCategory .content h3 a,
.evCategory .content h4 a,
.evCategory .content h5 a,
.evCategory .content h6 a,
.evCategory .content .title a {
    color: inherit;
    }
.evCategory .content a:hover {
    text-decoration: none;
    color: /*style.primary(*/#cc232a/*)*/;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
.evCategory,
.evCategory[data-grid] {
    width: 33.33%;
    width: calc(33.33% - /*style._content_two_third_gap(*/20px/*)*/);
    }
}

@media (max-width:850px) {
.evCategory {
    width: 50%;
    width: calc(50% - 10px);
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.evCategory[data-grid] {
    width: 50%;
    width: calc(50% - 10px);
    padding: 20px;
    }
.evCategory[data-grid] a.actionButton {
    padding: 0;
    line-height: 38px;
    min-height: 38px;
    min-width: 120px;
    }
}

/*
    Products
*/
.evCategoryProductDis {
    position: relative;
    text-align: left;
    outline: 0;
    }
.evPriceList .price {
    color: /*style.primary(*/#cc232a/*)*/;
    font-size: 1.4rem;
    font-weight: 600;
    }
ul.evPriceList li {
    font-size: 16px;
    display: block;
    padding-right: 5px;
    }
ul.evPriceList li .prefix {
    font-size: 12px;
    }
ul.evPriceList li .vat {
    font-size: 14px;
    }
ul.evPriceList li.standard,
ul.evPriceList li.rrp {
    font-size: 12px;
    }
ul.evPriceList li.current {
    font-weight: bold;
    color: #e43c3c;
    }
ul.evPriceList li.current.discount {
    color: #e43c3c;
    }
.evCategoryProduct {
    position: relative;
    text-align: left;
    width: 25%;
    width: calc(25% - /*style._content_two_third_gap(*/20px/*)*/);
    outline: 0;
    background-color: /*style.section_background_color(*/#fff/*)*/;
    padding: 20px;
    display: inline-block;
    }
.evCategoryProduct[data-grid="5"] {
    width: calc(20% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct[data-grid="4"] {
    width: calc(25% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct[data-grid="3"] {
    width: calc(33.33% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct[data-grid="2"] {
    width: calc(50% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct > .inner {
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    height: 100%;
    }
.evCategoryProduct > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evCategoryProduct .image {
    display: inline-block;
    padding: 0;
    padding-bottom: 100%;
    overflow: hidden;
    height: auto;
    min-height: 200px;
    width: 100%;
    position: relative;
    }
.evCategoryProduct .image:hover ~ .content a {
    text-decoration: /*style.link_hover_decoration(*/none/*)*/;
    }
.evCategoryProduct .image a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    }
.evCategoryProduct .image img {
    width: auto;
    top: 50%;
    left: 50%;
    position: absolute;
    backface-visibility: hidden;
    transform: perspective(500px) translate(-50%,-50%);
    transform-style: preserve-3d;
    transition: all 200ms ease-in;
    max-height: 100%;
    max-width: 100%;
    }
.evCategoryProduct .image img.productFlipImage {
    transform: perspective(500px) translate(0,-50%) rotateY(90deg);
    }
.evCategoryProduct .image.hasFlip:hover img,
.evCategoryProduct .image.hasFlip.hover img,
.evCategoryProduct .image.hasFlip:focus img,
.evCategoryProduct .image.hasFlip.focus img {
    transform: perspective(500px) translate(-100%,-50%) rotateY(-90deg);
    }
.evCategoryProduct .image.hasFlip:hover img.productFlipImage,
.evCategoryProduct .image.hasFlip.hover img.productFlipImage,
.evCategoryProduct .image.hasFlip:focus img.productFlipImage,
.evCategoryProduct .image.hasFlip.focus img.productFlipImage {
    transform: perspective(500px) translate(-50%,-50%) rotateY(0deg);
    }
.evCategoryProduct .image .addToWishlist {
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 10px;
    bottom: auto;
    left: auto;
    transition: all .15 ease-in-out;
    color: /*style.inactive_heart_color(*/#a8a8a8/*)*/;
    }
.evCategoryProduct .image .addToWishlist .label {
    display: none;
    }
.evCategoryProduct .image .addToWishlist .icon:before {
    transition: all .15 ease-in-out;
    font-size: 20px;
    }
.evCategoryProduct .image .addToWishlist[data-exists="false"] .icon:before {
    content: "\e909";
    }
.evCategoryProduct .image .addToWishlist[data-exists="true"] {
    color: /*style.active_heart_color(*/#cc232a/*)*/;
    }
.evCategoryProduct .image .addToWishlist[data-exists="true"] .icon:before {
    content: "\e908";
    }
.evCategoryProduct .image .addToWishlist:hover {
    padding: 8px;
    color: /*style.active_heart_color(*/#cc232a/*)*/;
    }
.evCategoryProduct .image .addToWishlist:hover .icon:before {
    font-size: 26px;
    }
.evCategoryProduct .content {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    overflow: hidden;
    }
.evCategoryProduct .content .titleAndBlurb {
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    overflow: hidden;
    }
.evCategoryProduct .content .titleAndBlurb h1,
.evCategoryProduct .content .titleAndBlurb h2,
.evCategoryProduct .content .titleAndBlurb h3,
.evCategoryProduct .content .titleAndBlurb h4,
.evCategoryProduct .content .titleAndBlurb h5,
.evCategoryProduct .content .titleAndBlurb h6,
.evCategoryProduct .content .titleAndBlurb .title {
    color: /*style.text_color(*/#686868/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    line-height: /*style.text_line_height(*/1.571/*)*/;
    }
.evCategoryProduct .content .titleAndBlurb h1 a,
.evCategoryProduct .content .titleAndBlurb h2 a,
.evCategoryProduct .content .titleAndBlurb h3 a,
.evCategoryProduct .content .titleAndBlurb h4 a,
.evCategoryProduct .content .titleAndBlurb h5 a,
.evCategoryProduct .content .titleAndBlurb h6 a,
.evCategoryProduct .content .titleAndBlurb .title a {
    color: inherit;
    }
.evCategoryProduct .content .averageRating {
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.evCategoryProduct .content .averageRating > .evRating,
.evCategoryProduct .content .averageRating > .totalReviews {
    display: inline-block;
    vertical-align: middle;
    }
.evCategoryProduct .content .averageRating > .totalReviews {
    display: none;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.evCategoryProduct .content form .fieldArea {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-top;
    justify-content: center;
    }
.evCategoryProduct .content form .evButton {
    min-width: 0;
    margin: 0 auto 10px;
    width: 40%;
    font-size: 14px;
    }
.evCategoryProduct .content form .evButton[type="submit"] {
    width: 55%;
    }
.evCategoryProduct .content form .evButton + .evButton {
    margin: 0;
    }
.evCategoryProduct .shopping {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    }
.evCategoryProduct .shopping .actionButton {
    display: inline-block;
    margin: 0;
    min-width: 120px;
    }
.evCategoryProduct .shopping .evProductAddToCart {
    width: 100%;
    max-width: 150px;
    }
.evCategoryProduct .shopping .evProductAddToCart .qtyField {
    margin-bottom: 10px;
    }
@media(max-width: 900px) {
.evCategoryProduct .shopping {
    flex-flow: column nowrap;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evCategoryProduct,
.evCategoryProduct[data-grid] {
    width: 33.33%;
    width: calc(33.33% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct[data-grid] ul.evPriceList li,
.evCategoryProduct[data-grid][data-grid] ul.evPriceList li {
    display: block !important;
    }
.evCategoryProduct .image,
.evCategoryProduct[data-grid] .image {
    float: none;
    }
.evCategoryProduct .content,
.evCategoryProduct[data-grid] .content {
    margin: 0px;
    margin-top: /*style._content_half_gap(*/10px/*)*/;
    }
}

@media (max-width:850px) {
.evCategoryProduct {
    width: 50%;
    width: calc(50% - 10px);
    }
.entriesContainer .evCategoryProduct {
    margin: 5px;
    }
.evCategoryProduct[data-grid] ul.evPriceList li {
    display: inline-block !important;
    }
}

@media screen and (max-width: /*style._second_special_content_break_max(*/700px/*)*/) {
.evCategoryProduct[data-grid] {
    width: 50%;
    width: calc(50% - 10px);
    }
.entriesContainer .evCategoryProduct[data-grid] {
    margin: 5px;
    }
.evCategoryProduct[data-grid][data-grid] ul.evPriceList li {
    display: inline-block !important;
    }
}

@media screen and (max-width: 580px) {
.productSlideshow .slickSlideshow .evCategoryProduct,
.productSlideshow .slickSlideshow .evCategoryProduct[data-grid] {
    width: 100%;
    }
}

/*
    Reviews
    -------
*/
.evReviewEntry {
    position: relative;
    border-bottom: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
.evReviewEntry > .inner {
    display: table;
    width: 100%;
    }
.evReviewEntry > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evReviewEntry .contentRow {
    display: table-row;
    }
.evReviewEntry .contentRow .ratingAndAuthor {
    min-width: 280px;
    display: table-cell;
    vertical-align: top;
    padding: /*style._content_two_third_gap(*/20px/*)*/ 0;
    }
.evReviewEntry .contentRow .ratingAndAuthor .reviewer {
    margin: /*style._content_two_third_gap(*/20px/*)*/ 0 /*style._content_third_gap(*/10px/*)*/;
    font-size: /*style.h5_font_size(*/18px/*)*/;
    }
.evReviewEntry .contentRow .ratingAndAuthor .date {
    padding-bottom: 7px;
    }
.evReviewEntry .contentRow .ratingAndAuthor .evRating .icon {
    font-size: 16px;
    }
.evReviewEntry .contentRow .message {
    display: table-cell;
    vertical-align: top;
    width: 100%;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    }
.evReviewEntry .contentRow .message dl {
    margin: 0px;
    }
.evReviewEntry .contentRow .message dl dt {
    clear: left;
    float: left;
    }
.evReviewEntry .contentRow .message dl dt span.label {
    display: none;
    }
.evReviewEntry .contentRow .message dl dt.pros {
    color: /*style._positive_text_color(*/#5fc050/*)*/;
    }
.evReviewEntry .contentRow .message dl dt.cons {
    color: /*style._error_text_color(*/#ef4242/*)*/;
    }
.evReviewEntry .contentRow .message dl dd {
    margin: 3px 0px /*style._content_half_gap(*/10px/*)*/ /*style._content_four_third_gap(*/40px/*)*/;
    padding-top: 1px;
    }
.evReviewEntry .contentRow .message dl dd span.no-comment {
    font-style: italic;
    color: /*style._review_flags_text_color(*/#929292/*)*/;
    }
.evReviewEntry .actionRow {
    display: table-row;
    color: /*style._review_flags_text_color(*/#929292/*)*/;
    }
.evReviewEntry .actionRow .vote {
    display: table-cell;
    vertical-align: bottom;
    width: 100%;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    padding-right: 0;
    }
.evReviewEntry .actionRow .vote .voteForm {
    float: left;
    }
.evReviewEntry .actionRow .vote .evButton {
    padding: /*style._content_third_gap(*/10px/*)*/ !important;
    background: none;
    color: /*style._review_flags_text_color(*/#929292/*)*/;
    margin: 0;
    }
.evReviewEntry .actionRow .vote .evButton:hover .label {
    text-decoration: underline !important;
    }
.evReviewEntry .actionRow .vote .evButton + .evButton {
    padding-left: 0 !important;
    }
.evReviewEntry .actionRow .vote .evButton + .evButton:before {
    content: "";
    height: 28px;
    width: 1px;
    display: inline-block;
    background: /*style.field_border_color(*/#ddd/*)*/;
    vertical-align: middle;
    margin-right: /*style._content_third_gap(*/10px/*)*/;
    }
.evReviewEntry .actionRow .report {
    float: right;
    }
.evReviewEntry .actionRow .report .evButton {
    padding-right: 5px !important;
    }
.evReviewEntry .evButton {
    height: auto;
    min-width: 0px;
    border: 0px none;
    padding: 0px !important;
    text-align: left;
    font-weight: 400;
    }
.evReviewEntry .evButton > .icon,
.evReviewEntry .evButton > .label {
    height: 20px;
    line-height: 18px;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#product-review {
    padding: 0;
    }
#product-review .sortPageWrap {
    margin: 0;
    }
.evReviewEntry .contentRow .ratingAndAuthor {
    min-width: 160px;
    }
.evReviewEntry .actionRow {
    display: none;
    }
}

@media screen and (max-width: /*style._second_special_content_break_max(*/700px/*)*/) {
.evReviewEntry > .inner {
    display: block;
    }
.evReviewEntry .contentRow {
    display: block;
    }
.evReviewEntry .contentRow .ratingAndAuthor,
.evReviewEntry .contentRow .message {
    display: block;
    }
.evReviewEntry .contentRow .message {
    border-left: 0px none;
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    padding: 5px;
    }
}

@media screen and (max-width: 400px) {
.evCategoryProduct .content {
    position: relative !important;
    }
.evCategoryProduct .blurb {
    display: none;
    }
ul.evPriceList li {
    float: left !important;
    margin: 0;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Slideshow
    ---------
*/
.evSlideshow .evSlideshowSlide .ev360 .ev360Toolbar {
    left: auto;
    right: 10px;
    }
.evSlideshow .evSlideshowButton a {
    width: 35px;
    height: 35px;
    margin: 0;
    box-shadow: none;
    border-radius: 0px;
    padding: 0;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    }
.evSlideshow .evSlideshowButton .icon {
    width: 35px;
    height: 35px;
    margin: 0px;
    line-height: 35px;
    text-align: center;
    color: inherit;
    }
.evSlideshow .evSlideshowPrevious,
.evSlideshow .evSlideshowNext {
    margin-top: -17px;
    }
.evSlideshow .evSlideshowPrevious {
    left: -40px;
    }
.evSlideshow .evSlideshowNext {
    right: -40px;
    }
.evSlideshow:hover .evSlideshowPrevious {
    left: 0;
    }
.evSlideshow:hover .evSlideshowNext {
    right: 0;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide {
    opacity: 1;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide img {
    border: 1px solid /*style.border_color(*/#fafafa/*)*/;
    transition: all ease /*style.animation_speed(*/0.3s/*)*/;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide.active img {
    border-width: 2px;
    border-color: /*style.primary(*/#cc232a/*)*/;
    }
.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%;
    transform: translateY(-50%) translateX(-50%);
    height: auto;
    width: auto;
    font-size: inherit;
    line-height: 1;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evSlideshow .evSlideshowPrevious {
    left: 0;
    }
.evSlideshow .evSlideshowNext {
    right: 0;
    }
}

/*
    Controller
    ----------
*/
.evController {
    padding: 0px;
    float: left;
    }
.evController li {
    padding: 4px !important;
    margin: 4px;
    border-radius: 100%;
    background-color: transparent;
    border-radius: 100%;
    }
.evController li a {
    width: 16px;
    height: 16px;
    border: 0px none;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.2);
    transition: all linear /*style.animation_speed(*/0.3s/*)*/;
    border-radius: 100%;
    }
.evController li a:hover,
.evController li a.hover,
.evController li a:focus,
.evController li a.focus {
    background-color: /*style.primary(*/#cc232a/*)*/;
    }
.evController li.active {
    background-color: #868180;
    background-color: rgba(255,255,255,.9);
    }
.evController li.active > a {
    background-color: /*style.primary(*/#cc232a/*)*/;
    }

/* Slick Js Slideshow */
.slickSlideshow-wrap {
    position: relative;
    }
.slickSlideshow {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    }
.slickSlideshow .slide,
.slickSlideshow .banner {
    z-index: 1;
    float: left;
    width: 100%;
    height: auto;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    }
.slickSlideshow .slide :allHeadings,
.slickSlideshow .slide p,
.slickSlideshow .banner :allHeadings,
.slickSlideshow .banner p {
    color: inherit;
    }
.slickSlideshow .slide:focus,
.slickSlideshow .banner:focus {
    outline: 0;
    }
@media (max-width:) {
}

@media (max-width:) {
}

.slickSlideshow .slide .evProductMediaIcon,
.slickSlideshow .banner .evProductMediaIcon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,.3);
    color: #fff;
    font-size: 40px;
    }
.slickSlideshow .slide .evProductMediaIcon > .icon,
.slickSlideshow .banner .evProductMediaIcon > .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    height: auto;
    width: auto;
    font-size: inherit;
    line-height: 1;
    }
.slickSlideshow .content {
    display: table;
    height: 100%;
    width: 100%;
    margin: auto;
    z-index: 3;
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%,50%);
    }
.slickSlideshow .content :editables,
.slickSlideshow .content .contentInner {
    display: table-cell;
    vertical-align: bottom;
    text-align: center;
    height: 100%;
    padding: 20px;
    }
.slickSlideshow .content .contentInner {
    text-align: center;
    }
.slickSlideshow .evCategoryProduct .content {
    display: block;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    height: auto;
    margin: 0;
    }
.slickSlideshow .bannerThumbnail {
    width: 500px;
    margin: auto;
    }
.bannerArrow {
    display: block;
    position: absolute;
    top: 0;
    z-index: 5;
    width: 100%;
    }
.bannerArrow .icon {
    color: /*style.primary(*/#cc232a/*)*/;
    font-size: 50px;
    opacity: 1;
    }
#recentProducts .slickSlideshow {
    text-align: center;
    }
#recentProducts .slickSlideshow .banner {
    padding: 0 8px;
    width: 128px;
    display: inline-block;
    float: none;
    }
#recentProducts .slickSlideshow .banner > a {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    }
#recentProducts .slickSlideshow .banner > a img {
    position: absolute;
    width: auto;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    }
.bannerWrapController {
    position: relative;
    margin: auto;
    padding: /*style._content_two_third_gap(*/20px/*)*/ 0 /*style._content_gap(*/20px/*)*/;
    }
.bannerWrapController:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.bannerWrapController:empty {
    padding: 0;
    }
.bannerWrapController.dots {
    text-align: center;
    }
.bannerWrapController .slick-prev,
.bannerWrapController .slick-next {
    top: 0;
    position: relative;
    height: auto;
    width: auto;
    min-width: 0;
    padding: 10px 13px !important;
    margin: 0;
    opacity: 1;
    border: 1px solid /*style.action_button_background_color(*/#999/*)*/;
    border-radius: 0;
    display: inline-block;
    background-color: /*style.body_background_color(*/#fff/*)*/;
    color: /*style.action_button_text_color(*/#6F6F6F/*)*/;
    transform: translate(0,0);
    left: 0;
    right: 0;
    }
.bannerWrapController .slick-prev.slick-next,
.bannerWrapController .slick-next.slick-next {
    float: right;
    margin-left: 10px;
    }
.bannerWrapController .slick-prev:before,
.bannerWrapController .slick-next:before {
    font-size: 15px;
    color: inherit;
    }
.bannerWrapController .slick-prev:focus,
.bannerWrapController .slick-next:focus {
    background-color: /*style.body_background_color(*/#fff/*)*/;
    color: /*style.action_button_text_color(*/#6F6F6F/*)*/;
    }
.bannerWrapController .slick-prev:focus:before,
.bannerWrapController .slick-next:focus:before {
    opacity: .7;
    }
.bannerWrapController .slick-prev:hover,
.bannerWrapController .slick-next:hover {
    background-color: /*style.body_background_color(*/#fff/*)*/;
    color: /*style.action_button_text_color(*/#6F6F6F/*)*/;
    }
ul.slick-dots {
    position: relative;
    bottom: 0;
    font-size: 0;
    width: auto;
    display: inline-block !important;
    z-index: 5;
    left: auto;
    right: 0;
    }
ul.slick-dots li {
    height: auto;
    width: auto;
    margin: 6px;
    display: inline-block;
    }
ul.slick-dots li button {
    display: inline-block;
    height: auto;
    width: auto;
    min-width: 0;
    padding: 0 !important;
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 5px;
    background-color: transparent;
    border-radius: 100%;
    }
ul.slick-dots li button:hover {
    opacity: 1;
    }
ul.slick-dots li button:before {
    width: 12px;
    height: 12px;
    font-size: 0;
    opacity: 1;
    top: 0;
    background: #747372;
    left: 0;
    border-radius: 100%;
    }
@media (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
ul.slick-dots li button {
    width: 20px;
    height: 20px;
    }
ul.slick-dots li button:before {
    width: 20px;
    height: 20px;
    }
}

ul.slick-dots li.slick-active {
    background-color: #868180;
    background-color: rgba(255,255,255,.4);
    }
ul.slick-dots li.slick-active button:before {
    opacity: 1;
    background: /*style.primary(*/#cc232a/*)*/;
    }
#product-footer .entriesSlideshow > .body,
.categoryList .entriesSlideshow > .body,
.featuredCategory .entriesSlideshow > .body {
    overflow: visible;
    width: 100%;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
#product-footer .entriesSlideshow > .body,
.categoryList .entriesSlideshow > .body,
.featuredCategory .entriesSlideshow > .body {
    margin: 0;
    padding: 0 0 20px;
    }
}

@media (max-width: /*style._second_special_content_break(*/700px/*)*/) {
#product-footer .entriesSlideshow > .body,
.categoryList .entriesSlideshow > .body,
.featuredCategory .entriesSlideshow > .body {
    margin: 0;
    padding: 5px 5px 20px;
    }
}

#product-footer .bannerWrapController,
.categoryList .bannerWrapController,
.featuredCategory .bannerWrapController {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 0;
    width: 500px;
    max-width: 100%;
    text-align: right;
    z-index: 1;
    }
#product-footer .bannerWrapController:after,
.categoryList .bannerWrapController:after,
.featuredCategory .bannerWrapController:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
#product-footer .bannerWrapController .slick-dots,
.categoryList .bannerWrapController .slick-dots,
.featuredCategory .bannerWrapController .slick-dots {
    position: relative;
    left: auto;
    }
@media (max-width: /*style._second_content_break(*/448px/*)*/) {
#product-footer .bannerWrapController,
.categoryList .bannerWrapController,
.featuredCategory .bannerWrapController {
    right: 25px;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Dialog
    ------ 
*/
.evDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    }
.evDialog .evDialogWindow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding: /*style._content_gap(*/20px/*)*/;
    border: 1px solid /*style.border_color(*/#fafafa/*)*/;
    border-radius: 8px;
    background: /*style.body_background_color(*/#fff/*)*/;
    box-shadow: 0px 0px 8px 0 rgba(0,0,0,.4);
    }
.evDialog .evDialogWindow .header {
    color: /*style.heading_color(*/#333/*)*/;
    }
.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 {
    padding-right: 80px;
    }
.evDialog .evDialogWindow .header .headerTitle .text {
    color: /*style.text_color(*/#686868/*)*/;
    }
.evDialog .evDialogWindow .closeIcon {
    position: absolute;
    top: 35px;
    right: 37px;
    }
.evDialog .evDialogWindow .closeIcon a {
    text-decoration: none;
    color: /*style.heading_color(*/#333/*)*/;
    width: auto;
    height: auto;
    vertical-align: middle;
    font-size: 20px;
    }
.evDialog .evDialogWindow .closeIcon a:before {
    vertical-align: middle;
    padding: 0 5px 2px 0;
    display: inline-block;
    }
.evDialog .evDialogWindow .closeIcon a:after {
    content: attr(title);
    font-family: /*style.text_font_family(*/Open Sans/*)*/;
    font-size: 16px;
    font-weight: bold;
    text-transform: Capitalize;
    }
.evDialog .evDialogWindow .closeIcon a:hover,
.evDialog .evDialogWindow .closeIcon a.hover,
.evDialog .evDialogWindow .closeIcon a:focus,
.evDialog .evDialogWindow .closeIcon a.focus {
    color: /*style.primary(*/#cc232a/*)*/;
    }
.evDialog .evDialogWindow .footer {
    display: none;
    }
.evDialog.evDialogModal {
    background: /*style.body_background_color(*/rgba(255,255,255,.7)/*).colorAdjust(0,0,0,-30)*/;
    }
.evDialogOpen #wrapper-links,
.evDialogOpen #wrapper-header,
.evDialogOpen #wrapper-mobile,
.evDialogOpen #wrapper-navigation,
.evDialogOpen #wrapper-notice {
    z-index: auto;
    }

/*
    * Product Upselling
    * -----------------
    */
#evCartUpsellScreen,
#upsellDialogInner,
#upsellSuccess {
    color: /*style.text_color(*/#686868/*)*/;
    }
#evCartUpsellScreen h1,
#evCartUpsellScreen h2,
#evCartUpsellScreen h3,
#evCartUpsellScreen h4,
#evCartUpsellScreen h5,
#evCartUpsellScreen h6,
#upsellDialogInner h1,
#upsellDialogInner h2,
#upsellDialogInner h3,
#upsellDialogInner h4,
#upsellDialogInner h5,
#upsellDialogInner h6,
#upsellSuccess h1,
#upsellSuccess h2,
#upsellSuccess h3,
#upsellSuccess h4,
#upsellSuccess h5,
#upsellSuccess h6 {
    font-size: /*style.h4_font_size(*/20px/*)*/;
    }
#evCartUpsellScreen span.inline-block,
#upsellDialogInner span.inline-block,
#upsellSuccess span.inline-block {
    max-width: calc(100% - 80px);
    }
#evCartUpsellScreen td > label,
#upsellDialogInner td > label,
#upsellSuccess td > label {
    font-weight: /*style.text_font_weight(*/400/*)*/;
    }
@media (max-width:) {
#evCartUpsellScreen td > label,
#upsellDialogInner td > label,
#upsellSuccess td > label {
    font-size: 0;
    }
#evCartUpsellScreen td > label strong,
#upsellDialogInner td > label strong,
#upsellSuccess td > label strong {
    font-size: 14px;
    }
}

.quickfind-search {
    position: relative;
    }
.pageSearchResultsCloseButton {
    display: none;
    position: absolute;
    right: 135px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    }
.pageSearchResultsCloseButton:before {
    color: white;
    background: /*style.primary(*/#cc232a/*)*/;
    padding: 5px;
    width: auto;
    height: auto;
    border-radius: 20px;
    }
.pageSearchResultsCloseButton.open {
    display: inline-block;
    }
.pageSearchResults {
    position: absolute;
    top: 100%;
    max-height: 400px;
    overflow: auto;
    width: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    }
.product-search-row {
    display: flex;
    align-items: center;
    justify-content: stretch;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    }
.product-search-row:hover {
    background: #F0F4F5;
    }
.product-search-row img {
    padding: 5px;
    }
.product-search-row .no-image {
    width: 85px;
    height: 85px;
    }
.product-search-row .product-description {
    padding-left: 10px;
    }
@media(max-width: 400px) {
.product-search-row .product-description p {
    display: none;
    }
}

.product-search-row h1,
.product-search-row h2,
.product-search-row h3,
.product-search-row h4,
.product-search-row h5,
.product-search-row h6 {
    color: /*style.text_color(*/#686868/*)*/;
    }
.product-search-row p {
    color: /*style.text_color(*/#686868/*)*/;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Heading & Text stylings
	-----------------------
	Preset styles that the cms user can choose from for any
    of the available headings (h1, h2, h3, h4, h5, h6);
*/
.light {
    opacity: 1;
    }
p.primary_color,
span.primary_color,
div.primary_color,
a.primary_color,
h1.primary_color,
h2.primary_color,
h3.primary_color,
h4.primary_color,
h5.primary_color,
h6.primary_color,
.title.primary_color {
    color: /*style.primary(*/#cc232a/*)*/;
    }
p.secondary_color,
span.secondary_color,
div.secondary_color,
a.secondary_color,
h1.secondary_color,
h2.secondary_color,
h3.secondary_color,
h4.secondary_color,
h5.secondary_color,
h6.secondary_color,
.title.secondary_color {
    color: /*style.secondary(*/#30bb65/*)*/;
    }
p.text,
span.text,
div.text,
a.text,
h1.text,
h2.text,
h3.text,
h4.text,
h5.text,
h6.text,
.title.text {
    color: /*style.text_color(*/#686868/*)*/;
    }
p.light,
span.light,
div.light,
a.light,
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.title.light {
    font-weight: /*style.light_text_font_weight(*/300/*)*/;
    }
p.normal,
span.normal,
div.normal,
a.normal,
h1.normal,
h2.normal,
h3.normal,
h4.normal,
h5.normal,
h6.normal,
.title.normal {
    opacity: 1;
    font-weight: /*style.light_text_font_weight(*/300/*)*/;
    }
p.medium,
span.medium,
div.medium,
a.medium,
h1.medium,
h2.medium,
h3.medium,
h4.medium,
h5.medium,
h6.medium,
.title.medium {
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    }
p.bold,
span.bold,
div.bold,
a.bold,
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold,
h6.bold,
.title.bold,
p.strong,
span.strong,
div.strong,
a.strong,
h1.strong,
h2.strong,
h3.strong,
h4.strong,
h5.strong,
h6.strong,
.title.strong {
    font-weight: /*style.strong_text_font_weight(*/700/*)*/;
    }
p.underline,
span.underline,
div.underline,
a.underline,
h1.underline,
h2.underline,
h3.underline,
h4.underline,
h5.underline,
h6.underline,
.title.underline {
    text-decoration: underline;
    }
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.title.light {
    font-weight: /*style.light_heading_font_weight(*/300/*)*/;
    }
h1.normal,
h2.normal,
h3.normal,
h4.normal,
h5.normal,
h6.normal,
.title.normal {
    opacity: 1;
    font-weight: /*style.light_heading_font_weight(*/300/*)*/;
    }
h1.medium,
h2.medium,
h3.medium,
h4.medium,
h5.medium,
h6.medium,
.title.medium {
    font-weight: /*style.semibold_heading_font_weight(*/600/*)*/;
    }
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold,
h6.bold,
.title.bold,
h1.strong,
h2.strong,
h3.strong,
h4.strong,
h5.strong,
h6.strong,
.title.strong {
    font-weight: /*style.strong_heading_font_weight(*/700/*)*/;
    }
.evEditable p.primary_color,
.evEditable p.secondary_color,
.evEditable p.text,
.evEditable p.underline,
.evEditable p.light,
.evEditable p.medium,
.evEditable p.normal,
.evEditable p.bold,
.evEditable span.primary_color,
.evEditable span.secondary_color,
.evEditable span.text,
.evEditable span.underline,
.evEditable span.light,
.evEditable span.medium,
.evEditable span.normal,
.evEditable span.bold,
.evEditable div.primary_color,
.evEditable div.secondary_color,
.evEditable div.text,
.evEditable div.underline,
.evEditable div.light,
.evEditable div.medium,
.evEditable div.normal,
.evEditable div.bold,
.evEditable h1.primary_color,
.evEditable h1.secondary_color,
.evEditable h1.text,
.evEditable h1.underline,
.evEditable h1.light,
.evEditable h1.medium,
.evEditable h1.normal,
.evEditable h1.bold,
.evEditable h2.primary_color,
.evEditable h2.secondary_color,
.evEditable h2.text,
.evEditable h2.underline,
.evEditable h2.light,
.evEditable h2.medium,
.evEditable h2.normal,
.evEditable h2.bold,
.evEditable h3.primary_color,
.evEditable h3.secondary_color,
.evEditable h3.text,
.evEditable h3.underline,
.evEditable h3.light,
.evEditable h3.medium,
.evEditable h3.normal,
.evEditable h3.bold,
.evEditable h4.primary_color,
.evEditable h4.secondary_color,
.evEditable h4.text,
.evEditable h4.underline,
.evEditable h4.light,
.evEditable h4.medium,
.evEditable h4.normal,
.evEditable h4.bold,
.evEditable h5.primary_color,
.evEditable h5.secondary_color,
.evEditable h5.text,
.evEditable h5.underline,
.evEditable h5.light,
.evEditable h5.medium,
.evEditable h5.normal,
.evEditable h5.bold,
.evEditable h6.primary_color,
.evEditable h6.secondary_color,
.evEditable h6.text,
.evEditable h6.underline,
.evEditable h6.light,
.evEditable h6.medium,
.evEditable h6.normal,
.evEditable h6.bold,
.evEditable .title.primary_color,
.evEditable .title.secondary_color,
.evEditable .title.text,
.evEditable .title.underline,
.evEditable .title.light,
.evEditable .title.medium,
.evEditable .title.normal,
.evEditable .title.bold {
    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
    */
.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 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 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 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 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 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 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,
.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;
    }
.evEditable p.large {
    position: inherit;
    }
.evEditable p.large.nomar {
    margin-bottom: 0px;
    }
.evEditable ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px;
    }
.evEditable ul li {
    padding-left: 45px;
    position: relative;
    }
.evEditable ul li:before {
    content: "*";
    color: /*style.primary(*/#cc232a/*)*/;
    font-size: 11px;
    display: inline-block;
    vertical-align: middle;
    margin-left: -1em;
    margin-right: .3em;
    position: absolute;
    top: 3px;
    }
.evEditable ul.faq {
    zoom: 1;
    }

/*
    Text styles
    -----------
    Preset styles that the cms user can choose from
*/
.evEditable p.error,
.evEditable span.error {
    color: /*style._error_text_color(*/#ef4242/*)*/;
    }

/*
    Column stylings
    ---------------
*/
.columns2,
.columns3,
.columns4 {
    margin: -10px;
    }
.columns2 .column1of2,
.columns2 .column1of3,
.columns2 .column2of3,
.columns2 .column1of4,
.columns2 .column3of4,
.columns2 .column1of5,
.columns2 .column2of5,
.columns2 .column3of5,
.columns2 .column4of5,
.columns3 .column1of2,
.columns3 .column1of3,
.columns3 .column2of3,
.columns3 .column1of4,
.columns3 .column3of4,
.columns3 .column1of5,
.columns3 .column2of5,
.columns3 .column3of5,
.columns3 .column4of5,
.columns4 .column1of2,
.columns4 .column1of3,
.columns4 .column2of3,
.columns4 .column1of4,
.columns4 .column3of4,
.columns4 .column1of5,
.columns4 .column2of5,
.columns4 .column3of5,
.columns4 .column4of5 {
    padding: /*style._content_half_gap(*/10px/*)*/;
    }
.csscolumns .columns2,
.csscolumns .columns3,
.csscolumns .columns4 {
    margin: 0;
    column-width: 220px;
    }
.csscolumns .columns2 [class^="column"],
.csscolumns .columns3 [class^="column"],
.csscolumns .columns4 [class^="column"] {
    float: none;
    width: auto;
    padding: /*style._content_half_gap(*/10px/*)*/ 0;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    }
.columns2:after,
.columns3:after,
.columns4:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.csscolumns .evEditable div.columns2 {
    column-count: 2;
    }
.csscolumns .evEditable div.columns3 {
    column-count: 3;
    }
.csscolumns .evEditable div.columns4 {
    column-count: 4;
    }

.lazy {
    background-color: transparent;
    }

#page-canvas {
    max-width: 1920px;
    }
a.primaryButton,
a.assetButton {
    transition: background-color 250ms linear,border-color 250ms linear,color 250ms linear !important;
    }
a.primaryButton .icon,
a.primaryButton .fa-chevron-right,
a.assetButton .icon,
a.assetButton .fa-chevron-right {
    transition: all 250ms linear !important;
    }
a.primaryButton:hover,
a.assetButton:hover {
    background-color: #fff !important;
    border-color: /*style.rebrand_red(*/#CC232A/*)*/ !important;
    color: /*style.rebrand_red(*/#CC232A/*)*/ !important;
    }
a.primaryButton:hover .icon,
a.primaryButton:hover .fa-chevron-right,
a.assetButton:hover .icon,
a.assetButton:hover .fa-chevron-right {
    color: /*style.rebrand_red(*/#CC232A/*)*/ !important;
    }
a.primaryButton:hover .icon.next,
a.primaryButton:hover .icon.fa-chevron-right,
a.primaryButton:hover .fa-chevron-right.next,
a.primaryButton:hover .fa-chevron-right.fa-chevron-right,
a.assetButton:hover .icon.next,
a.assetButton:hover .icon.fa-chevron-right,
a.assetButton:hover .fa-chevron-right.next,
a.assetButton:hover .fa-chevron-right.fa-chevron-right {
    transform: translateX(5px);
    }
a.actionButton {
    transition: background-color 250ms linear,border-color 250ms linear,color 250ms linear !important;
    }
a.actionButton .icon {
    transition: all 250ms linear !important;
    width: 15px;
    height: auto;
    font-size: 30px;
    color: #cdcdcd;
    }
a.actionButton:hover {
    background-color: /*style.colorActionButton(*/rgba(0,106,149,1)/*)*/ !important;
    border-color: /*style.colorActionButton(*/rgba(0,106,149,1)/*)*/ !important;
    color: #fff !important;
    }
a.actionButton:hover .icon.next,
a.actionButton:hover .icon.fa-chevron-right {
    transform: translateX(5px);
    }
#page-header #header-tools-container span.eyebrow {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-size: 16px !important;
    }
#page-header #header-tools-container a.tel-number {
    margin-left: 0 !important;
    }
.brand-slider .slick-track {
    height: 100px;
    }
.brand-slider .slick-track .image {
    position: relative;
    height: 100%;
    }
.brand-slider .slick-track .image img {
    height: 89px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    }
#page-links a#minicart-anchor {
    background: /*style.rebrand_red(*/#CC232A/*)*/ !important;
    }
#header-search-button {
    display: none !important;
    }
@media screen and (max-width: 1000px) {
#header-search-button {
    display: table-cell !important;
    }
}

@media screen and (min-width: 1001px) {
#page-header #header-search {
    display: table-cell !important;
    }
}

@media screen and (max-width: 1000px) {
#page-header #header-search {
    display: none;
    width: 100%;
    }
}

#page-body {
    padding: 0 !important;
    }
#wrapper-links {
    background-color: /*style.rebrand_grey(*/#F0F4F5/*)*/ !important;
    }
#wrapper-links .evMenu a {
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    }
#wrapper-navigation {
    background-color: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    }
#wrapper-navigation .evMenuLevel_1 {
    color: #fff !important;
    }
#wrapper-navigation .evMenuLevel_1 .evMenuLevel_2 {
    color: #797979 !important;
    }
#page-banner .banner-content-container .content-left .content_inner {
    background-color: #fff !important;
    padding: 56px 86px 56px 56px !important;
    }
#page-banner .banner-content-container .content-left .content_inner .banner-title {
    color: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    }
#page-banner .banner-content-container .content-left .content_inner h6.banner-text {
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 2rem;
    }
#page-banner .banner-subimage {
    transform: none !important;
    max-width: initial !important;
    max-height: initial !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    }
@media screen and (max-width: 1000px) {
#page-banner .banner-controller-container .evController li {
    box-shadow: none !important;
    border: 1px solid /*style.rebrand_blue(*/#006A95/*)*/ !important;
    }
#page-banner .banner-controller-container .evController li a {
    box-shadow: none !important;
    }
}

#wrapper-notice a:hover .special-notices-image img {
    animation-name: waggle;
    animation-duration: 1s;
    }
.special-notices-text span {
    color: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    }
span.top-selling-title {
    color: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    }
h1.product-title a {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-weight: 700 !important;
    }
div.blurb {
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    }
a.evButtonAction,
button.evButtonAction {
    background-color: /*style.colorActionButton(*/rgba(0,106,149,1)/*)*/ !important;
    border-color: /*style.colorActionButton(*/rgba(0,106,149,1)/*)*/ !important;
    color: #fff !important;
    transition: background-color 250ms linear;
    }
a.evButtonAction .icon,
a.evButtonAction .label,
button.evButtonAction .icon,
button.evButtonAction .label {
    transition: all 250ms linear;
    }
a.evButtonAction:hover,
button.evButtonAction:hover {
    background-color: #fff !important;
    border-color: /*style.colorActionButton(*/rgba(0,106,149,1)/*)*/ !important;
    }
a.evButtonAction:hover .ev-icon,
a.evButtonAction:hover .icon,
a.evButtonAction:hover .label,
button.evButtonAction:hover .ev-icon,
button.evButtonAction:hover .icon,
button.evButtonAction:hover .label {
    color: /*style.colorActionButton(*/rgba(0,106,149,1)/*)*/;
    }
a.evButtonAction:hover .ev-icon.arrowRight,
a.evButtonAction:hover .icon.arrowRight,
a.evButtonAction:hover .label.arrowRight,
button.evButtonAction:hover .ev-icon.arrowRight,
button.evButtonAction:hover .icon.arrowRight,
button.evButtonAction:hover .label.arrowRight {
    transform: translateX(5px);
    }
.featured-products {
    margin-top: 2rem !important;
    margin-bottom: 4rem !important;
    }
.featured-products button.slick-next:not(.slick-disabled):hover,
.featured-products button.slick-prev:not(.slick-disabled):hover {
    background-color: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    border-color: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    }
.featured-products button.slick-next:not(.slick-disabled):hover:before,
.featured-products button.slick-prev:not(.slick-disabled):hover:before {
    color: #fff !important;
    }
#homepage-pod-content {
    margin-bottom: 4rem;
    }
#homepage-pod-content .deal-of-the-month {
    margin-top: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    }
#homepage-pod-content .deal-of-the-month .image-container {
    height: 300px;
    }
#homepage-pod-content .deal-of-the-month .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    }
#homepage-pod-content .deal-of-the-month .title-and-blurb {
    padding: 3rem;
    }
#homepage-pod-content .deal-of-the-month .title-and-blurb h2 {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-size: 24px !important;
    line-height: 34px !important;
    margin-top: 0 !important;
    width: auto !important;
    }
#homepage-pod-content .deal-of-the-month .title-and-blurb p {
    padding: 0 !important;
    margin: 0 !important;
    width: auto;
    font-size: 16px !important;
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    line-height: 1.571 !important;
    }
#homepage-pod-content .deal-of-the-month .title-and-blurb p quote {
    display: none;
    }
#homepage-pod-content .deal-of-the-month .footer {
    padding: 3rem !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-end !important;
    }
#homepage-pod-content .deal-of-the-month .footer .evButton {
    margin: 0 !important;
    }
#homepage-pod-content .about-homepage-pod {
    margin-top: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    }
#homepage-pod-content .about-homepage-pod:before {
    background: #fff !important;
    }
#homepage-pod-content .about-homepage-pod .image-container {
    height: 300px;
    }
#homepage-pod-content .about-homepage-pod .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    }
#homepage-pod-content .about-homepage-pod .title-and-blurb {
    padding: 3rem;
    }
#homepage-pod-content .about-homepage-pod .title-and-blurb h2 {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-size: 24px !important;
    line-height: 34px !important;
    margin-top: 0 !important;
    width: auto !important;
    }
#homepage-pod-content .about-homepage-pod .title-and-blurb p {
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    font-size: 16px !important;
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    line-height: 1.571 !important;
    }
#homepage-pod-content .about-homepage-pod .title-and-blurb p quote {
    display: none;
    }
#homepage-pod-content .about-homepage-pod .footer {
    padding: 3rem;
    }
#homepage-pod-content .about-homepage-pod .footer a.actionButton {
    margin: 0 !important;
    }
@media screen and (max-width: 1000px) {
#homepage-pod-content {
    margin-bottom: 2rem;
    }
#homepage-pod-content .deal-of-the-month {
    margin-left: 0 !important;
    width: auto !important;
    margin-bottom: 2rem !important;
    }
#homepage-pod-content .deal-of-the-month .footer {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    }
}

.info-partial-wrap .information-boxes {
    margin-bottom: 4rem !important;
    }
.info-partial-wrap .information-boxes article {
    padding: 0 1rem 3rem 1rem !important;
    }
.info-partial-wrap .information-boxes article img {
    height: 220px;
    }
.info-partial-wrap .information-boxes article h1 {
    padding: 0 30px;
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-size: 18px;
    }
.info-partial-wrap .information-boxes article p {
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    margin-bottom: 1rem;
    }
@media screen and (max-width: 1000px) {
.info-partial-wrap .information-boxes {
    margin-bottom: 2rem !important;
    }
}

#about-us {
    display: flex;
    margin-bottom: 4rem;
    background: #fff;
    }
#about-us .about-us-content {
    padding: 3rem;
    width: 60%;
    }
#about-us .about-us-content h2 {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 34px !important;
    margin-top: 0 !important;
    width: auto !important;
    }
#about-us .about-us-content p {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 1rem !important;
    width: auto;
    font-size: 16px !important;
    color: #6F6F6F !important;
    line-height: 1.571 !important;
    }
#about-us .about-us-content p:last-of-type {
    margin-bottom: 0 !important;
    }
#about-us .about-us-content .actionButton {
    margin-top: 2rem;
    }
#about-us .about-us-image {
    width: 40%;
    background-image: url(/portal/web/739/content/images/about-logo-background.png?v=1637336387);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    }
@media screen and (max-width: 1000px) {
#about-us {
    flex-direction: column-reverse;
    margin-bottom: 2rem;
    }
#about-us .about-us-content {
    width: 100%;
    }
#about-us .about-us-image {
    width: 100%;
    height: 450px;
    }
}

@media screen and (max-width: 400px) {
#about-us .about-us-image {
    height: 300px;
    }
}

.wrapper-inner-main-gallery {
    margin: 0 !important;
    }
.visit-our-store {
    display: flex;
    margin-top: 4rem;
    background: #fff;
    }
.visit-our-store .visit-our-store-map {
    width: 40%;
    background-image: url(/portal/web/739/theme/pec-lights-2026-05/common/images/google-map.jpg?v=1778685683);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    }
.visit-our-store .visit-our-store-content {
    padding: 3rem;
    width: 60%;
    }
.visit-our-store .visit-our-store-content h2 {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 34px !important;
    margin-top: 0 !important;
    width: auto !important;
    }
.visit-our-store .visit-our-store-content p {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 1rem !important;
    width: auto;
    font-size: 16px !important;
    color: #6F6F6F !important;
    line-height: 1.571 !important;
    }
.visit-our-store .visit-our-store-content p:last-of-type {
    margin-bottom: 0 !important;
    }
.visit-our-store .visit-our-store-content .actionButton {
    margin-top: 2rem;
    }
@media screen and (max-width: 1000px) {
.visit-our-store {
    flex-direction: column;
    margin-top: 2rem;
    }
.visit-our-store .visit-our-store-map {
    width: 100%;
    height: 400px;
    }
.visit-our-store .visit-our-store-content {
    width: 100%;
    }
}

#mailing-list {
    display: flex;
    background: /*style.rebrand_blue(*/#006A95/*)*/ !important;
    margin-bottom: 2rem;
    }
#mailing-list #mailing-list-form {
    padding: 3rem;
    width: 60%;
    }
#mailing-list #mailing-list-form h4,
#mailing-list #mailing-list-form p {
    color: #fff !important;
    }
#mailing-list #mailing-list-form form {
    margin-top: 2rem;
    max-width: 70%;
    }
#mailing-list #mailing-list-form form button.evButton {
    background: /*style.rebrand_red(*/#CC232A/*)*/ !important;
    color: #fff;
    }
#mailing-list #mailing-list-image {
    width: 40%;
    background-image: url(/portal/web/739/theme/pec-lights-2026-05/common/images/subscribe.jpg?v=1778685683);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    }
@media screen and (max-width: 1000px) {
#mailing-list {
    flex-direction: column-reverse;
    margin-bottom: 0;
    }
#mailing-list #mailing-list-form {
    width: 100%;
    }
#mailing-list #mailing-list-form form {
    max-width: initial;
    }
#mailing-list #mailing-list-image {
    width: 100%;
    height: 300px;
    }
}

.socialIcon {
    height: 40px !important;
    width: 40px !important;
    font-size: 20px !important;
    line-height: 20px !important;
    padding: 10px !important;
    }
#footer-august-2021 {
    background-color: #fff !important;
    margin-top: 2rem !important;
    }
#footer-august-2021 #upper-footer-august-2021 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 2rem 0 !important;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-social-icons {
    display: flex;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-social-icons ul.evSocialLinks li {
    margin-right: 20px;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-social-icons ul.evSocialLinks li:last-of-type {
    margin-right: 0;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-social-icons ul.evSocialLinks li a .socialIcon:before {
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-social-icons ul.evSocialLinks li a:hover .socialIcon:before {
    color: #fff !important;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-delivery-logos {
    display: flex;
    align-items: center;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-delivery-logos img {
    padding-right: 20px;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-delivery-logos img:last-of-type {
    padding-right: 0;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-payment-logos {
    display: flex;
    align-items: center;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-payment-logos img {
    padding-right: 20px;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-payment-logos img:last-of-type {
    padding-right: 0;
    }
#footer-august-2021 #lower-footer-august-2021 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 2rem 0 !important;
    }
#footer-august-2021 #lower-footer-august-2021 p {
    color: /*style.rebrand_copy_color(*/#6F6F6F/*)*/ !important;
    margin-bottom: 0 !important;
    }
#footer-august-2021 #lower-footer-august-2021 .evMenu {
    margin-top: 5px !important;
    }
#footer-august-2021 #lower-footer-august-2021 .evMenu li {
    margin-right: 20px !important;
    }
#footer-august-2021 #lower-footer-august-2021 .evMenu li:last-of-type {
    margin-right: 0 !important;
    }
#footer-august-2021 #lower-footer-august-2021 .evMenu li a {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-weight: 600 !important;
    padding: 0 !important;
    }
#footer-august-2021 #lower-footer-august-2021 a.azexis {
    color: /*style.rebrand_black(*/#222831/*)*/ !important;
    font-weight: 600 !important;
    }
#footer-august-2021 #lower-footer-august-2021 a.azexis svg {
    margin-right: 5px !important;
    }
@media screen and (max-width: 1000px) {
#page-banner .banner-content-container .content-left .content_inner {
    padding: 2rem 0 !important;
    margin: 0 auto;
    }
#footer-august-2021 #upper-footer-august-2021 {
    flex-wrap: wrap;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-social-icons {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-delivery-logos {
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
    }
#footer-august-2021 #upper-footer-august-2021 .footer-payment-logos {
    width: 100%;
    justify-content: center;
    }
#footer-august-2021 #lower-footer-august-2021 {
    flex-wrap: wrap;
    }
#footer-august-2021 #lower-footer-august-2021 p {
    margin: 0 auto 1rem auto !important;
    }
#footer-august-2021 #lower-footer-august-2021 .evMenu {
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    }
#footer-august-2021 #lower-footer-august-2021 .evMenu li {
    display: block;
    text-align: center;
    margin-right: 0 !important;
    margin-left: 20px !important;
    margin-bottom: 10px !important;
    }
#footer-august-2021 #lower-footer-august-2021 .evMenu li:last-of-type {
    margin-bottom: 0 !important;
    }
#footer-august-2021 #lower-footer-august-2021 a.azexis {
    margin: 0 auto;
    }
}

@media screen and (max-width: 448px) {
.red-deal-icon {
    left: 0 !important;
    }
.about-homepage-pod .footer {
    padding: 0 3rem 3rem 3rem !important;
    }
.evCategoryProduct .shopping .evProductAddToCart {
    max-width: initial !important;
    }
.evProductAddToCart .qtyField .quantity-buttons {
    width: 100% !important;
    }
}

@keyframes waggle {
45% {
    transform: rotateX(-6deg) rotateY(-15deg) rotateZ(6deg);
    }
65% {
    transform: rotateX(5deg) rotateY(5deg) rotateZ(-5deg);
    }
85% {
    transform: rotateX(-2deg) rotateY(-2deg) rotateZ(2deg);
    }
0%,
100% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
}

.black-friday-notice {
    background: #cc232a;
    padding: 10px 20px;
    text-align: center;
    }
.black-friday-notice a {
    color: white;
    text-decoration: underline;
    }
.footer-delivery-logos {
    display: flex;
    flex-direction: row;
    }
.footer-delivery-logos .footer-delivery-logos-column.column-2 {
    margin-left: 20px;
    }
@media screen and (max-width: 600px) {
.footer-delivery-logos {
    flex-direction: column;
    }
.footer-delivery-logos .footer-delivery-logos-column {
    width: 100%;
    text-align: center;
    }
.footer-delivery-logos .footer-delivery-logos-column.column-2 {
    margin-left: 0;
    margin-top: 20px;
    }
}
