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


    $link:                    #e85505;
    $link-hover:            #ae550d;

    $second-bg-color: #F6F6F6;
    $second-font-color: #707070;
    $table-border-color: #D6D6D6;

    $body-font:                'Neue Helvetica W01', Helvetica, sans-serif;
    $heading-font:            'omnes-pro', sans-serif;
    font weights: 400 Regular, 600 Semibold;


    Table of Contents for search based navigation


BASE STYLES

**** Box Model Reset

**** Typography
---- Lists
---- Breadcrumbs
---- Quotations
---- Text level elements
---- Links

**** Content Design Patterns
---- Buttons
---- Expando Styles
---- Highlight box
---- simple box
---- Date Pattern
---- Site Messages
---- Checkout urgency dialogue
---- Tooltips

**** Images

**** Forms
---- Form Help
---- Form Errors
---- Horizontal Form
---- Oldschool Table based form styles
---- Submit Bar
---- Captcha
---- Autofill

**** Tables
---- No Styles Table

**** Logo Gallery

**** Helper classes
---- Clearfix
---- Floats and positioning
---- Visually Hidden
---- Tags list

GLOBAL TEMPLATE

**** Template Layout
---- Header
---- Footer
---- Processing spinner
---- site search
---- Popups

**** Widgets and modules
---- Related Links
---- Article Category Subscribe
---- Simple Image Gallery
---- Gallery
---- Gallery Preview
---- Children Page Gallery
---- Job Search
---- Order Form
---- Videos

**** Media Queries

**** Campaign bidding process

**** Print styles

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

:root {
    --color-primary: #009ddc; /* sky blue */
    --color-secondary: #135eab; /* dark blue */

    --color-alternative-light:#fbaa31;
    --color-alternative: #f47323; /* orange */
    --color-alternative-dark: #F37F37; /* orange */

    --color-accent-01-light: #c3d942; /* lime green */
    --color-accent-01: #68bd4b; /* green */
    --color-accent-01-dark: #87C85B; /* green */

    --color-grey-00: #f5f5f5;
    --color-grey-01: #ece9e3;
    --color-grey-02: #DCDCDC;
    --color-grey-03: #C3C3C3;
    --color-grey-07: #5f5f5f;
}

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

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

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

html {
    font-size: 62.5%;
}

body {
    line-height: 1.5;
    font-size: 1.6em;
    color: var(--color-grey-07, #5f5f5f);
    font-family: 'Neue Helvetica W01', Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 600px) {
    body {
        font-size: 1.5em;
    }
}


/* ---- Headings ---- */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 1.5rem 0 0.9rem 0;
    font-family: 'omnes-pro', sans-serif;
    font-weight: normal;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-weight: normal;
    line-height: 1;
    color: #8a7b7b;
}


h1, .h1 {
    color: #1c66b1;
    font-size: 4.2rem;
    line-height: 1;
    margin: 3rem 0 2.4rem;
}


h2, .h2 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.2;
    color: #009ddc;
}


h3, .h3 {
    font-size: 2.2rem;
    color: #009DDC;
    line-height: 1.2;
}

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

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

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

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    h1, .h1 {
        font-size: 3.8rem;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    h1, .h1 {
        font-size: 3.5rem;
        margin: 2.8rem 0 2.1rem;
    }
    h2, .h2 {
        font-size: 2.4rem;
    }
    h3, .h3 {
        font-size: 2.1rem;
    }
    h4, .h4 {
        font-size: 1.8rem;
    }
    h5, .h5 {
        font-size: 1.6rem;
    }
    h6, .h6 {
        font-size: 1.5rem;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    h1, .h1 {
        font-size: 2.3rem;
        margin: 1rem 0 1.5rem;
    }
    h2, .h2 {
        font-size: 2rem;
    }
    h3, .h3 {
        font-size: 1.8rem;
    }
    h4, .h4 {
        font-size: 1.7rem;
    }
    h5, .h5 {
        font-size: 1.5rem;
    }
    h6, .h6 {
        font-size: 1.4rem;
    }
}


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

p,
ol,
ul,
dl,
address {
    margin: 0 0 1.5rem;
}
@media screen and (max-width: 600px){
    p,
    ol,
    ul,
    dl,
    address {
        margin: 0 0 1.2rem;
    }
}

small {
    font-size: 12.8px;
    font-size: 1.28rem;
}

/* ---- Lists ---- */

ul {
    list-style-type: square;
}

ul,
ol {
    padding: 0 0 0 20px;
    padding: 0 0 0 2rem;
}

li {
    margin-bottom: 4px;
}


li ul,
li ol {
    list-style-type: none;
    margin: 1rem 0;
}

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

/* ---- Breadcrumbs ---- */

.breadcrumb {
    list-style-type: none;
    margin: 1.5rem 0 2rem;
    padding: 8px 13px;
    border: 1px solid #ece9e3;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #828282;
    text-transform: uppercase;
}
.breadcrumb > li {
    display: inline;
}
.breadcrumb > li a {
    color: var(--color-grey-07, #5f5f5f);
}
.breadcrumb > li:before {
    content: "\00a0//\00a0";
}
.breadcrumb > li:first-child:before {
    content: none;
}


/* ---- Quotations ---- */

blockquote {
    margin: 0 0 25px;
    font-style: normal;
}
.blockquote-content {
    position: relative;
    background-color: #ece9e3;
    font-size: 1.3rem;
    line-height: 1.5;
    border-radius: 7px;
    padding: 19px 25px;
    margin-bottom: 22px;
}
blockquote small:before {
    content: '\00A0 \2014';
}
blockquote small:after {
    content: '';
}
blockquote.pull-right {
    float: right;
    background-color: transparent;
}
blockquote.pull-right p, blockquote.pull-right small {
    text-align: right;
}
blockquote.pull-right small:before {
    content: '';
}
blockquote.pull-right small:after {
    content: '\00A0 \2014';
}
.blockquote-content:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 9px 0 9px;
    border-color: #ece9e3 transparent transparent transparent;
}
blockquote cite {
    font-style: normal;
    font-size: 1.3rem;
    padding: 0 0 0 29px;
    display: block;
}
.blockquote-content .star-rating {
    margin-bottom: 12px;
}

q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

dl,
dd {
    margin-bottom: 1.5em;
}

dt {
    font-weight: bold;
}


.dl-horizontal:before, .dl-horizontal:after {
    content: " ";
    display: table;
}
.dl-horizontal:after {
    clear: both;
}
.dl-horizontal dt {
    float: left;
    clear: left;
    width: 30.38869258%;
}
.dl-horizontal dd {
    margin-left: 32.99289258%;
}

/* ---- Text level elements ---- */

abbr[title] {
    border-bottom: 1px dotted #c6bfbf;
    cursor: help;
}

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

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

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

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

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

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

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}


/* ---- Links ---- */

a {
    color: #e85505;
    word-break: break-word;
}

a:hover {
    color: #d74c00;
}

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

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


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

Reusable bits of badass code that we probably use a lot

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

/* ---- Buttons ---- */

.button {
    display: inline-block;
    margin-bottom: 0;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    font-weight: normal;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    position: relative;
    outline: none;
}

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


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

/* ---- Colours ---- */

/* -- Orange (default) -- */
.button,
.button.button-orange {
    background-color: var(--color-alternative, #f47323);
    color: #fff;
}

/* Hover */
.button:hover,
.button:focus,
.button.button-orange:hover,
.button.button-orange:focus {
    background-color: var(--color-alternative-dark, #F37F37);
    color: #fff;
}

/* Explicit orange buttons always have white text */
.button-orange {
    color: #fff !important;
}


/* -- Clear -- */
.button.button-clear {
    background-color: transparent;
    color: inherit;
}

/* Hover */
.button.button-clear:hover,
.button.button-clear:focus {
    background-color: rgba(255,255,255,0.2);
    color: inherit;
}

/* -- White -- */
.button.button-white {
    background-color: #FFF;
    color: var(--color-grey-07, #5f5f5f);
}

/* Hover */
.button.button-white:hover,
.button.button-white:focus {
    background-color: var(--color-grey-00, #f5f5f5);
    color: var(--color-grey-07, #5f5f5f);
}

/* -- Grey -- */
.button.button-grey {
    background-color: var(--color-grey-02, #DCDCDC);
    color: var(--color-grey-07, #5f5f5f);
}

/* Hover */
.button.button-grey:hover,
.button.button-grey:focus {
    background-color: var(--color-grey-03, #C3C3C3);
    color: var(--color-grey-07, #5f5f5f);
}

/* -- Blue dashed Outline -- */
.button.button-blue-outline {
    background-color: transparent;
    color: var(--color-grey-07, #5f5f5f);
    border: 2px dashed var(--color-primary, #009ddc);
    margin: 0 auto;
    display: block;
    transition: border 150ms ease-in-out;
}

/* Hover */
.button.button-blue-outline:hover,
.button.button-blue-outline:focus {
    background-color: transparent;
    color: var(--color-grey-07, #5f5f5f);
    border: 2px dashed var(--color-secondary, #135eab);
}

/* -- Green -- */
.button.button-green {
    background-color: var(--color-accent-01, #68bd4b);
    color: #fff;
}

/* Hover */
.button.button-green:hover,
.button.button-green:focus {
    background-color: var(--color-accent-01-dark, #87C85B);
    color: #fff;
}

/* ---- Outlined ---- */
.button.button-outlined {
    border: 2px solid #ece9e3;
}

.button.button-outlined.button-outlined-white {
    border-color: #FFF;
}

/* ---- Sizes ---- */
/* Small */
.button.button-small {
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 7px 12px;
}

/* Regular (default) */
.button,
.button.button-regular {
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 9px 18px 11px;
}

/* Large */
.button.button-large {
    font-size: 2rem;
    line-height: 1.2;
    padding: 10px 21px 11px;
}

/* ---- Button Icons ---- */
.button.button-icon-after:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    position: relative;
    background-repeat: no-repeat;
}

.button.button-icon-before:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    position: relative;
    background-repeat: no-repeat;
}


/* Arrow right */
.button.button-icon-after.button-icon-after-arrow-right:after {
    width: 0;
    height: 0;
    border-left: 9px solid var(--color-alternative-light, #fbaa31);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    top: -1px;
}

/* Arrow down */
.button.button-icon-after.button-icon-after-arrow-down:after {
    width: 0;
    height: 0;
    border-top: 9px solid var(--color-alternative-light, #fbaa31);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: -1px;
}

/* GREEN - Arrow right */
.button-green.button-icon-after.button-icon-after-arrow-right:after {
    width: 0;
    height: 0;
    border-left: 9px solid var(--color-accent-01-light, #c3d942);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    top: -1px;
}

/* Arrow left */
.button.button-icon-before.button-icon-before-arrow-left:before {
    width: 0;
    height: 0;
    border-right: 9px solid var(--color-alternative-light, #fbaa31);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    top: -1px;
}


/* Arrow up */
.button.button-icon-after.button-icon-after-arrow-up:after {
    width: 0;
    height: 0;
    border-bottom: 9px solid var(--color-alternative-light, #fbaa31);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: -1px;
}

/* Wishlist blue heart */
.button.button-icon-after.button-icon-after-wishlist:after {
    content: " ";
    width: 16px;
    height: 13px;
    background-image: url(../images/wishlist-icon.png);
    background-size: 16px;
}

/* Heart */
.button.button-icon-after.button-icon-after-heart:after {
    content: " ";
    width: 18px;
    height: 14px;
    background-image: url(../images/white-heart-icon.png);
    background-size: 17px;
}

/* Map */
.button.button-icon-after.button-icon-after-map-orange,
.button.button-icon-after.button-icon-after-map-grey {
    width: 55px;
}
.button.button-icon-after.button-icon-after-map-orange:after,
.button.button-icon-after.button-icon-after-map-grey:after {
    content: " ";
    width: 30px;
    height: 27px;
    background-image: url(../images/icon-map.png);
}
.button.button-icon-after.button-icon-after-map-orange.button-text-hidden:after,
.button.button-icon-after.button-icon-after-map-grey.button-text-hidden:after {
    top: 10px;
}
.button.button-icon-after.button-icon-after-map-grey:after {
    background-position: 0 -37px;
}

/* Grid */
.button.button-icon-after.button-icon-after-grid-orange,
.button.button-icon-after.button-icon-after-grid-grey {
    width: 55px;
}
.button.button-icon-after.button-icon-after-grid-orange:after,
.button.button-icon-after.button-icon-after-grid-grey:after {
    content: " ";
    width: 30px;
    height: 27px;
    background-position: 1px 0px;
    background-image: url(../images/icon-grid.png);
}
.button.button-icon-after.button-icon-after-grid-orange.button-text-hidden:after,
.button.button-icon-after.button-icon-after-grid-grey.button-text-hidden:after {
    top: 10px;
}
.button.button-icon-after.button-icon-after-grid-grey:after {
    background-position: 1px -35px;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    /* Map */
    .button.button-icon-after.button-icon-after-map-orange,
    .button.button-icon-after.button-icon-after-map-grey {
        width: 49px;
    }
    .button.button-icon-after.button-icon-after-map-orange:after,
    .button.button-icon-after.button-icon-after-map-grey:after {
        width: 27px;
        height: 23px;
        background-image: url(../images/icon-map.png);
        background-size: 25px;
    }
    .button.button-icon-after.button-icon-after-map-orange.button-text-hidden:after,
    .button.button-icon-after.button-icon-after-map-grey.button-text-hidden:after {
        top: 10px;
    }
    .button.button-icon-after.button-icon-after-map-grey:after {
        background-position: 0 -31px;
    }

    /* Grid */
    .button.button-icon-after.button-icon-after-grid-orange,
    .button.button-icon-after.button-icon-after-grid-grey {
        width: 50px;
    }
    .button.button-icon-after.button-icon-after-grid-orange:after,
    .button.button-icon-after.button-icon-after-grid-grey:after {
        width: 23px;
        height: 22px;
        background-size: 21px;
        background-position: 1px 0px;
        background-image: url(../images/icon-grid.png);
    }
    .button.button-icon-after.button-icon-after-grid-orange.button-text-hidden:after,
    .button.button-icon-after.button-icon-after-grid-grey.button-text-hidden:after {
        top: 10px;
    }
    .button.button-icon-after.button-icon-after-grid-grey:after {
        background-position: 1px -28px;
    }
}

/* Small */
.button.button-small.button-icon-after {
    padding-right: 10px;
}
.button.button-small.button-icon-after:after {
    margin-left: 9px;
}

/* Regular */
.button.button-regular.button-icon-after {
    padding-right: 14px;
}
.button.button-regular.button-icon-after:after {
    margin-left: 10px;
}

/* Large */
.button.button-large.button-icon-after {
    padding-right: 15px;
}
.button.button-large.button-icon-after:after {
    margin-left: 11px;
}

/* Breakpoint 1 */
/* Large buttons turn regular */
@media screen and (max-width: 1180px) {
    .button,
    .button.button-regular,
    .button.button-large {
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 10px 15px;
    }
    .button.button-large.button-icon-after {
        padding-right: 14px;
    }
}
/* Breakpoint 4 */
/* Large and regular buttons turn small */
@media screen and (max-width: 950px) {
    .button.button-large,
    .button.button-regular,
    .button {
        font-size: 1.4rem;
        line-height: 1.2;
        padding: 7px 12px;
    }
    .button.button-large.button-icon-after,
    .button.button-regular.button-icon-after {
        padding-right: 8px;
    }
    .button.button-large.button-icon-after:after,
    .button.button-regular.button-icon-after:after {
        margin-left: 9px;
    }
}

/* ---- Disabled buttons ---- */
.button.button-disabled {
    opacity: 0.5;
    cursor: default;
    background-color: inherit !important;
}

/* ---- Feature buttons ---- */
.feature-button {
    position: absolute;
    right: 0;
}

/* Breakpoint 2 */
@media screen and (max-width: 950px){
    .feature-button {
        position: relative;
        float: right;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px){
    .feature-button {
        float: none;
        margin: 0 0 7px;
    }
    .feature-button-wrapper {
        text-align: right;
    }
}

/* ---- Slider buttons ---- */
.slider-buttons span {
    font-size: 1.4rem;
    padding-right: 10px;
}
.slider-buttons button:active,
.slider-buttons button:focus {
    box-shadow: none;
    outline: none;
}

/* ---- Text hidden  ---- */
.button.button-text-hidden {
    text-indent: -9999px;
    min-width: 36px;
}
.button.button-icon-after.button-text-hidden:after {
    position: absolute;
    text-indent: 0;
    margin: 0;
    left: 11px;
    top: 10px;
}
.button.button-text-hidden.button-small.button-icon-after {
    padding-left: 10px;
    padding-right: 10px;
}

/* Gets the buttons to line up with form inputs when you want them to */

.button.inline {
    margin-bottom: 0.75em;
}


/* ---- Expando Styles ---- */

.expando-opener-heading {
    color: #e85505;
}

.expando-opener-heading:hover {
    color: #ae550d;
}

a.expando-opener-link:before,
.expando-opener-heading:before {
    content:"\003e ";
    margin-right: 5px;
    display: inline-block;
    top: -2px;
    position: relative;
}

.expando-opener-heading.expanded:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);

}


hr {
    box-sizing: content-box;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ece9e3;
    margin: 2em 0;
    padding: 0;
    clear: right;
}

.hr-heavy {
    border-top: 3px solid #ece9e3;
}

/* ---- Fancyquote ---- */
.fancyquote {
    padding: 22px 60px 17px 86px;
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    border-left: 4px solid #009DDC;
    margin-left: -28px;
    margin-top: 33px;
    margin-bottom: 33px;
}
.fancyquote p:last-child {
    margin-bottom: 0;
}
.fancyquote:before,
.fancyquote:after {
    font-size: 9rem;
    position: absolute;
    line-height: 1;
    color: #BBB8B3;
}
.fancyquote:before {
    content: "\201C";
    top: -12px;
    left: 20px;
}
.fancyquote:after {
    content: "\201D";
    bottom: -41px;
    right: 10px;
}


.fancyquote.fancyquote--left,
.fancyquote.fancyquote--right {
    max-width: 440px;
}
.fancyquote.fancyquote--left {
    margin-right: 30px;
    float: left;
}
.fancyquote.fancyquote--right {
    margin-right: -28px;
    margin-left: 30px;
    float: right;
}

@media screen and (max-width: 750px) {
    .fancyquote {
        margin-left: 0;
        padding: 22px 47px 17px 60px;
    }
    .fancyquote.fancyquote--right {
        margin-right: 0;
    }
    .fancyquote.fancyquote--left,
    .fancyquote.fancyquote--right {
        max-width: 370px;
    }
    .fancyquote:before,
    .fancyquote:after {
        font-size: 6.5rem;
    }
    .fancyquote:before {
        top: -6px;
        left: 15px;
    }
    .fancyquote:after {
        bottom: -27px;
        right: 10px;
    }
}

@media screen and (max-width: 600px) {
    .fancyquote {
        margin-top: 22px;
        margin-bottom: 22px;
        font-size: 1.8rem;
    }
    .fancyquote.fancyquote--left,
    .fancyquote.fancyquote--right {
        float: none;
        max-width: none;
    }
    .fancyquote.fancyquote--left {
        margin-right: 0;
    }
    .fancyquote.fancyquote--right {
        margin-left: 0;
    }
}

/* ---- Highlight box ---- */
.highlight {
    margin: 29px 0;
    padding: 19px 25px;
    border: 3px solid #C3D942;
    border-radius: 5px;
}
.highlight h2:first-child,
.highlight h3:first-child {
    margin-top: 0;
}
.highlight > :last-child {
    margin-bottom: 0;
}
.highlight a {
	color: var(--color-grey-07, #5f5f5f);
}
.highlight a:hover {
	color: #000;
}


.highlight--center-content {
    text-align: center;
}

.highlight--left,
.highlight--right {
    max-width: 440px;
}
.highlight--left {
    float: left;
    margin: 0 30px 20px 0;
}

.highlight--right {
    float: right;
    margin: 0 0 20px 30px;
}


/* Has useful information at the top of various pages */
.helpful-information {
    margin: 50px 0 50px 0;
    text-align: center;
}
.helpful-information:first-child {
    margin-top: 0;
}
.helpful-information a {

}
.helpful-information a:hover {

}
.helpful-information h2 {
    margin-top: 0;
}
.helpful-information p {
    margin: 5px 0;
}
.helpful-information > :last-child {
    margin-bottom: 0;
}


/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .highlight--left,
    .highlight--right {
        max-width: 370px;
    }
}

@media screen and (max-width: 600px) {
    .highlight {
        margin-top: 22px;
        margin-bottom: 22px;
        padding: 13px 20px;
    }
    .highlight--left,
    .highlight--right {
        float: none;
        margin: 22px 0;
        max-width: none;
    }
}


/* ---- simple box ---- */

.box {
    padding: 10px 20px;
}

@media screen and (min-width: 1000px) {
    .box {
        padding: 20px 30px;
    }
}

/* ---- Date Pattern ---- */

.calendar-date {
    background: #e85505;
    color: #fff;
    border-radius: 6px;
    padding: 0px 0 5px;
    width: 60px;
    text-align: center;
}
.calendar-date-text {
    color: #fff;
    text-decoration: none; /* Used if the date is a link */
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.calendar-date-text span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    text-transform: uppercase;
}


/* ---- Site Messages ---- */
ul.messages {
    list-style: none;
    margin: 16px 0 25px;
    padding: 0;
}
ul.messages .error {
    border: 1px solid #DE5656;
}
ul.messages .confirm {
    border: 1px solid #68BD4B;
}
ul.messages .process {
    border: 1px solid #009DDC;
}
ul.messages li {
    color: #000 !important;
    background: #FFF;
    margin: 0 0 15px;
    padding: 13px 25px;
    vertical-align: bottom;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2em;
    border-radius: 3px;
}

.bid-popup-field-error {
    color: #BD1313;         /* least offensive colour I could find */
}


/* On the auction page, need to tweak the margin; desktop only */
@media screen and (min-width: 600px) {
    .messages-wrap--auction-full {
        margin: 25px 0 -50px 0;
    }
}

/* ---- Checkout urgency dialogue ---- */
/* small */
.urgency-dialogue-anchor {
    position: fixed;
    bottom: calc(10% - 33px);
    left: 0;
    padding: 0;
    z-index:100;
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}
.urgency-dialogue-anchor.hidden {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}
.urgency-dialogue {
    position: relative;
    cursor: pointer;
    transition: ease 400ms;
    -webkit-transition: ease 400ms;
    -moz-transition: ease 400ms;
    -ms-transition: ease 400ms;
    -o-transition: ease 400ms;
    position: relative;
    border-radius: 0 7px 7px 0;
    -webkit-border-radius: 0 7px 7px 0;
    -moz-border-radius: 0 7px 7px 0;
    -ms-border-radius: 0 7px 7px 0;
    -o-border-radius: 0 7px 7px 0;
    background: rgb(19,94,171);
    background: -moz-linear-gradient(129deg, rgba(41,51,155,1) 0%, rgba(19,94,171,1) 100%);
    background: -webkit-linear-gradient(129deg, rgba(41,51,155,1) 0%, rgba(19,94,171,1) 100%);
    background: linear-gradient(129deg, rgba(41,51,155,1) 0%, rgba(19,94,171,1) 100%);
    color: #ffffff;
    padding: 20px 60px 20px 106px;
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.4);
}
.urgency-dialogue h3 {
    color: #ffffff;
    display: inline-block;
    margin: 0;
}
.urgency-dialogue__tagline {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 1em;
}
.urgency-dialogue__dismiss {
    -webkit-appearance: none;
    position: absolute;
    top: calc(50% - 24px);
    right: 0;
    text-indent: -9999px;
    overflow: hidden;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: none;
    background-image: url(../images/icon_cross.svg);
    background-position: center center;
    background-repeat: no-repeat;
    outline: none;
}
.urgency-dialogue .section-header-icon {
    margin-left: 0;
    left: -16px;
    top: -16px;
}
.animation-scale-pulse {
    -webkit-animation: scalePulse 2.75s linear infinite;
    animation: scalePulse 2.75s linear infinite;
}

/* large */
.urgency-dialogue-anchor--lrg {
    width: 460px;
    bottom: 0;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}
.urgency-dialogue--lrg {
    margin: 10px;
    padding: 40px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.urgency-dialogue--lrg h3 {
    font-size: 3.6vw;
    display: block;
    margin: 1.5rem 0 0.9rem 0;
}
.urgency-dialogue--lrg .section-header-icon {
    margin-bottom: 40px;
    margin-left: 40px;
    left: 0;
    top: -52px;
}
.urgency-dialogue--lrg .section-header-icon:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.4);
}
.urgency-dialogue--lrg .section-header-icon span:after {
    content: none;
}
.urgency-dialogue--lrg .urgency-dialogue__dismiss {
    top: 0;
}
/* Breakpoint 2 */
@media screen and (max-width: 950px) {

}
/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .urgency-dialogue {
        padding: 20px 48px 20px 20px;
    }
    .urgency-dialogue__tagline {
        margin-left: 0;
        font-family: 'omnes-pro', sans-serif;
    }
    .urgency-dialogue .section-header-icon {
        display: none;
    }
    .urgency-dialogue-anchor {
        max-width: calc(100% - 40px);
    }
    /* large */
    .urgency-dialogue-anchor {
        max-width: 100%;
    }
    .urgency-dialogue--lrg h3 {
        font-size: 3.6rem;
        margin-top: 0;
    }
}

/* ---- Tooltips ---- */
.tooltip {
	position: relative;
}
.tooltip__title {
	position: relative;
	z-index: 1;
    opacity: 1;
    transition: all 100ms ease-in-out;
}
.tooltip:hover .tooltip__title {
    opacity: 0.7;
}
.tooltip__content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--color-grey-07, #5f5f5f);
	max-width: 280px;
	min-width: 200px;
	padding: 10px 10px;
	font-size: 1.1rem;
	border-radius: 4px;
	margin-top: 7px;
	text-align: center;
	pointer-events: none;
	color: #FFF;
	z-index: 98;
	font-weight: 400;
	white-space: normal;
	text-transform: none;
    font-family: 'Neue Helvetica W01', Helvetica, sans-serif;
}
.tooltip__content:before {
	content: " ";
	position: absolute;
	bottom: 100%;
	left: 14px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #5f5f5f transparent;
}
.tooltip.tooltip--right .tooltip__content:before {
    right: 14px;
    left: auto;
}

.tooltip--button:hover .tooltip__content {
    display: block;
    -webkit-animation: fadeInOpacity .2s ease;
    animation: fadeInOpacity .2s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}


/* Tooltip icon sans title */
.tooltip.tooltip--icon {
    width: 100%;
    height: 100%;
}
.tooltip__icon {
	border-radius: 50%;
	background-color: var(--color-grey-07, #5f5f5f);
	color: #FFF;
    width: 22px;
    height: 22px;
	cursor: pointer;
	text-align: center;
	display: none;
	-webkit-appearance: none;
	border: none;
	outline: none;
	padding: 0;
    display: inline-block;
}

.tooltip.tooltip--icon .tooltip__title {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.tooltip.tooltip--icon .tooltip__content {
	left: -8px;
	right: auto;
}
.tooltip.tooltip--icon.tooltip--right .tooltip__content {
	right: -8px;
	left: auto;
}

/* icon help */
.icon-help {
    background: #5f5f5f url(../images/icon_question-mark.svg) center center no-repeat;
    background-size: 55%;
}


/* ---- Tabs ---- */
.tabs-wrapper {
    margin: 20px 0;
}
.tabs {
    border: 1px solid #e2e7ed;
    padding: 24px 30px;
    position: relative;
}

.tab.tab-active {
    clip: auto;
    height: auto;
    margin: auto;
    overflow: visible;
    padding: 0;
    position: static;
    width: auto;
}
.tab.tab-active .tab-content {
    -webkit-animation: fadeInUp 400ms;
    animation: fadeInUp 400ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/* -- Buttons -- */
.tab-buttons-list {
    padding: 0;
    list-style: none;
    border-bottom: 3px solid #ece9e3;
}
.tab-buttons-list-item {
    float: left;
    margin-right: 9px;
}
.tab-buttons-list-item:last-child {
    margin-right: 0;
}
.tab-button {
    -webkit-appearance: none;
    outline: none;
    border: none;
    font-weight: 300;
    text-decoration: none;
    display: block;
    background-color: transparent;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    color: #e85505;
}

.tab-buttons-list-item.column > .tab-button {
    width: 100%;
}
.tab-button,
.tab-buttons-list-item:after {
    transition: all 200ms ease-in;
}
.tab-buttons-list-item:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 1px;
    right: 1px;
    height: 1px;
    background-color: #FFF;
    opacity: 0;
}
/* Hover/focus */
.tab-button:hover,
.tab-button:focus {
    color: #d74c00;
}
/* Active */
.tab-buttons-list-item.tab-buttons-list-item-active .tab-button {
    background-color: #FFF;
    color: #737373;
    border-top-color: #ece9e3;
    border-left-color: #ece9e3;
    border-right-color: #ece9e3;
    border-radius: 4px 4px 0 0;
    padding-right: 16px;
    padding-left: 16px;
}
.tab-buttons-list-item.tab-buttons-list-item-active:after {
    opacity: 1;
}
/* Centered */
.tab-buttons-list-center {
    text-align: center;
}
.tab-buttons-list-center .tab-buttons-list-item {
    float: none;
    display: inline-block;
    vertical-align: bottom;
}

.tab-buttons-list-item,
.tab-buttons-list-title {
    margin-bottom: -3px;
}
.tab-button,
.tab-buttons-list-title {
    padding: 10px 6px 11px;
    font-size: 1.6rem;
    line-height: 1.2;
}

/* Titles */
.tab-buttons-list-title {
    display: inline-block;
    color: var(--color-grey-07, #5f5f5f);
    padding-right: 14px;
}

.feature-button + .tabs-wrapper .tab-buttons-list {
    padding-right: 140px;
    padding-left: 140px;
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .feature-button + .tabs-wrapper .tab-buttons-list {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .tab-buttons-list-title {
        display: none;
    }
    .tab-button,
    .tab-buttons-list-title {
        font-size: 1.5rem;
    }
    .tab-buttons-list-item.tab-buttons-list-item-active .tab-button {
        padding-right: 8px;
        padding-left: 8px;
    }
    .tabs-wrapper {
        margin: 10px 0 20px;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .tab-button,
    .tab-buttons-list-title {
        padding: 5px 0 7px;
        font-size: 1.4rem;
    }
    .tab-buttons-list-item {
        margin-right: 4px;
    }
    .tab-buttons-list {
        border-width: 2px;
    }
    .tab-button {
        border-top-width: 2px;
        border-left-width: 2px;
        border-right-width: 2px;
    }
    .tab-buttons-list-item,
    .tab-buttons-list-title {
        margin-bottom: -2px;
    }
}

/* Breakpoint extra */
@media screen and (max-width: 380px) {
    .tab-button,
    .tab-buttons-list-title {
        font-size: 1.2rem;
    }
    .tab-buttons-list-item {
        margin-right: 3px;
    }
}

/* ---- Packages ---- */
.auctions--related-container {
    margin-top: 60px;
}

.packages-list-wrapper {
    padding-bottom: 2em;
}

.video-banner + .results-container {
	padding-top: 0;
}

ul.packages {
    margin: 15px 0 0;
    padding: 0 8px;
    list-style: none;
}
ul.packages > li {
    margin-bottom: 31px;
    transition: ease 400ms;
    position: relative;
    cursor: pointer;
}
ul.packages.js-not-clickable > li {
    cursor: auto;
}

ul.packages > li:hover {
    z-index: 1;
}
ul.packages > li:after {
    content: " ";
    border: 3px solid #ece9e3;
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 15px;
    opacity: 0;
    transition: ease 400ms;
}
.section--featured-auctions ul.packages > li:after {
    display: none;
}
ul.packages > li:hover:after,
ul.packages > li.active:after {
    opacity: 1;
}
ul.packages li .package-detail {
    position: relative;
    margin-top: 4px;
    background-color: #F3F1ED;
    border-radius: 0 0 7px 7px;
}
ul.packages li .package-detail .blue-detail {
    background: #009ddc;
    padding: 14px 15px 13px 21px;
    position: relative;
    border-radius: 7px 7px 0 0;
}
ul.packages li .package-detail .blue-detail h3 {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 55px 0 0;
    padding: 0;
}
.packages-list-wrapper-no-time ul.packages li .package-detail .blue-detail h3 {
    padding: 0;
    text-overflow: initial;
    white-space: initial;
    overflow: visible;
}


ul.packages li .package-detail .blue-detail h3 .blue_detail__clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

ul.packages li .package-detail .blue-detail h3 .blue-detail__highlight {
    display: block;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-top: auto;
}
.blue-detail .time {
    float: right;
    text-align: center;
    color: #fff;
    width: 60px;
    position: absolute;
    top: 9px;
    right: 8px;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
    padding-top: 4px;
}
.blue-detail .time i {
    background: url(../images/time-icon.png) center top no-repeat;
    width: 25px;
    height: 25px;
    display: block;
    margin: 0 auto;
    background-size: 25px 25px;
}
.blue-detail .time span {
    font-size: 1.9rem;
    display: block;
    line-height: 1.2;
}
.blue-detail .time span small {
    font-size: 1.3rem;
}
ul.packages li .package-detail .pic {
    overflow: hidden;
}
ul.packages .package-image {
    background-size: cover;
    background-position: center center;
    position: relative;
}
.package-detail__tag {
    position: absolute;
    left: 17px;
    bottom: 28px;
    display: grid;
    grid-auto-flow: column;
    gap: 0.25em;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    font-size: 1.4rem;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
}
:where(.packages) > li:hover .package-detail__tag {
    opacity: 0.25em;
}
.package-detail__tag__item {
    background: var(--color-secondary, #135eab);
    padding: 0.1em 0.2em 0.15em;
    display: block;
    border-radius: 2px;
}
.package-detail--ended .package-image{
    opacity:0.33;
}
.package-image--video:after {
    content: '\00a0';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/icon_playhead.svg) no-repeat center 47%;
    opacity: .8;
    -webkit-box-shadow:inset 0 0 30px 0 rgba(0,0,0,.25);
    box-shadow:inset 0 0 30px 0 rgba(0,0,0,.25);
    transition: all 400ms ease-in-out;
}
@media screen and (min-width: 37.5em) {
    .package-image--video:after {
        background-position: center 55%;
    }
}
.package-image--video:hover:after {
    opacity: 1;
    -webkit-box-shadow:inset 0 0 45px 0 rgba(0,0,0,.45);
    box-shadow:inset 0 0 45px 0 rgba(0,0,0,.45);
}
ul.packages li .package-detail .pic img {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.packages-list-wrapper-no-hover ul.packages li .package-detail .pic img {
    clip: auto;
    height: auto;
    margin: auto;
    overflow: auto;
    position: relative;
    width: 100%;
}
ul.packages li .package-detail .pic .price {
    position: absolute;
    background: #f47323;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    min-width: 84px;
    min-height: 84px;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.1;
    padding: 0 6px 2px;
    aspect-ratio: 1 / 1;
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
}
ul.packages li .package-detail .pic .price small {
    font-weight: 300;
    font-family: 'Neue Helvetica W01', Helvetica, sans-serif;
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.1;
}
ul.packages li .package-detail .pic .price span {
    position: relative;
    display: block;
    z-index: 2;
    font-family: 'omnes-pro', sans-serif;
    height: 100%;
}
ul.packages li .package-detail .pic .price span:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 13px solid #f47323;
    content: "";
    height: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 100%;
    width: 0;
    margin-top: -2px;
}
ul.packages li .package-detail .pic .pic-detail {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    color: var(--color-grey-07, #5f5f5f);
    padding: 20px;
    transition: opacity ease 400ms;
}
ul.packages li .package-detail .pic .pic-detail b {
    text-transform: uppercase;
    font-size: 1.4rem;
    float: left;
    width: 55%;
    margin: 0 5px 13px 0;
}
ul.packages li .package-detail .pic .pic-detail p {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 10px 0 11px;
    clear: both;
    min-height: 126px;
    max-height: 126px;
    overflow: hidden;
}
ul.packages li .package-detail .pic .pic-detail strong {
    text-transform: uppercase;
    font-size: 1.4rem;
    float: left;
    width: 63%;
    margin-bottom: 10px;
}
ul.packages li .package-detail .pic .pic-detail .package-detail--price {
    font-size: 2.9rem;
    font-weight: 600;
    font-family: 'omnes-pro', sans-serif;
    display: block;
    float: left;
}
ul.packages li .package-detail .pic .pic-detail span small {
    font-weight: normal;
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: 'Neue Helvetica W01', Helvetica, sans-serif;
}
ul.packages li .package-detail .pic .pic-detail .right-detail {
    font-size: 1.4rem;
    width: 35%;
    float: left;
    font-weight: 600;
    line-height: 1.2;
    text-align: right;
}
.person-icon {
    background: url(../images/man-icon.png) 0 0 no-repeat;
    display: inline-block;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    background-repeat: no-repeat;
}
.calendar-icon {
    background: url(../images/moon-icon.png);
    display: inline-block;
    background-size: 17px 17px;
    width: 17px;
    height: 17px;
    margin: 0 5px;
    background-repeat: no-repeat;
}

ul.packages li .package-detail .click-detail {
    padding: 11px 20px;
    position: relative;
    z-index: 3;
}
.packages .button.button-blue-outline {
    /* keep the space of the outline buttons the same as normal buttons
    to keep cards matching heights with this old grid system */
    margin-top: -2px;
    margin-bottom: -2px;
}
ul.packages li .package-detail .click-detail .button.button-clear {
    padding-left: 22px;
    padding-right: 14px;
}
.button-auction-ended-close {
    display: block;
    margin: 0 auto;
}
button.button.button-auction-ended-close:hover,
button.button.button-auction-ended-close:focus {
    background-color: #f47323;
    color: #fff;
    border: 2px solid #f47323;
}
.package-detail--wishlist-button {
    -webkit-appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    text-transform: uppercase;
    font-family: 'omnes-pro', sans-serif;
    text-align: left;
    color: #135EAB;
    font-weight: 600;
    line-height: 1.1;
    font-size: 1.2rem;
    float: left;
    border-left: 2px solid #DAD7D2;
    padding: 11px 20px 10px 57px;
    margin-left: 19px;
    position: relative;
}
.package-detail--wishlist-button:before {
    content: " ";
    background: url(../images/wishlist-icon.png) no-repeat;
    background-size: 26px;
    position: absolute;
    top: 15px;
    left: 20px;
    width: 26px;
    height: 21px;
}
.package-detail--wishlist-button:hover,
.package-detail--wishlist-button:focus {
    opacity: 0.8;
}
.package-detail--wishlist-button-add {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.add-to-wishlist-button-wrapper {
    position: absolute;
    z-index: 9;
    top: 16px;
    left: 20px;
}
.add-wishlist-button {
    border-radius: 7px;
    background-color: #FFF;
    padding: 2px 8px 6px 36px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-family: 'omnes-pro', sans-serif;
}
.add-wishlist-button:hover,
.add-wishlist-button:focus {
    background-color: #F3F3F3;
}
.add-wishlist-button:before {
    content: " ";
    position: absolute;
    left: 8px;
    top: 9px;
    background: url(../images/wishlist-icon-light-blue.png) no-repeat;
    display: block;
    width: 22px;
    height: 18px;
}
.add-wishlist-button span {
    display: block;
}
.add-wishlist-add {
    color : #009ddc;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}
.add-wishlist-wishlist {
    color: #656565;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-top: -5px;
}

/* Grid */
.packages-list-wrapper-grid ul.packages > li {
    width: 30.7%;
    float: left;
    margin-left: 3.9%;
}
.packages-list-wrapper-grid ul.packages > li:nth-child(3n + 1) {
    margin-left: 0;
    clear: left;
}
.packages-list-wrapper-grid ul.packages > li .package-detail .pic .pic-detail {
    opacity: 0;
    background: rgba(255,255,255,0.9);
    min-height: 210px;
}
.packages-list-wrapper-grid ul.packages > li:hover .pic .pic-detail {
    opacity: 1;
}
.packages-list-wrapper-grid ul.packages .package-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.packages-list-wrapper-grid  ul.packages li .package-detail .pic {
    position: relative;
}
.packages-list-wrapper-grid ul.packages li .package-detail .pic .price {
    bottom: 22px;
    right: 12px;
}



.auction-description--hover {
    list-style-type: square;
    min-height: 104px;
    margin-top: 0;
    margin-bottom: 0;
}
.packages-list-wrapper-grid .auction-description--full {
    display: none;
}
.packages-list-wrapper-blocks .auction-description--hover {
    display: none;
}



/* Blocks */
.packages-list-wrapper-blocks ul.packages li .package-detail .pic .pic-detail {
    background: #F3F1ED;
    overflow: hidden;
    padding-left: 370px;
}
.packages-list-wrapper-blocks ul.packages .package-image {
    width: 350px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    border-radius: 7px 0 0 7px;
    background-color: #404040;
}
.packages-list-wrapper-blocks ul.packages li .package-detail .blue-detail {
    margin-left: 350px;
    border-radius: 0 7px 0 0;
}
.packages-list-wrapper-blocks ul.packages li .package-detail .click-detail {
    border-radius: 0 0 7px 0;
    margin-left: 350px;
}
.packages-list-wrapper-blocks ul.packages li .package-detail .pic .price {
    top: 26px;
    left: 21px;
    z-index: 7;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    ul.packages li .package-detail .pic .pic-detail p {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    ul.packages li .package-detail .pic .pic-detail {
        padding: 13px 15px;
    }
    .packages-list-wrapper-grid ul.packages > li {
        width: 31.33333%;
        margin-left: 3%;
    }
    ul.packages li .package-detail .click-detail .button.button-clear {
        padding-left: 9px;
        padding-right: 9px;
    }
    ul.packages li .package-detail .click-detail {
        padding: 11px 15px;
    }
    ul.packages li .package-detail .pic .pic-detail span small {
        display: inline;
    }
    ul.packages li .package-detail .pic .pic-detail .package-detail--price {
        font-size: 2.7rem;
        float: none;
    }
    ul.packages li .package-detail .pic .price {
        min-width: 70px;
        min-height: 70px;
        font-size: 2.1  rem;
    }
    ul.packages li .package-detail .pic .price small {
        font-size: 1rem;
    }
    ul.packages li .package-detail .pic .price span:after {
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-top: 11px solid #f47323;
        margin-top: -3px;
    }
    .packages-list-wrapper-blocks ul.packages .package-image {
        width: 270px;
    }
    .packages-list-wrapper-blocks ul.packages li .package-detail .pic .pic-detail {
        padding-left: 286px;
    }
    .packages-list-wrapper-blocks ul.packages li .package-detail .blue-detail {
        margin-left: 270px;
    }
    .packages-list-wrapper-blocks ul.packages li .package-detail .click-detail {
        margin-left: 270px;
    }

    .package-detail--wishlist-button {
        float: none;
        border-left: none;
        padding: 0 20px 0 35px;
        margin-left: 0;
        font-size: 1.1rem;
        display: inline-block;
    }
    .package-detail--wishlist-button:before {
        left: 0;
        top: 4px;
    }

    ul.packages li .package-detail .pic .pic-detail strong {
        font-size: 1.2rem;
        width: auto;
        float: none;
        display: block;
        margin-bottom: 4px;
    }
    ul.packages li .package-detail .pic .pic-detail .right-detail {
        font-size: 1.2rem;
        width: auto;
        float: none;
        text-align: left;
        margin-left: 0;
    }
    ul.packages li .package-detail .blue-detail h3 {
        font-size: 1.6rem;
        margin: 0 48px 0 0;
    }
    .blue-detail .time {
        width: 45px;
        top: 6px;
        padding-top: 5px;
    }
    .blue-detail .time i {
        width: 20px;
        height: 20px;
        background-size: 20px;
    }
    .blue-detail .time span {
        font-size: 1.4rem;
    }
    .blue-detail .time span small {
        font-size: 1.2rem;
    }
    ul.packages li .package-detail .blue-detail {
        padding: 11px 15px 11px 15px;
    }
    ul.packages li .package-detail .pic .pic-detail .package-detail--price {
        display: none;
    }
    ul.packages li .package-detail .pic .pic-detail p {
        font-size: 1.3rem;
    }
    ul.packages li .package-detail .click-detail .button.button-large {
        font-size: 1.3rem;
        padding: 7px 8px;
    }
    ul.packages li .package-detail .click-detail .button.button-large:after {
        margin-left: 6px;
    }
    .packages-list-wrapper-grid ul.packages li .package-detail .pic .pic-detail {
        min-height: 52px;
    }

    .auction-description--hover {
        min-height: 156px;
    }

    .package-detail--wishlist-button,
    .package-detail--wishlist-button-add {
        font-size: 1.6rem;
    }
    .package-detail--wishlist-button {
        padding: 0 0 0 33px;
    }
    .package-detail--wishlist-button-add {
        display: inline;
    }
    .package-detail--wishlist-button:before {
        top: 0;
        background-size: 23px;
        width: 23px;
        height: 20px;
    }

}


/* iPad breakpoint - remove hover capabilities */
@media screen and (max-width: 1024px) {
    .pic-detail-content {
        display: none;
    }
    .packages-list-wrapper-grid ul.packages li .package-detail .pic .pic-detail {
        min-height: 0;
        height: auto !important;
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        background-color: rgba(0,157,220,0.6);
        color: #FFF;
        opacity: 1;
        padding: 5px 15px;
    }
    .packages-list-wrapper-grid ul.packages .package-image {
        position: relative;
        height: 180px;
    }
    ul.packages li .package-detail .pic .pic-detail strong {
        float: left;
        margin: 0;
    }
    ul.packages li .package-detail .pic .pic-detail .right-detail {
        float: right;
        margin-left: 2%;
    }
    ul.packages li:after {
        content: none;
    }
    .person-icon {
        background-image: url(../images/man-icon-white.png);
        background-size: 13px;
        width: 13px;
        height: 14px;
        margin: 0 5px -2px 0;
    }
    .calendar-icon {
        background-image: url(../images/moon-icon-white.png);
        background-size: 13px;
        width: 13px;
        height: 14px;
        margin: 0 5px -2px;
    }

    /* Block list */
    .packages-list-wrapper.packages-list-wrapper-blocks .person-icon {
        background-image: url(../images/man-icon.png);
    }
    .packages-list-wrapper.packages-list-wrapper-blocks .calendar-icon {
        background-image: url(../images/moon-icon.png);
    }
    .packages-list-wrapper.packages-list-wrapper-blocks .pic-detail-content {
        display: block;
    }

    ul.packages li .package-detail .pic .pic-detail strong {
        font-size: 1.2rem;
        width: auto;
        float: none;
        display: block;
        margin-bottom: 4px;
    }
    ul.packages li .package-detail .pic .pic-detail .right-detail {
        font-size: 1.2rem;
        width: auto;
        float: none;
        text-align: left;
        margin-left: 0;
    }
    ul.packages li .package-detail .blue-detail h3 {
        font-size: 1.6rem;
        margin: 0 48px 0 0;
    }
    .blue-detail .time {
        width: 45px;
        top: 6px;
        padding-top: 6px;
        line-height: 1.12;
    }
    .blue-detail .time i {
        width: 20px;
        height: 20px;
        background-size: 20px;
    }
    .blue-detail .time span {
        font-size: 1.4rem;
    }
    .blue-detail .time span small {
        font-size: 1.2rem;
    }
    ul.packages li .package-detail .blue-detail {
        padding: 11px 15px 11px 15px;
    }
    ul.packages li .package-detail .pic .pic-detail .package-detail--price {
        display: none;
    }
    ul.packages li .package-detail .pic .pic-detail p {
        font-size: 1.3rem;
    }
    ul.packages li .package-detail .click-detail .button.button-large {
        font-size: 1.3rem;
        padding: 7px 8px;
    }
    ul.packages li .package-detail .click-detail .button.button-large:after {
        margin-left: 6px;
    }
    .packages-list-wrapper-grid ul.packages li .package-detail .pic .pic-detail {
        min-height: 52px;
    }

    .auction-description--hover {
        min-height: 156px;
    }

    .package-detail--wishlist-button,
    .package-detail--wishlist-button-add {
        font-size: 1.6rem;
    }
    .package-detail--wishlist-button {
        padding: 0 0 0 33px;
    }
    .package-detail--wishlist-button-add {
        display: inline;
    }
    .package-detail--wishlist-button:before {
        top: 0;
        background-size: 23px;
        width: 23px;
        height: 20px;
    }

}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {

    ul.packages li {
        margin-bottom: 21px;
    }
    .packages-list-wrapper-grid ul.packages li {
        width: 48.5%;
    }
    .packages-list-wrapper-grid ul.packages li:nth-child(3n + 1) {
        margin-left: 3%;
        clear: unset;
    }
    .packages-list-wrapper-grid ul.packages li:nth-child(2n + 1) {
        margin-left: 0;
        clear: left;
    }
    ul.packages {
        padding: 0;
        margin: 20px 0 -21px;
    }
    .auctions--related-container {
        margin-top: 30px;
    }
}


/* Breakpoint 3 */
@media screen and (max-width: 750px) {

}

@media only screen and (min-width: 501px) {
    ul.packages li .package-detail .blue-detail h3 {
        min-height: calc(1.2em * 3); /* line-height * 3 lines based on font size */
        display: grid;
    }
}


/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .auctions--related-container {
        margin-top: 10px;
    }
    .packages-list-wrapper-blocks ul.packages .package-image {
        width: 100%;
        height: 200px;
        position: relative;
        border-radius: 0;
    }
    .packages-list-wrapper-blocks ul.packages li .package-detail .blue-detail {
        margin-left: 0;
        border-radius: 7px 7px 0 0;
    }
    .packages-list-wrapper-blocks ul.packages li .package-detail .pic .pic-detail {
        padding-left: 15px;
    }
    .packages-list-wrapper-blocks ul.packages li .package-detail .click-detail {
        margin-left: 0;
    }
    .packages-list-wrapper-blocks ul.packages li .package-detail .pic .price {
        top: 164px;
    }
    ul.packages {
        margin: 20px 0 0;
    }
}

/* Breakpoint extra 4 */
@media screen and (max-width: 500px) {
    .packages-list-wrapper-grid ul.packages li {
        width: 100%;
        margin-left: 0 !important;
    }
    .packages-list-wrapper-grid ul.packages li:last-child {
        margin-bottom: 0;
    }
}

/* ---- Featured Auctions slider ---- */
.section--featured-auctions .packages {
    box-shadow: 1px 1px 20px rgba(0, 0, 0, .2);
}

.section--featured-auctions .section-title {
    margin-bottom: 2.5rem;
}

.section--featured-auctions .packages {
    padding: 0;
}
.section--featured-auctions .packages li:hover {
    cursor: pointer;
}
ul.packages li .package-detail .blue-detail h3 {
    margin: 0 clamp(30px, 18%, 60px) 0 0;
    text-wrap: balance;
}
.section--featured-auctions .packages li {
    margin-bottom: 0;
}

.section--featured-auctions .packages li .package-detail{
    margin-top: 0;
}

.section--featured-auctions ul.packages li .package-detail h3 span {
    font-size: 1.4em;
}
/* Blocks */
.section--featured-auctions ul.packages li .package-detail .pic .pic-detail {
    background: #F3F1ED;
    overflow: hidden;
    padding-left: 580px;
}
.section--featured-auctions ul.packages .package-image {
    width: 560px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: #404040;
}
.section--featured-auctions ul.packages li .package-detail .blue-detail {
    margin-left: 560px;
    border-radius: 0;
}
.section--featured-auctions ul.packages li .package-detail .click-detail {
    margin-left: 560px;
}
.section--featured-auctions ul.packages li .package-detail .pic .price {
    top: 26px;
    left: 21px;
    z-index: 7;
}

.sub-title--tight {
    color: #737373;
    display: block;
    line-height: 1.5;
}
.section-header-icon-tv {
    overflow: hidden;
}

.price span {
    position: relative;
}
.price__svg {
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 0;
}
.section--featured-auctions ul.packages li .package-detail .pic .price {
    padding-top: 16px;
    width: 104px;
    height: 104px;
}
ul.packages li .package-detail .pic .price .featured-auctions__price__svg {
    display: block;
}
ul.packages li .package-detail .pic .price .featured-auctions__price__svg--compact {
    display: none;
}
ul.packages li .package-detail .pic .price span {
    height: auto;
    }
ul.packages li .package-detail .pic .price span:after {
    border: none;
}
ul.packages li .package-detail .pic .price:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 13px solid #f47323;
    content: "";
    height: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 100%;
    width: 0;
    margin-top: -2px;
}
.section--featured-auctions ul.packages li .package-detail {
    border-radius: 0;
    }
.section--featured-auctions ul.packages li .package-detail .pic .price span {
    font-weight: bold;
}
.section--featured-auctions ul.packages li .package-detail .pic .price small {
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 2px;
}

.even-smaller {
    font-size: 0.9em;
}

.blue-detail .featured {
    float: right;
    text-align: center;
    color: #fff;
    width: 70px;
    position: absolute;
    top: 9px;
    right: 80px;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
    padding-top: 10px;
}
.section--featured-auctions .blue-detail .time {
    top: 15px;
}
.blue-detail .featured i.icon_TV {
    background: url(../images/icon_tv.png) center top no-repeat;
    width: 28px;
    height: 25px;
    display: block;
    margin: 0 auto;
    background-size: auto 25px;
}

.blue-detail .featured i.icon_radio {
    background: url(../images/icon_radio.png) center top no-repeat;
    width: 28px;
    height: 25px;
    display: block;
    margin: 0 auto;
    background-size: auto 25px;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .section--featured-auctions ul.packages .package-image {
        width: 270px;
    }
    .section--featured-auctions ul.packages li .package-detail .pic .pic-detail {
        padding-left: 286px;
    }
    .section--featured-auctions ul.packages li .package-detail .blue-detail {
        margin-left: 270px;
    }
    .section--featured-auctions ul.packages li .package-detail .click-detail {
        margin-left: 270px;
    }
}


/* iPad breakpoint - remove hover capabilities */
@media screen and (max-width: 1024px) {
    /* Block list */
    .section--featured-auctions .person-icon {
        background-image: url(../images/man-icon.png);
    }
    .section--featured-auctions .calendar-icon {
        background-image: url(../images/moon-icon.png);
    }
    .section--featured-auctions .pic-detail-content {
        display: block;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .section--featured-auctions .blue-detail .time span {
        padding-top: 3px;
    }
    .section--featured-auctions .blue-detail .time {
        padding-top: 0;
        top: 16px;
    }
    .section--featured-auctions .blue-detail .featured {
        right: 60px;
        top: 4px;
    }
    .blue-detail .featured i.icon_TV,
    .blue-detail .featured i.icon_radio {
    width: 50px;
    height: 20px;
    background-size: auto 20px;
    }
    .section--featured-auctions .auction-description--hover {
    display: none;
    }
    ul.packages li .package-detail .blue-detail h3 {
        margin: 0 45px 0 0;
    }
}


/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .blue-detail .featured {
        display: none;
    }
    .section--featured-auctions .blue-detail .featured span,
    .section--featured-auctions .blue-detail .time span{
        line-height: 1em;
    }
    .section--featured-auctions .blue-detail .featured,
    .section--featured-auctions .blue-detail .time {
        padding-top: 5px;
    }
    .section--featured-auctions .blue-detail .time {
        top: 12px;
    }
    ul.packages li .package-detail .blue-detail h3 {
        margin: 0 40px 0 0;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .section--featured-auctions ul.packages .package-image {
        width: 100%;
        height: 200px;
        position: relative;
        border-radius: 0;
    }
    .section--featured-auctions ul.packages li .package-detail .blue-detail {
        margin-left: 0;
    }
    .section--featured-auctions ul.packages li .package-detail .pic .pic-detail {
        padding-left: 15px;
    }
    .section--featured-auctions ul.packages li .package-detail .click-detail {
        margin-left: 0;
    }
    .section--featured-auctions ul.packages li .package-detail .pic .price {
        top: 164px;
    }
    .section--featured-auctions ul.packages li .package-detail .pic .price {
        width: 70px;
        height: 70px;
        padding-top: 16px;
    }
    .section--featured-auctions ul.packages li .package-detail .price__svg {
        width: 26px;
        height: 26px;
    }
    .section--featured-auctions ul.packages li .package-detail .pic .price small {
         margin-top: 0;
    }
    ul.packages li .package-detail .pic .price .featured-auctions__price__svg {
        display: none;
    }
    ul.packages li .package-detail .pic .price .featured-auctions__price__svg--compact {
        display: block;
    }
}

/* ---- Charity Box ---- */
.charity-box {
    margin-bottom: 31px;
    transition: ease 400ms;
    position: relative;
    z-index: 1;
    margin: 4px;
    background-color: #F3F1ED;
    border-radius: 7px;
}

.charity-box:after {
    content: " ";
    border: 3px solid #ece9e3;
    position: absolute;
    z-index: -1;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 15px;
    transition: ease 400ms;
}

.charity-box__header {
    position: relative;
    background: #68bd4b;
    padding: 15px 15px 14px 21px;
    position: relative;
    border-radius: 7px 7px 0 0;
}

.charity-box__header h3 {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 55px 0 0;
    padding: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.charity-box__content {
    padding: 21px;

    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.charity-box__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 200px;
    flex: 0 1 200px;
    width: 200px;
    max-width: 200px;
    display: block;
    padding-right: 40px;
}

.charity-box__desc {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: calc(100% - 200px);
    padding-left: 21px;

    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.charity-box__desc .button {
    margin-top: auto;
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .charity-box__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 160px;
        flex: 0 1 160px;
        width: 160px;
        max-width: 160px;
        padding-right: 10px;
    }

    .charity-box__desc {
        max-width: calc(100% - 160px);
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .charity-box__desc {
        display: block;
        max-width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }

    .charity-box__img {
        margin-left: auto;
        margin-right: auto;
        padding-right: 0;
    }

    .charity-box__desc button {
        margin-top: 0;
    }
}

.widget-CharityFormWidget h2:first-of-type {
    margin-top: 0;
}

/* ---- Staff list ---- */
.staff-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.staff-list:before,
.staff-list:after {
    content: " ";
    display: table;
}
.staff-list:after {
    clear: both;
}

.staff-list__item {
    float: left;
    margin: 0 3.5% 20px 0;
    width: 31%;
}
.staff-list__item:nth-child(3n+3) {
    margin-right: 0;
}

@media screen and (max-width: 500px) {
    .staff-list {
        margin: 10px 0 30px 0;
    }
    .staff-list__item {
        margin: 0 5.5% 20px 0;
        width: 47.25%;
    }
    .staff-list__item:nth-child(3n+3) {
        margin-right: 5%;
    }
    .staff-list__item:nth-child(2n+2) {
        margin-right: 0;
    }
}



/* ---- Details Cards ---- */

.details-card {
    background: #f3f1ed;
    border: 2px solid rgba(255,255,255,.6);
    margin: auto;
    border-radius: 9px;
    margin-bottom: 35px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15)
}

.details-card__header {
    background: #009ddc;
    padding: 15px 20px;
    position: relative;
}

.details-card__header__icon {
    position: absolute;
    top: 10px;
    left: 18px;
    width: 32px;
}

.details-card__header__title{
    color: #fff;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.details-card__header__link {
    position: absolute;
    right: 20px;
    bottom: 16px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0);
    transition: all 200ms ease-in-out;
    line-height: 1.1;
}

.details-card__header__link:hover,
.details-card__header__link:focus {
    color: rgba(255,255,255,1);
    border-bottom: 1px solid rgba(255,255,255,1);
}

.details-card__label {
    font-weight: bold;
    margin-bottom: 4px;
}


@media screen and (min-width: 951px) {
    .details-card {
        width: 48.010610079576%;
        position: relative;
        right: 1%;
    }
    .details-card__header__icon {
        width: 38px;
    }

}


/* ---- Feature boxes ---- */
.feature-boxes {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.feature-boxes:before,
.feature-boxes:after {
    content: " ";
    display: table;
}

.feature-boxes:after {
    clear: both;
}
.feature-box {
    float: left;
    width: 23%;
    margin-right: 2%;
    background-color: #f3f1ed;
    border-radius: 7px;
    margin-bottom: 20px;
}
.feature-box:nth-child(4n+4) {
    margin-right: 0;
}
.feature-box__heading {
    background-color: #009ddc;
    color: #FFF;
    padding: 15px 20px;
    border-radius: 7px 7px 0 0;
}
.feature-box__heading__icon {
    float: left;
    margin: -5px 15px 0 0;
}
.feature-box__heading h2 {
    color: #FFF;
    margin: 0;
}
.feature-box__heading__title {
    font-size: 2.5rem;
}
.feature-box__content {
    padding: 12px 20px 22px;
}
.feature-box__content > p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1180px) {
    .feature-box__heading__title {
        font-size: 2.1rem;
    }
    .feature-box__heading__icon {
        margin: -4px 12px 0 0;
        width: 34px;
    }
    .feature-box__heading {
        padding: 12px 20px;
    }
}
@media screen and (max-width: 950px) {
    .feature-box__heading__title {
        font-size: 1.8rem;
    }
    .feature-box__heading__icon {
        margin: -4px 10px 0 0;
        width: 28px;
    }
    .feature-box__heading {
        padding: 12px 14px;
    }
    .feature-box__content {
        padding-left: 14px;
        padding-right: 14px;
    }
}
@media screen and (max-width: 750px) {
    .feature-box {
        float: left;
        width: 48.5%;
        margin-right: 3%;
        background-color: #f3f1ed;
        border-radius: 7px;
    }
    .feature-box:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 430px) {
   .feature-box {
        float: none;
        width: auto;
        margin-right: 0;
    }
}

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

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


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

/* ---- Base styles ---- */
.field-element {
    margin-bottom: 17px;
}

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

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

.field-input .textbox,
.field-input select {
    display: block;
    width: 100%;
    outline: none;
    line-height: normal;
    padding: 10px 20px;
    -webkit-appearance: none;
}
.field-input .textbox,
.field-input select,
.field-element--fileselector .fs-preview-wrapper {
    font-size: 1.6rem;
    line-height: 1.2;
    border: none;
    border-radius: 5px;
    background-color: #ece9e3;
    color: var(--color-grey-07, #5f5f5f);
}
.field-element--large {
    font-size: 2rem;
}
.field-element--large .field-input .textbox {
    font-size: 2rem;
}

/* ---- Placeholders ---- */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #999;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #999;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #999;
}
:-moz-placeholder { /* Firefox 18- */
    color: #999;
}

/* Dark blue */
.field-element.field-element--dark-blue ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #44c4f8;
}
.field-element.field-element--dark-blue ::-moz-placeholder { /* Firefox 19+ */
    color: #44c4f8;
}
.field-element.field-element--dark-blue :-ms-input-placeholder { /* IE 10+ */
    color: #44c4f8;
}
.field-element.field-element--dark-blue :-moz-placeholder { /* Firefox 18- */
    color: #44c4f8;
}

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

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

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

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

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

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

/* ---- Dark blue ---- */
.field-element.field-element--dark-blue .field-input .textbox,
.field-element.field-element--dark-blue .field-input select {
    background-color: #135EAB;
    color: #FFF;
}

/* ---- Small ---- */
.field-element--small .field-input .textbox,
.field-element--small .field-input select,
.field-element--small.field-element--fileselector .fs-preview-wrapper {
    font-size: 1.4rem;
}

.field-element--small .field-input .textbox,
.field-element--small .field-input select {
    padding: 7px 15px;
}

/* ---- Thin ---- */
.field-element--thin .field-input .textbox,
.field-element--thin .field-input select {
    padding-left: 12px;
    padding-right: 12px;
}

.dob-multifield .field-element--thin .field-input .textbox,
.dob-multifield .field-element--thin .field-input select {
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 1.4rem;
}

@media screen and (max-width: 950px) {
    .dob-multifield .field-element--thin .field-input .textbox,
    .dob-multifield .field-element--thin .field-input select {
        padding-top: 7px;
        padding-bottom: 7px;
    }
}


/* ---- Large ---- */
.field-element--large .field-input .textbox,
.field-element--large .field-input select,
.field-element--large.field-element--fileselector .fs-preview-wrapper {
    font-size: 1.6rem;
}

.field-element--large .field-input .textbox,
.field-element--large .field-input select {
    padding: 13px 25px 13px;
}

/* ---- Responsiveness ---- */
/* Large field elements turn regular */
@media screen and (max-width: 1180px) {
    .field-element--large .field-input .textbox,
    .field-element--large .field-input select,
    .field-element--large.field-element--fileselector .fs-preview-wrapper {
        font-size: 1.6rem;
    }

    .field-element--large .field-input .textbox,
    .field-element--large .field-input select {
        padding: 10px 20px;
    }
}
/* Large and regular field elements turn small */
@media screen and (max-width: 950px) {
    .field-element .field-input .textbox,
    .field-element .field-input select,
    .field-element.field-element--fileselector .fs-preview-wrapper,
    .field-element--regular .field-input .textbox,
    .field-element--regular .field-input select,
    .field-element--regular.field-element--fileselector .fs-preview-wrapper,
    .field-element--large .field-input .textbox,
    .field-element--large .field-input select,
    .field-element--large.field-element--fileselector .fs-preview-wrapper {
        font-size: 1.4rem;
    }

    .field-element .field-input .textbox,
    .field-element .field-input select,
    .field-element--regular .field-input .textbox,
    .field-element--regular .field-input select,
    .field-element--large .field-input .textbox,
    .field-element--large .field-input select {
        padding: 7px 15px;
    }
    .field-element {
        margin-bottom: 12px;
    }
    .field-element--large .field-input .textbox {
        font-size: 2rem;
    }
}

/* ---- Fieldset ---- */
.field-element fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
.field-element--columns-2 .field-element__input-set {
    columns: 2;
}
.field-element--columns-3 .field-element__input-set {
    columns: 3;
}

/* ---- Labels and legends ---- */
.field-label,
.fieldset__legend {
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .field-label,
    .fieldset__legend {
        font-size: 1.5rem;
    }

    .field-element--columns-2 .field-element__input-set,
    .field-element--columns-3 .field-element__input-set {
        columns: 1;
    }
}

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

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


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

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


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

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


/* ---- Field errors ---- */
.field-error__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.field-error__list__item {
    color: #BD1313;
    margin: 8px 0;
}

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

/* ---- Price ---- */
.field-element--price .field-input .textbox {
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: 14px -1826px;
    padding-left: 35px;
}

/* Large */
.field-element--price.field-element--large .field-input .textbox {
    background-position: 14px -1824px;
}
/* Small */
.field-element--price.field-element--small .field-input .textbox {
    background-position: 12px -1960px;
    padding-left: 27px;
}

/* Dark blue */
.field-element--price.field-element--dark-blue .field-input .textbox {
    background-position: 14px -1896px;
}
/* Dark blue + Large */
.field-element--price.field-element--dark-blue.field-element--large .field-input .textbox {
    background-position: 14px -1894px;
}
/* Dark blue + Small */
.field-element--price.field-element--dark-blue.field-element--small .field-input .textbox {
    background-position: 12px -2014px;
}

/* Large field elements turn regular */
@media screen and (max-width: 1180px) {
    .field-element--price.field-element--large .field-input .textbox {
        background-position: 14px -1826px;
    }
    /* Dark blue + Large */
    .field-element--price.field-element--dark-blue.field-element--large .field-input .textbox {
        background-position: 14px -1896px;
    }
}
/* Large and regular field elements turn small */
@media screen and (max-width: 950px) {
    .field-element--price .field-input .textbox,
    .field-element--price.field-element--regular .field-input .textbox,
    .field-element--price.field-element--large .field-input .textbox {
        background-position: 12px -1960px;
        padding-left: 27px;
    }
    /* Dark blue + Large */
    .field-element--price.field-element--dark-blue .field-input .textbox,
    .field-element--price.field-element--dark-blue.field-element--regular .field-input .textbox,
    .field-element--price.field-element--dark-blue.field-element--large .field-input .textbox {
        background-position: 12px -2014px;
    }
}

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


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

.field-element select::-ms-expand {
    display: none;
}


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

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


/* Small */
.field-element.field-element--small .field-input select {
    background-position: top -243px right -107px, top -416px right -92px;
}
/* Thin */
.field-element--thin .field-input select {
    background-position: top -332px right -114px, top -447px right -102px;
	padding-right: 32px;
}
/* Large */
.field-element.field-element--large .field-input select {
    background-position: top -233px right -107px, top -416px right -92px;
}

/* Dark blue */
.field-element.field-element--dark-blue .field-input select {
    background-position: top -296px right -107px, top -575px right -92px;
}

/* Dark blue + Small */
.field-element.field-element--dark-blue.field-element--small .field-input select {
    background-position: top -300px right -107px, top -575px right -92px;
}
/* Dark blue + Large */
.field-element.field-element--dark-blue.field-element--large .field-input select {
    background-position:    top -294px right -107px, /* arrow */
                            top -575px right -92px;  /* sep line */
}

/* Large field elements turn regular */
@media screen and (max-width: 1180px) {
    .field-element.field-element--large .field-input select {
        background-position: top -238px right -107px, top -416px right -92px;
    }
    /* Dark blue */
    .field-element.field-element--dark-blue.field-element--large .field-input select {
        background-position:    top -296px right -107px,  /* arrow */
                                top -575px right -92px; /* sep line */
    }
}

/* Large and regular field elements turn small */
@media screen and (max-width: 950px) {
    .field-element .field-input select,
    .field-element.field-element--large .field-input select,
    .field-element.field-element--regular .field-input select {
        background-position: top -243px right -107px, top -416px right -92px;
    }

    .field-element.field-element--thin .field-input select {
        background-position: top -243px right -114px, top -416px right -107px;
        padding-right: 26px;
        padding-left: 11px;
    }

    /* Dark blue */
    .field-element.field-element--dark-blue .field-input select,
    .field-element.field-element--dark-blue.field-element--large .field-input select {
        background-position:    top -300px right -107px, /* arrow */
                                top -575px right -92px;  /* sep line */
    }
}



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

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

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

.field-element.field-element--multiradio .field-helper,
.field-element.field-element--checkboxboollist .field-helper {
    padding-left: 34px;
}

.field-element input[type="checkbox"] + label:before,
.field-element input[type="radio"] + label:before {
    content: " ";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 13px;
    position: relative;
    top: 4px;
    background-color: #ECE9E3;
    margin-left: -34px;
    border-radius: 4px;
}

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

/* checkbox columns */
@media screen and (min-width: 749px) {
    .field-element--checkboxlist--columns .field-element__input-set {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3;
    }
}


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

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

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

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


/* -- Checkboxes -- */

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


/* -- Radio Buttons -- */

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

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

/* -- Varations -- */

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

/* Dark blue */
.field-element.field-element--dark-blue input[type="checkbox"] + label:before,
.field-element.field-element--dark-blue input[type="radio"] + label:before {
    background-color: #135EAB;
}
.field-element.field-element--dark-blue input[type="radio"]:checked + label:after {
    background: #FFF;
}
.field-element.field-element--dark-blue input[type="checkbox"]:checked + label:after {
    background-position: top -1435px left 1px;
}
/* Dark blue + Large */
.field-element.field-element--dark-blue.field-element--large input[type="checkbox"]:checked + label:after {
    background-position: top -1515px left 1px;
}

/* Large */
.field-element.field-element--large input[type="checkbox"] + label:before,
.field-element.field-element--large input[type="radio"] + label:before {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    top: 5px;
}

.field-element.field-element--large input[type="radio"]:checked + label:after {
    left: 6px;
    top: 11px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
}
.field-element.field-element--large input[type="checkbox"]:checked + label:after {
    background-position: top -891px left 1px;
    width: 23px;
    height: 23px;
}

/* Large field elements turn regular */
@media screen and (max-width: 1180px) {
    .field-element.field-element--large input[type="checkbox"] + label:before,
    .field-element.field-element--large input[type="radio"] + label:before {
        width: 20px;
        height: 20px;
        margin-right: 13px;
        top: 4px;
    }
    .field-element.field-element--large input[type="radio"]:checked + label:after {
        left: 5px;
        top: 9px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }

    .field-element.field-element--large input[type="checkbox"]:checked + label:after {
        background-position: top -711px left 1px;
        width: 20px;
        height: 20px;
    }
    /* Dark blue + Large */
    .field-element.field-element--dark-blue.field-element--large input[type="checkbox"]:checked + label:after {
        background-position: top -1435px left 1px;
    }
}

/* ---- Color picker ---- */
.field-element--colorpicker .textbox.colorpicker {
    padding: 3px 8px;
    height: 43px;
    width: 50px;
}

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

/* Large and regular field elements turn small */
@media screen and (max-width: 950px) {
    .field-element.field-element--colorpicker .textbox.colorpicker,
    .field-element.field-element--colorpicker.field-element--large .textbox.colorpicker,
    .field-element.field-element--colorpicker.field-element-regular .textbox.colorpicker {
        padding: 2px 7px;
        height: 33px;
        width: 39px;
    }
}

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

.field-element--money .field-input {
    position: relative;
}
.field-element--money .field-input .money-symbol:before {
    content: "¤";        /* Generic currency sign */
    position: absolute;
    display: block;
    top: calc(50% - 14px);
    left: 0;
    color: #58595B;
    font-weight: bold;
    font-size: 19px;
    width: 41px;
    text-align: center;
}
.field-element--money .field-input .money-symbol--dollar:before {
    content: "$";    /* Dollars */
}
.field-element--money .field-input .money-symbol--pound:before {
    content: "£";    /* Pounds */
}
.field-element--money .field-input .money-symbol--yen:before {
    content: "¥";    /* Yen */
}
.field-element--money .field-input .money-symbol--indian_rupee:before {
    content: "₹";   /* Indian rupee */
}

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


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

/* Large */
.field-element--money.field-element--large .field-input .textbox {
    background-position: top -447px left 0;
}


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

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

.ui-timepicker {
    display: block;
    position: absolute;
    height: 200px;
    overflow: auto;
}

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

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

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

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

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

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


/* Dark blue */
.field-element.field-element--timepicker.field-element--dark-blue .field-input .textbox {
    background-position: top -1761px left 12px, top -573px left 41px;
}

/* Dark blue + Small */
.field-element.field-element--timepicker.field-element--dark-blue.field-element--small .field-input .textbox {
    background-position: top -1765px left 12px, top -573px left 41px;
}

/* Dark blue + Large */
.field-element.field-element--timepicker.field-element--dark-blue.field-element--large .field-input .textbox {
    background-position: top -1757px left 12px, top -573px left 41px;
}


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

/* Large */
.field-element.field-element--timepicker.field-element--large .field-input .textbox {
    background-position: top -166px left 12px, top -446px left 41px;
}

/* Large field elements turn regular */
@media screen and (max-width: 1180px) {
    .field-element.field-element--timepicker.field-element--large .field-input .textbox {
        background-position: top -170px left 12px, top -446px left 41px;
    }
    /* Dark blue + Large */
    .field-element.field-element--timepicker.field-element--dark-blue.field-element--large .field-input .textbox {
        background-position: top -1761px left 12px, top -573px left 41px;
    }
}

/* Large and regular field elements turn small */
@media screen and (max-width: 950px) {
    .field-element.field-element--timepicker .field-input .textbox,
    .field-element.field-element--timepicker.field-element--large .field-input .textbox,
    .field-element.field-element--timepicker.field-element--regular .field-input .textbox {
        background-position: top -175px left 12px, top -446px left 41px;
    }
    /* Dark blue */
    .field-element.field-element--timepicker.field-element--dark-blue .field-input .textbox,
    .field-element.field-element--timepicker.field-element--dark-blue.field-element--regular .field-input .textbox,
    .field-element.field-element--timepicker.field-element--dark-blue.field-element--large .field-input .textbox {
        background-position: top -1765px left 12px, top -573px left 41px;
    }
}

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

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

/* ---- Clearable fields ---- */
.field-clearable__wrap {
    position: relative;
}

.field-clearable__clear {
    outline: none;
    border: none;
    background: none;
    padding: 0;
    color: #D4D7DE;
    position: absolute;
    right: 6px;
    top: 9px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: top -1135px left 3px;
    width: 22px;
    height: 22px;
}

.field-clearable__clear:hover {
    background-position: top -1208px left 3px;
}


/* Dark blue */
.field-element--datepicker.field-element--dark-blue .field-input .textbox,
.field-element--daterangepicker.field-element--dark-blue .field-input .textbox {
    background-position: top -1579px left 12px, top -573px left 41px;
}
/* Dark blue + Small */
.field-element--datepicker.field-element--dark-blue.field-element--small .field-input .textbox,
.field-element--daterangepicker.field-element--dark-blue.field-element--small .field-input .textbox {
    background-position: top -1583px left 12px, top -573px left 41px;
}
/* Dark blue + Large */
.field-element--datepicker.field-element--dark-blue.field-element--large .field-input .textbox,
.field-element--daterangepicker.field-element--dark-blue.field-element--large .field-input .textbox {
    background-position: top -1575px left 12px, top -573px left 41px;
}


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

/* Large */
.field-element--datepicker.field-element--large .field-input .textbox,
.field-element--daterangepicker.field-element--large .field-input .textbox {
    background-position: top 15px left 12px, top -446px left 41px;
}

/* Large field elements turn regular */
@media screen and (max-width: 1180px) {
    .field-element--datepicker.field-element--large .field-input .textbox,
    .field-element--daterangepicker.field-element--large .field-input .textbox {
        background-position: top 11px left 13px, top -446px left 41px;
    }

    /* Dark blue + Large */
    .field-element--datepicker.field-element--dark-blue.field-element--large .field-input .textbox,
    .field-element--daterangepicker.field-element--dark-blue.field-element--large .field-input .textbox {
        background-position: top -1579px left 12px, top -573px left 41px;
    }
}

/* Large and regular field elements turn small */
@media screen and (max-width: 950px) {
    .field-element--datepicker .field-input .textbox,
    .field-element--daterangepicker .field-input .textbox,
    .field-element--datepicker.field-element--regular .field-input .textbox,
    .field-element--daterangepicker.field-element--regular .field-input .textbox,
    .field-element--datepicker.field-element--large .field-input .textbox,
    .field-element--daterangepicker.field-element--large .field-input .textbox {
        background-position: top 6px left 12px, top -446px left 41px;
    }

    /* Dark blue + Large */
    .field-element--datepicker.field-element--dark-blue .field-input .textbox,
    .field-element--daterangepicker.field-element--dark-blue .field-input .textbox,
    .field-element--datepicker.field-element--dark-blue.field-element--regular .field-input .textbox,
    .field-element--daterangepicker.field-element--dark-blue.field-element--regular .field-input .textbox,
    .field-element--datepicker.field-element--dark-blue.field-element--large .field-input .textbox,
    .field-element--daterangepicker.field-element--dark-blue.field-element--large .field-input .textbox {
        background-position: top -1583px left 12px, top -573px left 41px;
    }
}



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

/* Dark blue */
.field-element--datetimepicker.field-element--dark-blue .field-input .textbox {
    background-position: top -1679px left 12px, top -573px left 41px;
}

/* Dark blue + Small */
.field-element--datetimepicker.field-element--small.field-element--dark-blue .field-input .textbox {
    background-position: top -1684px left 12px, top -573px left 41px;
}
/* Dark blue + Large */
.field-element--datetimepicker.field-element--large.field-element--dark-blue .field-input .textbox {
    background-position: top -1675px left 12px, top -573px left 41px;
}

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

/* Large */
.field-element--datetimepicker.field-element--large .field-input .textbox {
    background-position: top -85px left 12px, top -446px left 41px;
}

/* Large field elements turn regular */
@media screen and (max-width: 1180px) {
    .field-element--datetimepicker.field-element--large .field-input .textbox {
        background-position: top -88px left 12px, top -446px left 41px;
    }
    /* Dark blue + Large */
    .field-element--datetimepicker.field-element--large.field-element--dark-blue .field-input .textbox {
        background-position: top -1679px left 12px, top -573px left 41px;
    }
}

/* Large and regular field elements turn small */
@media screen and (max-width: 950px) {
    .field-element--datetimepicker .field-input .textbox,
    .field-element--datetimepicker.field-element--large .field-input .textbox,
    .field-element--datetimepicker.field-element--regular .field-input .textbox {
        background-position: top -88px left 12px, top -446px left 41px;
        padding-left: 55px;
    }
    /* Dark blue + Large */
    .field-element--datetimepicker.field-element--dark-blue .field-input .textbox,
    .field-element--datetimepicker.field-element--regular.field-element--dark-blue .field-input .textbox,
    .field-element--datetimepicker.field-element--large.field-element--dark-blue .field-input .textbox {
        background-position: top -1684px left 12px, top -573px left 41px;
    }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.daterangepicker td, .daterangepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    white-space: nowrap;
    cursor: pointer;
    padding: 2px;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
    color: #999;
    background: #fff;
    border-color: #E8E8E8;
}
.daterangepicker td.off.active {
    background-color: #AAD8EA;
    color: #FFF;
}

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

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

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

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

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

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

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

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

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

.daterangepicker th.month {
    width: auto;
}

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

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

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

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

.daterangepicker .input-mini.active {
    border: 1px solid #358AAB;
}

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

.daterangepicker .daterangepicker_input {
    position: relative;
}

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

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

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

.daterangepicker .applyBtn {
    background-color: #F47323;
    color: #FFF;
}
.daterangepicker .applyBtn:hover,
.daterangepicker .applyBtn:focus {
    background-color: #F37F37;
    color: #FFF;
}

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

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

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

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

/*  Larger Screen Styling */
@media (min-width: 564px) {
    .daterangepicker{
        width: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto;
        float: left;
    }

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


/* ---- Multifield DOB selector ---- */
.dob-multifield--label {
    margin-bottom: 2px;
    color: var(--color-grey-07, #5f5f5f);
    opacity: 0.66;
    font-size: 1.4rem;
}

.dob-multifield--footnote {
    color: var(--color-grey-07, #5f5f5f);
    opacity: 0.66;
    font-size: 1.4rem;
    margin-top: 2px;
    margin-bottom: 17px;
}

.dob-multifield {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.dob-multifield--w-footnote .field-element {
    margin-bottom: 0;
}

.dob-multifield .col-xs-grow {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    max-width: 100%;
}

.dob-multifield .col-xs-shrink {
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    max-width: 100%;
}

.dob-multifield .date-separator {
	padding-left: 4px;
	padding-right: 4px;
}

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

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

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

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

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


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

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

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


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

/* --- form elements focus --- */
.field-input input:focus,
.field-input select:focus,
.field-input textarea:focus,
.field-element input[type="checkbox"]:focus + label:before,
.field-element input[type="radio"]:focus + label:before
{
    box-shadow: 0 0 2px 2px #009ddc;
}


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


/* ---- Search extras ---- */
.search-bottom {
    display: none;
}

.search-extras-button {
    -webkit-appearance: none;
    outline: none;
    border: none;
    padding: 0;
    background-color: transparent;
    font-size: 1.3rem;
    line-height: 1;
    position: relative;
    padding-right: 19px;
}
.search-extras-button:after {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: #007bff transparent transparent transparent;
    display: block;
    position: absolute;
    right: 0;
    top: 4px;
    margin-left: 8px;
    transition: all 200ms ease-in;
}
.search-extras-visible .search-extras-button:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.search-extra-btn {
    position: absolute;
    right: 0;
    bottom: -14px;
}
.search-extra {
    width: 185px;
    background: #009DDC;
    height: 30px;
    text-align: center;
    position: relative;
}
.search-extra:before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: 0;
    background: url(../images/serch-extra-before.png) 0 0 no-repeat;
    height: 14px;
    width: 26px;
}
.search-extra:after {
    content: "";
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 15px solid #124982;
    border-right: 15px solid transparent;
}
/* Grey */
.search-extra-btn-grey .search-extra {
    background: #F3F1ED;
}
.search-extra-btn-grey .search-extras-button {
    color: var(--color-grey-07, #5f5f5f);
}
.search-extra-btn-grey .search-extras-button:after {
    border-color: #5f5f5f transparent transparent transparent;
}
.search-extra-btn-grey .search-extra:before {
    background-image: url(../images/serch-extra-before-grey.png);
}

/* Blue */
.search-extra-btn-blue .search-extras-button {
    color: #FFF;
}
.search-extra-btn-blue .search-extras-button:after {
    border-color: #FFF transparent transparent transparent;
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .search-extra-btn {
        right: auto;
        bottom: 0;
    }
    .search-extra {
        width: auto;
        background: transparent;
        height: auto;
        text-align: left;
    }
    .search-extra:before {
        content: none;
    }
    .search-extra:after {
        content: none;
    }
    .search-extras-button {
        padding: 10px 19px 13px 0;
    }
    .search-extras-button:after {
        top: 14px;
    }
    .search-bottom {
        margin-bottom: 0;
        margin-top: 0;
    }
}

/* ---- Search pagination ---- */

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


/* ---- Captcha ---- */

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

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

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



/* ---- Autofill ---- */

.autofill-wrap {
    background: #f3f1ef;
    border-color: #bbb8b2;
}

.autofill-wrap .ui-autocomplete-input {
    border: 1px solid #bbb8b2;
}

.autofill-list p {
    padding-left: 15px;
    border: 0px;
    color: inherit;
    font-size: inherit;
}

.autofill-actions {
    top: 0;
    right: 0;
}

/* ------------------------------------------------------
**** Submit bar
------------------------------------------------------ */
.submit-bar {
    padding: 17px 0;
    text-align: right;
    margin: 2em 0 0 0;
}
.submit-bar .right {
    margin-bottom: 0;
}
.submit-bar .button {
	margin-left: 0.5em;
}
.submit-bar-link {
    margin-top: 7px;
    margin-left: 7px;
    display: inline-block;
    color: var(--color-grey-07, #5f5f5f);
}
.submit-bar-link:hover {
    color: #000;
}

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


.submit-bar:after {
    clear: both;
}
.submit-bar input[type="submit"] {
    float: right;
}

@media screen and (max-width: 950px){
    .submit-bar-link {
        margin-top: 4px;
        margin-left: 7px;
        font-size: 1.4rem;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .submit-bar {
        padding: 10px 0;
    }
}

/* ------------------------------------------------------
**** Animations
------------------------------------------------------ */

/* ---- Fade in up ---- */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 15px, 0);
        transform: translate3d(0, 15px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 15px, 0);
        transform: translate3d(0, 15px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* ---- Fade in down ---- */
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* fadeIn */
@-webkit-keyframes fadeIn {
    0%   {
        -webkit-transform: translateY(29px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@keyframes fadeIn {
    0%   {
        -webkit-transform: translateY(29px);
        transform: translateY(29px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/* fadeBackIn */
@-webkit-keyframes fadeBackIn {
    0%   {
        -webkit-transform: translateY(-29px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@keyframes fadeBackIn {
    0%   {
        -webkit-transform: translateY(-29px);
        transform: translateY(-29px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* swing */
@-webkit-keyframes swing {
    0%{
        -webkit-transform:rotate(-12deg);
    }
    50%{
        -webkit-transform:rotate(12deg);
    }
    100%{
        -webkit-transform:rotate(-12deg);
    }
}
@keyframes swing {
    0%{
        transform:rotate(-12deg);
    }
    50%{
        transform:rotate(12deg);
    }
    100%{
        transform:rotate(-12deg);
    }
}

/* Fade in */
@-webkit-keyframes fadeInOpacity {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* ---- item scale pulse ---- */
@-webkit-keyframes scalePulse {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        animation-timing-function: ease-in;
    }
    90% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        animation-timing-function: ease-in;
}
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}

@keyframes scalePulse {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        animation-timing-function: ease-in;

    }
    90% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        animation-timing-function: ease-in;

}
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}


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

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

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

th,
thead td {
    background: #f6f6f6;
}

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


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

/* Responsive */
@media screen and (max-width: 600px){
    .table--content-responsive,
    .table--content-responsive thead,
    .table--content-responsive tbody,
    .table--content-responsive tr,
    .table--content-responsive td {
        display: block;
        width: 100%;
    }
    .table--content-responsive th {
        display: none;
    }
    .table--content-responsive td:before {
        content: attr(data-table-column);
        display: block;
        font-weight: 600;
        background-color: #f2f2f2;
        margin: 0 -15px 9px;
        padding: 8px 15px;
        border-bottom: 1px solid #d7d7d7;
    }
    .table--content-responsive td {
        border-left: 1px solid #d7d7d7;
        padding-top: 0;
        padding-bottom: 10px;
    }
}

/* ---- Form section tables ---- */

.form-section td.field-info {
    vertical-align: middle;
    font-size: 10px;
    font-size: 1rem;
}
.checkbox-list td.check {
    width: 10px;
    text-align: center;
}
.form-section .checkbox-list {
    margin: 0;
}

/* Form sections in sidebar */
.sidebar > .form-section,
.sidebar > .form-section > tbody,
.sidebar > .form-section > tbody > tr,
.sidebar > .form-section > tbody > tr > th,
.sidebar > .form-section > tbody > tr > td {
    display: block;
    width: 100%;
}
.sidebar .form-section > tbody > tr > td {
    border-left: 1px solid #d7d7d7;
}
.sidebar .form-section .field-info {
    text-align: right;
}
.sidebar .form-section td.field-info:empty,
.sidebar .form-section td.nothing {
    display: none !important;
}
.sidebar span.field-info:before {
    content: "^\00a0";
}
.sidebar .form-section > tbody > tr > th:first-child {
    width: 100%;
}

/* Responsiveness */
@media all and (min-width: 601px) {
    .form-section > tbody > tr > th:first-child {
        width: 25%;
    }
}

@media screen and (max-width: 600px) {
    .form-section,
    .form-section > tbody,
    .form-section > tbody > tr,
    .form-section > tbody > tr > th,
    .form-section > tbody > tr > td {
        display: block;
        width: 100%;
    }
    .form-section > tbody > tr > td {
        border-left: 1px solid #d7d7d7;
    }
    .form-section .field-info {
        text-align: right;
    }
    .form-section td.field-info:empty,
    .form-section td.nothing {
        display: none !important;
    }
    span.field-info:before {
        content: "^\00a0";
    }
}

/* ---- Responsive table ---- */
table.responsive {
    overflow: auto;
    overflow-y: hidden;
    overflow-x: auto;
    display: block;
}

/* ---- No Styles Table ---- */

.table__no-styles {
    border-collapse: separate;
    border: none;
    background: none;
    min-width: 0;
}

.table__no-styles th,
:not(.widget) > table.table__no-styles th,
.table__no-styles td,
:not(.widget) > table.table__no-styles tr:nth-child(odd) td {
    padding: 0;
    border: 0;
    background: none;
}



/* ------------------------------------------------------
**** Logo Gallery
------------------------------------------------------ */

.logo-gallery .logo {
    float: left;
    padding: 0 10px;
    margin: 15px 1.6665% 15px 1.6665%;
    border: 1px solid #cccccc;
    width: 30%;
}

.logo-gallery .logo-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    display: table-cell;
    vertical-align:middle;
}

.logo-gallery .logo-wrap:before {
    content: "";
    display: block;
    padding-top: 0%;
}

.logo-wrap img {
    width: 100%;
    max-width: 50em;
    height: auto;
    max-height: 100%;
    margin: 0 auto;
}

.logo-details {
    text-align: center;
}


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

/* ---- Breakpoint hiding/showing ---- */
.bp-1-show,
.bp-2-show,
.bp-3-show,
.bp-4-show {
    display: none;
}
@media screen and (max-width: 1180px){
    .bp-1-hide {
        display: none;
    }
    .bp-1-show {
        display: initial;
    }
}
@media screen and (max-width: 950px){
    .bp-2-hide {
        display: none;
    }
    .bp-2-show {
        display: initial;
    }
}
@media screen and (max-width: 750px){
    .bp-3-hide {
        display: none;
    }
    .bp-3-show {
        display: initial;
    }
}
@media screen and (max-width: 600px){
    .bp-4-hide {
        display: none;
    }
    .bp-4-show {
        display: initial;
    }
}

/* ---- Text align ---- */
.text-align--center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.text-align--right {
    text-align: right;
}

/* ---- Star ratings ---- */
.star-rating {
    height: 18px;
    width: 95px;
    background: url(../images/star-off.png) repeat-x;
}
.star-rating:after {
    content: " ";
    display: block;
    height: 18px;
    width: 95px;
    background: url(../images/star-on.png) repeat-x;
}

.star-rating[data-stars="0"]:after {
    width: 0;
}
.star-rating[data-stars="0.5"]:after {
    width: 9px;
}
.star-rating[data-stars="1"]:after {
    width: 18px;
}
.star-rating[data-stars="1.5"]:after {
    width: 29px;
}
.star-rating[data-stars="2"]:after {
    width: 37px;
}
.star-rating[data-stars="2.5"]:after {
    width: 47px;
}
.star-rating[data-stars="3"]:after {
    width: 57px;
}
.star-rating[data-stars="3.5"]:after {
    width: 66px;
}
.star-rating[data-stars="4"]:after {
    width: 76px;
}
.star-rating[data-stars="4.5"]:after {
    width: 85px;
}
.star-rating[data-stars="5"]:after {
    width: 95px;
}

/* ---- Sub titles ---- */
.sub-title {
    font-size: 2rem;
    line-height: 1.75;
}
.sub-title.sub-title-center {
    text-align: center;
}
/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .sub-title {
        font-size: 1.8rem;
    }
}
/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .sub-title {
        font-size: 1.5rem;
        margin: 0;
    }
}

/* ---- Clearfix ---- */

.clear {
    height: 0;
    clear: both;
    display: block;
}

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

.-clearfix:after {
    clear: both;
}

/* Image Replacement */
.-ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

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

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

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

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

.-invisible {
    visibility: hidden;
}

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

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

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

.left {
    margin: 0 15px 15px 0;
    float: left;
}

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

.center {
    display: block;
    margin: 20px auto;
}

.content-center {
	text-align: center
}


/* ---- Floats and positioning - in-content images ---- */
img.left {
    margin: 0 15px 15px 0;
    float: left;
}

img.right {
    margin: 0 0 15px 15px;
    float: right;
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    img.left {
        margin: 0 auto 15px auto;
        float: none;
        display: block;
    }

    img.right {
        margin: 0 auto 15px auto;
        float: none;
        display: block;
    }
}



/* ---- Clearfix ---- */

.clear {
    height: 0;
    clear: both;
    display: block;
}

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

.clearfix:after {
    clear: both;
}

/* ---- Background colours ---- */
.bg-white {
    background-color: #FFF
}
.bg-green {
    background-color: #68bd4b;
    color: #FFF;
}
.bg-green,
.bg-green h1,
.bg-green .h1 {
    color: #FFF;
}
.bg-light-green {
    background-color: #c3d942;
}
.bg-grey {
    background-color: #F3F1ED;
}
.bg-dark-grey {
    background-color: #444039;
}
.bg-blue {
    background-color: #009ddc;
}
.bg-blue,
.bg-blue h1,
.bg-blue .h1 {
    color: #FFF;
}
.bg-dark-blue {
    background-color: #135eab;
}

/* ---- Columns ---- */
.columns:before,
.columns:after {
    content: " ";
    display: table;
}

.columns:after {
    clear: both;
}

.column {
    float: left;
}
.columns .column:last-child,
.columns-2 .column:last-child,
.columns-3 .column:last-child {
    margin-right: 0;
}

/* Reversed */
.columns-reverse > .column {
    float: right;
}
.columns.columns-reverse > .column:last-child,
.columns-2.columns-reverse > .column:last-child,
.columns-3.columns-reverse > .column:last-child {
    margin-left: 0;
}

/* Padded */
.columns-padded > .column:first-child {
    padding-right: 45px;
}
.columns-padded > .column:last-child {
    padding-left: 45px;
}
.columns-padded-short > .column {
    padding-top: 20px;
    padding-bottom: 16px;
}

/* Lines */
.columns-lines > .column {
    position: relative;
}
.columns-lines > .column:last-child:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 100%;
    width: 1px;
    height: 100%;
    background: #eee;
    display: block;
    margin-right: 13px;
}


/* Or */
.columns-or > .column {
    position: relative;
}
.columns-or .columns-or-circle {
    position: absolute;
    top: 107px;
    left: 100%;
    width: 50px;
    height: 50px;
    padding: 5px 0;
    font-size: 2.3rem;
    text-transform: uppercase;
    border-radius: 50%;
    border: 2px solid #eee;
    background-color: #FFF;
    z-index: 1;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 0 0 0 -12px;
}
.columns-or .columns-or-circle--forgot-user {
	top: 10px;
}

/* -- Main columns style -- */
/*
45px margins - total of 495px margin
53px columns - total of 636px columns
based on full-width of 1131px
*/
.columns .column {
    margin-right: 3.978779840849%;
}
.columns.columns-reverse > .column {
    margin-right: 0;
    margin-left: 3.978779840849%;
}

/* One col */
.columns .column-1 {
    width: 4.686118479222%;
}
/* Two cols */
.columns .column-2 {
    width: 13.351016799293%;
}
/* Three cols */
.columns .column-3 {
    width: 22.015915119363%;
}
/* Four cols */
.columns .column-4 {
    width: 30.680813439434%;
}
/* Five cols */
.columns .column-5 {
    width: 39.345711759505%;
}
/* Six cols */
.columns .column-6 {
    width: 48.010610079576%;
}
/* Seven cols */
.columns .column-7 {
    width: 56.675508399646%;
}
/* Eight cols */
.columns .column-8 {
    width: 65.340406719717%;
}
/* Nine cols */
.columns .column-9 {
    width: 74.005305039788%;
}
/* Ten cols */
.columns .column-10 {
    width: 82.670203359859%;
}
/* Eleven cols */
.columns .column-11 {
    width: 91.335101679929%;
}
/* Twelve cols */
.columns .column-12 {
    width: 100%;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    /* One col */
    .columns .column-1-breakpoint-1 {
        width: 4.686118479222%;
    }
    /* Two cols */
    .columns .column-2-breakpoint-1 {
        width: 13.351016799293%;
    }
    /* Three cols */
    .columns .column-3-breakpoint-1 {
        width: 22.015915119363%;
    }
    /* Four cols */
    .columns .column-4-breakpoint-1 {
        width: 30.680813439434%;
    }
    /* Five cols */
    .columns .column-5-breakpoint-1 {
        width: 39.345711759505%;
    }
    /* Six cols */
    .columns .column-6-breakpoint-1 {
        width: 48.010610079576%;
    }
    /* Seven cols */
    .columns .column-7-breakpoint-1 {
        width: 56.675508399646%;
    }
    /* Eight cols */
    .columns .column-8-breakpoint-1 {
        width: 65.340406719717%;
    }
    /* Nine cols */
    .columns .column-9-breakpoint-1 {
        width: 74.005305039788%;
    }
    /* Ten cols */
    .columns .column-10-breakpoint-1 {
        width: 82.670203359859%;
    }
    /* Eleven cols */
    .columns .column-11-breakpoint-1 {
        width: 91.335101679929%;
    }
    /* Twelve cols */
    .columns .column-12-breakpoint-1 {
        width: 100%;
    }

    .columns-padded > .column.column-12-breakpoint-1:first-child {
        padding-right: 0;
    }
    .columns-padded > .column.column-12-breakpoint-1:last-child {
        padding-left: 0;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    /* One col */
    .columns .column-1-breakpoint-2 {
        width: 4.686118479222%;
    }
    /* Two cols */
    .columns .column-2-breakpoint-2 {
        width: 13.351016799293%;
    }
    /* Three cols */
    .columns .column-3-breakpoint-2 {
        width: 22.015915119363%;
    }
    /* Four cols */
    .columns .column-4-breakpoint-2 {
        width: 30.680813439434%;
    }
    /* Five cols */
    .columns .column-5-breakpoint-2 {
        width: 39.345711759505%;
    }
    /* Six cols */
    .columns .column-6-breakpoint-2 {
        width: 48.010610079576%;
    }
    /* Seven cols */
    .columns .column-7-breakpoint-2 {
        width: 56.675508399646%;
    }
    /* Eight cols */
    .columns .column-8-breakpoint-2 {
        width: 65.340406719717%;
    }
    /* Nine cols */
    .columns .column-9-breakpoint-2 {
        width: 74.005305039788%;
    }
    /* Ten cols */
    .columns .column-10-breakpoint-2 {
        width: 82.670203359859%;
    }
    /* Eleven cols */
    .columns .column-11-breakpoint-2 {
        width: 91.335101679929%;
    }
    /* Twelve cols */
    .columns .column-12-breakpoint-2 {
        width: 100%;
    }

    .columns-padded > .column.column-12-breakpoint-2:first-child {
        padding-right: 0;
    }
    .columns-padded > .column.column-12-breakpoint-2:last-child {
        padding-left: 0;
    }
}



/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    /* One col */
    .columns .column-1-breakpoint-3 {
        width: 4.686118479222%;
    }
    /* Two cols */
    .columns .column-2-breakpoint-3 {
        width: 13.351016799293%;
    }
    /* Three cols */
    .columns .column-3-breakpoint-3 {
        width: 22.015915119363%;
    }
    /* Four cols */
    .columns .column-4-breakpoint-3 {
        width: 30.680813439434%;
    }
    /* Five cols */
    .columns .column-5-breakpoint-3 {
        width: 39.345711759505%;
    }
    /* Six cols */
    .columns .column-6-breakpoint-3 {
        width: 48.010610079576%;
    }
    /* Seven cols */
    .columns .column-7-breakpoint-3 {
        width: 56.675508399646%;
    }
    /* Eight cols */
    .columns .column-8-breakpoint-3 {
        width: 65.340406719717%;
    }
    /* Nine cols */
    .columns .column-9-breakpoint-3 {
        width: 74.005305039788%;
    }
    /* Ten cols */
    .columns .column-10-breakpoint-3 {
        width: 82.670203359859%;
    }
    /* Eleven cols */
    .columns .column-11-breakpoint-3 {
        width: 91.335101679929%;
    }
    /* Twelve cols */
    .columns .column-12-breakpoint-3 {
        width: 100%;
    }

    .columns-padded > .column.column-12-breakpoint-3:first-child {
        padding-right: 0;
    }
    .columns-padded > .column.column-12-breakpoint-3:last-child {
        padding-left: 0;
    }

    .columns-or .column.column-12-breakpoint-3 .columns-or-circle {
        position: relative;
        top: auto;
        left: auto;
        margin: 17px auto 1px;
    }
    .columns-or .column.column-12-breakpoint-3 .columns-or-circle-wrapper {
        position: relative;
    }
    .columns-or .column.column-12-breakpoint-3 .columns-or-circle-wrapper:before {
        content: " ";
        position: absolute;
        top: 22px;
        width: 100%;
        border-top: 1px solid #F1F1F1;
        display: block;
    }

    .columns-or .columns-or-circle {
        width: 44px;
        height: 44px;
        padding: 7px 0;
        font-size: 1.9rem;
    }

    .columns-lines > .column.column.column-12-breakpoint-3:last-child:after {
        content: none;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    /* One col */
    .columns .column-1-breakpoint-4 {
        width: 4.686118479222%;
    }
    /* Two cols */
    .columns .column-2-breakpoint-4 {
        width: 13.351016799293%;
    }
    /* Three cols */
    .columns .column-3-breakpoint-4 {
        width: 22.015915119363%;
    }
    /* Four cols */
    .columns .column-4-breakpoint-4 {
        width: 30.680813439434%;
    }
    /* Five cols */
    .columns .column-5-breakpoint-4 {
        width: 39.345711759505%;
    }
    /* Six cols */
    .columns .column-6-breakpoint-4 {
        width: 48.010610079576%;
    }
    /* Seven cols */
    .columns .column-7-breakpoint-4 {
        width: 56.675508399646%;
    }
    /* Eight cols */
    .columns .column-8-breakpoint-4 {
        width: 65.340406719717%;
    }
    /* Nine cols */
    .columns .column-9-breakpoint-4 {
        width: 74.005305039788%;
    }
    /* Ten cols */
    .columns .column-10-breakpoint-4 {
        width: 82.670203359859%;
    }
    /* Eleven cols */
    .columns .column-11-breakpoint-4 {
        width: 91.335101679929%;
    }
    /* Twelve cols */
    .columns .column-12-breakpoint-4 {
        width: 100%;
    }

    .columns-padded > .column.column-12-breakpoint-4:first-child {
        padding-right: 0;
    }
    .columns-padded > .column.column-12-breakpoint-4:last-child {
        padding-left: 0;
    }
}


/* ---- Tags list ---- */
.tags-list-wrapper {
    margin: 0 0 20px;
}
.tags-list-title {
    float: left;
    margin: 2px 12px 0 0;
    font-size: 1.4rem;
}
.tags-list {
    padding: 0;
    margin: 0;
    list-style: none;
    float: left;
}
.tags-list-item {
    margin: 0;
    float: left;
}
.tags-list-tag {
    background-color: #c3d942;
    border-radius: 3px;
    color: #FFF;
    -webkit-appearance: none;
    border: none;
    outline: none;
    padding: 3px 7px;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    margin: 0 2px;
}
.tags-list-item:last-child .tags-list-tag {
    margin-right: 0;
}
.tags-list-item:first-child .tags-list-tag {
    margin-left: 0;
}
button.tags-list-tag:hover,
button.tags-list-tag:focus,
a.tags-list-tag:hover,
a.tags-list-tag:focus {
    color: #FFF;
    background-color: #B4CA36;
}

/* ---- Large paragraph ---- */
.large-paragraph {
    font-size: 2.4rem;
    font-family: 'omnes-pro', sans-serif;
}

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

* {
    margin: 0;
}

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

#wrap {
    margin: 0 auto;
    padding-top: 118px;
    position: relative;
}

#wrap.not-sticky {
    padding-top: 0;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    #wrap {
        padding-top: 110px;
    }
}
/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    #wrap {
        padding-top: 90px;
    }
}
/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    #wrap {
        padding-top: 44px;
    }
}

:root {
    --default-container: 1440px;
    --default-container-gutter: calc((100vw - var(--default-container)) / 2);
    /* a work around just for slick slider */
    --default-container-gutter-slick: calc((100% - var(--default-container)) / 2);
}


.container {
    width: var(--default-container);
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 1480px) {
    :root {
        --default-container: 1280px;
    }
}

@media screen and (max-width: 1310px) {
    :root {
        --default-container: 1140px;
    }
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    :root {
        --default-container: 900px;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    :root {
        --default-container: 730px;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    :root {
        --default-container: 580px;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    :root {
        --default-container: calc(100vw - 30px);
        --default-container-gutter: 15px;
    }
    .container {
        margin-inline: var(--default-container-gutter);
    }
}

/* ---- Mainbar ---- */
.mainbar > h1:first-child,
.mainbar > h2:first-child,
.mainbar > h3:first-child,
.mainbar > .h1:first-child,
.mainbar > .h2:first-child,
.mainbar > .h3:first-child {
    margin-top: 0;
}

.mainbar.mainbar-wide--padded {
    max-width: 870px;
    margin: 0 auto;
}


/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .mainbar {
        margin-bottom: 20px;
    }
}
/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .mainbar {
        margin-bottom: 10px;
    }
}

/* ---- Sidebar --- */
.sidebar .submit-bar {
    padding: 0;
    border: none;
}

/* ---- Admin tools ---- */
.admin-tools {
    padding: 16px 25px 22px;
    background: rgba(0,0,0,0.1);
    display: inline-block;
    margin: 10px 0;
}
.admin-tools-heading {
    color: #FFF;
    margin-top: 0;
    font-size: 2rem;
}

/* ---- Sections ---- */
.section {
    padding: 53px 0;
    position: relative;
}
.section-t {
    padding: 53px 0 0;
}
.section.pre-icon-section {
    padding-bottom: 90px;
}
.section.icon-section {
    padding-top: 73px;
}
.section.icon-section + .section.icon-section {
    margin-top: 0px;
}
.bg-white + .section.icon-section {
    border-top: 40px solid #fff;
}
.section-title {
    text-align: center;
    margin-bottom: 1.3rem;
}
.section-title:first-child {
    margin-top: 0;
}

.section-title-deco {
    padding-bottom: 2.4rem;
    border-bottom: 1px solid #ece9e3;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px){
    .section {
        padding: 40px 0;
    }
    .section-t {
        padding: 40px 0 0;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px){
    .section {
        padding: 30px 0;
    }
    .section-t {
        padding: 30px 0 0;
    }
    .section-title {
        margin-bottom: 0.8rem;
    }
    .icon-section {
        padding-top: 54px;
    }
    .section.icon-section {
        margin-top: 0px;
    }
    .section.pre-icon-section {
        padding-bottom: 60px;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px){
    .section {
        padding: 20px 0;
    }
    .section-t {
        padding: 20px 0 0;
    }
    .icon-section {
        padding-top: 44px;
    }
    .section.pre-icon-section {
        padding-bottom: 50px;
    }
    .section.icon-section {
        padding-top: 47px;
    }
}
.section--content-image,
.section--featured-auctions {
    padding-top: 0;
}

/* ---- Header ---- */
#header {
    padding: 14px 0;
    position: fixed;
    background: #FFF;
    top: 0;
    z-index: 102;
    left: 0;
    right: 0;
    border-bottom: 3px solid #ece9e3;
    transition: all 200ms linear;
    height: 118px;
}
#header #logo {
    float: left;
    position: relative;
    z-index: 51;
}

.logo,
.logo-scrolled {
    max-width: 100%;
    transition: all 200ms linear;
}

#header #logo a {
    display: block;
}
#header .logo-mobile {
    display: none;
}

#header.not-sticky {
    position: static;
}

.header-phone-number {
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
    text-align: right;
    position: absolute;
    right: 61px;
    top: 3px;
    z-index: 54;
    margin: 0;
}
.header-phone-number-need-help {
    color: #135eab;
    font-size: 1.5rem;
    line-height: 1;
    position: relative;
}
.header-phone-number-need-help:before {
    content: " ";
    background: url(../images/phone-icon.png) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 17px;
    display: inline-block;
    vertical-align: top;
    margin: 2px 5px 0 0;
}
.header-phone-number-link {
    color: #f47323;
    font-size: 2.7rem;
    line-height: 1;
    text-decoration: none;
    display: block;
    margin-top: -2px;
    white-space: nowrap;
}
.campaign-bid #header {
    z-index: 51;
    background-color: #135eab;
    top: 0;
    width: 100%;
    padding: 16px 0;
    position: absolute;
    border-bottom: none;
}

/* NOT MOBILE MENU */
@media screen and (min-width: 751px) {
    .logo-scrolled {
        display: none;
    }
    /* Scrolled header */
    .header-scrolled #header {
        padding: 13px 0 8px;
        height: 86px;
    }
    .logo {
        width: 155px;
        height: 66px;
    }
    .header-scrolled .logo {
        width: 167px;
        height: 62px;
    }

    .header-scrolled .header-phone-number {
        top: 6px;
    }
}

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

    .logo {
        width: 236px;
        height: 87px;
    }
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    #header {
        padding: 11px 0;
        height: 110px;
        transition: none;
    }
    #header #logo {
        width: 210px;
    }
    .header-phone-number {
        top: -3px;
    }
}

/* Breakpoint 1 - and NOT MOBILE MENU */
@media screen and (max-width: 1180px) and (min-width: 751px) {
    .header-scrolled #header {
        padding: 7px 0;
        height: 81px;
    }
    .header-scrolled #header #logo {
        margin-top: 1px;
        width: 171px;
    }
    .header-scrolled .header-phone-number {
        top: 9px;
    }

    .header-scrolled .logo-scrolled,
    .header-scrolled .header-phone-number {
        -webkit-animation: none;
        animation: none;
    }
    /* Unscrolled header */
    .header-unscrolled .logo,
    .header-unscrolled .header-phone-number {
        -webkit-animation: none;
        animation: none;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    #header {
        padding: 11px 0;
        height: 90px;
    }
    #header #logo {
        width: 181px;
        margin-top: 0;
    }
    .header-scrolled .logo {
        width: 139px;
        height: 51px;
    }
    .header-phone-number-need-help {
        font-size: 1.3rem;
    }
    .header-phone-number-need-help:before {
        width: 13px;
        height: 13px;
        margin: 5px 4px 0 0;
        background-size: 12px;
    }
    .header-phone-number-link {
        font-size: 2.2rem;
    }
}

/* Breakpoint 2 - and NOT MOBILE MENU */
@media screen and (max-width: 950px) and (min-width: 751px) {
    .header-scrolled #header {
        padding: 6px 0;
        height: 65px;
    }
    .header-scrolled .header-phone-number {
        display: none;
    }
    .header-scrolled #header #logo {
        margin-top: 0;
        width: 139px;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    #header,
    .header-scrolled #header {
        height: auto;
        border-bottom: none;
        padding: 0;
        z-index: 0;
        position: static;
    }
    .header-phone-number-need-help {
        font-size: 1.3rem;
        display: block;
        color: #FFFFFF;
    }
    .header-phone-number-need-help:before {
        background-image: url(../images/phone-icon-mob.png);
        width: 11px;
        height: 10px;
        margin: 1px 5px 0 0;
        background-size: 10px;
    }
    .header-phone-number-link {
        font-size: 1.8rem;
        margin-top: -1px;
    }
    .header-phone-number {
        right: 51px;
        top: -1px;
    }
    .header-phone-number-need-help {
        display: none;
    }
    .header-scrolled .logo-scrolled,
    .header-scrolled .header-phone-number,
    .header-unscrolled .logo,
    .header-unscrolled .header-phone-number {
        -webkit-animation: none;
        animation: none;
        -webkit-animation-fill-mode: none;
        animation-fill-mode: none;
    }
    #header #logo {
        width: 104px;
        margin-top: 0;
        z-index: 52;
        background-color: #0a4e94;
        padding: 4px 7px 6px;
    }
    #header .logo,
    #header .logo-scrolled {
        display: none;
    }
    #header .logo-mobile {
        display: block;
    }
    .header-phone-number {
        right: auto;
        left: 132px;
        width: 130px;
        text-align: left;
    }
    .header-phone-number,
    .header-scrolled .header-phone-number {
        top: 7px;
    }
    .campaign-bid #header {
        height: 44px;
    }
    .campaign-bid #header .logo,
    .campaign-bid #header .logo-scrolled {
        display: block;
    }
    .campaign-bid #header #logo {
        background-color: transparent;
    }
    .campaign-bid .site-title {
        position: absolute;
    }
}

/* Breakpoint extra 1 */
@media screen and (max-width: 350px){
    #header #logo {
        width: 87px;
        padding: 7px 5px 8px;
    }
    .header-phone-number-need-help {
        font-size: 1.2rem;
    }
    .header-phone-number-link {
        font-size: 1.6rem;
        margin-top: -1px;
    }
    .header-phone-number-need-help:before {
        margin: 0 5px 0 0;
    }
    .header-phone-number,
    .header-scrolled .header-phone-number {
        top: 9px;
    }
    .header-phone-number {
        left: 116px;
        width: 108px;
    }
}

/* Breakpoint extra 2 */
@media screen and (max-width: 310px){
    .header-phone-number {
        left: 112px;
        width: 107px;
    }
    .header-phone-number-link {
        font-size: 1.5rem;
        margin-top: 0;
    }
}



/* ---- Wishlist slideout ---- */
.wishlist-slideout-wrapper {
    position: fixed;
    top: 230px;
    right: -266px;
    z-index: 200;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    padding: 5px 0 5px 5px;
    background-color: #FFF;
    width: 340px;
    transition: all 350ms cubic-bezier(0.22, 1, 0.48, 0.98);
    box-shadow: 1px 1px 13px rgba(0,0,0,0.5);
}
.wishlist-slideout-wrapper.hover {
    right: 0;
}
.wishlist-slideout-button {
    background: #009ddc url(../images/wishlist-icon-large.png) no-repeat;
    background-position: 20px 22px;
    outline: none;
    border: none;
    -webkit-appearance: none;
    color: #FFF;
    padding: 13px 20px 14px 68px;
    border-radius: 7px 0 0 7px;
    display: block;
    width: 100%;
    text-align: left;
}
.wishlist-slideout-button:hover,
.wishlist-slideout-button:focus {
    background-color: #0290CA;
}
.wishlist-slideout-button h2 {
    color: #FFF;
    margin: 0;
    font-weight: 300;
    font-family: 'omnes-pro', sans-serif;
    font-size: 3rem;
}

.wishlist-slideout-close-button {
    -webkit-appearance: none;
    outline: none;
    border: none;
    padding: 0;
    position: absolute;
    top: 22px;
    right: 10px;
    background: url(../images/form-icons.svg) no-repeat;*/;
    background-position: 9px -2080px;
    text-indent: -9999px;
    height: 36px;
    width: 36px;
    z-index: 6565;
    display: block;
    opacity: 0.8;
}
.wishlist-slideout-close-button:hover {
    opacity: 1;
}

.wishlist-slideout-content {
    padding: 14px 9px;
    color: #135eab;
    font-size: 1.5rem;
    display: none;
}
.wishlist-slideout-content > :first-child {
    margin-top: 0;
}
.wishlist-slideout-content > :last-child,
.wishlist-slideout-message-body > :last-child {
    margin-bottom: 0;
}
.wishlist-slideout-wrapper .button-wishlist-add {
    margin-top: 10px;
}
.wishlist-slideout-content h3 {
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
    color: #135eab;
    font-size: 1.6rem;
    line-height: 1.1;
    margin: 0;
}
.wishlist-list {
    list-style: none;
    padding: 0;
    margin: 0 0 11px;
    max-height: 235px;
    overflow-y: scroll;
}
.wishlist-list-item {
    display: block;
    margin: 0 0 9px;
    border-bottom: 2px solid #ece9e3;
    padding: 0 0 11px;
}
.wishlist-list-item-text {
    float: left;
    width: 190px;
}
.wishlist-list-item-title,
.wishlist-list-item-subtitle {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.wishlist-list-item-buttons {
    float: right;
    width: 113px;
    text-align: right;
    padding-top: 5px;
}
.wishlist-list-item-remove-button {
    -webkit-appearance: none;
    outline: none;
    border: none;
    background: transparent url(../images/cross-icon.png) no-repeat 4px 4px;
    padding: 0;
    text-indent: -9999px;
    width: 18px;
    height: 18px;
    margin: 6px 0 0 2px;
    vertical-align: top;
}
.wishlist-list-item-remove-button:hover {
    opacity: 0.8;
}
.wishlist-list-item-subtitle {
    margin: 0;
}

.save-wishlist-link {
    margin-right: 10px;
}
.email-wishlist-link {
    color: #135eab;
}
.email-wishlist-link:before {
    content: " ";
    background: url(../images/email-icon.png) no-repeat;
    width: 24px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 9px 0 0;
}

@media screen and (max-width: 1310px) {
    .wishlist-slideout-wrapper {
        right: -285px;
        width: 340px;
        padding: 3px 0 3px 3px;
        box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    }
    .wishlist-slideout-button {
        background-position: 13px 18px;
        background-size: 27px;
        padding: 7px 40px 8px 52px;
    }
    .wishlist-slideout-close-button {
        top: 15px;
    }
}

@media screen and (max-width: 950px) {
    .wishlist-slideout-wrapper {
        top: 180px;
    }
}
@media screen and (max-width: 750px) {
    .wishlist-slideout-wrapper {
        top: 130px;
    }
}
@media screen and (max-width: 600px) {
    .wishlist-slideout-close-button {
        display: none;
    }
    .wishlist-slideout-wrapper {
        top: 0;
        right: 50px;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
    .wishlist-slideout-button {
        width: auto;
        border-radius: 5px;
        border: 2px solid #FFF;
        background-position: 10px 8px;
        background-size: 15px;
        padding: 3px 12px 5px 32px;
        position: fixed;
        left: 260px;
        top: 7px;
        z-index: 54;
    }
    .wishlist-slideout-button h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    .wishlist-slideout-content {
        background-color: #FFF;
        position: fixed;
        top: 44px;
        left: 0;
        right: 0;
        z-index: 55;
        box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
        padding: 14px 20px;
    }
    .wishlist-slideout-wrapper.hover .wishlist-slideout-button {
        background-image: url(../images/cross-icon-white.png);
        background-position: 9px 6px;
    }
    .wishlist-list-item-text {
        width: 260px;
    }
}

@media screen and (max-width: 430px) {
    .wishlist-slideout-button h2 {
        text-indent: -9999px;
    }
    .wishlist-slideout-button {
        padding: 0;
        width: 35px;
        height: 30px;
        background-position: center center;
    }
    .wishlist-slideout-wrapper.hover .wishlist-slideout-button {
        background-position: center center;
    }
    .wishlist-list-item-text {
        width: 180px;
    }
}
@media screen and (max-width: 350px) {
    .wishlist-slideout-button {
        left: 226px;
    }
    .wishlist-list-item-text {
        width: 160px;
    }
}


/* ---- How to bid page template ---- */

.mainbar-intro {
    font-size: 2.2rem;
    text-align: center;
    color: #1c66b1;
    font-family: 'omnes-pro', sans-serif;
    max-width: 840px;
    margin: auto;
}
.how-to-bid-list {
    list-style-type: none;
    padding: 0;
}

@media screen and (min-width: 580px) and (max-width: 950px) {
    .how-to-bid__text {
        position: absolute;
        top: 20px;
        bottom: 10px;
        right: 15px;
        left: 160px;
        text-align: left;
    }
}

@media screen and (min-width: 951px) {
    .how-to-bid-list li {
        float: left;
        width: 22.75%;
        margin-left: 3%;
        min-height: 370px;
    }
    .how-to-bid-list li:first-child {
        margin-left: 0;
    }
}

@media screen and (min-width: 1181px) {
    .how-to-bid-list li {
        min-height: 307px;
    }
}


/* ---- Footer ---- */
.section.section-footer {
    color: #51913b;
    padding: 17px 0;
}
.section.section-footer a {
    color: #51913b;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
}
.section.section-footer a:hover,
.section.section-footer a:focus {
    color: #356723;
    text-decoration: underline;
}

.footer-copyright {
    float: left;
}
.footerlinks {
    text-align: right;
    float: right;
}

.ftr-home-icon {
    background: url(../images/ftr-home-icon.png) 0 0 no-repeat;
    background-size: 19px 17px;
    display: inline-block;
    width: 19px;
    height: 17px;
    transition: opacity 0.5s;
}
.ftr-home-icon:hover,
.ftr-fb-icon:hover {
    opacity:0.8;
}
.ftr-fb-icon {
    background: url(../images/ftr-fb-icon.png) 0 0 no-repeat;
    background-size: 8px 18px;
    display: inline-block;
    width: 8px;
    height: 18px;
    transition: opacity 0.5s;
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .section.section-footer {
        font-size: 1.3rem;
    }
    .ftr-home-icon {
        background-size: 15px;
        width: 15px;
        height: 14px;
    }
    .ftr-fb-icon {
        background-size: 7px;
        width: 7px;
        height: 14px;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .footer-copyright {
        float: none;
    }
    .footerlinks {
        text-align: left;
        float: none;
        margin-top: 7px;
    }
    .section.section-footer {
        padding: 13px 0 10px;
        font-size: 1.1rem;
    }
}

/* ---- Bid promo section ---- */
.bid-promo .main {
    padding: 40px 0 45px;
}
.bid-promo p {
    color: #fff;
    text-align: center;
}
.bid-promo {
    margin: 27px 0 0;
    float: none;
    list-style: none;
    padding: 0;
}
.bid-promo li {
    position: relative;
    border: 3px solid #c3d942;
    border-radius: 6px;
    margin-top: 40px;
    margin-bottom: 40px;
    float: left;
    position: relative;
    padding: 0 26px 24px;
    background: #68BD4B;
}
.bid-promo li .number {
    position: absolute;
    left: 0;
    right: 0;
    background: #68bd4b;
    border-radius: 100%;
    text-align: center;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    top: -34px;
    border: 3px solid #c3d942;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1.4;
    z-index: 1;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
    padding-top: 1px;
}
.bid-promo li .number:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #68bd4b;
    bottom: -9px;
    content: "";
    height: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    width: 0;
}
.bid-promo li .icon {
    background: #c3d942;
    position: relative;
    width: 122px;
    margin: 0 auto 42px;
    clear: both;
    padding: 28px 0 0 0;
    z-index: 0;
    display: block;
    text-align: center;
}
.bid-promo li .icon i {
    margin: 0 auto;
    height: 53px;
}
.bid-promo li .icon .key-icon {
    background: url(../images/key-icon.png) center center no-repeat;
    background-size: 48px;
    width: 48px;
    display: block;
}
.bid-promo li .icon .hand-icon {
    background: url(../images/hand-icon.png) center center no-repeat;
    background-size: 37px 53px;
    width: 37px;
    display: block;
}
.bid-promo li .icon .tag-icon {
    background: url(../images/tag-icon.png) center center no-repeat;
    background-size: 48px;
    width: 48px;
    display: block;
}
.bid-promo li .icon .win-icon {
    background: url(../images/win-icon.png) center center no-repeat;
    background-size: 48px;
    width: 48px;
    display: block;
}
.bid-promo li .icon:after {
    border-left: 122px solid transparent;
    border-top: 28px solid #c3d942;
    bottom: -28px;
    content: "";
    height: 0;
    position: absolute;
    width: 0;
    left: 0;
}
.bid-promo li .bid-promo-title {
    color: #fff;
    line-height: normal;
    clear: both;
    font-size: 2.6rem;
    line-height: 1.3;
    margin: 0;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 600;
}
.bid-promo li .bid-promo-text {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 5px 0 0;
}
.bid-promo a {
    color: #fff;
}
.bid-promo a:hover,
.bid-promo a:focus {
    color: #c3d942;
}


/* Three col */
.bid-promo--3-cols li {
    width: 30.680813439434%;
    margin-right: 3.978779840849%;
}
.bid-promo--3-cols li:nth-child(3n) {
    margin-right: 0;
}

/* Four col */
.bid-promo--4-cols li {
    width: 22%;
    margin-right: 4%;
}
.bid-promo--4-cols li:nth-child(4n) {
    margin-right: 0;
}

/* Second breakpoint */
@media screen and (max-width: 950px) {
    .bid-promo li {
        margin-top: 30px;
        padding: 0 15px 20px;
    }
    .bid-promo li .bid-promo-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .bid-promo li .bid-promo-text {
        font-size: 1.6rem;
    }

    .bid-promo li .icon {
        width: 105px;
        margin: 0 auto 32px auto;
        padding: 15px 0 0 0;
    }
    .bid-promo li .icon i {
        height: 39px;
    }
    .bid-promo li .icon .key-icon {
        background-size: 36px;
        width: 36px;
    }
    .bid-promo li .icon .hand-icon {
        background-size: 29px;
        width: 29px;
    }
    .bid-promo li .icon .tag-icon {
        background-size: 36px;
        width: 34px;
    }
    .bid-promo li .icon:after {
        border-left: 105px solid transparent;
        border-top: 22px solid #c3d942;
        bottom: -22px;
    }

    .bid-promo li .number {
        width: 42px;
        height: 42px;
        top: -29px;
        font-size: 2.5rem;
    }
    .bid-promo li .number:after {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 11px solid #68bd4b;
        bottom: -7px;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .bid-promo li .bid-promo-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    .bid-promo {
        margin: 16px 0 0;
    }
    .bid-promo li {
        margin-bottom: 19px;
    }

    .bid-promo--4-cols li {
        width: 48%;
        margin-right: 4%;
    }
    .bid-promo--4-cols li:nth-child(2n) {
        margin-right: 0;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .bid-promo li .bid-promo-title {
        font-size: 1.4rem;
    }
    .bid-promo li .bid-promo-text {
        font-size: 1.3rem;
    }
    .bid-promo li {
        margin-bottom: 14px;
        padding: 0 11px 15px;
    }
    .bid-promo li .icon {
        width: 68px;
        margin: 0 auto 20px auto;
        padding: 15px 0 0 0;
    }
    .bid-promo li .icon .key-icon {
        background-size: 27px;
        width: 26px;
    }
    .bid-promo li .icon .hand-icon {
        background-size: 23px;
        width: 23px;
    }
    .bid-promo li .icon .tag-icon {
        background-size: 28px;
        width: 31px;
    }
    .bid-promo li .icon:after {
        border-left: 68px solid transparent;
        border-top: 10px solid #c3d942;
        bottom: -10px;
    }
    .bid-promo li .number {
        width: 35px;
        height: 35px;
        top: -25px;
        font-size: 2rem;
    }


}

/* Extra breakpoint 4 */
@media screen and (max-width: 500px) {
    .bid-promo {
        margin: 8px 0 0;
    }
    .bid-promo li {
        padding: 13px 11px 11px 73px;
        width: auto;
        margin: 10px 0 10px 19px;
        float: none;
        border-width: 2px;
    }
    .bid-promo li .number {
        width: 30px;
        height: 30px;
        top: 50%;
        left: -20px;
        right: auto;
        font-size: 1.8rem;
        margin-top: -15px;
        border-width: 2px;
    }
    .bid-promo li .number:after {
        border-style: solid;
        border-width: 5px 0 5px 8px;
        border-color: transparent transparent transparent #68bd4b;
        bottom: auto;
        top: 8px;
        left: 100%;
        right: auto;
        margin-left: -2px;
    }

    .bid-promo li .icon {
        width: 58px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: 0;
        padding: 0;
    }

    .bid-promo li .icon:after {
        content: none;
    }

    .bid-promo li .icon i {
        position: absolute;
        top: 50%;
        margin-top: -16px;
        left: 0;
        right: 0;
    }
    .bid-promo li .icon i {
        height: 31px;
    }
    .bid-promo li .icon .key-icon {
        background-size: 26px;
        width: 26px;
    }
    .bid-promo li .icon .hand-icon {
        background-size: 19px;
        width: 19px;
    }
    .bid-promo li .icon .tag-icon {
        background-size: 24px;
        width: 24px;
    }
    .bid-promo li p {
        text-align: left;
    }
}

/* ---- Home ---- */
:root {
    --banner-height: 376px;
}
@media screen and (min-width: 751px) {
    :root {
        --banner-height: clamp(408px, 56vh, 800px);
    }
}

.banner-section {
    background-color: var(--color-primary);
    min-height: var(--banner-height);
    padding: 0;
    position: relative;
}

.slick-slider.js--home-banner {
    margin: 0;
}

.home-banner {
    display: block;
    height: var(--banner-height) !important;
}

.home-banner-image {
    background: top center no-repeat;
    background-size: cover;
    height: 408px;
    width: 100vw;
    width: 100vi;
    position: fixed;
}
@media screen and (min-width: 751px) {

    .home-banner-image {
        top: 65px; /* height of the header when scrolled */
        height: 600px;
        height: var(--banner-height);
    }
}
@media screen and (min-width: 951px) {
    .home-banner-image {
        top: 82px; /* height of the header when scrolled */
    }
}

.js--home-banner  .home-banner-image {
    top: 0;
}

@media screen and (min-width: 2400px) {
    .home-banner-image {
        max-width: 2400px;
        margin-left: calc(50vw - 1200px);
    }
}


/* Video Banner */

.banner-section--video {
    height: auto;
    background: #94bee6 url(/skin/travel_auctions/images/bg-video-banner.jpg) no-repeat top center;
    background-size: cover;
}
.home-banner-video {
    margin: auto;
    position: relative;
}
.home-banner-video video {
    display: block;
    max-width: 100%;
    height: auto;
}

.home-banner-video video:focus {
    outline: 0;
}


@media screen and (min-width: 1140px) {
    .home-banner-video video {
        width: var(--default-container);
        max-height: calc(100vh - 118px);
        margin: auto;
    }
}

.home-banner-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    padding: 0 var(--default-container-gutter-slick) 0;
    border-radius: 4px;
    place-items: start;
    place-content: end;
}
/* vertical alignment classes */
.home-banner--v-align-top {
    align-content: start;
}

.home-banner--v-align-center {
    align-content: center;
}

.home-banner--v-align-bottom {
    align-content: end;
}

.home-banner--inline-align-left {
    justify-content: start;
}

.home-banner--inline-align-center {
    justify-content: center;
    text-align: center;
}

.home-banner--inline-align-right {
    justify-content: end;
    text-align: right;
}



.home-banner-content__wrap {
    background-color: rgba(0,157,220,0.6);
    color: #fff;
    border-radius: 4px;
    padding: 24px var(--default-container-gutter) 8px;
    text-align: center;
}
.home-banner--v-align-bottom .home-banner-content__wrap {
    border-radius: 4px 4px 0 0;
}
.home-banner--v-align-top .home-banner-content__wrap {
    border-radius: 0 0 4px 4px;
}

@media screen and (min-width: 601px) {
    .home-banner-content__wrap {
        --wishlist-btn-padding: 56px;
        max-width: 60%;
        max-width: clamp(58ch, 45%, 70ch);
        padding-left: 32px;
        padding-right: var(--wishlist-btn-padding);
    }
    .home-banner--inline-align-center .home-banner-content__wrap {
        padding-left: 32px;
        padding-right: 32px;
    }

    /* alignment classes */
    .home-banner--inline-align-center .home-banner-content__wrap {
        margin: auto;
    }
    .home-banner--inline-align-right .home-banner-content__wrap {
        margin-left: auto;
    }
}

.home-banner__ribbon {
    background-color: var(--color-alternative);
    position: absolute;
    top: -16px;
    left: -24px;
    max-width: 42vw;
    padding: 4px 0 12px;
    transform-origin: center right;
    text-wrap: balance;
    transform: rotate(-45deg);
    font-family: 'omnes-pro', sans-serif;
    line-height: 1.06;
    font-size: clamp(2.3rem, 3vw, 4.2rem);
}

@media screen and (min-width: 601px) {
    .home-banner__ribbon {
        top: 0;
        max-width: 260px;
    }
}

@media screen and (min-width: 1200px) {
    .home-banner__ribbon {
        max-width: 360px;
    }
}

@media screen and (min-width: 1200px) {
    .home-banner__ribbon {
        padding-block: 24px 32px;
    }
}


.home-banner__ribbon::before,
.home-banner__ribbon::after {
    content: '\00a0';
    position: absolute;
    width: 200ch;
    top: 0;
    bottom: 0;
    background-color: var(--color-alternative);
}

.home-banner__ribbon::before {
    right: calc(100% - 1px);
}

.home-banner__ribbon::after {
    left: calc(100% - 1px);
}


.home-banner-title {
    font-family: 'omnes-pro', sans-serif;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    color: currentColor;
    margin-top: 0;
    text-wrap: balance;
}

.home-banner-content :where(a) {
    color: currentColor;
    transition: color 300ms ease-in-out;
}

.home-banner-content .button {
    font-family: 'omnes-pro', sans-serif;
    font-weight: bold;
    font-size: 1.12em;
}


.detail-content {
    margin: 0;
    background: rgba(0,157,220,0.6);
    padding: 20px 40px;
    border-radius: 4px 4px 0 0;
}
.detail .h1 {
    font-size: 4.2rem;
    line-height: 1;
    color: #fff;
    text-align: left;
    font-weight: 300;
    display: block;
    margin: 0 0 13px;
    padding: 0;
    font-weight: 300;
}
.detail p {
    font-size: 2rem;
    color: #fff;
    margin: 0;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .home-banner {
        height: 405px;
        top: 81px;
    }
    .detail .h1 {
        font-size: 3.8rem;
        margin: 0 0 10px;
    }
    .detail p {
        font-size: 1.8rem;
    }
    .detail-content {
        padding: 20px 30px;
    }
}


/* Search */
.search-band {
    background: #135eab;
    padding: 0;
    z-index: 1;
}
.search-band .search .search-extra-inactive {
    display: block;
    cursor: pointer;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size:0.87em;
    position:relative;
}
.search-band .search .search-icon {
    position: relative;
    color: #fff;
}
.search-band .search .search-icon:after {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid #fff;
    border-left:4px solid transparent;
    border-right: 4px solid transparent;
    content: "";
    top: 6px;
    margin-left: 10px;
}
.search-band .active .search-icon:after {
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 8px solid #fff;
    border-left: 4px solid transparent;
    border-right:4px solid transparent;
    border-top: 0;
    content: "";
    top: 4px;
    margin-left: 5px;
}
.mobile-search, .blog-mob-icon, .fb-mob-icon {
    display: none;
}
.home-search {
    background: #009ddc;
    padding: 19px 40px 12px;
    margin: 0;
    z-index: 15;
    position: relative;
}
.home-search .field-element {
    width: 33.6%;
    float: left;
    margin-right: 0.5%;
}
.home-search__intructions {
    font-size: 1.8rem;
    margin: 0 0 10px;
}
.home-search__and-or {
    float: left;
    text-transform: uppercase;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 700;
    padding: 8px 18px 0;
    margin-right: 1%;
    width: 10%;
    text-align: center;
    font-size: 1.6rem;
}
.home-search .field-element.field-element-button {
    width: 16%;
    float: left;
    margin-right: 0;
}
.home-search .field-element.field-element-button .button {
    width: 100%;
    display: block;
}
.home-search .field-element.field-element-checkbox {
    padding-left: 17px;
    margin-bottom: 0;
    padding-bottom: 3px;
}
.pet-friendly {
    margin-top: 28px;
}

/* Sticky */
@media screen and (min-width: 1181px) and (min-height: 700px) {
    .sticky-search .search-band {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        z-index: 100;
    }
    .sticky-search #wrap {
        padding-top: 214px;
    }
    .search-hide .search-band {
        transform: translateY(-120%);
    }
    .search-band {
        transition: all 200ms ease-in;
    }
}


/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .home-search .field-element {
        width: 27.5%;
        margin-right: 0.8%;
    }
    .home-search .field-element.field-element-button {
        width: 15%;
    }
    .home-search {
        padding: 13px 30px 7px;
    }
    .pet-friendly {
        margin-top: 23px;
    }
    .sticky-search .search-band {
        position: relative;
        top: auto;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .home-search .field-element {
        width: 49.6%;
        margin-right: 0.8%;
    }
    .home-search .field-element:nth-child(2) {
        margin-right: 0;
    }
    .home-search {
        padding: 13px 25px 7px;
    }
    .home-search .field-element.field-element-checkbox {
        padding-left: 0;
        margin-bottom: 0;
        padding-bottom: 3px;
    }
    .pet-friendly {
        margin-top: 0;
    }
}
/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .home-search {
        padding: 13px 15px 7px;
        margin: 0;
    }
    .home-search .field-element.field-element-button {
        float: right;
        width: auto;
    }
}
/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .home-search {
        padding: 17px 15px 20px 15px;
    }
    .home-search form {
        margin-bottom: 0;
    }
    .home-search .field-element {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    .search-bar-button {
        margin: 0;
        padding: 0;
    }
    .search-bar-button:before,
    .search-bar-button:after {
        content: none
    }
    .search-band + .section {
        padding-top: 40px;
    }
}

/* ---- Title banners ---- */
.title-banner {
    padding-top: 308px;
}
.title-banner__image {
    background: url(../images/title-banners/title-banner-1280.jpg) no-repeat center center;
    background-size: cover;
    height: 340px;
    position: fixed;
    left: 0;
    right: 0;
    top: 86px;
}
.title-banner__title {
    padding: 30px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}
.title-banner__title h1 {
    margin: 0 0 5px;
}
.bidding-title {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 10px 0;
}

.title-banner .breadcrumb,
.title-bannerless .breadcrumb {
    margin: 10px 0 6px;
    padding: 0;
    border: none;
    color: #C2E5F3;
    text-transform: uppercase;
}
.title-banner .breadcrumb > li a,
.title-bannerless .breadcrumb > li a {
    color: #C2E5F3;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .title-banner {
        padding-top: 235px;
    }
    .title-banner__image {
        top: 81px;
        height: 264px;
    }
}

/* Breakpoint 1 */
@media screen and (max-width: 1024px) {
    .title-banner {
        padding-top: 0;
    }
    .title-banner__image {
        position: relative;
        top: auto;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .title-banner__image {
        height: 230px;
    }
    .title-banner__image {
        background-image: url(../images/title-banners/title-banner-950.jpg);
    }
}
/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .title-banner__title {
        padding: 20px 0;
    }
}
/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .title-banner__image {
        background: none;
        display: none;
    }
    .title-banner__title {
        padding: 10px 0;
    }
}



/* ---- Social news ---- */
.section.section-latest-news .slider-buttons {
    display: block;
    text-align: right;
    margin-bottom: 2em;
}
.social-news-list-wrapper {
    margin-bottom: 30px;
}

.social-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.social-news-list-item {
    display: block;
    position: relative;
    width: 50% !important;
    margin: 0 0 26px 0;
}
.social-news-list-item a {
    text-decoration: none;
    color: inherit;
}
.social-news-list-item a:hover .social-news-list-item-title,
.social-news-list-item a:focus .social-news-list-item-title {
    text-decoration: underline;
}
.social-news-list-item:focus {
    outline: none;
    border: none;
}
.social-news-list-item-box {
    height: 190px;
    border-radius: 5px;
    padding: 23px 25px 34px;
    position: relative;
}
.social-news-list-item-image-wrapper {
    float: left;
    margin: 0 20px 0 0;
    width: 97px;
}
.social-news-list-item-text-wrapper {
    overflow-y: hidden;
    font-size: 1.4rem;
    line-height: 1.3;
    height: 92px;
}
.social-news-list-item-text-wrapper p {
    margin-bottom: 10px;
}
.social-news-list-item-text-wrapper p:last-child {
    margin-bottom: 0;
}
.social-news-list-item-box:before {
    content: " ";
    background-repeat: no-repeat;
    width: 44px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 78px;
}
.social-news-list-item-box:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}
.social-news-date {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid #ece9e3;
    display: block;
    text-align: center;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 700;
    line-height: 0.8;
    padding: 7px 0 0;
    position: absolute;
}
.social-news-date span {
    display: block;
}
.social-news-date-day {
    font-size: 2.4rem;
}
.social-news-date-month {
    text-transform: lowercase;
    font-size: 1.2rem;
}
.social-news-list-item-title {
    font-size: 1.8rem;
    font-family: 'omnes-pro', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}


.social-news-list-item:nth-child(2){
    margin-top: 56px;
}
/* Odd */
.social-news-list-item:nth-child(odd) {
    float: right;
}
.social-news-list-item:nth-child(odd) .social-news-list-item-box {
    margin-left: 76px;
}
.social-news-list-item:nth-child(odd) .social-news-date {
    left: 0;
    margin-left: -25px;
    top: 25px;
}
.social-news-list-item:nth-child(odd) .social-news-list-item-box:after {
    top: 42px;
    right: 100%;
    border-width: 9px 13px 9px 0;
    border-color: transparent #F3F1ED  transparent transparent;
}
/* Even */
.social-news-list-item:nth-child(even) {
    float: left;
}
.social-news-list-item:nth-child(even) .social-news-list-item-box {
    margin-right: 76px;
}
.social-news-list-item:nth-child(even) .social-news-date {
    right: 0;
    margin-right: -25px;
    top: 75px;
}
.social-news-list-item:nth-child(even) .social-news-list-item-box:after {
    top: 91px;
    left: 100%;
    border-width: 9px 0 9px 13px;
    border-color: transparent transparent transparent #F3F1ED ;
}

/* Facebook */
.social-news-list-item.social-news-list-item-facebook .social-news-list-item-box {
    padding-top: 63px;
}
.social-news-list-item.social-news-list-item-facebook .social-news-list-item-box:before {
    background-image: url(../images/fdr-fb-icon.png);
}
/* Blog */
.social-news-list-item.social-news-list-item-blog .social-news-list-item-box:before {
    background-image: url(../images/fdr-blog-icon.png);
}
.social-news-list-item-box .social-news-list-item-title {
    color: #fcb133;
    padding-left: 116px;
    margin-bottom: 21px;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .social-news-list-item-box {
        height: 230px;
    }
    .social-news-list-item-text-wrapper {
        height: 129px;
    }
    .social-news-list-item:nth-child(odd) .social-news-list-item-box {
        margin-left: 59px;
    }
    .social-news-list-item:nth-child(even) .social-news-list-item-box {
        margin-right: 59px;
    }
}
/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .social-news-list-item-box {
        height: 280px;
    }
    .social-news-list-item-text-wrapper {
        height: 147px;
    }
    .social-news-list-item-image-wrapper {
        margin: 0 15px 0 0;
        width: 60px;
    }
}
/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .social-news-list-wrapper {
        margin-bottom: 12px;
    }
    .social-news-date {
        width: 40px;
        height: 40px;
        padding: 4px 0 0;
    }
    .social-news-date-day {
        font-size: 1.9rem;
    }
    .social-news-date-month {
        font-size: 1rem;
    }

    .section.section-latest-news .slider-buttons {
        display: none;
    }
    .social-news-list-item-box {
        height: auto;
    }
    .social-news-list-item {
        width: 100% !important;
        margin-bottom: 11px;
    }
    .social-news-list-item:nth-child(even),
    .social-news-list-item:nth-child(odd) {
        float: none;
    }
    .social-news-list-item:nth-child(even) .social-news-date,
    .social-news-list-item:nth-child(odd) .social-news-date {
        margin-left: 0;
        top: 0;
        left: 0;
        right: auto;
    }
    .social-news-list-item:nth-child(odd) .social-news-list-item-box,
    .social-news-list-item:nth-child(even) .social-news-list-item-box {
        margin-right: 0;
        margin-left: 61px;
    }
    .social-news-list-item:nth-child(even) .social-news-list-item-box:after {
        border-width: 9px 13px 9px 0;
        border-color: transparent #F3F1ED  transparent transparent;
        left: auto;
        right: 100%;
    }
    .social-news-list-item:nth-child(odd) .social-news-list-item-box:after,
    .social-news-list-item:nth-child(even) .social-news-list-item-box:after {
        top: 13px;
    }
    .social-news-date {
        border: 2px solid #ece9e3;
        padding: 5px 0 0;
    }
    .social-news-list-item-box {
        padding: 15px 15px;
    }
    .social-news-list-item-box:before {
        left: -55px;
        top: 49px;
        width: 27px;
        height: 30px;
        background-size: 27px;
    }
    .social-news-list-item.social-news-list-item-facebook .social-news-list-item-box {
        padding-top: 13px;
    }
    .social-news-list-item:nth-child(2){
        margin-top: 0;
    }
    .social-news-list-item-box .social-news-list-item-title {
        padding: 0;
        margin: 0 0 12px;
    }
    .social-news-list-item-text-wrapper {
        font-size: 1.3rem;
        height: auto;
    }
    .social-news-list-item-text-wrapper {
        max-height: none;
        min-height: 0;
    }

    .social-news-list-item:empty {
        display: none;
    }

    /* Hide over three */
    .social-news-list-item:nth-child(1n+4) {
        display: none;
    }
}

/* ---- Section header icons ---- */
.section-header-icon,
.section-header-icon span,
.section-header-icon span i {
    width: 97px;
    height: 97px;
}
.section-header-icon {
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 100%;
    text-align: center;
    margin: 0 auto;
    top: -52px;
    z-index:1;
}
.section-header-icon span {
    position: relative;
    display: block;
}
.section-header-icon span:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    bottom: -12px;
    content: "";
    height: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    width: 0;
}
.section-header-icon span i {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 44px 44px;
    text-align: center;
    display: block;
}

.section-header-icon.section-header-icon-bid span i  {
    background-image: url(../images/bid-icon.png);
}
.section-header-icon.section-header-icon-mail-box span i  {
    background-image: url(../images/inbox-icon.png);
}

/* separate background */
/* requires a separate span for the background */
.section-header-icon__separate-bg {
    background-color: #f47323;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.section-header-icon-separate-bg span,
.section-header-icon.section-header-icon-separate-bg span {
    position: absolute;
    display: block;
}

/* Light green */
.section-header-icon.section-header-icon-light-green {
    background-color: #c3d942;
}
.section-header-icon.section-header-icon-light-green span:after {
    border-top: 15px solid #c3d942;
}

/* Dark blue */
.section-header-icon.section-header-icon-dark-blue {
    background-color: #135eab;
}
.section-header-icon.section-header-icon-dark-blue span:after {
    border-top: 15px solid #135eab;
}

/* Dark grey */
.section-header-icon.section-header-icon-dark-grey {
    background-color: var(--color-grey-07, #5f5f5f);
}
.section-header-icon.section-header-icon-dark-grey span:after {
    border-top: 15px solid var(--color-grey-07, #5f5f5f);
}

/* Orange */
.section-header-icon.section-header-icon-orange {
    background-color: var(--color-alternative-light, #fbaa31);
}
.section-header-icon.section-header-icon-orange span:after {
    border-top: 15px solid var(--color-alternative-light, #fbaa31);
}

/* Dark Orange icon background */
.section-header-icon.section-header-icon-drk-orange {
    background-color: #f47323;
}
.section-header-icon.section-header-icon-drk-orange span:after {
    border-top: 15px solid #f47323;
}



/* Breakpoint 3 */
@media screen and (max-width: 750px){
    .section-header-icon,
    .section-header-icon span,
    .section-header-icon span i {
        width: 80px;
        height: 80px;
    }
    .section-header-icon {
        top: -40px;
    }
    .section-header-icon span i {
        background-size: 40px 40px;
    }
    .section-header-icon.section-header-icon-light-green span:after {
        border-top: 10px solid #c3d942;
    }
    .section-header-icon.section-header-icon-dark-blue span:after {
        border-top: 10px solid #135eab;
    }
    .section-header-icon span:after {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        bottom: -9px;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px){
    .section-header-icon,
    .section-header-icon span,
    .section-header-icon span i {
        width: 60px;
        height: 60px;
    }
    .section-header-icon {
        top: -33px;
    }
    .section-header-icon span i {
        background-size: 33px 33px;
    }
}

/* ---- Enews Signup ---- */
.subscribe-section .container:before {
    content: " ";
    position: absolute;
    right: 0;
    top: -73px;
    width: 360px;
    height: 332px;
    background-image :url(../images/subscrib-bg.png);
    background-repeat: no-repeat;
    background-position: 0 -10px;
    z-index: 0;
}
.subscribe-section-inner-wrapper {
    position: relative;
    z-index: 1;
}
.subscribe-section-inner{
    padding: 0 0 50px 0;
    margin: 58px 0 0 0;
}
.subscribe-section form {
    display: block;
    margin: 35px auto 0 auto;
    max-width: 745px;
}
.subscribe-section .field-element,
.subscribe-section .field-element {
    float: left;
}
.subscribe-section .field-element--email {
    width: 76%;
    margin-right: 1%;
}
.subscribe-section .field-element-button {
    width: 23%;
}


/* Breakpoint 3 */
@media screen and (max-width: 750px){
    .subscribe-section .container:before {
        top: -73px;
        width: 303px;
        height: 260px;
        background-size: 300px;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px){
    .subscribe-section .container:before {
        content: none;
    }
    .subscribe-section form {
        margin: 15px auto 0;
    }
    .subscribe-section .field-element--email {
        width: 70%;
        margin-right: 2%;
    }
    .subscribe-section .field-element-button {
        width: 28%;
        margin-top: 0;
    }
}

/* Breakpoint extra 3 */
@media screen and (max-width: 400px){
    .subscribe-section .field-element,
    .subscribe-section .field-element {
        float: none;
    }
    .subscribe-section .field-element--email {
        width: 100%;
        margin-right: 0;
    }
    .subscribe-section .field-element-button {
        width: auto;
        float: right;
    }
    .section.subscribe-section {
        padding-bottom: 30px;
    }
}


/* ---- Feature sliders ---- */
.feature-slider-full-item {
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 0;
    outline: none;
}
.feature-slider-wrapper {
    position: relative;
}
.feature-slider-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
}
.feature-slider-wrapper .feature-slider-thumbs {
    padding: 0 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}
.feature-slider-wrapper .feature-slider-thumbs .slick-track {
    padding: 6px 0;
    overflow: visible !important;
}
.feature-slider-thumb-item img {
    width: 100%;
    border: 3px solid #FFF;
    opacity: 0.8;
    transition: all 200ms ease-in;
}
.feature-slider-thumb-item.slick-center {
    transform: scale(1.2);
}
.feature-slider-thumb-item.slick-center img {
    opacity: 1;
}

.feature-slider-thumb-item {
    outline: none;
    transition: all 200ms ease-in;
    transform: scale(1);
    margin: 7px 10px;
    background: #FFF;
    cursor: pointer;
}
.feature-slider-thumbs[data-thumb-count="4"] .feature-slider-thumb-item {
    margin-left: 30px;
    margin-right: 30px;
}

/* Videos */
.feature-slider-full-item--video {
    cursor: pointer;
}
.feature-slider-full-item--video:hover:before {
    opacity: 0.9;
}
.feature-slider-full-item--video:before {
    content: " ";
    display: block;
    width: 129px;
    height: 89px;
    background: url(../images/icon-video.png) no-repeat;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.feature-slider-full-item--video__embed {
    display: none;
}
.feature-slider-full-item--video--active .feature-slider-full-item--video__embed {
    display: block;
}
.feature-slider-full-item--video--active .feature-slider-full-item--video__thumb {
    display: none;
}
.feature-slider-full-item--video.feature-slider-full-item--video--active:before {
    content: none;
}
.feature-slider-thumb-item--video:before {
    content: " ";
    display: block;
    width: 40px;
    height: 25px;
    background: url(../images/icon-video.png) no-repeat;
    background-size: 40px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Responsive embeds */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-banner video {
    width: 100%;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .feature-slider-thumbs[data-thumb-count="4"] .feature-slider-thumb-item {
        margin-left: 20px;
        margin-right: 20px;
    }
}
/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .feature-slider-thumbs[data-thumb-count="4"] .feature-slider-thumb-item {
        margin-left: 15px;
        margin-right: 15px;
    }
    .feature-slider-thumb-item img {
        border-width: 2px;
    }
    .feature-slider-wrapper .feature-slider-thumbs {
        bottom: -49px;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .feature-slider-full,
    .feature-slider-full.slick-slider {
        display: none;
    }
    .feature-slider-wrapper .feature-slider-thumbs {
        padding: 0;
        position: relative;
        bottom: 0;
    }
    .feature-slider-thumb-item {
        margin: 0 3% 0 0;
        width: 31.33333333%;
        float: left;
    }
    .feature-slider-thumb-item.slick-center {
        transform: none;
    }
    .feature-slider-thumb-item:nth-child(3n+3) {
        margin-right: 0;
    }
    .feature-slider-thumb-item img {
        opacity: 1;
        border: none;
    }
    .feature-slider-thumb-item:nth-child(1n+4) {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .feature-slider-thumb-item:nth-child(1n+3) {
        display: none;
    }
    .feature-slider-thumb-item:nth-child(3n+3) {
        margin-right: 4%;
    }
    .feature-slider-thumb-item {
        margin: 0 4% 0 0;
        width: 48%;
    }
    .feature-slider-thumb-item:nth-child(2n+2) {
        margin-right: 0;
    }
}

/* ---- Auction details ---- */
.section.section-bid-header {
    padding-bottom: 0;
}
.section-bid-header-left-column {
    position: relative;
    z-index: 1;
    color: #FFF;
}
.section-bid-header-left-column h1 {
    color: #FFF;
    margin: 23px 0 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.section-bid-header-left-column .sub-title {
    margin: 0;
}

.auction-detail-map {
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 22px;
}

.section.section-bid-title-bar {
    margin-top: -30px;
    padding: 22px 0 0;
}

.sticky-bid-bar {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-animation: fadeInDown 300ms;
    animation: fadeInDown 300ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    padding: 17px 0;
}

.sticky-bar-title {
    float: left;
    margin-right: 40px;
    width: 360px;
    white-space: nowrap;
}
.sticky-bar-title .h1,
.sticky-bar-title .sub-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sticky-bar-title .h1 {
    margin: 0;
    font-size: 3.1rem;
}
.sticky-bar-title .sub-title {
    margin: 0;
}
.sticky-bar-form .field-element {
    margin-bottom: 0;
}


.sticky-bar-auction-detail-blocks {
    width: 360px;
    float: right;
    margin-right: 12px;
}
.sticky-bar-auction-detail-blocks .auction-detail-blocks {
    margin: 0;
}
.sticky-bar-auction-detail-blocks .auction-detail-block:after {
    background-color: #53cbfb;
}
.sticky-bid-bar .auction-detail-text-small-caps {
    color: #FFF;
}
.sticky-bid-bar  .auction-detail-time-text {
    color: #FFF;
}

.sticky-bar-form {
    width: 350px;
    float: right;
    margin-top: 6px;
}

.sticky-bid-bar-visible .sticky-bid-bar {
    display: block;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .sticky-bid-bar-visible .sticky-bid-bar {
        display: none;
    }
    .section.section-bid-header {
        border-bottom-width: 30px;
    }
    .section-bid-header-left-column h1 {
        margin: 36px 0 14px;
    }
    .sticky-bid-bar {
        top: 81px;
    }
    .sticky-bar-auction-detail-blocks {
        width: 300px;
    }
    .sticky-bar-form {
        width: 300px;
    }
    .sticky-bar-title {
        width: 255px;
        margin-right: 30px;
        margin-top: 6px;
    }
    .sticky-bar-title .h1 {
        font-size: 2.4rem;
    }
}
/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .section-bid-header-left-column .sub-title {
        margin-bottom: 20px;
    }
    .section.section-bid-header {
        border-bottom-width: 20px;
    }
    .section.section-bid-title-bar {
        margin-top: 0;
        padding-top: 59px;
    }
    .sticky-bid-bar-visible .sticky-bid-bar {
        display: none;
    }
}


/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .section-bid-header-left-column h1 {
        color: #1c66b1;
        white-space: initial;
        text-overflow: initial;
        overflow: visible;
    }
    .section.section-bid-header .column {
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .auction-detail-map {
        float: left;
        width: 340px;
        margin: 0 30px 0 0;
        overflow: visible;
    }
    .mobile-details {
        float: none;
        width: auto;
    }
    .bid-header-map-wrapper {
        margin-top: 70px;
        margin-bottom: 40px;
    }
    .section-auction-content .column {
        float: none;
        margin-right: 0;
        width: 100%;
    }
    .section.section-bid-title-bar {
        padding-bottom: 10px;
        padding-top: 23px;
    }
}


/* Auction detail mobile moving */
.auction-details-mobile {
    background-color: #009ddc;
    padding: 20px;
    display: none;
}
.auction-details-mobile h1 {
    margin-top: 0;
}


/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .section.section-bid-header {
        background-color: #FFF;
    }
    .auction-details-mobile {
        display: block;
    }
    .auction-details-mobile h1 {
        margin-bottom: 5px;
    }
    .mobile-details {
        display: none;
    }
    .auction-detail-map {
        float: none;
        margin: 0 auto 20px;
        width: 100%;
        display: none;
    }
    .bid-header-map-wrapper {
        margin-bottom: 0;
        margin-top: 0;
    }
    .section.section-bid-title-bar {
        padding: 14px 0;
    }
}

@media screen and (max-width: 390px) {
    .auction-detail-map {
        width: auto;
    }
}

/* Auction detail block */
.auction-detail-blocks {
    margin: 20px 0 23px;
}
.auction-detail-block {
    float: left;
    position: relative;
    font-family: 'omnes-pro', sans-serif;
    min-height: 60px;
    margin-right: 3%;
}
.auction-details .auction-detail-block-time {
    width: 32%;
}
.auction-details .auction-detail-block-price {
    width: 25%;
}
.auction-details .auction-detail-block-code {
    width: 34%;
}

.sticky-bar-auction-detail-blocks .auction-detail-block-time {
    width: 33%;
}
.sticky-bar-auction-detail-blocks .auction-detail-block-price {
    width: 25%;
}
.sticky-bar-auction-detail-blocks .auction-detail-block-code {
    width: 33%;
}

.auction-detail-block:after {
    content: " ";
    width: 3px;
    position: absolute;
    left: 100%;
    margin-left: 3px;
    top: 0;
    bottom: 0;
    background-color: #ece9e3;
}
.auction-detail-block:last-child:after {
    content: none;
}
.auction-detail-time-text .auction-detail-time-ended {
    display: block;
    padding: 19px 0 0 10px;
    font-size: 1.4rem;
    text-transform: uppercase;
}
.auction-detail-time-icon {
    float: left;
    margin-top: 3px;
    margin-right: 8px;
}
.auction-detail-time-text {
    color: #135eab;
    overflow: hidden;
    text-align: center;
    margin: 0;
}
.auction-detail-time-ended {
    text-align: left;
    line-height: 1.2;
    font-weight: 600;
}
.auction-ended-dialogue {
    height: 0;
    overflow: hidden;
    position: absolute;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    /* style visible element as anchored slide up toggle */
    background-color: #F3F1ED;
    margin: 0;
    border: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 7px 7px;
    z-index: 2;
}
.auction-ended-dialogue.dialogue-visible {
    /* expand element */
    height: auto;
    overflow: visible;
    box-shadow: 0 -5px 10px -5px rgba(0,0,0,0.5);
}
.auction-ended-dialogue > h3 {
    padding: 15px 21px 0;
}
.auction-ended-dialogue > p {
    padding: 0 21px;
}
.auction-ended-dialogue > button {
    margin: 0 auto 15px;
}

.auction-detail-time-top {
    text-transform: uppercase;
    font-size: 1.3rem;
    line-height: 1.1;
    display: block;
}
.auction-detail-time-number {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin: -6px 0 -4px;
    display: block;
}
.auction-detail-time-units {
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 600;
    display: block;
}

.auction-detail-text {
    text-align: center;
    margin: 0;
    padding-top: 9px;
}
.auction-detail-text span {
    display: block;
}
.auction-detail-text-large {
    font-weight: 600;
    font-size: 2.3rem;
    line-height: 1;
}
.auction-detail-text-small-caps {
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #000;
}

.auction-details-2 {
    position: relative;
}

.auction-details-bid-now-form {
    margin: 0;
}
.auction-detail-block-price .auction-detail-text-large {
    font-size: 2.7rem;
}
.auction-detail-block-price .auction-detail-text {
    padding-top: 6px;
}
.bid-title-bar-title-wrapper {
    padding-top: 75px;
    padding-bottom: 20px;
}
.bid-title-bar-title-wrapper h1 {
    margin: 0 0 13px;
}
.bid-title-bar-cta-wrapper {
    padding-bottom: 30px;
}
.bid-header-slider-wrapper {
    position: relative;
    z-index: 1;
}

.bid-show-map-button {
    display: none;
    -webkit-appearance: none;
    outline: none;
    border: none;
    background: none;
    color: #FFF;
    padding: 0;
    font-size: 1.4rem;
    float: right;
    text-decoration: underline;
    line-height: 1.4;
}
.bid-show-map-button:hover,
.bid-show-map-button:focus {
    color: #FFF;
}

.auction-details-bid-not-available {
    margin: 0 0 23px;
    padding: 18px 20px;
    font-size: 2rem;
    line-height: 1.2em;
    background: #135EAB;
    border-radius: 5px;
}
.auction-details-bid-not-available a {
    color: #FFF;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .auction-detail-time-icon {
        width: 34px;
    }
    .auction-detail-time-number {
        font-size: 2.8rem;
    }
    .auction-detail-time-units {
        font-size: 1.3rem;
    }
    .auction-detail-text-large {
        font-size: 1.8rem;
    }
    .auction-detail-text-small-caps {
        font-size: 1.1rem;
    }
    .auction-details .auction-detail-block-time {
        width: 30%;
    }
    .auction-details .auction-detail-block-price {
        width: 27%;
    }
    .auction-details .auction-detail-block-code {
        width: 34%;
    }
    .auction-detail-block-price .auction-detail-text-large {
        font-size: 2.5rem;
    }
    .auction-detail-block-price .auction-detail-text {
        padding-top: 7px;
    }
    .auction-detail-block {
        min-height: 55px;
    }
    .auction-detail-text {
        padding-top: 11px;
    }
    .auction-details-2 {
        padding-bottom: 20px;
    }
    .bid-title-bar-title-wrapper h1 {
        margin-bottom: 12px;
    }
    .bid-title-bar-cta-wrapper {
        padding-bottom: 10px;
    }
    .bid-title-bar-title-wrapper {
        padding-top: 50px;
    }
    .auction-detail-time-text .auction-detail-time-ended {
        font-size: 1.2rem;
        padding: 14px 0 0 7px;
    }
    .auction-details-bid-not-available {
        font-size: 1.8rem;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .auction-details-bid-not-available {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    .auction-detail-time-text .auction-detail-time-ended {
        padding: 4px 0 5px 0;
    }
    .auction-detail-blocks {
        margin: 10px 0 25px;
    }
    .auction-detail-block {
        min-height: 0;
        border-bottom: 2px solid #ece9e3;
        padding: 8px 0;
        margin: 0;
        float: none;
    }
    .auction-detail-block:last-child {
        border-bottom: none;
    }
    .auction-details .auction-detail-block-time,
    .auction-details .auction-detail-block-price,
    .auction-details .auction-detail-block-code {
        width: 100%;
    }
    .auction-detail-block:after {
        content: none;
    }
    .auction-detail-time-text {
        text-align: left;
    }
    .auction-detail-time-text span {
        display: inline;
    }
    .auction-detail-time-icon {
        margin-right: 10px;
        margin-top: -2px;
        width: 25px;
    }
    .auction-detail-time-top {
        font-size: 1.4rem;
    }
    .auction-detail-time-number,
    .auction-detail-time-units,
    .auction-detail-text-large {
        font-size: 1.8rem;
    }
    .auction-detail-text-small-caps {
        font-size: 1.4rem;
    }
    .auction-detail-block-price .auction-detail-text {
        padding-top: 0;
    }
    .auction-detail-text {
        text-align: left;
        padding-top: 0;
    }
    .auction-detail-block-price .auction-detail-text-large {
        font-size: 1.8rem;
    }
    .auction-details-2 .column {
        float: none;
        width: 100%;
    }
    .auction-details-2 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .bid-title-bar-title-wrapper {
        padding-top: 0;
    }
    .bid-title-bar-title-wrapper h1 {
        margin-top: 0;
        font-size: 3.1rem;
    }
    .bid-title-bar-cta-wrapper {
        padding-bottom: 20px;
    }
    .auction-ended-dialogue.dialogue-visible {
        border-radius: 7px;
        box-shadow: 0 0 15px 2px rgba(0,0,0,0.5);
        background-color: #fff;
        margin: 0 0 10px 0;
    }
    .button-auction-ended-close:before {
        content: "";
        position: absolute;
        top: calc(100% + 16px);
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 11px 11px 0 11px;
        border-color: #ffffff transparent transparent transparent;
    }
    .auction-ended-dialogue p {
        font-size: 1.3rem;
    }
    .auction-ended-dialogue h3 {
        font-size: 1.6rem;
        font-weight: bold;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .auction-detail-blocks {
        margin: 0;
        float: left;
        width: 210px;
    }
    .bid-title-bar-title-wrapper h1 {
        font-size: 2.8rem;
    }
    .auction-details .auction-detail-text span {
        display: block;
    }
    .column.bid-title-bar-cta-wrapper {
        width: 240px;
    }
    .column.bid-title-bar-title-wrapper {
        width: 316px;
    }
    .auction-ended-dialogue h3 {
        font-size: 1.8rem;
        font-weight: normal;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .bid-show-map-button {
        display: block;
        float: none;
        margin-top: 5px;
    }
    .auction-detail-time-text .auction-detail-time-ended {
        padding: 17px 0 5px 29px;
        font-size: 1.5rem;
    }
    .auction-detail-blocks {
        margin: 0 0 20px;
        width: 100%;
    }
    .auction-detail-block {
        min-height: 54px;
        border-bottom: none;
        padding: 0;
        float: left;
        margin-right: 3%;
    }
    .auction-detail-block:last-child {
        margin-right: 0;
    }
    .auction-detail-block:after {
        content: " ";
        margin-left: 3px;
        width: 2px;
    }
    .auction-detail-block:last-child {
        border-bottom: none;
    }
    .auction-details .auction-detail-block-time {
        width: 29%;
    }
    .auction-details .auction-detail-block-price {
        width: 31%;
    }
    .auction-details .auction-detail-block-code {
        width: 33%;
    }
    .auction-detail-time-text {
        text-align: center;
    }
    .auction-detail-time-text span {
        display: block;
    }
    .auction-detail-time-icon {
        margin-right: -20px;
        margin-top: 7px;
        width: 39px;
    }
    .auction-detail-time-top {
        font-size: 1.5rem;
    }
    .auction-detail-time-number {
        font-size: 2.5rem;
        margin: -5px 0 -4px;
    }
    .auction-detail-time-units {
        font-size: 1.8rem;
    }
    .auction-detail-text-large {
        font-size: 2.2rem;
    }
    .auction-detail-text-small-caps {
        font-size: 1.5rem;
    }
    .auction-detail-block-price .auction-detail-text {
        padding-top: 6px;
    }
    .auction-detail-text {
        text-align: center;
        padding-top: 6px;
    }
    .auction-detail-block-price .auction-detail-text-large {
        font-size: 2.2rem;
    }
    .auction-detail-text span {
        display: block;
    }
    .section-bid-title-bar .column.bid-title-bar-title-wrapper,
    .section-bid-title-bar .column.bid-title-bar-cta-wrapper {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    .bid-title-bar-title-wrapper {
        padding-bottom: 13px;
    }
    .bid-title-bar-title-wrapper h1 {
        margin-bottom: 6px;
        font-size: 2.2rem;
    }
    .auction-details-2 .column {
        float: left;
        width: 48.010610079576%;
    }
    .bid-title-bar-cta-wrapper {
        padding-bottom: 0;
    }
    .auction-details-2 .field-element {
        margin-bottom: 0;
    }
}

/* Breakpoint extra */
@media screen and (max-width: 530px) {
    .auction-detail-time-icon {
        margin-right: 0;
        width: 30px;
    }
    .auction-detail-time-text .auction-detail-time-ended {
        padding: 9px 0 5px 9px;
        font-size: 1.4rem;
    }
}

/* Breakpoint extra */
@media screen and (max-width: 460px) {
    .auction-detail-time-icon {
        width: 24px;
    }
    .auction-detail-block-time {
        width: 29%;
        padding-top: 2px;
    }
    .auction-detail-block-price {
        width: 29%;
    }
    .auction-detail-block-code {
        width: 36%;
    }
    .auction-detail-time-top {
        font-size: 1.4rem;
    }
    .auction-detail-time-number {
        font-size: 2.2rem;
        margin: -3px 0 -4px;
    }
    .auction-detail-time-units {
        font-size: 1.6rem;
    }
    .auction-detail-block-price .auction-detail-text-large,
    .auction-detail-text-large {
        font-size: 2rem;
    }
    .auction-detail-text-small-caps {
        font-size: 1.4rem;
    }
}

/* Breakpoint extra */
@media screen and (max-width: 370px) {
    .auction-detail-block-price {
        width: 28%;
    }
    .auction-detail-block-code {
        width: 37%;
    }
    .auction-detail-time-icon {
        width: 20px;
    }
    .auction-detail-time-top {
        font-size: 1.1rem;
    }
    .auction-detail-time-number {
        font-size: 1.8rem;
    }
    .auction-detail-time-units {
        font-size: 1.3rem;
    }
    .auction-detail-block-price .auction-detail-text-large,
    .auction-detail-text-large {
        font-size: 1.6rem;
    }
    .auction-detail-text-small-caps {
        font-size: 1.1rem;
    }
    .auction-detail-block {
        min-height: 45px;
    }
}


.phone-bid {
    margin: 0;
    font-family: 'omnes-pro', sans-serif;
}
.phone-bid:before {
    content: " ";
    background: url(../images/phone-icon-mob.png) no-repeat;
    display: inline-block;
    width: 18px;
    height: 17px;
    margin-right: 9px;
}
.phone-bid-text {
    font-size: 2.6rem;
    margin-right: 10px;
    line-height: 1.3;
}
.phone-bid-number {
    font-size: 3.2rem;
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
}
.phone-bid-number:hover,
.phone-bid-number:focus {
    color: #FFF;
    text-decoration: underline;
}
.how-to-bid {
    text-align: right;
    margin: 0 0 11px;
}
.how-to-bid a {
    text-decoration: none;
}
.how-to-bid a:focus,
.how-to-bid a:hover {
    text-decoration: underline;
}
.how-to-bid a,
.how-to-bid a:focus,
.how-to-bid a:hover {
    color: #FFF;
}

.auction-social .button {
    float: right;
    margin-top: 6px;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .phone-bid-text {
        font-size: 2rem;
        margin-right: 7px;
    }
    .phone-bid-number {
        font-size: 2.5rem;
    }
    .how-to-bid {
        margin: 0 0 15px;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .phone-bid-text {
        font-size: 1.7rem;
        margin-right: 5px;
    }
    .phone-bid-number {
        font-size: 2rem;
    }
    .how-to-bid {
        margin: 0;
        font-size: 1.5rem;
    }
    .phone-bid:before {
        background-size: 14px;
        width: 14px;
        height: 15px;
        margin-right: 6px;
    }
    .auction-social .button {
        float: left;
        display: block;
        margin: 0 18px 0 0;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .auction-social .button {
        margin: 0 0 10px;
        float: none;
    }
    .how-to-bid {
        text-align: left;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .how-to-bid {
        text-align: left;
        display: none;
    }
    .auction-social {
        display: none;
    }
    .auction-social .button {
        margin: 0 20px 0 0;
        float: left;
    }
    .phone-bid {
        margin-top: 5px;
    }
}

/* Extra Breakpoint */
@media screen and (max-width: 350px) {
    .auction-social .button {
        margin: 0 0 10px;
        float: none;
    }
}

.social-share-links-text {
    font-size: 1.4rem;
    display: block;
    margin-right: 7px;
    line-height: 1.2;
}
.social-share-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.social-share-links-text,
.social-share-links-list {
    vertical-align: middle;
}
.social-share-links-list-item {
    float: left;
    margin: 0 7px 0 0;
}
.social-share-links-list-item:last-child {
    margin-right: 0;
}
.social-share-links-list-item a {
    display: block;
}
.social-share-links-list-item a:hover,
.social-share-links-list-item a:focus {
    -webkit-animation: swing 500ms infinite ease-in-out;
    -webkit-transform-origin: center;
    animation: swing 500ms infinite ease-in-out;
    transform-origin: center;
}


.social-share-links-list-item.social-share-links-list-facebook {
    width: 11px;
}
.social-share-links-list-item.social-share-links-list-twitter {
    width: 25px;
}
.social-share-links-list-item.social-share-links-list-email {
    width: 19px;
}
.auction-details-2-button {
    float: right;
}

#auction-social-mobile {
    display: none;
}

/* Breakpoint 1 */
@media screen and (max-width: 1180px) {
    .social-share-links {
        margin-top: -5px;
    }
}

/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .social-share-links {
        margin-top: 1px;
        float: left;
    }
    #auction-social-mobile {
        display: block;
    }
    .social-share-links-text {
        display: inline-block;
    }
}

/* Breakpoint 3 */
@media screen and (max-width: 750px) {
    .social-share-links {
        margin-top: 0;
        float: none;
    }
}

/* Breakpoint 4 */
@media screen and (max-width: 600px) {
    .social-share-links {
        float: left;
        margin-top: 3px;
    }
}

/* Extra breakpoint */
@media screen and (max-width: 350px) {
    .social-share-links {
        float: none;
        margin-top: 0;
    }
}


.auction-resort-description {
    font-weight: bold;
}


/* Breakpoint 2 */
@media screen and (max-width: 950px) {
    .auction-feature-list-wrapper {
        -moz-column-count: 1;
        -webkit-columns: 1;
        column-count: 1;
        -moz-column-width: auto;
        -webkit-column-width: auto;
        column-width: auto;
    }
}

/* --- Region highlights ---- */
.region-highlights {
    margin-bottom: 40px;
}
.region-highlights-map {
    border-radius: 7px;
    overflow: hidden;
}
.region-highlights h3 {
    margin-top: 0;
    padding-right: 120px;
}
.region-highlights-thumb-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 20px;
}
.region-highlights-thumb-item {
    float: left;
    width: 30%;
    margin: 0 5% 0 0;

}
.region-highlights-thumb-item img {
    width: 100%;
}
.region-highlights-thumb-item:nth-child(3n+3) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .region-highlights h3 {
        padding-right: 0;
    }
}
@media screen and (max-width: 600px) {
    .region-highlights-map-button {
        display: none;
    }
}

/* ---- Latest reviews ---- */
.latest-reviews {
    position: relative;
}
.latest-reviews .feature-button {
    top: 0;
}
.latest-reviews-buttons .slider-buttons {
    float: left;
}
.latest-reviews-buttons > .button {
    float: right;
}
.latest-reviews-list {
    padding: 0;
    margin: 9px 0 20px;
    list-style: none;
}
.latest-reviews-list-item:nth-child(2n) blockquote cite {
    text-align: right;
    padding: 0 29px 0 0;
}
.latest-reviews-list-item:nth-child(2n) .blockquote-content:after {
    left: auto;
    right: 40px;
}
.latest-reviews-list-scroll-wrapper {
    margin: 0 0 20px;
}
.latest-reviews-list-scroll-wrapper .latest-reviews-list {
    margin: 0;
}
.latest-reviews-list-scroll-wrapper .slimScroll {
    padding-right: 15px;
}
.latest-reviews-list-item {
    margin-bottom: 0;
}
.latest-reviews-list-item:focus {
    outline: none !important;
}
.scroll-buttons .slick-disabled {
    opacity: 0.4;
    pointer-events: none;
}

@media screen and (max-width: 1180px) {
    .latest-reviews .feature-button {
        display: none;
    }
    .latest-reviews-buttons .slider-buttons {
        float: none;
        text-align: right;
        margin: 0 0 10px;
    }
}

@media screen and (max-width: 750px) {
    .latest-reviews-list-item blockquote cite {
        text-align: right;
        padding: 0 29px 0 0;
    }
    .latest-reviews-list-item .blockquote-content:after {
        left: auto;
        right: 40px;
    }
    .latest-reviews {
        margin-bottom: 20px;
    }
    .latest-reviews-buttons .slider-buttons {
        float: left;
        margin: 0;
    }
}

@media screen and (max-width: 350px) {
    .latest-reviews-buttons .slider-buttons {
        float: none;
        margin: 0 0 10px;
    }
}

/* ---- Heading buttons ---- */
.heading-buttons-wrapper h1 {
    float: left;
    margin-right: 35px;
}
.heading-buttons {
    float: right;
    margin-top: 30px;
}

/* ---- Processing spinner ---- */
.processing.processing-animate.spin-in {
    -webkit-animation: spin 1200ms;
    animation: spin 1200ms;
}
.processing.processing-animate .processing-dots-wrapper {
    -webkit-animation: spin linear infinite 4000ms;
    animation: spin linear infinite 4000ms;
}
.processing.processing-animate .processing-dot {
    -webkit-animation-name: processing-dot;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-easing: linear;
    -webkit-animation-duration: 1200ms;
    animation-name: processing-dot;
    animation-iteration-count: infinite;
    animation-easing: linear;
    animation-duration: 1200ms;
}

.processing {
    width: 35px;
    height: 35px;
}
.processing-dots-wrapper {
    width: 35px;
    height: 35px;
    position: relative;
}
.processing-dot {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: #c6c5c3;
    display: block;
    position: absolute;
}

.processing-dot-8 {
    left: 4px;
    top: 4px;
    -webkit-animation-delay: 150ms;
    animation-delay: 150ms;
}
.processing-dot-7 {
    left: 0;
    top: 13px;
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;
}
.processing-dot-6 {
    left: 4px;
    top: 23px;
    -webkit-animation-delay: 450ms;
    animation-delay: 450ms;
}
.processing-dot-5 {
    left: 13px;
    top: 26px;
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
}
.processing-dot-4 {
    left: 23px;
    top: 22px;
    -webkit-animation-delay: 750ms;
    animation-delay: 750ms;
}
.processing-dot-3 {
    left: 27px;
    top: 13px;
    -webkit-animation-delay: 900ms;
    animation-delay: 900ms;
}
.processing-dot-2 {
    left: 23px;
    top: 4px;
    -webkit-animation-delay: 1050ms;
    animation-delay: 1050ms;
}
.processing-dot-1 {
    left: 13px;
    top: 0px;
    -webkit-animation-delay: 1200ms;
    animation-delay: 1200ms;
}
/* Large */
.processing.processing-large {
    width: 50px;
    height: 50px;
}
.processing.processing-large .processing-dots-wrapper {
    width: 50px;
    height: 50px;
}
.processing.processing-large .processing-dot {
    width: 12px;
    height: 12px;
}
.processing.processing-large .processing-dot-8 {
    left: 6px;
    top: 6px;
}
.processing.processing-large .processing-dot-7 {
    left: 0;
    top: 19px;
}
.processing.processing-large .processing-dot-6 {
    left: 6px;
    top: 33px;
}
.processing.processing-large .processing-dot-5 {
    left: 20px;
    top: 38px;
}
.processing.processing-large .processing-dot-4 {
    left: 33px;
    top: 33px;
}
.processing.processing-large .processing-dot-3 {
    left: 37px;
    top: 19px;
}
.processing.processing-large .processing-dot-2 {
    left: 32px;
    top: 6px;
}
.processing.processing-large .processing-dot-1 {
    left: 19px;
    top: 0px;
}

/* Medium */
.processing.processing-medium {
    width: 35px;
    height: 35px;
}
.processing.processing-medium .processing-dots-wrapper {
    width: 35px;
    height: 35px;
}
.processing.processing-medium .processing-dot {
    width: 8px;
    height: 8px;
}
.processing.processing-medium .processing-dot-8 {
    left: 4px;
    top: 4px;
}
.processing.processing-medium .processing-dot-7 {
    left: 0;
    top: 13px;
}
.processing.processing-medium .processing-dot-6 {
    left: 4px;
    top: 23px;
}
.processing.processing-medium .processing-dot-5 {
    left: 13px;
    top: 26px;
}
.processing.processing-medium .processing-dot-4 {
    left: 23px;
    top: 22px;
}
.processing.processing-medium .processing-dot-3 {
    left: 27px;
    top: 13px;
}
.processing.processing-medium .processing-dot-2 {
    left: 23px;
    top: 4px;
}
.processing.processing-medium .processing-dot-1 {
    left: 13px;
    top: 0px;
}

/* Small */
.processing.processing-small {
    width: 16px;
    height: 16px;
}
.processing.processing-small .processing-dots-wrapper {
    width: 16px;
    height: 16px;
}
.processing.processing-small .processing-dot {
    width: 4px;
    height: 4px;
}

.processing.processing-small .processing-dot-8 {
    left: 2px;
    top: 2px;
}
.processing.processing-small .processing-dot-7 {
    left: 0px;
    top: 6px;
}
.processing.processing-small .processing-dot-6 {
    left: 2px;
    top: 10px;
}
.processing.processing-small .processing-dot-5 {
    left: 7px;
    top: 12px;
}
.processing.processing-small .processing-dot-4 {
    left: 11px;
    top: 10px;
}
.processing.processing-small .processing-dot-3 {
    left: 13px;
    top: 6px;
}
.processing.processing-small .processing-dot-2 {
    left: 11px;
    top: 2px;
}
.processing.processing-small .processing-dot-1 {
    left: 6px;
    top: 0;
}


@-webkit-keyframes processing-dot {
    0% {
        -webkit-transform: scale(0.5);
        background-color: #c6c5c3;
    }
    10% {
        -webkit-transform: scale(1);
        background-color: #575756;
    }
    100% {
        -webkit-transform: scale(0.5);
        background-color: #c6c5c3;
    }
}
@keyframes processing-dot {
    0% {
        transform: scale(0.5);
        background-color: #c6c5c3;
    }
    10% {
        transform: scale(1);
        background-color: #575756;
    }
    100% {
        transform: scale(0.5);
        background-color: #c6c5c3;
    }
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ---- Site search ---- */

/* ie on the /search page */


@media screen and (min-width: 650px) {
    .site-search-form input[type="text"] {
        width: 60%;
        margin: 0 1.5% 0 0;
    }

}


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

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

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

    /* ---- Catch all ---- */
    .sidebar .widget {
        margin-bottom: 30px;
    }
    .sidebar .widget-title {
        margin-top: 0;
        color: var(--color-grey-07, #5f5f5f);
    }

    /* ---- Related Links ---- */
    .widget-RelatedLinks {
        margin-bottom: 25px;
    }
    .widget-RelatedLinks ul {
        padding: 0;
        margin:  0;
    }
    .widget-RelatedLinks li {
        list-style: none;
        margin-bottom: 0;
        position: relative;
        border-bottom: 1px solid #d6d6d6;
    }
    .widget-RelatedLinks a {
        text-decoration: none;
    }
    .widget-RelatedLinks li.on > a,
    .widget-RelatedLinks a:hover {
        background-color: #F3F1EF;
    }
    .widget-RelatedLinks li.on > a:after {
        content: " ";
        position: absolute;
        left: 0;
        background-color: #009DDC;
        top: 0;
        width: 4px;
        height: 100%;
        display: block;
    }
    .widget-RelatedLinks li:last-child {
        border-bottom: none;
    }

    /* First level */
    .widget-RelatedLinks > ul > li > a {
        display: block;
        padding: 10px 20px 10px 0;
        transition: all 150ms ease-out;
    }
    .widget-RelatedLinks ul li.on ul li {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .widget-RelatedLinks > ul > li.on > a,
    .widget-RelatedLinks > ul > li > a:hover {
        padding-left: 20px;
        padding-right: 0;
    }


    .widget-RelatedLinks li a {
        line-height: 1.2;
        color: var(--color-grey-07, #5f5f5f);
        position: relative;
    }

    /* Children */
    .widget-RelatedLinks ul li ul li {
        border-top: 1px solid #d6d6d6;
    }
    .widget-RelatedLinks > ul > li ul > li a {
        transition: all 150ms ease-out;
        position: relative;
        padding: 7px 20px 7px 25px;
        display: block;
    }
    .widget-RelatedLinks > ul > li ul > li a:hover {
        background-color: #F3F1EF;
        padding-right: 10px;
        padding-left: 35px;
    }

    /* Breakpoint 2 */
    @media screen and (max-width: 950px) {
        .widget-RelatedLinks li a {
            font-size: 1.4rem;
        }
    }



    /* ---- Children Page Gallery ---- */
    .children-gallery-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .children-gallery-list .children-gallery-list-item {
        width: 22%;
        float: left;
        margin: 0 0 20px 4%;
        position: relative;
    }
    .children-gallery-list .children-gallery-list-item:nth-child(4n+1) {
        margin-left: 0;
        clear: left;
    }
    .children-gallery-list .children-gallery-list-item-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }
    .children-gallery-list .children-gallery-list-item-link:hover {
        text-decoration: underline;
    }
    .children-gallery-list .children-gallery-list-item-image {
        margin-bottom: 9px;
    }
    .children-gallery-list .children-gallery-list-item-link:hover .children-gallery-list-item-image {
        opacity: 0.9;
    }
    .children-gallery-list .children-gallery-list-item-title {
        margin: 0;
    }
    .children-gallery-list .children-gallery-list-item-anchor {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .children-gallery-list .children-gallery-list-item-link:hover .children-gallery-list-item-anchor {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        padding: 0;
        position: absolute;
        width: 100%;
        top: 56px;
        left: 0;
        text-align: center;
    }
    .children-gallery-list .children-gallery-list-item-anchor .button {
        margin: 0 auto;
        display: inline-block;
    }



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

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

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

    .widget-RichText video {
        max-width: 100%;
        height: auto;
    }


    /* ---- Blog ---- */

    /* Author */
    .blog-author__avatar {
        float: left;
        margin: 0 25px 25px 0;
    }
    @media screen and (max-width: 400px) {
       .blog-author__avatar {
            float: none;
            margin: 0 auto 25px;
            display: block;
        }
    }

    /* Hub */
    .button.blog-refine-bar__button.on {
        background-color: #009DDC;
    }
    .blog-hub__post__author {
        margin-bottom: 0;
    }
    .blog-hub__post__time {
        font-family: 'omnes-pro', sans-serif;
        font-size: 1.8rem;
        text-transform: lowercase;
        font-weight: 700;
    }

    /* Post */
    .blog-post__details {
        border-bottom: 2px solid #F3F1EF;
        margin-bottom: 20px;
    }
    .blog-post__author {
        margin-bottom: 0;
    }
    .blog-post__time {
        font-family: 'omnes-pro', sans-serif;
        font-size: 1.8rem;
        text-transform: lowercase;
        font-weight: 700;
    }
    .blog-comment {
        background-color: #E4E4E4;
        border: 1px solid #D4D4D4;
        border-radius: 7px;
        padding: 15px 20px;
    }
    .blog-comment__text {
        margin-bottom: 0;
    }
    .blog-comment__author {
        margin-bottom: 0;
    }
    .blog-comment__time {
        font-style: italic;
        font-size: 1.4rem;
        margin-bottom: 6px;
    }

    /* List */
    .blog-list__item__title-link {
        text-decoration: none;
        color: inherit;
    }
    .blog-list__item__title {
        margin-top: 0;
    }
    .blog-list__author {
        margin-bottom: 0;
    }
    .blog-list__time {
        font-family: 'omnes-pro', sans-serif;
        font-size: 1.8rem;
        text-transform: lowercase;
        font-weight: 700;
    }

    /* --------------------------------------------------------
    Blog entry list;
    -------------------------------------------------------- */
    .blog-date {
        text-align: center;
        width: 100%;
        height: 113px;
        margin: 0 auto;;
    }
    .blog-date p {
        color: #FFF;
    }
    #blog-entries {
        padding-top: 20px;
    }
    #blog-posts {
        margin: 0 -1%;
    }
    #blog-entries .blog-post-preview {
        padding: 25px;
        min-height: 490px;
        width: 48%;
        margin: 0 0 20px 1%;
        float: left;
        border-radius: 4px;
        background-color: #F3F1ED;
        transition: background 300ms ease;
    }
    #blog-entries .blog-post-preview img.blog-post-featured-img-small {
        width: 100%;
    }
    #blog-entries .blog-post-preview:hover .view-more-link {
        opacity:90;
        filter:alpha(opacity=90);
    }
    #blog-entries .blog-post-preview .view-more-link {
        padding: 20px;
        border: 1px solid #d7d7d7;
    }
    #blog-entries .blog-post-preview .side {
        float: left;
        width: 19.7%;
        border-right: 1px solid #d7d7d7;
        text-align: center;
        margin-top:  30px;
    }
    #blog-entries .blog-post-preview .blog-date {
        border-bottom: 1px solid #d7d7d7;
        float: right;
        padding: 0 11% 0 0;
        margin-bottom: 20px;
    }
    #blog-entries .blog-post-preview .blog-date p {
    }
    #blog-entries .blog-post-preview .share {
        padding-right: 14%;
        margin-top: 10px;
    }
    #blog-entries .blog-post-preview .excerpt .hub-share p {
        color: #909396;
        text-transform: uppercase;
        font-size: 1.3rem;
        padding: 0;
        margin: 0;
        display: inline;
    }
    #blog-entries .blog-post-preview .hub-share a img {
        margin: 0 0 0 5px;
        display: inline;
    }
    .share a:hover {
        text-decoration: none;
    }
    .share a:hover img {
        zoom: 1;
        opacity: 0.5;
        -webkit-transition: opacity 300ms ease-in;
        -moz-transition: opacity 300ms ease-in;
        -ms-transition: opacity 300ms ease-in;
        -o-transition: opacity 300ms ease-in;
        transition: opacity 300ms ease-in;
    }
    #blog-entries .blog-post-preview a {
        text-decoration: none;
    }
    #blog-entries .blog-post-preview a.blog-link {
    }
    #blog-entries .blog-post-preview .excerpt {
        float: left;
        padding: 0;
        width: 100%;
    }
    #blog-entries .blog-post-preview .excerpt h3,
    #blog-entries .blog-post-preview .excerpt h3 a {
        font-weight: 600;
        font-size: 2.9rem;
        line-height: 1.1;
        text-align: left;
        padding-bottom: 0;
    }
    #blog-entries .blog-post-preview .excerpt h3:before,
    #blog-entries .blog-post-preview .excerpt h3:after {
        display: none;
    }
    #blog-entries .blog-post-preview .excerpt p.author {
        font-size: 1.4rem;
        margin: 5px 0 20px;
    }
    #blog-entries .blog-post-preview .excerpt p {
        line-height: 140%;
        margin: 15px 0;
    }

    /* Refine bar */
    .blog-refine-bar {
        margin: 0 0 35px;
    }
    .blog-refine-bar p {
        font-weight: 500;
        font-size: 19px !important;
        font-size: 1.9rem !important;
        display: inline;
        margin-right: 16px;
    }

    .blog-refine-bar a {
        text-transform: uppercase;
        font-weight: 100;
        padding: 5px 10px;
        text-decoration: none;
        margin: 1px 3px;
        line-height: 150%;
    }
    .blog-refine-bar a.on {
    }
    .blog-refine-bar a.on:hover {
    }
    .blog-refine-bar a:hover {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
    }
    /* --------------------------------------------------------
    Blog post
    -------------------------------------------------------- */

    .blog-sidebar {
        padding: 20px;
        background: #F3F1EF;
    }

    .blog-sidebar .field-input .textbox,
    .blog-sidebar .field-input select,
    .blog-sidebar .field-element--fileselector .fs-preview-wrapper {
        background: #fff;
    }

    .blog-sidebar h3 {
        margin-top: 0;
    }
    img.blog-post-featured-img {
        margin: 10px 0 20px;
        width: 100%;
    }
    img.blog-author-img {
        float:left;
        max-width: 200px;
        max-height: 300px;
        margin: 0 20px 20px 0;
    }

    #blog-post-section .blog-post {
        width: 92%;
        margin: 0 auto;
    }

    #blog-post-section .blog-post .side {
        float: left;
        width: 9%;
        border-right: 1px solid #d7d7d7;
        text-align: center;
        margin-top:  30px;
    }
    #blog-post-section .blog-post .blog-date,
    #blog-post-section .blog-post .blog-subscribe,
    #blog-post-section .blog-author-pic {
        border-bottom: 1px solid #d7d7d7;
        margin-bottom: 20px;
    }
    .side-col {
        padding: 0 14% 0 0;
    }
    .blog-author-pic img {
        margin: 32% 0;
    }

    .blog-item {
        border-bottom: 1px solid #f3f1f1;
        margin: 5px 0 20px;
    }

    .blog-item .details,
    .blog-post .details {
        margin: 0 0 20px;
        font-weight: bold;
    }
    .blog-item .details p.date,
    .blog-item .details p.author,
    .blog-post .details p.date,
    .blog-post .details p.author {
        display: inline;
    }

    p.blog-rss-link {
        float: right
    }
    p.blog-rss-link img {
        width: 16px;
        margin-left: 10px;
    }

    #blog-post-section .blog-post .blog-date p {
        color: #ffc400;
    }
    .blog-post .side .share {
        padding-right: 16%;
    }
    .blog-post .side a img {
        display: block;
        margin: 15px auto;
    }
    #blog-post-section .blog-post .share a:hover img {
        zoom: 1;
        opacity: .5;
        -webkit-transition: opacity 300ms ease-in;
        -moz-transition: opacity 300ms ease-in;
        -ms-transition: opacity 300ms ease-in;
        -o-transition: opacity 300ms ease-in;
        transition: opacity 300ms ease-in;
    }
    #blog-post-section .blog-post .excerpt {
        float: left;
        padding: 0 0 0 3%;
        width: 91%;
        margin-top: 30px;
    }

    #blog-post-section .blog-post .excerpt h3:before,
    #blog-post-section .blog-post .excerpt h3:after {
        display: none;
    }
    #blog-post-section .blog-post .excerpt p.author {
        font-size: 1.4em;
        text-transform: uppercase;
        margin: 10px 0 20px;
    }
    .excerpt h1,
    .excerpt .h1 {
        text-align: left;
        font-weight: 300;
        font-size: 3.8rem;
        margin: 15px 0 20px 0;
    }
    .excerpt h2,
    .excerpt .h2 {
        color: #ee522e;
        font-weight: 300;
        font-size: 3.2rem;
        text-align: left;
        margin: 50px 0 18px 0;
        border-bottom: 1px solid #d7d7d7;
        padding-bottom: 7px;
    }
    .excerpt h3,
    .excerpt .h3 {
        font-weight: 500;
        color: var(--color-grey-07, #5f5f5f);
        font-size: 2.7rem;
        text-align: left;
        margin: 22px 0 0 0;
    }
    .excerpt h4,
    .excerpt .h4 {
        color: #364250;
        font-weight: 300;
        font-size: 2.1rem;
        text-align: left;
        margin: 27px 0 20px 0;
    }
    .excerpt h5,
    .excerpt .h5 {
        color: #364250;
        font-weight: 300;
        font-size: 1.6rem;
        text-align: left;
        margin: 25px 0 20px 0;
    }
    .excerpt h6,
    .excerpt .h6 {
        color: #364250;
        font-weight: 300;
        font-size: 13px;
        font-size: 1.3rem;
        text-align: left;
        margin: 25px 0 20px 0;
    }
    .blog-comments,
    .fb-comments,
    .fb-comments span,
    .fb-comments iframe,
    .pluginSkinLight >   {
        width: 100% !important;
    }


    .blog-post__tags {
        margin-bottom: 20px;
    }

    .blog-post__footer {
        background: #f3f1ed;
        padding: 20px 20px;
        border-radius: 0 0 7px 7px;
    }
    .blog-post__comments h2:first-child {
        margin-top: 0;
    }

    .blog-post__footer .share {
        float: none;
        width: auto;
        margin: 0 0 20px;
    }

    .share {
        float: left;
        width: 50%;
        margin: 20px 0;
    }

    .share:not(:first-child) {
        text-align: right;
    }

    .share:not(:first-child) img {
        margin-left: 7px;
    }

    .share p {
        color: #909396;
        text-transform: uppercase;
        font-size: 15px;
        font-size: 1.5rem;
        margin: 0;
    }

    .share .share-item {
        display:inline-block;
        margin: 0 10px 0 0;
        vertical-align: top;
    }

    .share .share-item.share-item-fb {
        margin-top: -1px;
    }

    .blog-article__footer .share {
        width: 50%;
        float: left;
        color: #B3B7BB;
    }
    .blog-article__footer .share:not(:first-child) {
        text-align: right;
    }


    @media screen and (max-width: 650px) {
        #blog-entries .blog-post-preview {
            border: 1px solid #d7d7d7;
            padding: 3%;
            width: 99%;
            float: none;
        }
        .blog-archive-rss a {
            width: 100%;
        }
        p.blog-rss-link {
            float: none;
        }
    }
/* ------------------------------------------------------
**** Campaign bidding landing page
------------------------------------------------------ */
.campaign-bid .icon-section:first-child,
.campaign-bid .section-content + .icon-section {
    margin-top: 47px;
}
.campaign-bid .field-element--money .field-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.campaign-bid .field-element--money .field-input input {
    font-size: 2.4rem;
}
.campaign-bid__h2--subtle {
    color: var(--color-grey-07, #5f5f5f);
    font-weight: normal;
}
.campaign-bid__h2--emphasis {
    color: var(--color-grey-07, #5f5f5f);
}
.campaign__auction__item {
    position: relative;
    margin: 0 0 1.5rem 0;
    background-color: #F3F1ED;
    border-radius: 7px;
    padding: 15px;
}
.campaign__auction__item > *:last-child {
    margin-bottom: 0;
}
.section--campaign-bid > p:first-child {
    margin-bottom: 0.2em;
}
.section--campaign-bid p {
    line-height: 1.25;
    font-family: 'omnes-pro', sans-serif;
    font-size: 1.7rem;
}
.section--campaign-bid p.h2 {
    font-size: 2rem;
}
.campaign-bid__preform-title {
    margin-bottom: 0.25em;
}
.campaign__auctions {
    margin: 2rem 0;
}
.campaign__additional-information {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 22px;
    height: 22px;
}
.campaign__duration,
.campaign__accommodation span {
    font-weight: bold;
}
.campaign__accommodation {
    display: block;
}
.campain__location__state:before {
    content: "\00b7\00a0";
    display: inline-block;
    font-weight: bold;
}
.section--campaign-bid .button {
    font-family: 'omnes-pro', sans-serif;
    font-size: 1.7rem;
}
.campaign__auction__item--confirmed {
    margin: 1.5rem 0 2.5rem;
}
.campaign__auction__item--confirmed .campaign__auction__item__details {
    margin-bottom: 0;
}
.form__user-details {
    margin-top: 30px;
}
.form__user-details input[type="submit"] {
    margin-top: 2rem;
}
.campaign-bid__outcome-content p,
.campaign-bid__outcome-content h2 {
    margin: 2px 0;
    line-height: 1.2;
}
.campaign-bid__outcome-content {
    margin: 1.5rem 0 3rem;
}
.form__revised-bid-amount input[type="submit"] {
    margin-top: 2rem;
}
.outcome--successful .campaign-bid__outcome-content {
    margin: 4rem 0 0 0;
}
.section--campagin-bid__further-links p,
.section--campagin-bid__further-links .button {
    font-family: 'Neue Helvetica W01', Helvetica, sans-serif;
}
.section--campagin-bid__further-links {
    margin: 4rem 0 0;
    padding-top:4rem;
    position: relative;
}
.section--campagin-bid__further-links:before {
    content: "";
    display: inline-block;
    height: 2px;
    width: 20px;
    position: absolute;
    left: 0;
    top:0;
    background: var(--color-alternative-light, #fbaa31);
}
.section--campagin-bid__further-links p,
.section--campagin-bid__further-links .button {
    margin-bottom: 0.5rem;
}
.section--campagin-bid__further-links .spacer {
    margin: 1.5rem 0;
    text-align: center;
}
.section--campagin-bid__further-links .button {
    margin-bottom: 1.5rem;
}
.section--campagin-bid__further-links .campaign-bid__h2--emphasis {
    margin-top: 0;
}
div.campaign-video-wrap div {
    min-width: 100px;
    -webkit-border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -moz-border-radius-topleft: 7px;
    -moz-border-radius-topright: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    overflow: hidden;
}
p.sms-unsub-link {
    width:100%;
    text-align:center;
    margin: 40px 0 20px;
}
@media screen and (max-width: 600px) {
    .bidding-title h1 {
        margin: 1.25rem 0 1rem;
    }
    .campaign-bid .site-title {
        position: absolute;
    }
    .campaign-bid .field-label, .fieldset__legend {
        font-size: 1.7rem;
    }
}

@media screen and (min-width: 750px) {
    .campaign__auction__item {
        display: -webkit-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .campaign__auction__item__link {
        display: -webkit-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
    }
    .section--campaign-bid p {
        margin-bottom: 0;
        font-size: 2rem;
        line-height: 1.2;
    }
    .campaign-bid__outcome-content p,
    .campaign-bid__outcome-content h2 {
        line-height: 1.25;
    }
    .section--campagin-bid__further-links .button {
        font-size: 1.7rem;
    }
    .section--campagin-bid__further-links p {
        margin-bottom: 4px;
    }
}
@media screen and (max-width: 950px){
    .campaign-bid .field-element .field-input .textbox,
    .campaign-bid .field-element .field-input select,
    .campaign-bid .field-element.field-element--fileselector .fs-preview-wrapper,
    .campaign-bid .field-element--regular .field-input .textbox,
    .campaign-bid .field-element--regular .field-input select,
    .campaign-bid .field-element--regular.field-element--fileselector .fs-preview-wrapper,
    .campaign-bid .field-element--large .field-input .textbox,
    .campaign-bid .field-element--large .field-input select,
    .campaign-bid .field-element--large.field-element--fileselector .fs-preview-wrapper {
        font-size: 1.7rem;
    }
}


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

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

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

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

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

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

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

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

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

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

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


        body {
            line-height: 1.2;
            font-size: 1.3em;
        }
    }

/* ------------------------------------------------------
**** Mgnific popup
------------------------------------------------------ */

.mfp-image-holder .mfp-content {
    max-width: 1000px;
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
    background-color: #fff;
    margin: 0 auto;
    width: 88%;
    max-width: 800px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.mfp-title,
.mfp-counter {
    padding-top: 5px;
}

.mfp-ajax-holder .mfp-content {
    padding: clamp(12px, 4.5vw, 38px);
}


/* BP small */
@media screen and (min-width: 48em) { /* 768px */
.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
        padding: 50px;
        width: 92%;
    }
}


.js--entry-popup {
    display: none;
}

.mfp-content .js--entry-popup {
    display: block;
}

#chat-widget-container {
    z-index: 999 !important;
}

/* ------------------------------------------------------
**** Reviews
------------------------------------------------------ */
.user-review .user-review-body {
    padding: 9px;
    border-top: 1px solid lightgray;
}
.user-review h6 {
    margin: 0;
    margin-bottom: 5px;
}
.user-review h6 .stars {
    background-image: url("../images/star-on.png");
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 1px;
    margin-right: 1px;
    margin-top: 2px;
    font-size: 0.75em;
}
.user-review h3 .verified {
    color: green;
}
.user-review h3 .unverified {
    color: red;
}

/* ------------------------------------------------------
**** Auction Tag Gallery
------------------------------------------------------ */
.tag-section {
    padding-top: 45px;
}

.tag-section__header .section-title {
    letter-spacing: 0.033em;
    color: var(--color-alternative);
    font-weight: 600;
    font-size: max(2.4rem, 2vw);
    margin: 1.3rem 0 0;
}

.tag-section__header__title {
    display: block;
    margin-inline: auto;
    height: max(2.4rem, 3vw);
}

.auction-tag-gallery {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    gap: 1.6rem;
}

@media screen and (min-width: 30em) { /* 400px */
    .auction-tag-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 951px) {
    .auction-tag-gallery {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 75em) { /* 1200px */
    .auction-tag-gallery {
        gap: 40px
    }
    .tag-section {
        padding-top: 90px;
    }
}

.auction-tag-gallery__item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.auction-tag-gallery__item__inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background-color: var(--color-primary, #009ddc);
    background: linear-gradient(to bottom, var(--color-primary, #009ddc) 66.66%, var(--color-secondary, #135eab) 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(0,0,0, 0);
    transition: box-shadow 250ms ease;
    -webkit-transition: box-shadow 250ms ease;
    -moz-transition: box-shadow 250ms ease;
    -ms-transition: box-shadow 250ms ease;
    -o-transition: box-shadow 250ms ease;

}

.auction-tag-gallery__item__inner:hover,
.auction-tag-gallery__item__inner:active,
.auction-tag-gallery__item__inner:focus {
    box-shadow: 0 2px 4px 0 rgba(0,0,0, 0.25);
}

.auction-tag-gallery__item__inner:hover .auction-tag-gallery__item__copy,
.auction-tag-gallery__item__inner:active .auction-tag-gallery__item__copy,
.auction-tag-gallery__item__inner:focus .auction-tag-gallery__item__copy {
    background-color: transparent;
}

.auction-tag-gallery__item__inner:hover .auction-tag-gallery__item__img img,
.auction-tag-gallery__item__inner:active .auction-tag-gallery__item__img img,
.auction-tag-gallery__item__inner:focus .auction-tag-gallery__item__img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.auction-tag-gallery__item__copy {
    flex: 1 1 auto;
    order: 1;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    background-color: var(--color-alternative, #f47323);
    transition: background 250ms ease;
}

.auction-tag-gallery__item__copy h3 {
    background-color: #fff;
    color: var(--color-primary, #009ddc);
    font-family: 'omnes-pro', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    padding: 0.75em 1.5em;
    margin: 0;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1 1 auto;
}

@media screen and (min-width: 30em) { /* 400px */
    .auction-tag-gallery__item__copy h3 {
        padding-inline: 0.25em;
    }
}

@media screen and (min-width: 48em) { /* 768px */
    .auction-tag-gallery__item__copy {
        gap: 24px;
        padding: 2.4rem;
    }

    .auction-tag-gallery__item__copy h3 {
        padding-inline: 1.5em;
    }
}

@media screen and (min-width: 75em) { /* 1200px */
    .auction-tag-gallery__item__copy {
        padding-inline: 50px;
    }
}

.auction-tag-gallery__item__icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0.5em auto 0;
}

.auction-tag-gallery__item__img {
    flex: 0 1 auto;
    order: 0;
    display: block;
    position: relative;
    overflow: hidden;
}

.auction-tag-gallery__item__img img {
    display: block;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: transform 250ms ease;
    -webkit-transition: transform 250ms ease;
    -moz-transition: transform 250ms ease;
    -ms-transition: transform 250ms ease;
    -o-transition: transform 250ms ease;
}

.auction-tag-gallery__item__img:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    top: 50%;
    background-image: url(../images/bg_waves.svg);
    background-repeat: no-repeat;
    background-size: calc(var(--default-container) * 2) 30%;
    background-position: center bottom;
    z-index: 1;
}

@media screen and (min-width: 30em) { /* 400px */
    .auction-tag-gallery__item__img:before {
        background-size: var(--default-container) 30%;
    }

    .auction-tag-gallery__item:nth-child(2n) .auction-tag-gallery__item__img:before {
        background-position: right bottom;
    }

    .auction-tag-gallery__item:nth-child(2n + 1) .auction-tag-gallery__item__img:before {
        background-position: left bottom;
    }
}

@media screen and (min-width: 48em) { /* 768px */
    .auction-tag-gallery__item:nth-child(3n) .auction-tag-gallery__item__img:before {
        background-position: right bottom;
    }

    .auction-tag-gallery__item:nth-child(3n + 1) .auction-tag-gallery__item__img:before {
        background-position: left bottom;
    }

    .auction-tag-gallery__item:nth-child(3n + 2) .auction-tag-gallery__item__img:before {
        background-position: center bottom;
    }
}



/*
    Jquery Multiselect style overrides
*/

.field-element--js--multi-select {
    --padding-left: 15px;
    --padding-right: 55px;
    --padding-block: 7px;
    --font-size: 1.4rem;
    --arrow-y-position: -243px;
    --line-y-position: -416px;
}
.field-element--large.field-element--js--multi-select {
    --arrow-y-position: -243px;
    --line-y-position: -416px;
}
.field-element--large.field-element--dark-blue.field-element--js--multi-select {
    --arrow-y-position: -300px;
    --line-y-position: -575px;
}


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

    .field-element--js--multi-select {
        --font-size: 1.5rem;
        --padding-left: 20px;
        --padding-block: 10px;
        --arrow-y-position: -238px;
    }
    .field-element--large.field-element--js--multi-select {
        --arrow-y-position: -238px;
    }
    .field-element--large.field-element--dark-blue.field-element--js--multi-select {
        --arrow-y-position: -300px;
    }

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

    .field-element--js--multi-select {
        --font-size: 1.6rem;
        --padding-left: 20px;
        --padding-block: 10px;
        --arrow-y-position: -238px;
    }
    .field-element--large.field-element--js--multi-select {
        --padding-left: 25px;
        --padding-block: 13px;
        --arrow-y-position: -233px;
    }
    .field-element--large.field-element--dark-blue.field-element--js--multi-select {
        --arrow-y-position: -294px;
    }

}


.ms-options-wrap > button:focus,
.ms-options-wrap > button {
    background-image:   url(../images/form-icons.svg),
                        url(../images/form-icons.svg);
    background-repeat:  no-repeat,
                        no-repeat;
    background-position:    top var(--arrow-y-position) right -107px, /* arrow */
                            top var(--line-y-position) right -92px;  /* sep line */
    line-height: 1.2;
    font-size: var(--font-size);
    padding: var(--padding-block) var(--padding-right) var(--padding-block) var(--padding-left);
    background-color: var(--color-grey-01);
    color: #fff;
    border: 0;
    margin-top: 0;
    border-radius: 4px;
}

.field-element--dark-blue .ms-options-wrap > button:focus,
.field-element--dark-blue .ms-options-wrap > button {
    background-color: var(--color-secondary);
    color: #fff;
}

.field-element--white .ms-options-wrap > button:focus,
.field-element--white .ms-options-wrap > button {
    background-color: #fff;
    color: var(--color-grey-07);
}

.ms-options-wrap > button::after {
    content: unset;
}

.field-element .ms-options {
    background-color: var(--color-grey-01);
    color: #fff;
    font-size: 1.5rem;
    border-radius: 5px;
    border: 0;
}

.field-element--dark-blue .ms-options {
    background-color: var(--color-secondary);
    color: #fff;
}

.field-element--white .ms-options {
    background-color: #fff;
    color: var(--color-grey-07);
}

.ms-options-wrap > .ms-options > ul,
.ms-options-wrap > .ms-options > ul > li.optgroup ul {
    margin-top: -1px;
}

.ms-options-wrap > .ms-options > ul li label {
    border: 0;
    padding: 8px 8px 6px var(--padding-left);
    line-height: 1.25;
}

/* default field fixes */
.ms-options-wrap > .ms-options > ul li.selected label {
    background-color: rgba(236,233,227, 1);
    border: 0;
}

.ms-options-wrap > .ms-options > ul label.focused {
    background-color: transparent;
    border: 0;
}

.ms-options-wrap > .ms-options > ul label:hover {
    background-color: rgba(236,233,227, .25);
    border: 0;
}

/* color fields */
.field-element--dark-blue .ms-options-wrap > .ms-options > ul li.selected label {
    background-color: var(--color-primary);
    border: 0;
}

.field-element--dark-blue .ms-options-wrap > .ms-options > ul label:hover {
    background-color: rgba(0,157,220,.5);
    border: 0;
}
