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


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

$bg-color: #232121 (dark grey)
$accent-color: #F8E71C (yellow)

$link:                  #F8E71C;
$link-hover:            #C8B906;

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

$body-font:           font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
$accent-font:         font-family: bebas-neue, Helvetica, Arial, sans-serif;
$heading-font:        font-family: brothers, Copperplate, Georgia, serif;
$speech-bubble:       font-family: verveine, bebas-neue, Helvetica, Arial, sans-serif;


Table of Contents for search based navigation


**** Box Model Reset

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


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


**** Images


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


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


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


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

**** Shop checkout page

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


**** Print styles

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

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

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

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

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

}

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

}

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

}

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

}

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

html {
    font-size: 62.5%;
}

body {
    line-height: 1.5;
    font-size: 2rem;
    color: #fff;
    background: #232121;
    font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/*

$body-font:           font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
$accent-font:         font-family: bebas-neue, Helvetica, Arial, sans-serif;
$accent-font-two:     font-family: fresno, Impact, Arial Narrow, sans-serif;
$heading-font:        font-family: brothers, Copperplate, Georgia, serif;
$speech-bubble:       font-family: verveine, bebas-neue, Helvetica, Arial, sans-serif;

-- Verveine Regular
font-weight: 400;
font-style: normal;

*/

/* ---- Headings ---- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0 0 1.7rem 0;
    font-family: brothers, Copperplate, Georgia, serif;
    font-weight: normal;
    text-transform: uppercase;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-weight: normal;
    line-height: 1;
    color: #8a7b7b;
}

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

h1, .h1 {
    font-size: 4rem;
}
h2, .h2 {
    font-size: 3.6rem;
}
h3, .h3 {
    font-size: 3.2rem;
}
h4, .h4 {
    font-size: 2.8rem;
}
h5, .h5 {
    font-size: 2.4rem;
}
h6, .h6 {
    font-size: 2rem;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    h1, .h1 {
        font-size: 4.8rem;
    }
    h2, .h2 {
        font-size: 4rem;
    }
    h3, .h3 {
        font-size: 3.6rem;
    }
    h4, .h4 {
        font-size: 3.2rem;
    }
    h5, .h5 {
        font-size: 2.4rem;
    }
    h6, .h6 {
        font-size: 2.4rem;
    }
}

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

.mainbar h1, .mainbar .h1 {
    position: relative;
    display: inline-block;
    background-color: #ECECEC;
    color: #232121;
    padding: 12px 16px 12px;
    font-family: brothers, Copperplate, Georgia, serif;
}
.mainbar h1::before, .mainbar .h1::before {
    content: "";
    position: absolute;
    background-color: #ECECEC;
    top: 0;
    bottom: 0;
    left: 100%;
    left: calc(100% - 1px);
    width: 1000px;
    width: 100vw;
}
.mainbar h3, .mainbar .h3 {
    text-transform: none;
    font-family: brothers, Copperplate, Georgia, serif;
}
.mainbar h4, .mainbar .h4 {
    font-family: bebas-neue, Helvetica, Arial, sans-serif;
}
.mainbar h5, .mainbar .h5 {
    text-transform: lowercase;
    font-family: brothers, Copperplate, Georgia, serif;
}
.mainbar h6, .mainbar .h6 {
    font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

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

small {
    font-size: 1.28rem;
}

/* ---- Text variations ---- */

/* text assets */
.text-asset {
    color: #F8E71C;
    font-size: 6rem;
    line-height: 1.25;
    font-weight: normal;
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .text-asset {
        font-size: 5.2rem;
    }
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .text-asset {
        font-size: 8.6rem;
    }
}
/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */
    .text-asset {
        font-size: 10rem;
    }
}

/* subtitle */
.subtitle {
    font-family: fresno, Impact, Arial Narrow, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* secondary-title */
.secondary-title {
    font-family: bebas-neue, Helvetica, Arial, sans-serif;
    font-size: 2.4rem;
}

.text-accent {
    color: #F8E71C;
}

/* text decal */
.text-decal {
    display: block;
    text-align: center;
    overflow: hidden;
}
.text-decal__content {
    position: relative;
    overflow: hidden;
}
.text-decal__content svg {
    height: 1em;
    width: 1.25em;
    margin: 0 0.25em;
}
.text-decal__content__hide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.text-decal__content:before,
.text-decal__content:after {
    content: "";
    position: absolute;
    top: 50%;
    border-top: 1px solid #979797;
    width: 2000px;
    width: 100vw;
}
.text-decal__content:before {
    left: 100%;
}
.text-decal__content:after {
    right: 100%;
}

/* text decal -- inline */
.text-decal--inline {
    height: 1em;
    width: 1.5em;
    margin: 0 0.1em;
}
.text-decal--inline svg {
    height: 1.2em;
    width: 1.1em;
    margin-bottom: -0.15em;
}
.text-decal--inline .text-decal__content__hide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* large font-sizes */
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    p.large {
        font-size: 2.4rem;
    }
}
/* BP */
@media screen and (min-width: 87.5em) { /* 1400px */
    p.large {
        font-size: 3.2rem;
    }
}

.block-heading {
    position: relative;
    display: inline-block;
    background-color: #ECECEC;
    color: #232121;
    font-size: 4.8rem;
    padding: 12px 12px 12px; /* same as large button */
}
.block-heading::before {
    content: "";
    position: absolute;
    background-color: #ECECEC;
    top: 0;
    bottom: 0;
    left: 100%;
    left: calc(100% - 1px);
    width: 1000px;
    width: 100vw;
}
.block-heading--left::before {
	content: none;
}
.block-heading--left::after {
    content: "";
    position: absolute;
    background-color: #ECECEC;
    top: 0;
    bottom: 0;
	left: unset;
    right: 100%;
    right: calc(100% - 1px);
    width: 1000px;
    width: 100vw;
}
.mainbar .block-heading--left h1::before,
.mainbar .block-heading--left .h1::before {
    content: none;
}
.block-heading--both::before,
.block-heading--both::after {
    content: "";
    position: absolute;
    background-color: #ECECEC;
    top: 0;
    bottom: 0;
    width: 1000px;
    width: 100vw;
}
.block-heading--both::before {
    left: 100%;
    left: calc(100% - 1px);
}
.block-heading--both::after {
    right: 100%;
    right: calc(100% - 1px);
}
/* BP x-small */
@media screen and (min-width: 37.5em){
    .block-heading {
        padding: 12px 16px 12px; /* same as large button */
    }
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Regular */
    .block-heading {
        padding: 16px 40px;
    }
}

/* ---- info-tag  ---- */
.info-tag {
    color: #232121;
	text-transform: uppercase;
    background-color: #ECECEC;
	text-align: center;
	width: 104px;
	line-height: 24px;

	/* Safari */
    font-size: 1.6rem;
    position: absolute;
    top: 12px;
    right: -28px;
    height: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    z-index: 12;
}
.lt-ie9 .info-tag {
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; /* IE8 */
}
html.lt-ie9 .info-tag {
	top: -29px;
	right: -50px;
}

.info-tag:before,
.info-tag:after{
	content:' ';
	line-height: 0;
	font-size: 0;
	width: 0;
	height: 0;
	position: absolute;
}
.info-tag:before {
    border-top: 0 solid transparent;
	border-bottom: 26px solid transparent;
	border-left: 26px solid #232121;
	border-right: 0 solid transparent;
	top: -1px;
	left: -1px;
}
.info-tag:after {
	border-top: 0 solid transparent;
	border-bottom: 26px solid transparent;
	border-left: 0 solid transparent;
	border-right: 26px solid #232121;
	top: -1px;
	right: -1px;
}
.info-tag span:before,
.info-tag span:after {
	content:' ';
	line-height: 0;
	font-size: 0;
	width: 0;
	height: 0;
	position: absolute;
	border-top: 0 solid transparent;
	border-bottom: 4px solid #505050;
	border-left: 0 solid transparent;
	border-right: 4px solid transparent;
	bottom: -2px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4);
}
html.lt-ie9 .info-tag span:before,
html.lt-ie9 .info-tag span:after {
	content: none;
}
.info-tag span:before {
	left: 1px;
}
.info-tag span:after {
	right: 1px;
}
/* ---- Lists ---- */
ul,
ol {
    padding: 0 0 0 2rem;
}

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

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

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

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

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

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

li ol > li {
    margin: 0;
}

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


/* ---- Breadcrumbs ---- */
.breadcrumb {
    list-style: none;
    margin: 1.6rem 0;
    padding: 0;
    font-size: 1.4rem;
    color: #848484;
    text-transform: uppercase;
    font-size: 1.6rem;
}
.breadcrumb > li {
    display: inline-block;
    padding: 0 8px;
    border-left: 1px solid #848484;
}

.breadcrumb > li:first-child {
    border-left: none;
    padding-left: 0;
}
.breadcrumb > li a {
    display: inline-block;
    color: #ECECEC;
}
.breadcrumb > li:first-child a {
    text-indent: -2000px;
    display:inline-block;
    width: 15px;
    margin-right: 3px;
    position: relative;
}
.breadcrumb > li:first-child a:after,
.breadcrumb > li:first-child a:before {
    content: "";
    position: absolute;
	top: 1px;
	bottom: 2px;
    left:0;
    right:0;
    background: transparent url(../images/icon_home.svg) no-repeat center center;
    background-size: contain;
    opacity: 1;
    -webkit-transition: opacity 250ms ease-in-out;
    transition: opacity 250ms ease-in-out;
}
.breadcrumb > li:first-child a:after {
    opacity: 0;
    background-image: url(../images/icon_home--active.svg);
}
.breadcrumb > li:first-child a:hover:after {
    opacity: 1;
}
.breadcrumb > li:first-child a:hover:before {
    opacity: 0;
}

@media screen and (max-width: 67.5em) { /* 1080px */

    .breadcrumb {
        margin-top: 20px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .breadcrumb > li {
        display: none;
        margin-left: 0;
    }
    .breadcrumb > li:first-child,
    .breadcrumb > li:nth-last-child(2),
    .blog-post-controller .breadcrumb > li:nth-last-child(5) {
        display: inline-block;
    }
    .blog-post-controller .breadcrumb > li:nth-last-child(5):before,
    .breadcrumb > li:nth-last-child(2):before{
        background: none;
        content: '\003c\00a0';
        position: unset;
        font-weight: bold;
        position: relative;
        left: -1px;
        margin-left: 0px;
        top: 0;
    }

    /* code for the blog posts because the breadcrumbs are nonsensical */
    .blog-post-controller .breadcrumb > li:nth-last-child(2) {
        display: none;
    }
}


/* ---- Blockquotes ---- */
blockquote {
    margin: 32px 0;
    padding: 100px 32px 56px;
    background-color: #transparent;
    border: 1px solid #D0D0D0;
    text-align: center;
    clear: both;
    position: relative;
}

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

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

blockquote:before {
    content: "";
    width: 56px;
    height: 36px;
    position: absolute;
    top: 32px;
    left: calc(50% - 28px);
    background: #232121 url(../images/text_speech.svg) no-repeat center center;
    background-size: contain;
    z-index: 1;
}
blockquote:after {
    content: "";
    position: absolute;
    top: 50px;
    left: 32px;
    right: 32px;
    height: 1px;
    border-bottom: 1px solid #D0D0D0;
    z-index: 0;
}

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

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


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


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

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

ins {
    background-color: #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: #F5E800;
    word-break: break-word;
}

a:hover,
a:active,
a:focus {
    color: #FFF050;
}

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

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

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

a.non-link {
    color: #fff;
    text-decoration: none;
}
a.non-link:hover,
a.non-link:focus,
a.non-link:active {
color: #F8E71C;
}

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

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

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

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

/* Grey */
.bg-grey {
    background-color: #232121;
    color: #fff;
}

/* Mid-Grey */
.bg-midgrey {
    background-color: #434242;
    color: #fff;
}

/* Grey Texture */
.bg-greytexture {
    background: #605D5D url(../images/bg-texture.jpg) center center;
    background-size: cover;
    color: #fff;
}

/* ---- Buttons ---- */
.button {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: #F8E71C;
    text-decoration: none;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    outline: none;
    opacity: 1;
    position: relative;
    font-weight: 600;
    font-family: bebas-neue, Helvetica, Arial, sans-serif;
    line-height: 1.2;
    letter-spacing: 1px;
    box-shadow: 0px 0px 0px 4px #F8E71C inset, 0px 0px 0px 5px #C8B906 inset;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

/* Small */
.button.button-small {
    font-size: 1.6rem;
    padding: 8px 12px 8px;
}

/* Regular */
.button {
    padding: 8px 32px 8px;
    font-size: 2rem;
}

/* Large */
.button.button-large {
    font-size: 2.4rem;
    padding: 12px 48px 12px;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Regular */
    .button {
        font-size: 2.4rem;
        padding: 8px 80px;
    }
    /* Large */
    .button.button-large {
        font-size: 3.6rem;
        padding: 12px 80px 12px;
        box-shadow: 0px 0px 0px 6px #F8E71C inset, 0px 0px 0px 7px #C8B906 inset;
    }
}
@media screen and (min-width: 87.5em) {
    .button.button-large {
    	padding: 12px 120px 12px;
    }
}


/* Yellow (default) */
.button,
.button.button-yellow {
    background-color: #F8E71C;
    color: #232121;
}
.button.icon-before:before,
.button.icon-after:after,
.button.button-yellow.icon-before:before,
.button.button-yellow.icon-after:after {
    color: #232121;
}
.button:hover,
.button.button-yellow:hover,
.button:focus,
.button.button-yellow:focus {
    background-color: #fff;
    box-shadow: 0px 0px 0px 4px #FFF inset, 0px 0px 0px 5px #AEACAC inset;
    color: #232121;
}

.button.button-large:hover,
.button.button-large.button-yellow:hover,
.button.button-large:focus,
.button.button-large.button-yellow:focus {
    box-shadow: 0px 0px 0px 6px #FFF inset, 0px 0px 0px 7px #AEACAC inset;
}


/* Grey */
.button.button-grey {
    background-color: #ECECEC;
	color: #232121;
    box-shadow: 0px 0px 0px 4px #ECECEC inset, 0px 0px 0px 5px #A4A4A4 inset;
}
.button.button-grey.icon-before:before,
.button.button-grey.icon-after:after {
    color: #232121;
}
.button.button-grey:hover,
.button.button-grey:focus {
    background-color: #C8C8C8;
    color: #232121;
    box-shadow: 0px 0px 0px 4px #C8C8C8 inset, 0px 0px 0px 5px #818181 inset;
}

/* Plain Grey */
.button.button-plain {
    background-color: #505050;
    color: #fff;
    box-shadow: none;
}
.button.button-plain.icon-before:before,
.button.button-plain.icon-after:after {
    color: #81848A;
}
.button.button-plain:hover,
.button.button-plain:focus {
    background-color: #AEACAC;
    color: #232121;
    box-shadow: none;
}

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

/* Disabled/unavailable button style */
.button[disabled],
.button-disabled,
.button-disabled:hover,
.button-disabled:focus,
.button-disabled:active {
    border: none;
    opacity: 0.4;
    cursor: default;
    background-color: #F8E71C;
    box-shadow: 0px 0px 0px 4px #F8E71C inset, 0px 0px 0px 5px #C8B906 inset;
}

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

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

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


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


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

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

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


/* ---- Animations ---- */
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
}
/* ---- Grow in fade ---- */
/* used for products */
@-webkit-keyframes growInFade {
	from {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
		        opacity: 0;
	}
	to {
		-webkit-transform: none;
		        transform: none;
		        opacity: 1;
	}
}
@keyframes growInFade {
	from {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
		        opacity: 0;
	}
	to {
		-webkit-transform: none;
		        transform: none;
		        opacity: 1;
	}
}
/* ---- Shrink out fade ---- */
/* used for products */
@-webkit-keyframes shrinkOutFade {
	from {
		-webkit-transform: none;
		        transform: none;
		        opacity: 1;
	}
	to {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
		        opacity: 0;
	}
}
@keyframes shrinkOutFade {
	from {
		-webkit-transform: none;
		        transform: none;
		        opacity: 1;
	}
	to {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
		        opacity: 0;
	}
}

@-webkit-keyframes whatsCookinGoodLookin { /* wok */
    0%, 31%, 62% {
        -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
    }
    33% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
    51% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    53% {
        -webkit-transform: translateY(-2px) rotate(8deg);
        transform: translateY(-2px) rotate(8deg);
        animation-timing-function: ease-in;
    }
    54% {
        -webkit-transform: translateY(-2px) rotate(-4deg);
        transform: translateY(-2px) rotate(-4deg);
        animation-timing-function: ease-in;
    }
    55% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    58% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    59% {
        -webkit-transform: translateY(-2px) rotate(6deg);
        transform: translateY(-2px) rotate(6deg);
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: translateY(-2px) rotate(-2deg);
        transform: translateY(-2px) rotate(-2deg);
        animation-timing-function: ease-in;
    }
    61% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
}

@keyframes whatsCookinGoodLookin { /* wok */
    0%, 31%, 62% {
        -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
    }
    33% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
    51% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    53% {
        -webkit-transform: translateY(-2px) rotate(8deg);
        transform: translateY(-2px) rotate(8deg);
        animation-timing-function: ease-in;
    }
    54% {
        -webkit-transform: translateY(-2px) rotate(-4deg);
        transform: translateY(-2px) rotate(-4deg);
        animation-timing-function: ease-in;
    }
    55% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    58% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    59% {
        -webkit-transform: translateY(-2px) rotate(6deg);
        transform: translateY(-2px) rotate(6deg);
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: translateY(-2px) rotate(-2deg);
        transform: translateY(-2px) rotate(-2deg);
        animation-timing-function: ease-in;
    }
    61% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
}

@-webkit-keyframes heyHotStuff { /* flames */
    0% {opacity:0;}
    30% {opacity:0;}
    30.5% {opacity:0.5;}
    31% {opacity:0.66; transform: scaleX(1);}
    31.001% {transform: scaleX(-1);}
    31.5% {opacity:0;}
    32% {opacity:0.66;}
    32.5% {opacity:0.66;transform: scaleX(-1);}
    32.501% {transform: scaleX(1);}
    50% {opacity:1;}
    53% {opacity:1;}
    53.5% {opacity:0.9;}
    54% {opacity:1;}
    56% {opacity:1;}
    56.5% {opacity:0.9;}
    57% {opacity:1;}
    57.5% {opacity:0.9;}
    58% {opacity:1;}
    60% {opacity:1;}
    70% {opacity:0;}
}

@keyframes heyHotStuff { /* flames */
    0% {opacity:0;}
    30% {opacity:0;}
    30.5% {opacity:0.5;}
    31% {opacity:0.66; transform: scaleX(1);}
    31.001% {transform: scaleX(-1);}
    31.5% {opacity:0;}
    32% {opacity:0.66;}
    32.5% {opacity:0.66;transform: scaleX(-1);}
    32.501% {transform: scaleX(1);}
    50% {opacity:1;}
    53% {opacity:1;}
    53.5% {opacity:0.9;}
    54% {opacity:1;}
    56% {opacity:1;}
    56.5% {opacity:0.9;}
    57% {opacity:1;}
    57.5% {opacity:0.9;}
    58% {opacity:1;}
    60% {opacity:1;}
    70% {opacity:0;}
}

@-webkit-keyframes driftingCloudMama { /* clouds */
    0%, 100% {transform: translateX(0);}
    50% {transform: translateX(20%);}
}
@keyframes driftingCloudMama { /* clouds */
    0%, 100% {transform: translateX(0);}
    50% {transform: translateX(20%);}
}
@-webkit-keyframes driftingCloudLil { /* clouds */
    0%, 100% {transform: translateX(0);}
    50% {transform: translateX(30%);}
}
@keyframes driftingCloudLil { /* clouds */
    0%, 100% {transform: translateX(0);}
    50% {transform: translateX(30%);}
}
@-webkit-keyframes driftingCloudBubba { /* clouds */
    0%, 100% {transform: translateX(0);}
    50% {transform: translateX(250%);}
}
@keyframes driftingCloudBubba { /* clouds */
    0%, 100% {transform: translateX(0);}
    50% {transform: translateX(250%);}
}
@-webkit-keyframes hideWakame { /* "animation" to hide wakame until classes override animation */
	0% {transform: translateX(-90%) rotate(-20deg);}
	100% {transform: translateX(-90%) rotate(-20deg);}
}
@keyframes hideWakame { /* "animation" to hide wakame until classes override animation */
	0% {transform: translateX(-90%) rotate(-20deg);}
	100% {transform: translateX(-90%) rotate(-20deg);}
}
@-webkit-keyframes doTheSneak { /* Wakame peeking around door */
	0% {transform: translateX(-90%) rotate(-20deg);}
    18% {transform: translateX(-28%) rotate(-5deg);}
	82% {transform: translateX(-28%) rotate(-5deg);}
	100% {transform: translateX(-90%) rotate(-20deg);}
}
@keyframes doTheSneak { /* Wakame peeking around door */
	0% {transform: translateX(-90%) rotate(-20deg);}
    18% {transform: translateX(-28%) rotate(-5deg);}
	82% {transform: translateX(-28%) rotate(-5deg);}
	100% {transform: translateX(-90%) rotate(-20deg);}
}
@-webkit-keyframes doTheCreep { /* Wakame standing in doorway */
	0% {transform: translateX(-90%) rotate(-20deg);}
	15% {transform: translateX(-28%) rotate(-5deg);}
	45% {transform: translateX(-28%) rotate(-5deg);}
	54% {transform: translateX(0) rotate(0deg);}
	90% {transform: translateX(0) rotate(0deg);}
	99% {transform: translateX(-90%) rotate(-20deg);}
	100% {transform: translateX(-90%) rotate(-20deg);}
}
@keyframes doTheCreep { /* Wakame standing in doorway */
	0% {transform: translateX(-90%) rotate(-20deg);}
	15% {transform: translateX(-28%) rotate(-5deg);}
	45% {transform: translateX(-28%) rotate(-5deg);}
	54% {transform: translateX(0) rotate(0deg);}
	90% {transform: translateX(0) rotate(0deg);}
	99% {transform: translateX(-90%) rotate(-20deg);}
	100% {transform: translateX(-90%) rotate(-20deg);}
}

@-webkit-keyframes creepyWakameHand { /* Wakame wave */
	0% {transform: rotate(6deg);}
	14.3% {transform: rotate(-6deg);}
	28.6% {transform: rotate(6deg);}
	42.9% {transform: rotate(-6deg);}
	57.1% {transform: rotate(6deg);}
	71.4% {transform: rotate(-6deg);}
	85.7% {transform: rotate(6deg);}
	100% {transform: rotate(-6deg);}
}
@keyframes creepyWakameHand { /* Wakame wave */
	0% {transform: rotate(0deg);}
	7% {transform: rotate(0deg);}
	14.3% {transform: rotate(-6deg);}
	28.6% {transform: rotate(6deg);}
	42.9% {transform: rotate(-6deg);}
	57.1% {transform: rotate(6deg);}
	71.4% {transform: rotate(-6deg);}
	85.7% {transform: rotate(6deg);}
	93% {transform: rotate(0deg);}
	100% {transform: rotate(0deg);}
}

@-webkit-keyframes creepyWakameArm { /* Wakame arm */
    0% {transform: rotate(0deg);}
	83% {transform: rotate(0deg);}
    85% {transform: rotate(-4deg);}
	86% {transform: rotate(4deg);}
	87% {transform: rotate(-4deg);}
	88% {transform: rotate(4deg);}
	89% {transform: rotate(-4deg);}
	90% {transform: rotate(4deg);}
	91% {transform: rotate(-4deg);}
	92% {transform: rotate(4deg);}
	94% {transform: rotate(0deg);}
	100% {transform: rotate(0deg);}
}
@keyframes creepyWakameArm { /* Wakame arm */
	0% {transform: rotate(0deg);}
	49% {transform: rotate(0deg);}
	55% {transform: rotate(-4deg);}
	58% {transform: rotate(4deg);}
	61% {transform: rotate(-4deg);}
	64% {transform: rotate(4deg);}
	67% {transform: rotate(-4deg);}
	70% {transform: rotate(4deg);}
	73% {transform: rotate(-4deg);}
	76% {transform: rotate(4deg);}
	82% {transform: rotate(0deg);}
	100% {transform: rotate(0deg);}
}

@-webkit-keyframes bigBraveWakameEnters { /* Wakame peeking around door */
    0% {transform: translateX(-90%) rotate(-20deg);}
    100% {transform: translateX(0) rotate(0deg);}
}
@keyframes bigBraveWakameEnters { /* Wakame peeking around door */
    0% {transform: translateX(-90%) rotate(-20deg);}
    100% {transform: translateX(0) rotate(0deg);}
}

@-webkit-keyframes bigBraveWakameHides { /* Wakame peeking around door */
    0% {transform: translateX(0) rotate(0deg);}
    100% {transform: translateX(-90%) rotate(-20deg);}
}
@keyframes bigBraveWakameHides { /* Wakame peeking around door */
    0% {transform: translateX(0) rotate(0deg);}
    100% {transform: translateX(-90%) rotate(-20deg);}
}
@-webkit-keyframes expandBubbleExtraShort { /* Extra short speech bubble expand -- approx 4s*/
	0% {transform: scaleX(0); opacity: 0;}
	10% {transform: scaleX(1); opacity: 1;}
	90% {transform: scaleX(1); opacity: 1;}
	100% {transform: scaleX(0); opacity: 0;}
}
@keyframes expandBubbleExtraShort { /* Extra short speech bubble expand -- approx 4s*/
	0% {transform: scaleX(0); opacity: 0;}
	10% {transform: scaleX(1); opacity: 1;}
	90% {transform: scaleX(1); opacity: 1;}
	100% {transform: scaleX(0); opacity: 0;}
}

@-webkit-keyframes expandBubbleShort { /* Short speech bubble expand -- approx 8s but starts half way through duration*/
	0% {transform: scaleX(0); opacity: 0;}
	50% {transform: scaleX(0); opacity: 0;}
	56% {transform: scaleX(1); opacity: 1;}
	90% {transform: scaleX(1); opacity: 1;}
	96% {transform: scaleX(0); opacity: 0;}
	100% {transform: scaleX(0); opacity: 0;}
}
@keyframes expandBubbleShort { /* Short speech bubble expand -- approx 8s but starts half way through duration*/
	0% {transform: scaleX(0); opacity: 0;}
	50% {transform: scaleX(0); opacity: 0;}
	56% {transform: scaleX(1); opacity: 1;}
	90% {transform: scaleX(1); opacity: 1;}
	96% {transform: scaleX(0); opacity: 0;}
	100% {transform: scaleX(0); opacity: 0;}
}
@-webkit-keyframes hoverExpandBubbleDoorway { /* Doorway speech bubble expand */
	0% {transform: scaleX(0); opacity: 0;}
	10% {transform: scaleX(0); opacity: 0;}
	100% {transform: scaleX(1); opacity: 1;}
}
@keyframes hoverExpandBubbleDoorway { /* Doorway speech bubble expand */
	0% {transform: scaleX(0); opacity: 0;}
	10% {transform: scaleX(0); opacity: 0;}
	100% {transform: scaleX(1); opacity: 1;}
}
@-webkit-keyframes hoverCollapseBubbleDoorway { /* Doorway speech bubble expand */
	0% {transform: scaleX(1); opacity: 1;}
	90% {transform: scaleX(0); opacity: 0;}
	100% {transform: scaleX(0); opacity: 0;}
}
@keyframes hoverCollapseBubbleDoorway { /* Doorway speech bubble expand */
	0% {transform: scaleX(1); opacity: 1;}
	90% {transform: scaleX(0); opacity: 0;}
	100% {transform: scaleX(0); opacity: 0;}
}
@-webkit-keyframes expandBubbleLamp { /* default Simon speech bubble expand */
    0%, 65%, 75% {transform: scaleX(0); opacity: 0;}
    66.2%, 73.8% {transform: scaleX(1); opacity: 1;}
}
@keyframes expandBubbleLamp { /* default Simon speech bubble expand */
    0%, 65%, 75% {transform: scaleX(0); opacity: 0;}
    66.2%, 73.8% {transform: scaleX(1); opacity: 1;}
}
@-webkit-keyframes expandBubbleFoodstand { /* Foodstand speech bubble expand */
    0%, 25%, 35% {transform: scaleX(0); opacity: 0;}
    26.2%, 33.8% {transform: scaleX(1); opacity: 1;}
}
@keyframes expandBubbleFoodstand { /* Foodstand speech bubble expand */
    0%, 25%, 35% {transform: scaleX(0); opacity: 0;}
    26.2%, 33.8% {transform: scaleX(1); opacity: 1;}
}

@-webkit-keyframes bigBraveWakameHand { /* Wakame wave */
    0% , 50%, 100% {transform: rotate(6deg);}
    25%, 75% {transform: rotate(-6deg);}
}
@keyframes bigBraveWakameHand { /* Wakame wave */
    0% , 50%, 100% {transform: rotate(6deg);}
    25%, 75% {transform: rotate(-6deg);}
}

@-webkit-keyframes mobileLampPulse {
    0% {opacity:0.1;}
    9.5% {opacity:0.1;}
    10% {opacity:0.5;}
    11% {opacity:0.5;}
    11.5% {opacity:0.1;}
    40% {opacity:0.1;}
    40.5% {opacity:0.5;}
    41% {opacity:0.1;}
    41.5% {opacity:0.75;}
    45% {opacity:0.75;}
    45.5% {opacity:0.1;}
    46% {opacity:0.5;}
    46.5% {opacity:0.1;}
    88% {opacity:0.1;}
    88.5% {opacity:0.5;}
    90.5% {opacity:0.5;}
    91% {opacity:0.1;}
    100% {opacity:0.1;}
}

@keyframes mobileLampPulse {
    0% {opacity:0.1;}
    9.5% {opacity:0.1;}
    10% {opacity:0.5;}
    11% {opacity:0.5;}
    11.5% {opacity:0.1;}
    40% {opacity:0.1;}
    40.5% {opacity:0.5;}
    41% {opacity:0.1;}
    41.5% {opacity:0.75;}
    45% {opacity:0.75;}
    45.5% {opacity:0.1;}
    46% {opacity:0.5;}
    46.5% {opacity:0.1;}
    88% {opacity:0.1;}
    88.5% {opacity:0.5;}
    90.5% {opacity:0.5;}
    91% {opacity:0.1;}
    100% {opacity:0.1;}
}

@-webkit-keyframes mobileSimonFedUp { /* Frustrated Simon */
    0%, 90%, 100% {opacity: 0;}
    91.2%, 98.8% {opacity: 1;}
}
@keyframes mobileSimonFedUp { /* Frustrated Simon */
    0%, 90%, 100% {opacity: 0;}
    91.2%, 98.8% {opacity: 1;}
}
@-webkit-keyframes foodstandLampFlicker {
    0% {opacity:0.1;}
    50% {opacity:1;}
    75% {opacity:1;}
    76% {opacity:0.33;}
    77% {opacity:0.75;}
    83% {opacity:0.75;}
    84% {opacity:0.1;}
    85% {opacity:0.5;}
    86% {opacity:0.1;}
    87% {opacity:0.33;}
    88% {opacity:0.1;}
    100% {opacity:0.1;}
}

@keyframes foodstandLampFlicker {
    0% {opacity:0.1;}
    50% {opacity:1;}
    75% {opacity:1;}
    76% {opacity:0.33;}
    77% {opacity:0.75;}
    83% {opacity:0.75;}
    84% {opacity:0.1;}
    85% {opacity:0.5;}
    86% {opacity:0.1;}
    87% {opacity:0.33;}
    88% {opacity:0.1;}
    100% {opacity:0.1;}
}

@-webkit-keyframes happyButt { /* dog's tail wag -- tame */
    0% {transform: rotate(6deg);
	animation-timing-function: ease-out;}
    50% {transform: rotate(-6deg);
    animation-timing-function: ease-out;}
    100% {transform: rotate(6deg);
    animation-timing-function: ease-out;}
}
@keyframes happyButt { /* dog's tail wag -- tame */
    0% {transform: rotate(6deg);
	animation-timing-function: ease-out;}
    50% {transform: rotate(-6deg);
    animation-timing-function: ease-out;}
    100% {transform: rotate(6deg);
    animation-timing-function: ease-out;}
}
@-webkit-keyframes cookingOnAllBurners {
    0% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
    33% {
        -webkit-transform: translateY(-2px) rotate(3deg);
        transform: translateY(-2px) rotate(3deg);
        animation-timing-function: ease-out;
    }
    66% {
        -webkit-transform: translateY(-2px) rotate(-3deg);
        transform: translateY(-2px) rotate(-3deg);
        animation-timing-function: linear;
    }
    100% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
}

@keyframes cookingOnAllBurners {
    0% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
    33% {
        -webkit-transform: translateY(-2px) rotate(3deg);
        transform: translateY(-2px) rotate(3deg);
        animation-timing-function: ease-out;
    }
    66% {
        -webkit-transform: translateY(-2px) rotate(-3deg);
        transform: translateY(-2px) rotate(-3deg);
        animation-timing-function: linear;
    }
    100% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
}

@-webkit-keyframes cookingOnAllBurnersFlame {
    0% {opacity:1;}
    33% {opacity:0.9;}
    43% {opacity:1;}
    50% {opacity:1;}
    55% {opacity:0.8;}
    60% {opacity:0.8;}
    65% {opacity:1;}
    75% {opacity:1;}
    80% {opacity:0.9;}
    85% {opacity:1;}
}

@keyframes cookingOnAllBurnersFlame {
    0% {opacity:1;}
    33% {opacity:0.9;}
    43% {opacity:1;}
    50% {opacity:1;}
    55% {opacity:0.9;}
    60% {opacity:0.9;}
    65% {opacity:1;}
    75% {opacity:1;}
    80% {opacity:0.9;}
    85% {opacity:1;}
}

/* essentials products */
@keyframes popcorn1 {
    0% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
    33% {
        -webkit-transform: translateY(-2px) rotate(3deg);
        transform: translateY(-2px) rotate(3deg);
        animation-timing-function: ease-out;
    }
    66% {
        -webkit-transform: translateY(-2px) rotate(-3deg);
        transform: translateY(-2px) rotate(-3deg);
        animation-timing-function: linear;
    }
    100% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        animation-timing-function: ease-in;
    }
}


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

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

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

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

/* ---- Expando ---- */
.expando-open {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 6px 0 3px 40px;
	font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
	color: #F5E800;
	position: relative;
	cursor: pointer;
	display: block;
	margin: 0 0 12px;
}
.expando-open__icon {
	background-color: #434242;
}
.expando-open__icon:before, .expando-open__icon:after {
    background-color: #F5E800;
}
.expando-open:hover, .expando-open:focus {
	color: #FFF050;
}
.expando.expando--expanded {
	background-color: #434242;
}
.expando-open:hover .expando-open__icon {
	background-color: #505050;
}
.expando-open:hover .expando-open__icon:before,
.expando-open:hover .expando-open__icon:after {
	background-color: #FFF050;
}
.expando__close:before, .expando__close:after {
    background-color: #FFF;
}
.expando__close:hover:before, .expando__close:hover:after {
    background-color: #F5E800;
}


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

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

.icon-reverse svg path {
	fill: #232121;
}

/* ---- Social list ---- */
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
	display: inline-block;
}
.social-list .icon {
    display: block;
    width: 48px;
    height: 48px;
}
.social-list .icon svg {
    width: 1em;
    height: 1em;
}
.social-list__item a {
    color: inherit;
    display: block;
}
.social-list__item a:hover svg path,
.social-list__item a:focus svg path,
.social-list__item a:active svg path {
    fill: #F8E71C;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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


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

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


/* ---- Labels and legends ---- */
.field-label,
.fieldset__legend {
    font-family: bebas-neue, Helvetica, Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

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

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


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

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


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

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

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

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

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

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

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


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

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

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

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


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

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

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

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

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


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

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

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


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

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

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

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

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


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

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

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

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


/* -- Checkboxes -- */

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

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

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

/* -- Radio Buttons -- */

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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


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

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

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

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

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

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

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

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

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


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

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

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

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



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

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

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

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


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

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


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

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

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


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

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

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


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

.daterangepicker.opensleft:before,
.simpledaterangepicker.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,
.simpledaterangepicker.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,
.simpledaterangepicker.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,
.simpledaterangepicker.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,
.simpledaterangepicker.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,
.simpledaterangepicker.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,
.simpledaterangepicker.dropup {
    margin-top: -5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.daterangepicker td.active,
.daterangepicker td.active:hover,
.simpledaterangepicker td.active,
.simpledaterangepicker td.active:hover {
    background-color: #F8E71C;
    border-color: #F8E71C;
    color: #232121;
}

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

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

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

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

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

.daterangepicker th.month,
.simpledaterangepicker th.month {
    width: auto;
}

/* Previous/Next buttons */
.daterangepicker th.prev .daterangepicker-prev-icon,
.daterangepicker th.next .daterangepicker-next-icon,
.simpledaterangepicker th.prev .daterangepicker-prev-icon,
.simpledaterangepicker 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,
.simpledaterangepicker th.prev:hover,
.simpledaterangepicker th.next:hover {
    background: none;
    opacity: 0.8;
}
.daterangepicker th.prev .daterangepicker-prev-icon,
.simpledaterangepicker th.prev .daterangepicker-prev-icon {
    background-position: top -820px left 0px;
}
.daterangepicker th.next .daterangepicker-next-icon,
.simpledaterangepicker th.next .daterangepicker-next-icon {
    background-position: top -880px left 1px;
}

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

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

/* Text Input Above Each Calendar */
.daterangepicker .input-mini,
.simpledaterangepicker .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,
.simpledaterangepicker .input-mini.active {
    border: 1px solid #358AAB;
    background-color: rgb(255, 255, 238);
}

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

.daterangepicker .daterangepicker_input,
.simpledaterangepicker .daterangepicker_input {
    position: relative;
}

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

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

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

.daterangepicker .applyBtn,
.simpledaterangepicker .applyBtn {
    background-color: #F8E71C;
    color: #232121;
    box-shadow: none;
}
.daterangepicker .applyBtn:hover,
.daterangepicker .applyBtn:focus,
.simpledaterangepicker .applyBtn:hover,
.simpledaterangepicker .applyBtn:focus {
    background-color: #FFF050;
    color: #232121;
}

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

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

.daterangepicker .ranges li,
.simpledaterangepicker .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,
.simpledaterangepicker .ranges li.active,
.simpledaterangepicker .ranges li:hover {
    background: #434242;
    border: 1px solid #434242;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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


/* ---- Total selector ---- */
.field-element.field-element--totalselector {
    position: relative;
}
.field-element--totalselector .field-input .total-selector__output {
    cursor: pointer;
    background-image: url(../images/form-icons.svg), url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
}
.field-element--white .field-input .textbox,
.field-element--white .field-input select,
.field-element--white .field-element--fileselector .fs-preview-wrapper {
    color: #232121;
}

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


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

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

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



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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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


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

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

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

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

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

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

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

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

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


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


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


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

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

.submit-bar a {
    margin-right: 20px;
}
.sidebar-toggle {
    position: relative;
    border-bottom: solid 2px rgba(255,255,255,0.5);
    z-index: 1;
}
.sidebar-toggle:before,
.sidebar-toggle:after {
    content: " ";
    width: 1em;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 1.25em;
    left: calc(100% - 1em);
    right: 0;
    transition: transform 200ms ease;
    transform: rotate(-45deg);
    z-index: -1;
}
.sidebar-toggle:after {
    transform: rotate(45deg);
}
.sidebar-hidden.sidebar-toggle:before,
.sidebar-hidden.sidebar-toggle:after {
    transform: rotate(0deg);
}
.sidebar-hidden.sidebar-toggle:after {
    transform: rotate(90deg);
}
@media screen and (min-width: 48em) {
    .sidebar {
        padding-right: 40px;
    }
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .sidebar {
        padding-right: 60px;
    }
}

/* ---- Sidebar posts archive and subscribe ---- */
.sidebar-toggle.post-sidebar-section--archive h3:hover,
.sidebar-toggle.post-sidebar-section--subscribe h3:hover {
    cursor: pointer;
}
.sidebar-toggle .post-sidebar-archive-list__item:last-child {
    margin-bottom: 1.5rem;
}
.sidebar-toggle .post-sidebar-subscribe {
    margin-bottom: 1.5rem;
}

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


/* ---- Search pagination ---- */
.search-paginate {
    padding: 10px 0;
    text-align: center;
}
.search-paginate .page-prev {
    margin: 0 8px 0 0;
}
.search-paginate .page {
    padding: 2px 9px;
    margin: 0 3px;
    background: #eee;
    border: 1px #F8E71C 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;
}


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

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

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

th,
thead td {
    background-color: #434242;
    text-transform: uppercase;
}

/* ---- 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: #434242;
    font-size: 1.7rem;
    text-transform: uppercase;
}
.table--content-standard td {
    background-color: #434242;
}
.table--content-standard td,
.table--content-standard th,
.table--content-standard thead td {
    border: 1px solid #232121
    padding: 12px 15px;
    text-align: left;
}


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

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

}

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

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




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

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

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

.-clearfix:after {
    clear: both;
}


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

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

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

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

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

.-invisible {
    visibility: hidden;
}

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

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

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

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

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


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

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

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

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

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


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

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

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

/*

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

*/

/* - Right - */

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

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

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

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

/* - Left - */

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

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

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

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

/* ---- Tabs ---- */
.tabs__list {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.tabs__item {
	background-color: #333131;
}
.tabs__item__button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	text-transform: uppercase;
	font-size: 2rem;
	color: rgba(255,255,255,0.5);
	background-color: #333131;
	padding: 1.2rem 2.4rem 0.6rem;
	font-weight: normal;
	cursor: pointer;
	font-family: bebas-neue, Helvetica, Arial, sans-serif;
}

/* Hover */
.tabs__item:hover .tabs__item__button {
	color: rgba(255,255,255,0.75);
}

/* Active */
.tabs__item.tabs__item--active {
	background-color: #434242;
}
.tabs__item.tabs__item--active .tabs__item__button {
    background-color: #434242;
}
.tabs__item.tabs__item--active .tabs__item__button {
	color: rgba(255,255,255,1);
}

/* - Content - */
.tabs-content__item {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	padding: 24px;
}
.tabs-content {
	background-color: #434242;
	width: 100%;
}
.tabs-content__item.tabs-content__item--active {
	clip: auto;
	height: auto;
	margin: auto;
	overflow: visible;
	position: relative;
	width: auto;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
}
@media screen and (min-width: 48em) {
	.tabs-content__item {
		padding: 40px;
	}
}

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

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

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

.section--none {
    padding-top: 0;
    padding-bottom: 0;
}


@media screen and (min-width: 23.75em) { /* 380px */
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section--small {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .section--large {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .section--none {
        padding-top: 0;
        padding-bottom: 0;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section--small {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section--large {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section--none {
        padding-top: 0;
        padding-bottom: 0;
    }
}

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

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

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

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

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

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

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

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

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


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

.box {
    padding: 20px 15px;
}

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

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

/* ---- Header ---- */
.section--header {
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.pageHasScrolled .section--header {
	padding-top: 10px;
	padding-bottom: 10px;
    height: 72px;
}
.header__logo {
    width: 130px;
}
.header__logo a {
    display: block;
}

.checkout-btn-icon {
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    position: absolute;
    top: 4px;
    right: 100px;
}

.checkout__cart {
    position: absolute;
    top: 55px;
    right: -20px;
    background: #fff;
    width: 320px;
    width: 100vw;
    color: #444;
    padding: 0;
}

@media screen and (min-width: 25em) { /* 400px */

    .header__logo {
        width: 150px;
    }

    .checkout__cart {
        width: 360px;
    }
}

.cart-list {
    list-style: none;
    margin: 0;
    padding: 6px 12px;
}

.cart-list__item {
    padding: 6px 0;
    border-top: 1px solid #ccc;
    font-size: 1.6rem;
    min-height: 40px;

}

.cart-list__item:first-child {
    border-top: 0px ;
}

.cart-list__item__title {
    max-width: 164px;
    display: inline-block;
    line-height: 1.2;
}

@supports (display: flex) {

    .cart-list__item {

        display: flex;
        flex-flow: row nowrap;
        align-items: center;
    }
    .cart-list__item__title {
        max-width: none;
        flex: 1 1 auto;
        order: 1;
    }


}

.cart-list__item__price {
    float: right;
    background: #D8D8D8;
    padding: 4px 10px 4px 0px;
    margin-right: -12px;
    min-width: 45px;
    text-align: right;
    position: relative;
    margin-left: 15px;

    order: 20;
}

.cart-list__item__price:before {
    content: '';
    background: url(../images/deco_cart-price.svg) no-repeat center center;
    background-size: 15px 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(100% - 2px);
    width: 17px;
}

.cart-list__item__btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-indent: -200px;
    overflow: hidden;
    background: transparent;
    border-radius: 100%;
    background: no-repeat center center;
    border: 1px solid #fff;
    transition: 100ms ease-in-out;
    cursor: pointer;

    flex: 0 0 auto;
    order: 2;
}

.cart-list__item__btn--remove {
    background-image: url(../images/icon_cart-remove.svg);
    margin-left: 4px;
}

.cart-list__item__btn--add {
    background-image: url(../images/icon_cart-add.svg);
    margin-right: 4px;
}

.cart-list__item__btn:hover,
.cart-list__item__btn:focus
.cart-list__item__btn:active {
    border: 1px solid #ccc;
}


/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .header__logo {
        width: 221px;
    }
    .pageHasScrolled .section--header {
        height: 95px;
    }
	.section--header {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}


/* ---- Nav ---- */
.section--nav {
    padding-top: 0;
    padding-bottom: 0;
}


/* ---- Footer ---- */
.footer__text {
    padding-top: 9px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    opacity:0;
}
.footer__text p {
    margin: 0;
    display: inline;
}
.footer__text p:before {
    content: " | ";
}
.footer__text p:first-child:before {
    content: none;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section--pre-footer .block-list {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .footer__text {
        opacity: 1;
        padding: 4px;
        text-align: center;
        text-transform: uppercase;
        font-size: 1.2rem;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(35,33,33,0.75);
    }
    .footer__text p:first-child {
        opacity: 0.5;
    }
    .footer__text a {
        opacity: 0.5;
        color: #fff;
        text-decoration: none;
    }
    .footer__text a:hover,
    .footer__text a:focus,
    .footer__text a:active {
        opacity: 1;
        text-decoration: underline;
    }
}

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

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .hero-banner__text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: #FFF;
        background-color: rgba(42, 51, 62, 0.8);
        padding: 30px 0;
    }
}

/* ---- Inner banner and half banner ---- */
.section--banner-half,
.section--banner-inner {
    position: relative;
}
.banner-half__bg__img,
.banner-inner__img {
    height: 240px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.banner-inner__img {
    background-position: top 20% left 50%;
}
.banner-inner {
    width: 100%;
}
.banner-half__content {
    background: #605D5D url(../images/bg-texture.jpg) center center;
    background-size: cover;
}
.banner-half__content__heading,
.banner-inner__content__heading {
    position: relative;
}
.banner-inner__content__heading {
    display: none;
}
.banner__breadcrumb {
    background-color: #F8E71C;
    padding-left: 16px;
    position: relative;
}
.banner__breadcrumb:before {
    content: "";
    position: absolute;
    background-color: #F8E71C;
    top: 0;
    bottom: 0;
    left: 100%;
    left: calc(100% - 1px);
    width: 1000px;
    width: 100vw;
}
.banner__breadcrumb .breadcrumb {
    color: #434242;
}
.banner__breadcrumb .breadcrumb > li {
	border-left: 1px solid #434242;
}
.banner__breadcrumb .breadcrumb > li:first-child {
	border-left: none;
}
.banner__breadcrumb .breadcrumb > li:first-child a:after,
.banner__breadcrumb .breadcrumb > li:first-child a:before {
	background-image: url(../images/icon_home--dark.svg);
}
.banner__breadcrumb .breadcrumb > li:first-child a:after {
	background-image: url(../images/icon_home--grey.svg);
}
.banner__breadcrumb .breadcrumb > li a {
    color: #232121;
	text-decoration: none;
}
.banner__breadcrumb .breadcrumb > li a:hover,
.banner__breadcrumb .breadcrumb > li a:focus {
	text-decoration: underline;
}

.banner-half__content__text,
.box__content__text {
    padding: 20px 20px 20px 0;
}
.banner-half__content__text .double-button {
	display: inline-block;
}
.banner-half__content__tagline .text-decal,
.box__content__tagline .text-decal {
    display: inline;
}
.banner-half__content__tagline .text-decal__content:before,
.banner-half__content__tagline .text-decal__content:after,
.box__content__tagline .text-decal__content:before,
.box__content__tagline .text-decal__content:after {
    content: none;
}
.banner-half__content__tagline .text-decal__content svg,
.box__content__tagline .text-decal__content svg {
    display: none;
}
.banner-half__content__tagline .text-decal__content__hide,
.box__content__tagline .text-decal__content__hide {
    border: none;
    clip: none;
    height: auto;
    margin: 0;
    position: static;
    width: auto;
}
.section--banner-inner .block-heading {
	display: block;
	text-align: left;
}
.mansBestFriend {
    position: absolute;
    right: -5%;
    bottom: -10px;
}
.doggo__img {
    height: 140px;
    width: auto;
}
/* BP small */
@media screen and (min-width: 25em) { /* 400px */
    .doggo__img {
        height: 120px;
    }
    .mansBestFriend {
        bottom: -8px;
    }
}
@media screen and (min-width: 37.5em) { /* 600px */
    .mansBestFriend {
		right: 20px;
    }
	.banner-half__content__text .double-button {
		width: 40%;
		margin-right: 2%;
	}
	.banner-half__content__text .double-button a {
		width: 100%;
	}
	.banner-half__content__text .double-button:last-child {
		margin-right: 0;
	}
}
/* CUSTOM BP MAX WIDTH */
@media screen and (max-width: 47.93em) { /* 767px */
    .banner-half__content__heading h1 {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .banner-half__content__heading:before {
        content: "";
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        color: #F8E71C;
        font-size: 5.6rem;
        line-height: 1;
        font-weight: normal;
        font-family: brothers, Copperplate, Georgia, serif;
        text-transform: uppercase;
    }
    .section--banner-inner .banner-half__content__heading:before {
        content: none;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .banner-half__bg {
        height: 540px;
        position: relative;
        z-index: 0;
    }
    .banner-inner {
        height: 360px;
    }
    .banner-inner__img {
        height: 360px;
        max-width: 66%;
    }
    .banner-inner__content__heading {
        display: block;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .banner-half__bg__img {
        height: 540px;
    }
    .banner-half__content,
    .banner-inner__content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: none;
    }
    .banner-half__content__heading {
        text-align: right;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .banner-inner__content__heading h1 {
        margin-bottom: 16px;
    }
    .banner__breadcrumb .breadcrumb {
        padding: 1.6rem 0;
        margin: 0;
    }
    .banner-half__content__text,
    .box__content__text {
        margin: 60px 0 60px 0;
        padding: 0 0 0 40px;
        text-align: center;
    }
    .box__content__text--left {
        padding: 0 40px 0 0;
        text-align: right;
    }
    .banner-half__content__tagline,
    .box__content__tagline  {
        position: relative;
        border-left: 1px solid #D0D0D0;
        padding: 20px;
    }
    .banner-half__content__tagline--left,
    .box__content__tagline--left {
        border-left: none;
        border-right: 1px solid #D0D0D0;
    }
    .banner-half__content__tagline .text-decal,
    .box__content__tagline .text-decal {
        display: block;
        text-align: center;
    }
    .banner-half__content__tagline .text-decal__content:before,
    .banner-half__content__tagline .text-decal__content:after,
    .box__content__tagline .text-decal__content:before,
    .box__content__tagline .text-decal__content:after {
        content: "";
    }
    .banner-half__content__tagline .text-decal__content svg,
    .box__content__tagline .text-decal__content svg {
        display: inline-block;
    }
    .banner-half__content__tagline .text-decal__content__hide,
    .box__content__tagline .text-decal__content__hide {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .banner-half__content__tagline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 2000px;
        width: 100vw;
        border-top: 1px solid #D0D0D0;
        border-bottom: 1px solid #D0D0D0;
    }
    .banner-half__content__tagline--left::before {
        left: unset;
        right: 0;
    }
    .box__content__tagline::before,
    .box__content__tagline::after {
        content: "";
        position: absolute;
        left: 0;
        height: 1px;
        background: #D0D0D0;
        width: 2000px;
        width: 100vw;
    }
    .box__content__tagline::before {
        top:0;
    }
    .box__content__tagline::after {
        bottom: 0;
    }
    .box__content__tagline--left::before,
    .box__content__tagline--left::after {
        right: 0;
        left: unset;
    }
    .banner-half__content__tagline .subtitle,
    .box__content__tagline .subtitle {
        margin-bottom: 0;
    }
    .banner-half__content__desc {
        padding: 20px;
    }
    .doggo__img {
        height: 180px;
    }
    .mansBestFriend {
        bottom: -12px;
    }
	.banner-half__content__text .double-button {
		width: 100%;
		margin-right: 0;
	}
    .banner-half__content__text .double-button a {
        width: 220px;
    }
    @supports (display: flex){
        .banner-inner__content__heading {
            margin-top: 0;
        	margin-bottom: 0;
        	height: 360px;
        	display: flex;
        	flex-flow: column wrap;
        	justify-content: center;
        	align-items: flex-start;
        }
    }
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .banner-half__bg {
        height: 720px;
    }
    .banner-half__bg__img {
        height: 720px;
    }
    .banner-inner {
        height: 420px;
    }
    .banner-inner__img {
        height: 420px;
    }
    .banner-half__content__heading,
    .banner-inner__content__heading {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .banner__breadcrumb {
        margin-left: 40px;
        margin-left: 8.33%;
    }
    .banner-inner__content__heading {
        width: 75%;
        float: right;
    }
    .banner-half__content__heading h1 {
        margin-right: -1rem;
    }
    .banner-inner__content__heading h1 {
        margin-top: 120px;
    }
    .banner-half__content__tagline {
        padding: 40px;
    }
    .banner-half__content__desc {
        padding: 40px;
		margin-bottom: 0;
    }
    .banner-half__content__tagline .subtitle {
        font-size: 40px;
    }
    .doggo__img {
        height: 280px;
    }
    .mansBestFriend {
        bottom: -18px;
        right: -40px;
    }
	.banner-half__content__text .double-button {
		width: 100%;
        text-align: center;
		display: block;
		margin-right: 0;
		margin-bottom: 1.6rem;
	}
	.banner-half__content__text .double-button a {
		width: 280px;
        margin-left: auto;
        margin-right: auto;
	}
    @supports (display: flex){
        .banner-inner__content__heading {
            margin-top: 0;
            margin-bottom: 0;
            height: 420px;
            display: flex;
            flex-flow: column wrap;
            justify-content: center;
            align-items: flex-start;
        }
    }
}
/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */
    .banner-half__content__heading {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .banner-inner {
        height: 480px;
    }
    .banner-inner__img {
        height: 480px;
    }
    .mansBestFriend {
        bottom: -22px;
        right: -32px;
    }
    .doggo__img {
        height: 306px;
    }
    .banner-inner__img {
        max-width: calc(1140px + ((100% - 1140px)/2));
    }
    @supports (display: flex){
        .banner-inner__content__heading {
            margin-top: 0;
            margin-bottom: 0;
            height: 480px;
            display: flex;
            flex-flow: column wrap;
            justify-content: center;
            align-items: flex-start;
        }
    }
}

/* BP large */
@media only screen and (min-width: 87.5em) { /* 1400px */
    .mansBestFriend {
        right: -16px;
        right: calc(((100vw - 1440px) / 2) - 20px);
    }
}

/* ---- Section Call to Action ---- */
.cta-bg-greytexture {
    background: #605D5D url(../images/bg-texture.jpg) center center;
    background-size: cover;
    color: #fff;
}
.cta-bg-greytexture .box__content__tagline {
    display: none;
}
.cta-mobile-content {
    text-align:center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .cta-bg-greytexture {
        position:relative;
    }
    .cta-bg-greytexture:before {
        content: "";
        position: absolute;
        left: 0;
        top:0;
        bottom: 0;
        width: 100%;
        width: calc(100% + ((0.06 * 100vw) / 2 ));
        background: #605D5D url(../images/bg-texture.jpg) center center;
        background-size: cover;
        color: #fff;
    }
    .cta-bg-greytexture .box__content__tagline {
        display: block;
    }
    .cta-mobile-content {
        display: none;
    }
    .section--cta .button {
        margin-top:1em;
    }
    .section--cta .box__content__text {
        height: calc(100% - 120px);
    }
    .section--cta .box__content__tagline {
        height: 100%;
    }
    @supports (display:flex) {
        .box__content__tagline {
            display: flex;
            flex-flow: column;
            justify-content: center;
            align-items: flex-start;
        }
        .box__content__tagline--left {
            display: flex;
            flex-flow: column;
            justify-content: center;
            align-items: flex-end;
        }
        .section--cta .button {
            margin-top:0.5em;
        }
    }
}
/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */
    .cta-bg-greytexture:before {
        width: calc(100% + ((100vw - 1140px) /2 ));
    }
}

/* ---- Master Image ---- */
.section--master-image {
    position: relative;
}
.master-image__wrapper {
    position: absolute;
}
.master-image__container {
    position: relative;
}
.master-image__nest {
    position: absolute;
}
.nest__wrapper {
    position: relative;
}
.master-image__link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.master__header {
    text-align: center;
}
.master__header h1 {
    margin-bottom: 0;
}
.master-asset {
    position: absolute;
}
.section--master-image {
    height: 225px;
}
.master-image__wrapper {
    height: 225px;
    top: 78px;
    left: 0;
    right: 0;
}
.master-image__container {
    height: 225px;
}
.section--master-content {
    padding-top: 75px;
}
.master__footer .social-list {
    text-align: center;
}
.master__footer .social-list .icon {
    width: 60px;
    height: 60px;
	margin: 0 8px;
}
.master__footer .social-list .icon svg {
    width: 60px;
    height: 60px;
}
.master__footer .social-list {
    display: block;
}

/* ~ Speech bubbles ~ */
.speech-bubble {
    background: transparent url(../images/img_speechBubble-lhs.svg) center center;
    background-repeat:no-repeat;
    background-size: contain;
    z-index: 4;
    padding: 11px 6px;
	width: 100px;
	height: 57px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 0;
}
.speech-bubble--left {
    background-image: url(../images/img_speechBubble-lhs.svg);
	-webkit-transform-origin: left center;
    transform-origin: left center;

}
.speech-bubble--right {
    background-image: url(../images/img_speechBubble-rhs.svg);
	-webkit-transform-origin: right center;
    transform-origin: right center;
}
.speech-bubble p {
    color: #000000;
    text-align: center;
    line-height: 1.25;
    font-family: verveine, Optima, Helvetica, Arial Narrow, sans-serif;
    font-size: 1.4rem;
}
.nest--doorway .speech-bubble {
    left: 75px;
    top: -4px;
    padding: 10px 6px;
}
.nest--lamp .speech-bubble {
    left: 88px;
    top: 80px;
}
.nest--foodstand .speech-bubble {
    width: 94px;
    height: 62px;
    padding: 8px 8px;
    left: -32px;
    top: -14px;
}

/* ~ background ~ */
.building-bg {
    width: 494px;
    height:223px;
    left: -55%;
    left: calc(100vw - (247px + 84%));
    bottom: 40px;
    max-width: unset;
}
.building-bg--overlay {
    height: 223px;
	left: -19px;
    bottom: -30.3px;
	z-index: 0;
}
.master-asset.clouds {
    opacity: 0.3;
}
.master-asset.clouds--bubba {
    width: 32px;
    height: 8px;
    top: -5px;
    right: calc(-10% + 260px);
}
.master-asset.clouds--lil {
    width: 131px;
    height: 13px;
    top: 47px;
    right: calc(-10% + 191px);
}
.master-asset.clouds--mama {
    width: 253px;
    height: 67px;
    top: -20px;
    right: -10%;
}
/* ~ lamp ~ */
.nest--lamp {
    height: 287px;
    width: 204px;
    left: -22%;
    top: -60px;
}
.master-asset.lamp,
.master-asset.lamp--hover {
    height: 287px;
    width: 204px;
    left: 3px;
    top: 0;
    max-width: 130%;
}
.simon {
    width: 102px;
    height: 145px;
    left: 42px;
    bottom: 2px;
}
.simon--arms,
.simon--fedup {
    opacity: 0;
}
.doggo {
    z-index: 1;
    opacity: 1;
}
.doggo--light {
    opacity: 0;
}
.doggo__tail {
    z-index: 0;
    -webkit-transform-origin: 10% 95%;
    transform-origin: 10% 95%;
}
.doggo {
    width: 65px;
    height: 79px;
    left: 103px;
    bottom: 5px;
}
.doggo__tail {
    width: 21px;
    height: 28px;
    left: 147px;
    bottom: 19px;
}

/* ~ doorway ~ */
.nest--doorway {
    height: 155px;
    width: 123px;
    left: 55px;
    left: calc(100vw - (34px + 84%));
    top: 0;
}
.nest--wakame {
    height: 103px;
    width: 54px;
    top: 38px;
    left: 37px;
}
.nest--wakame .nest__wrapper {
    height: 103px;
    width: 54px;
    left: 0;
    top: 0;
}
.nest--wakame-arm {
    height: 24px;
	width: 25px;
	top: 32px;
	left: 30px;
}
.nest--wakame-arm .nest__wrapper {
    height: 24px;
    width: 25px;
    left: 0;
    top: 0;
}
.master-asset.wakame__body {
    width: 54px;
    height: 103px;
    top: 0;
    left: 0;
}
.master-asset.wakame__body2 {
    width: 54px;
    height: 103px;
    top: 0;
    left: 0;
}
.master-asset.wakame__hand {
    left: 16px;
    bottom: 29px;
	height: 15px;
	width: 19px;
    z-index: 10;
}

.master-image__nest--essentials-hover .wakame__body2 {

}

@keyframes dirtyLightFlick {
    0%, 49%, 51%, 70%, 72%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    71% {
        opacity: .75;
    }
}
.dirty-light-flicker {
    animation: dirtyLightFlick 6s infinite ease-in-out;
}
.dirty-light-flicker:hover {
    opacity: 1;
}

/* ~ essentials boxes ~  */
.master-image_essentials {

}

.essentials__wrapper {
    width: 73px;
    height: 55px;
    left: 42%;
    top: 57%;
}
.essentials__mask {
    width: 165px;
    height: auto;
}

.essentials__mask--upper,
.essentials__mask--lower {
    /* opacity: 0; */
}

.essentials__bags-top,
.essentials__bags-bottom {
    /* z-index: 200; */
    width: 18.1818181818%;
    height: 26.3157894737%;
    /* display: none; */
}
.essentials__bags-top img,
.essentials__bags-bottom img {
    width: 100%;
    height: 100%;
    /* opacity: 0; */
}


.essentials__wrapper:hover .essentials__mask--upper,
.essentials__wrapper:hover .essentials__mask--lower,
.essentials__wrapper:hover .essentials__bags-top,
.essentials__wrapper:hover .essentials__bags-bottom,
.essentials__wrapper:hover .essentials__bags-top img,
.essentials__wrapper:hover .essentials__bags-bottom img {
    opacity: 1;
    display: block;
}

.essentials__bags-top {
    top: -21%;
    left: 41.2121212121%;
}

.essentials__wrapper:hover .essentials__bags-top {
    top: -2.5%;
}

.essentials__bags-bottom {
    top: 10%;
    left: 41.2121212121%;
}

.essentials__wrapper:hover .essentials__bags-bottom {
    top: 30.333%;
}

@media screen and (min-width: 768px) {
    .essentials__bags-top {
        top: -4%;
    }

    .essentials__wrapper:hover .essentials__bags-top {
        top: -2.5%;
    }

    .essentials__bags-bottom {
        top: 28%;
    }

    .essentials__wrapper:hover .essentials__bags-bottom {
        top: 30.333%;
    }

}

.essentials__bag--1,
.essentials__bag--4 {
    left: 36.3636363636%;
}

.essentials__bag--3,
.essentials__bag--6 {
    left: 46.6666666667%;
}

@keyframes xAxisPoppin1 {
    50% {
        opacity: 1;
    }
  100% {
    animation-timing-function: cubic-bezier(0,.26,.09,1.39);
    transform: translateX(466.6666666667%);
    opacity: 0;
  }
}

@keyframes xAxisPoppin2 {
    50% {
        opacity: 1;
    }
  100% {
    animation-timing-function: cubic-bezier(0,.26,.09,1.39);
    transform: translateX(-266.6666666667%);
    opacity: 0;
  }
}

@keyframes xAxisPoppin3 {
    50% {
        opacity: 1;
    }
  100% {
    animation-timing-function: cubic-bezier(0,.26,.09,1.39);
    transform: translateX(-266.6666666667%);
    opacity: 0;
  }
}

@keyframes xAxisPoppin4 {
    50% {
        opacity: 1;
    }
  100% {
    animation-timing-function: cubic-bezier(0,.26,.09,1.39);
    transform: translateX(220%);
    opacity: 0;
  }
}

@keyframes xAxisPoppin5 {
    50% {
        opacity: 1;
    }
  100% {
    animation-timing-function: cubic-bezier(0,.26,.09,1.39);
    transform: translateX(300%);
    opacity: 0;
  }
}

@keyframes yAxisPoppin1 {
    0% {

    }
  100% {
    animation-timing-function: cubic-bezier(.22,.61,.36,1);
    transform: rotate(-15deg) translateY(-400%);
  }
}

@keyframes yAxisPoppin2 {
    0% {

    }
  100% {
    animation-timing-function: cubic-bezier(.22,.61,.36,1);
    transform: rotate(-15deg) translateY(-350%);
  }
}

@keyframes yAxisPoppin3 {
    0% {

    }
  100% {
    animation-timing-function: cubic-bezier(.22,.61,.36,1);
    transform: rotate(-15deg) translateY(-330%);
  }
}

@keyframes bagJiggle {
    0% {
        transform: rotate(0deg) translateY(0px)  translateX(0px);
    }
    2.5% {
        transform: rotate(-5deg) translateY(-20%)  translateX(-6.66%);
    }
    5% {
        transform: rotate(0deg) translateY(0px)  translateX(0px);
    }
    7.5% {
        transform: rotate(5deg) translateY(-20%)  translateX(6.66%);
    }
    10%, 100% {
        transform: rotate(0deg) translateY(0px)  translateX(0px);
    }
}



.essentials__bags-bottom,
.essentials__bags-top {
    animation: bagJiggle 5s infinite ease-in-out;
}

.essentials__bag--1 {
    animation-delay: 1.2s;
}

.essentials__bag--2 {
    animation-delay: 2.7s;
}

.essentials__bag--3{
    animation-delay: 4.35s;
}

.essentials__bag--6 {
    animation-delay: 2.25s;
}

.essentials__bag--4 {
    animation-delay: .67s;
}

.essentials__bag--5 {
    animation-delay: 3.75s;
}
/* bag 1 */
.essentials__wrapper:hover .essentials__bag--1 {
    animation: xAxisPoppin1 1s infinite cubic-bezier(.22,.61,.36,1);
    animation-delay: 0s, 4.5s;
}

.essentials__wrapper:hover .essentials__bag--1 img {
    animation: yAxisPoppin1 1s infinite cubic-bezier(0,.26,.09,1.39);
    animation-delay: 0s, 4.5s;
}
/* bag 2 */
.essentials__wrapper:hover .essentials__bag--2 {
    animation: xAxisPoppin2 1s infinite cubic-bezier(.22,.61,.36,1);
    animation-delay: .5s, 2.5s;
}

.essentials__wrapper:hover .essentials__bag--2 img {
    animation: yAxisPoppin1 1s infinite cubic-bezier(0,.26,.09,1.39);
    animation-delay: .5s, 2.5s;
}
/* bag 3 */
.essentials__wrapper:hover .essentials__bag--3 {
    animation: xAxisPoppin1 1s infinite cubic-bezier(.22,.61,.36,1);
    animation-delay: 1s, 2.5s;
}

.essentials__wrapper:hover .essentials__bag--3 img {
    animation: yAxisPoppin3 1s infinite cubic-bezier(0,.26,.09,1.39);
    animation-delay: 1s, 2.5s;
}
/* bag 4 */
.essentials__wrapper:hover .essentials__bag--4 {
    animation: xAxisPoppin3 1s infinite cubic-bezier(.22,.61,.36,1);
    animation-delay: 2s, 2.5s;
}

.essentials__wrapper:hover .essentials__bag--4 img {
    animation: yAxisPoppin2 1s infinite cubic-bezier(0,.26,.09,1.39);
    animation-delay: 2s, 2.5s;
}
/* bag 5 */
.essentials__wrapper:hover .essentials__bag--5 {
    animation: xAxisPoppin4 1s infinite cubic-bezier(.22,.61,.36,1);
    animation-delay: 2.5s, 2.5s;
}

.essentials__wrapper:hover .essentials__bag--5 img {
    animation: yAxisPoppin3 1s infinite cubic-bezier(0,.26,.09,1.39);
    animation-delay: 2.5s, 2.5s;
}
/* bag 6 */
.essentials__wrapper:hover .essentials__bag--6 {
    animation: xAxisPoppin5 1s infinite cubic-bezier(.22,.61,.36,1);
    animation-delay: 3.5s, 2.5s;
}

.essentials__wrapper:hover .essentials__bag--6 img {
    animation: yAxisPoppin1 1s infinite cubic-bezier(0,.26,.09,1.39);
    animation-delay: 3.5s, 2.5s;
}


/* ~ foodstand ~  */
.nest--foodstand {
    height: 118px;
    width: 146px;
    right: -55px;
    bottom: 40px;
}
.master-asset.foodstand {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index:1;
}
.foodstand--hover {
    opacity: 0;
}
.master-asset.foodstand-person {
    width: 65px;
    height: 43px;
    top: 38px;
    left: 43px;
    z-index:0;
}
.foodstand-person--hover {
    opacity: 0;
}
.master-asset.foodstand-cat {
    width: 14px;
    height: 22px;
    top: 51px;
    left: 20px;
}
.foodstand-cat--hover {
    opacity: 0;
}
.nest--wok {
    height: 67px;
    width: 48px;
    left: 10px;
    bottom: -10px;
    z-index: 1;
}
.nest--wok .nest__wrapper {
    height: 67px;
    width: 48px;
    display: block;
}
.master-asset.foodstand-wok-stand {
    bottom: -10px;
    left: -13px;
    z-index: 0;
}
.foodstand-wok,
.foodstand-flame {
    width: 29px;
    z-index: 0;
}
.foodstand-wok {
    height: 9px;
    bottom: 42px;
    left: -7px;
}
.foodstand-flame {
    height: 5px;
    bottom: 41px;
    left: -7px;
    opacity: 0;
}

/* mobile animations */
.clouds--bubba {
    -webkit-animation: driftingCloudBubba 56s linear infinite;
            animation: driftingCloudBubba 56s linear infinite;
}
.clouds--mama {
    -webkit-animation: driftingCloudMama 56s linear infinite;
            animation: driftingCloudMama 56s linear infinite;
}
.clouds--lil {
    -webkit-animation: driftingCloudLil 56s linear infinite;
            animation: driftingCloudLil 56s linear infinite;
}

.lamp--hover,
.simon--default--light,
.doggo--light,
.doggo--light--tail {
    -webkit-animation: mobileLampPulse 8s linear infinite;
    animation: mobileLampPulse 8s linear infinite;
}
.doggo__tail {
    -webkit-animation: happyButt 1s linear infinite;
    animation: happyButt 1s linear infinite;

}
.doggo__tail.dog-tail-slow {
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
}
.doggo__tail.dog-tail-excited,
.simon-arms .doggo__tail,
.fedup .doggo__tail {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}
.foodstand--hover {
    -webkit-animation: foodstandLampFlicker 7s 1s linear infinite;
            animation: foodstandLampFlicker 7s 1s linear infinite;
}
.foodstand-wok {
    -webkit-animation: whatsCookinGoodLookin 8s infinite;
            animation: whatsCookinGoodLookin 8s infinite;
}
.foodstand-flame {
    -webkit-animation: heyHotStuff 8s infinite;
            animation: heyHotStuff 8s infinite;
}
.wakame--essentials,
.wakame {
	-webkit-animation: hideWakame 100ms both;
	        animation: hideWakame 100ms both;
}
.wakame-sneak-peak .wakame {
    -webkit-animation: doTheSneak 4s both;
            animation: doTheSneak 4s both;
}
.wakame-creep-peak .wakame {
    -webkit-animation: doTheCreep 8s both;
            animation: doTheCreep 8s both;
}
.wakame__hand {
	-webkit-transform-origin: 30% 90%;
	        transform-origin: 30% 90%;
}
.wakame-sneak-peak .wakame__hand {
    -webkit-animation: creepyWakameHand 4s both;
            animation: creepyWakameHand 4s both;
}
.wakame-creep-peak .wakame__hand {
    -webkit-animation: creepyWakameHand 1s infinite;
            animation: creepyWakameHand 1s infinite;
}
.wakame-arm__inner {
    -webkit-transform-origin: left top;
            transform-origin: left top;
}

.wakame-creep-peak .speech-bubble {
    -webkit-animation: expandBubbleShort 8s infinite;
            animation: expandBubbleShort 8s infinite;
}
.nest--foodstand .speech-bubble {
    -webkit-animation: expandBubbleFoodstand 40s infinite;
            animation: expandBubbleFoodstand 40s infinite;
}



/* Fancy catering Simon javascript classes override default state */
.nest--lamp.simon-arms .speech-bubble--fedup,
.nest--lamp.simon-arms .simon--default,
.nest--lamp.simon-arms .simon--default--light,
.nest--lamp.simon-arms .lamp--hover,
.nest--lamp.simon-arms .doggo--light {
    -webkit-animation: none;
            animation: none;
}
.nest--lamp.simon-arms .lamp--hover,
.nest--lamp.simon-arms .doggo--light,
.nest--lamp.simon-arms .simon--arms {
    opacity: 1;
}
.nest--lamp.simon-arms .simon--default,
.nest--lamp.simon-arms .simon--default--light,
.nest--lamp.simon-arms .simon--default,
.nest--lamp.simon-arms .simon--fedup {
    opacity: 0;
}
.nest--lamp.simon-arms .speech-bubble--catering {
	-webkit-animation: expandBubbleExtraShort 4.8s both;
	        animation: expandBubbleExtraShort 4.8s both;
}
.nest--lamp.simon-arms .speech-bubble--fedup {
    opacity: 0;
}

/* Fed up Simon javascript classes override hover state and default animation */
.nest--lamp.fedup .speech-bubble--catering,
.nest--lamp.fedup .simon--default--light,
.nest--lamp.fedup .lamp--hover,
.nest--lamp.fedup .doggo--light {
    -webkit-animation: none;
            animation: none;
}
.nest--lamp.fedup .lamp--hover,
.nest--lamp.fedup .doggo--light,
.nest--lamp.fedup .simon--fedup {
    opacity: 1;
}
.nest--lamp.fedup .simon--default--light,
.nest--lamp.fedup .simon--default,
.nest--lamp.fedup .simon--arms {
    opacity: 0;
}
.nest--lamp.fedup .speech-bubble--fedup {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
}

@supports (mix-blend-mode: soft-light) {
    .master-asset.clouds {
        opacity: 1;
        mix-blend-mode: soft-light;
    }
}

/* BP custom */
@media screen and (min-width: 25em) { /* 400px */
    .building-bg {
        left: -20%;
        left: calc(50% - 294px);
    }
    .essentials__wrapper {
        left: 48%;
    }
    .nest--lamp {
    	left: -10%;
    	top: -70px;
    }
    .nest--doorway {
    	left: 83px;
        left: calc(50% - 82px);
    	top: 0;
    }

}
/* BP custom */
@media screen and (min-width: 37.5em) { /* 600px */
    .building-bg {
        left: 0;
        left: calc(50% - 287px);
    }

    .speech-bubble p {
        font-size: 1.6rem;
    }
    .nest--doorway .speech-bubble {
        left: 75px;
        top: -4px;
        padding: 13px 15px;
    }
    .speech-bubble {
    	padding: 11px 10px;
    	width: 120px;
    	height: 68px;
    }
    .nest--lamp .speech-bubble {
        left: 88px;
        top: 80px;
    }
    .nest--foodstand .speech-bubble {
        width: 126px;
        height: 83px;
        padding: 16px 21px;
        left: -57px;
        top: -35px;
    }
    .nest--lamp {
        left: 0;
        top: -70px;
    }
    .nest--doorway {
        left: 83px;
        left: calc(50% - 75px);
        top: 0;
    }
    .nest--foodstand {
    	right: 0;
    	bottom: 40px;
    }
    .nest--wok {
    	left: 0;
    	bottom: 0;
    }
    .nest--foodstand .speech-bubble p {
        letter-spacing: 1px;
    }
    .nest--foodstand .speech-bubble span {
        letter-spacing: -0.5px;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section--master-image {
        height: 338px;
    }
    .master-image__wrapper {
        height: 338px;
        top: 113px;
        left: 0;
        right: 0;
    }
    .master-image__container {
        height: 338px;
    }
    .section--master-content {
        padding-top: 113px;
        padding-bottom: 60px;
    }
    /* ~ background ~ */
    .building-bg {
        width: 741px;
        height: 335px;
        left: -1.5%;
        left: calc(50% - 441px);
        bottom: 60px;
    }
    .building-bg--overlay {
        height: 335px;
        bottom: -45.5px;
        left: -27.5px;
    }
    .master-asset.clouds--bubba {
        width: 48px;
        height: 12px;
        top: -8px;
        right: calc(-8% + 390px);
    }
    .master-asset.clouds--lil {
        width: 197px;
        height: 20px;
        top: 71px;
        right: calc(-8% + 286px);
    }
    .master-asset.clouds--mama {
        width: 379px;
        height: 101px;
        top: -30px;
        right: -8%
    }

    /* ~ Speech bubbles ~ */
    .speech-bubble p {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    .speech-bubble {
        padding: 18px 24px;
        width: 180px;
        height: 102px;
    }
    .nest--doorway .speech-bubble {
        left: 113px;
        top: -6px;
        padding: 16px 24px;
    }
    .nest--lamp .speech-bubble {
        left: 131px;
        top: 120px;
    }
    .nest--foodstand .speech-bubble {
        width: 189px;
        height: 125px;
        padding: 23px 32px;
        left: -86px;
        top: -52px;
    }


    /* ~ lamp ~ */
    .nest--lamp {
        height: 431px;
        width: 306px;
        left: 0;
        top: -105px;
    }
    .master-asset.lamp,
    .master-asset.lamp--hover {
        height: 431px;
        width: 306px;
        left: 5px;
        top: 0;
    }
    .simon {
        width: 153px;
        height: 218px;
        left: 63px;
        bottom: 3px;
    }
    .doggo {
        width: 97px;
        height: 118px;
        left: 154px;
        bottom: 8px;
    }
    .doggo__tail {
        width: 31px;
        height: 41px;
        left: 220px;
        bottom: 29px;
    }


    /* ~ doorway ~ */
    .nest--doorway {
        height: 233px;
        width: 184px;
        left: 230px;
        left: calc(50% - 123px);
        top: 0;
    }
    .nest--wakame {
        width: 73px;
        height: 154px;
        top: 56px;
        left: 78px;
    }
    .nest--wakame .nest__wrapper {
        height: 154px;
        width: 73px;
    }
    .nest--wakame-arm {
        height: 36px;
        width: 37px;
        top: 48px;
        left: 45px;
    }
    .nest--wakame-arm .nest__wrapper {
        height: 36px;
        width: 37px;
    }
    .master-asset.wakame__body {
        width: 73px;
        height: 154px;
    }
    .master-asset.wakame__body2 {
        width: 73px;
        height: 154px;
    }
    .master-asset.wakame__hand {
        left: 18px;
        bottom: 44px;
        height: 22px;
        width: 23px;
    }

    .essentials__wrapper {
        width: 120px;
        height: 92px;
        left: 50%;
        top: 55%;
    }

    /* ~ foodstand ~  */
    .nest--foodstand {
        height: 176px;
        width: 218px;
        right: -8px;
        bottom: 60px;
    }
    .master-asset.foodstand {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .master-asset.foodstand-person {
        width: 97px;
        height: 64px;
        top: 56px;
        left: 61px;
    }
    .master-asset.foodstand-cat {
        width: 21px;
        height: 32px;
        top: 77px;
        left: 30px;
    }
    .nest--wok {
        height: 101px;
        width: 72px;
        left: -15px;
        bottom: 0;
    }
    .nest--wok .nest__wrapper {
        height: 101px;
        width: 72px;
    }
    .master-asset.foodstand-wok-stand {
        bottom: -15px;
        left: -20px;
    }
    .foodstand-wok,
    .foodstand-flame {
        width: 44px;
    }
    .foodstand-wok {
        height: 13px;
        bottom: 63px;
        left: -10.5px;
    }
    .foodstand-flame {
        height: 8px;
        bottom: 62px;
        left: -11px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section--master-image {
        height: 450px;
    }
    .master-image__wrapper {
        height: 450px;
        top: 150px;
        left: 0;
        right: 0;
    }
    .master-image__container {
        height: 450px;
    }
    .section--master-content {
        padding-top: 150px;
    }
    /* ~ background ~ */
    .building-bg {
        width: 988px;
        height:446px;
        left: calc(50% - 604px);
        bottom: 80px;
    }
    .building-bg--overlay {
        height: 446px;
        width: auto;
        left: -37px;
        bottom: -60.433px;
    }

    .master-asset.clouds--bubba {
        width: 64px;
        height: 16px;
        top: -10px;
        right: 35%;
    }
    .master-asset.clouds--lil {
        width: 262px;
        height: 26px;
        top: 94px;
        right: 23%;
    }
    .master-asset.clouds--mama {
        width: 505px;
        height: 134px;
        top: -40px;
        right: -10%
    }

    /* ~ Speech bubbles ~ */
    .speech-bubble p {
        font-size: 3rem;
    }
    .speech-bubble {
        padding: 26px 36px;
        width: 240px;
        height: 136px;
    }
    .nest--doorway .speech-bubble {
        left: 129px;
	    top: -40px;
        padding: 30px 36px;
    }
    .nest--lamp .speech-bubble {
        left: 175px;
        top: 160px;
    }
    .nest--foodstand .speech-bubble {
        width: 252px;
        height: 166px;
        padding: 32px 42px;
        left: -114px;
    	top: -69px;
    }
    .essentials__wrapper .speech-bubble {
        top: -289px;
        left: -27px;
    }


    /* ~ lamp ~ */
    .nest--lamp {
        height: 574px;
        width: 290px;
        left: -20px;
        top: -140px;
    }
    .master-asset.lamp,
    .master-asset.lamp--hover {
        height: 574px;
        width: 408px;
        left: 6px;
        top: 0;
    }
    .simon {
        width: 204px;
    	height: 290px;
    	left: 64px;
    	bottom: 4px;
    }
    .doggo {
        width: 129px;
        height: 157px;
        left: 185px;
        bottom: 10px;
    }
    .doggo__tail {
        width: 41px;
        height: 55px;
        left: 273px;
        bottom: 38px;
    }

    /* ~ doorway ~ */
    .nest--doorway {
        height: 310px;
        width: 266px;
        left: calc(50% - 180px);
        top: 0;
    }
    .nest--wakame {
        height: 205px;
        width: 124px;
        top: 75px;
        left: 90px;
    }
    .nest--wakame .nest__wrapper {
        height: 205px;
        width: 124px;
    }
    .nest--wakame-arm {
        height: 48px;
    	width: 50px;
    	top: 25px;
    	left: 55px;
    }
    .nest--wakame-arm .nest__wrapper {
        height: 48px;
        width: 50px;
    }
    .master-asset.wakame__body {
        width: 93px;
        height: 205px;
    }
    .master-asset.wakame__body2 {
        width: 93px;
        height: 205px;
    }

    .master-asset.wakame__hand {
        left: 26px;
        bottom: 20px;
        height: 29px;
        width: 30px;
    }
    .essentials__wrapper {
        width: 165px;
        height: 114px;
        left: 48%;
    }

    /* ~ foodstand ~  */
    .nest--foodstand {
        height: 235px;
        width: 291px;
        right: -10px;
        bottom: 80px;
    }
    .master-asset.foodstand {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .master-asset.foodstand-person {
        width: 129px;
        height: 85px;
        top: 75px;
        left: 81px;
    }
    .master-asset.foodstand-cat {
        width: 28px;
        height: 43px;
        top: 102px;
        left: 40px;
    }
    .nest--wok {
        height: 134px;
        width: 96px;
        left: -20px;
        bottom: 0;
    }
    .nest--wok .nest__wrapper {
        height: 134px;
        width: 96px;
    }
    .master-asset.foodstand-wok-stand {
        bottom: -20px;
        left: -26px;
    }
    .foodstand-wok,
    .foodstand-flame {
        width: 58px;
    }
    .foodstand-wok {
        height: 17px;
        bottom: 84px;
        left: -14px;
    }
    .foodstand-flame {
        height: 10px;
        bottom: 82px;
        left: -14px;
    }

    /* --- HOVERSTATES --- */
    /* remove speechbubble auto animate visible */
    .nest--doorway .speech-bubble {
        -webkit-animation: none;
                animation: none;
    }
    .nest--lamp .speech-bubble {
        -webkit-animation: none;
                animation: none;
    }
    .nest--foodstand .speech-bubble {
        -webkit-animation: none;
                animation: none;
    }
    .essentials__wrapper .speech-bubble {
        -webkit-animation: none;
                animation: none;
    }
    /* lamp hoverstate */
    .nest--lamp .master-image__link:hover .master-asset.lamp--hover,
    .nest--lamp .master-image__link:focus .master-asset.lamp--hover,
    .nest--lamp .master-image__link:active .master-asset.lamp--hover {
        opacity: 1;
    }
    .nest--lamp .master-image__link:hover .master-asset.simon--arms,
    .nest--lamp .master-image__link:focus .master-asset.simon--arms,
    .nest--lamp .master-image__link:active .master-asset.simon--arms {
        opacity: 1;
    }
    .nest--lamp .master-image__link:hover .master-asset.simon--default,
    .nest--lamp .master-image__link:focus .master-asset.simon--default,
    .nest--lamp .master-image__link:active .master-asset.simon--default,
    .nest--lamp .master-image__link:hover .simon--default--light,
    .nest--lamp .master-image__link:focus .simon--default--light,
    .nest--lamp .master-image__link:active .simon--default--light {
        opacity: 0;
    }
    .nest--lamp .master-image__link:hover .lamp--hover,
    .nest--lamp .master-image__link:focus .lamp--hover,
    .nest--lamp .master-image__link:active .lamp--hover,
    .nest--lamp .master-image__link:hover .simon--default--light,
    .nest--lamp .master-image__link:focus .simon--default--light,
    .nest--lamp .master-image__link:active .simon--default--light,
    .nest--lamp .master-image__link:hover .doggo--light,
    .nest--lamp .master-image__link:focus .doggo--light,
    .nest--lamp .master-image__link:active .doggo--light {
        -webkit-animation: none;
                animation: none;
    }
    .nest--lamp .master-image__link:hover .master-asset.doggo,
    .nest--lamp .master-image__link:focus .master-asset.doggo,
    .nest--lamp .master-image__link:active .master-asset.doggo {
        opacity: 0;
    }
    .nest--lamp .master-image__link:hover .master-asset.doggo--light,
    .nest--lamp .master-image__link:focus .master-asset.doggo--light,
    .nest--lamp .master-image__link:active .master-asset.doggo--light,
    .nest--lamp .master-image__link:hover .master-asset.doggo--light--tail,
    .nest--lamp .master-image__link:focus .master-asset.doggo--light--tail,
    .nest--lamp .master-image__link:active .master-asset.doggo--light--tail {
        opacity: 1;
    }
    .nest--lamp .master-image__link:hover .master-asset.doggo--light,
    .nest--lamp .master-image__link:focus .master-asset.doggo--light,
    .nest--lamp .master-image__link:active .master-asset.doggo--light {
        opacity: 1;
        -webkit-animation: none;
                animation: none;
    }
    .nest--lamp .master-image__link:hover .master-asset.doggo__tail,
    .nest--lamp .master-image__link:focus .master-asset.doggo__tail,
    .nest--lamp .master-image__link:active .master-asset.doggo__tail {
        -webkit-animation-duration: 500ms;
        animation-duration: 500ms;
    }

    /* doorway hoverstate --- done using javascript */
    .master-image__nest--essentials-hover .wakame__body2,
    .nest--doorway .wakame-hover-enters .wakame {
        -webkit-animation: bigBraveWakameEnters 500ms forwards;
                animation: bigBraveWakameEnters 500ms forwards;
    }
    .nest--doorway .wakame-hover-enters .wakame__hand {
        -webkit-animation: bigBraveWakameHand 1s 250ms infinite;
                animation: bigBraveWakameHand 1s 250ms infinite;
    }

    /* javascript classes */
    /* .master-image__nest--essentials-hover .wakame__body2, */
    .wakame-hides .wakame {
        -webkit-animation: bigBraveWakameHides 500ms;
                animation: bigBraveWakameHides 500ms;
    }
    .pause-animation .wakame {
        -webkit-animation-play-state: paused;
                animation-play-state: paused;
    }


    /* foodstand hoverstate */
    .nest--foodstand .master-image__link:hover .master-asset.foodstand--hover,
    .nest--foodstand .master-image__link:focus .master-asset.foodstand--hover,
    .nest--foodstand .master-image__link:active .master-asset.foodstand--hover {
        -webkit-animation: none;
                animation: none;
        opacity: 1;
    }
    .nest--foodstand .master-image__link:hover .master-asset.foodstand-cat,
    .nest--foodstand .master-image__link:focus .master-asset.foodstand-cat,
    .nest--foodstand .master-image__link:active .master-asset.foodstand-cat {
        opacity: 0;
    }
    .nest--foodstand .master-image__link:hover .master-asset.foodstand-cat--hover,
    .nest--foodstand .master-image__link:focus .master-asset.foodstand-cat--hover,
    .nest--foodstand .master-image__link:active .master-asset.foodstand-cat--hover {
        opacity: 1;
    }
    .nest--foodstand .master-image__link:hover .master-asset.foodstand-person,
    .nest--foodstand .master-image__link:focus .master-asset.foodstand-person,
    .nest--foodstand .master-image__link:active .master-asset.foodstand-person {
        opacity: 0;
    }
    .nest--foodstand .master-image__link:hover .master-asset.foodstand-person--hover,
    .nest--foodstand .master-image__link:focus .master-asset.foodstand-person--hover,
    .nest--foodstand .master-image__link:active .master-asset.foodstand-person--hover {
        opacity: 1;
    }
    .nest--foodstand .master-image__link:hover .master-asset.foodstand-wok,
    .nest--foodstand .master-image__link:focus .master-asset.foodstand-wok,
    .nest--foodstand .master-image__link:active .master-asset.foodstand-wok {
        -webkit-animation: cookingOnAllBurners 400ms infinite;
                animation: cookingOnAllBurners 400ms infinite;
    }
    .nest--foodstand .master-image__link:hover .master-asset.foodstand-flame,
    .nest--foodstand .master-image__link:focus .master-asset.foodstand-flame,
    .nest--foodstand .master-image__link:active .master-asset.foodstand-flame {
        -webkit-animation: cookingOnAllBurnersFlame 300ms infinite;
                animation: cookingOnAllBurnersFlame 300ms infinite;
    }
    /* speechbubble hoverstate */
    .essentials__wrapper:hover .speech-bubble,
    .nest--lamp .master-image__link:hover .speech-bubble--catering,
    .nest--foodstand .master-image__link:hover .speech-bubble {
		-webkit-transition: all 450ms ease-in-out;
		transition: all 450ms ease-in-out;
		-webkit-animation: none;
		        animation: none;
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
	/* wakame speechbubble javascript hoverstate */
	.nest--doorway .wakame-hover-enters .speech-bubble {
		-webkit-animation: hoverExpandBubbleDoorway 500ms forwards;
		        animation: hoverExpandBubbleDoorway 500ms forwards;
	}
	.pause-animation .speech-bubble {
		-webkit-animation-play-state: paused;
		        animation-play-state: paused;
	}
	.nest--doorway .wakame-hides .speech-bubble {
		-webkit-animation: hoverCollapseBubbleDoorway 500ms forwards;
		        animation: hoverCollapseBubbleDoorway 500ms forwards;
	}
	.nest--doorway .wakame-creep-peak:hover .speech-bubble,
	.nest--doorway .wakame-sneak-peak:hover .speech-bubble {
		-webkit-transition: all 450ms ease-in-out;
		transition: all 450ms ease-in-out;
		-webkit-animation: none;
		        animation: none;
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
	}

    /* lamp hoverstate */
	/* Fedup Simon javascript classes override default state and arms animation */
    .nest--lamp.fedup .master-image__link:hover .master-asset.simon--arms,
    .nest--lamp.fedup .master-image__link:focus .master-asset.simon--arms,
    .nest--lamp.fedup .master-image__link:active .master-asset.simon--arms {
        opacity: 0;
    }
    .nest--lamp.fedup .master-image__link:hover .speech-bubble--catering,
    .nest--lamp.fedup .master-image__link:focus .speech-bubble--catering,
    .nest--lamp.fedup .master-image__link:active .speech-bubble--catering {
        opacity: 0;
    }

    .nest--lamp.fedup .master-image__link:hover .speech-bubble--fedup,
    .nest--lamp.fedup .master-image__link:focus .speech-bubble--fedup,
    .nest--lamp.fedup .master-image__link:active .speech-bubble--fedup {
        opacity: 1;
        transform: scaleX(1);
    }
}
/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */
    /* ~ background ~ */
    .building-bg {
        left: 0;
        bottom: 80px;
    }
    .master-asset.clouds--bubba {
        right: 497px;
    }
    .master-asset.clouds--lil {
        right: 358px;
    }
    .master-asset.clouds--mama {
        right: -22px;
    }
    /* ~ doorway ~ */
    .nest--doorway {
        left: 425px;
    }
    .section--master-content {
        padding-top: 176px;
        padding-bottom: 92px;
    }
    .essentials__wrapper {
        left: 51%;
    }
}

/* ---- Promo ---- */
.promo-list {
    margin-top: 20px;
}
.promo {
    margin-bottom: 25px;
}
.promo__inner {
    height: 100%;
}
.promo__img img {
    width: 100%;
}
.promo__content {
    padding: 20px 25px;
}


/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .promo-list {
        margin-top: 30px;
    }
    .promo {
        margin-bottom: 30px;
    }
    .promo__content {
        padding: 25px 30px;
    }
}

/* ---- block-promo ---- */
.section--block-promo {
    background-color: #434242;
}
.block-promo__wrapper {
    border: 1px solid #D0D0D0;
    padding: 20px;
    position: relative;
}
/* BP small */
@media screen and (min-width: 25em) { /* 400px */
    .block-promo__image {
        width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* BP small */
@media screen and (min-width: 37.5em) { /* 600px */
    .block-promo__image {
        position: absolute;
        width: auto;
        height: 300px;
        top: calc(50% - 196px);
        right: -4%;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section--block-promo {
        background-color: #232121;
    }
    .block-promo__wrapper {
        padding: 40px;
    }
    .block-promo__image {
        position: absolute;
        height: 405px;
        top: calc(50% - 205px);
        right: 0;
        right: calc(14% - 136px);
    }
}

@media only screen and (min-width: 62em) {
    .block-promo__wrapper {
    	padding: 60px;
    }
    .block-promo__image {
        height: 510px;
        top: -60px;
        right: calc(18% - 196px);
    }
}


/* ---- two-panels ---- */
.section--two-panels .row {
    position: relative;
}
.section--two-panels .row::after {
    content: "";
    position: absolute;
    background: url(../images/img_simon--sidestand.png) no-repeat;
    background-size: auto 100%;
    background-position: top left -20px;
    top: -40px;
    left: -60px;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.section--two-panels .row.foodtruck::after {
    content: "";
    position: absolute;
    background: url(../images/master_foodstandLamps.png) no-repeat;
    background-size: auto 100%;
    background-position: top left -20px;
    top: -40px;
    left: -620px;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.panel__image img {
    display: none;
}
.panel__content {
    z-index: 1;
}
/* BP */
@media screen and (min-width: 25em) { /* 400px */
    .section--two-panels .row::after {
        top: -40px;
        left: -40px;
    }
    .section--two-panels .row.foodtruck::after {
        left: calc(-540px + 20%);
    }
}
/* BP small */
@media screen and (min-width: 37.5em) { /* 600px */
    .section--two-panels .row::after {
        content: none;
    }
    .panel__image {
        position: relative
    }
    .panel__image img {
        display: block;
        position: absolute;
        left: -20px;
        top: -76px;
        height: 386px;
        max-width: unset;
    }
    .panel__content {
        text-align: center;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .content__text {
        padding: 16px 48px;
    }
    .panel__image img {
        left: 0;
        left: calc(50% - 110px);
        top: -120px;
    	height: 464px;
    }
    .section--two-panels .row.foodtruck::after {
        left: calc(-540px + 35%);
    }
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .content__text {
    	padding: 16px 120px;
    }
    .panel__image img {
        left: 0;
        top: -130px;
        height: 564px;
    }
}
/* BP x-large*/
@media screen and (min-width: 87.5em) { /* 1400px */
    .content__text {
    	padding: 16px 40px;
    }
	.panel__image img {
        height: 634px;
    }
}

/* ---- social gallery ---- */
.section--social__heading {
	width: 100%;
	padding-left: 0;
}
.section--social__heading h1 {
	display: inline-block;
	margin-bottom: 0;
}
.section--social__heading .social-list {
	float: right;
}
.social-slider__item {
	height: 100%;
	display: block;
	position: relative;
	float: left;
}
.social-slider__img {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.section--social__heading .social-list {
	display: none;
}
.section--social__heading .social-list .icon {
	display: unset;
}
.section--social__heading .social-list .icon svg {
    margin-bottom: -0.2em;
}
.social-slider__link {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(35, 33, 33, 0);
	position:relative;
	z-index:100;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}
.social-slider__link .icon {
	opacity: 0;
	width: 60px;
    height: 60px;
}
.social-slider__list {
	height: 200px;
	margin:0;
	padding: 0;
	list-style-type: none;
}
.slick-list,
.slick-track {
	height: 100%;
}

.slick-list {
	padding: 0;
}
.social-slider__link:hover,
.social-slider__link:focus {
	background: rgba(35, 33, 33, 0.75);
}
.social-slider__link:hover .icon,
.social-slider__link:focus .icon {
	opacity: 1;
}

@media screen and (min-width: 32.5em) { /* 520px */
	.section--social__heading .social-list {
		display: inline-block;
	}
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.social-slider__list {
		height: 400px;
	}
	.section--social__heading {
		width: 75%;
	}
}
/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */
	.social-slider__list {
		height: 460px;
	}
	.section--social__heading {
		width: 50%;
	}
}
/* BP large */
@media only screen and (min-width: 87.5em) { /* 1400px */
	.social-slider__list {
		height: 400px;
	}
}
/* ---- Magnific Popup ---- */
.mfp-image-holder .mfp-content {
    max-width: 1000px;
}

.mfp-ajax-holder .mfp-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 50px;
    max-width: 700px;
}
.mfp-bottom-bar div {
    font-size: 1.6rem;
    text-align: right;
    padding: 8px 16px;
    opacity: 0.5;
}
img.mfp-img {
    background: rgba(0,0,0,0.8);
}

/* Generic style for all widgets */

.widget h3.widget-title {

}


/* ------------------------------------------------------
**** Shop checkout page

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

.checkout-sidebar {
    padding: 20px;
    border: 1px solid #fff;
    margin-bottom: 16px;
}
.checkout-summary {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checkout-summary__item {
    padding: 0 0 12px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.25);
    font-size: 1.6rem;
}

.checkout-summary-item__img-wrap {
    position: relative;
    width: 65px;
    border: 1px solid rgba(255,255,255,.25);
    margin-right: 16px;
    float: left;
}

.checkout-summary-item__img-wrap__count {
    background: #f8e71c;
    color: #000;
    font-size: 1.5rem;
    padding: 2px 2px 3px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 100px;
    text-align: center;
    position: absolute;
    bottom: 8px;
    right: -8px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
}


/* Shipping line item styles: remove image & qty from shipping */
.checkout-summary__item:last-child {
    text-align: right;
}

.checkout-summary__item:last-child .checkout-summary-item__img-wrap {
    display: none;
}


.checkout-summary-item__item-name {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.checkout-summary-total {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}




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

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

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

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

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

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

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


/* - Depth 1 - */
.widget-RelatedLinks li.depth1 {
    border-bottom: none;
    position: relative;
    padding-left: 10px;
    border-left: 3px solid rgba(255,255,255,0.15);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.widget-RelatedLinks li.depth1 > a {
    padding: 4px 0;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

/* On */
.widget-RelatedLinks li.depth1.on {
    border-left: 3px solid rgba(255,255,255,0.5);
}
.widget-RelatedLinks li.depth1.on > a{
    transform: translateX(8px);
}

/* Hover */
.widget-RelatedLinks li > a:hover,
.widget-RelatedLinks li > a:focus {
    color: #F8E71C;
}
.widget-RelatedLinks li.depth1.on > a:hover,
.widget-RelatedLinks li.depth1.on > a:focus,
.widget-RelatedLinks li.depth1 > a:hover,
.widget-RelatedLinks li.depth1 > a:focus {
    transform: translateX(8px);
}
.widget-RelatedLinks li.depth1.on:hover,
.widget-RelatedLinks li.depth1:hover {
	border-color: #F5E800;
}


/* - Depth 2 - */
.widget-RelatedLinks li.depth2 {
    font-size: 1.6rem;
}
.widget-RelatedLinks li.depth2 a:before {
    content: "- ";
}
.widget-RelatedLinks li.depth2 a {
    padding: 3px 0 3px 24px;
}

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


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

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

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

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

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

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

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

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

.children-gallery-list-item-image-placeholder {
    padding-top: 86.666666667%;
    margin-bottom: 10px;
    position: relative;
    background: #e6e1e1 no-repeat center center;
    /*background-image: url(../images/.png);*/
    background-size: 120px auto;
}

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

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

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


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


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

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

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

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

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

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

.sponsors-list__img-wrap {
    width: 100%;
    border: 1px solid #ccc;
    padding: 8px;
    position: relative;
    margin-bottom: 8px;
    -webkit-transition: border-color 250ms ease-in-out;
    -o-transition: border-color 250ms ease-in-out;
    transition: border-color 250ms ease-in-out;
}

.sponsors-list__item-link:hover .sponsors-list__img-wrap {
    border: 1px solid #444;
}

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

.sponsors-list__img-wrap__vert-center {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
}

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

/* ---- Posts module ---- */
.post-hub__item__content {
    border: 1px solid #D0D0D0;
    margin: 0 0 24px;
}
.post-hub__body {
    padding: 32px 24px 0 24px;
}
.post-hub__footer {
    padding: 24px 24px 32px 24px;
}
.post-hub__body p {
    color: #fff;
}
.post-hub__body p,
.post-hub__footer p {
    margin-bottom: 0;
}
.post-hub__item {
    position: relative;
    padding-top: 40px;
}
.post-hub__item::before {
    content: attr(data-categories);
    position: absolute;
    top: 0;
    left: 1rem;
    font-family: brothers, Copperplate, Georgia, serif;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 50px;
    padding-left: 23px;
}
.post-hub__item--hidden {
    padding-top:0;
}
.post-hub__body p,
.post-list__link {
    font-size: 2rem;
}
.post-list__link a {
    text-decoration: none;
	color: #F5E800;
}
.post-list__link a:hover,
.post-list__link a:focus,
.post-list__link a:active {
    color: #EF6A28;
}
.post-list__link a:after {
    content: "...";
    display: inline-block;
}
.post-list__link a:hover:after,
.post-list__link a:focus:after,
.post-list__link a:active:after {
    color: #EF6A28;
}
.post-hub__body h2 {
	font-size: 2rem;
    line-height: 1.2;
}
.post-hub__body h2 a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0);
}
.post-hub__body h2 a:hover,
.post-hub__body h2 a:focus,
.post-hub__body h2 a:active {
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.promo-posts .post-hub__body h2 a:hover,
.promo-posts .post-hub__body h2 a:focus,
.promo-posts .post-hub__body h2 a:active {
    border-bottom: 1px solid rgba(255,255,255,0);
    opacity:0.8;
}
.button.post-hub-filterlist__button {
    background-color: rgba(255,255,255,0.4);
    box-shadow: none;
}
.button.post-hub-filterlist__button:hover,
.button.post-hub-filterlist__button:focus {
    background-color: rgba(255,255,255,0.6);
    box-shadow: none;
    color: #232121;
}
.post-hub-filterlist__button.button-grey {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}
.post-hub-filterlist__button.button-grey:hover,
.post-hub-filterlist__button.button-grey:focus {
    background-color: rgba(255,255,255,0.6);
}
.post-hub__body > .row {
    display: none;
}
.post-hub__footer .button {
    padding: 8px 24px;
    width: 100%;
}
.post-list__categories .button {
	background-color: #ECECEC;
	color: #232121;
	box-shadow: 0px 0px 0px 4px #ECECEC inset, 0px 0px 0px 5px #A4A4A4 inset;
}
.post-list__categories .button:hover,
.post-list__categories .button:focus {
    background-color: #C8C8C8;
    color: #232121;
    box-shadow: 0px 0px 0px 4px #C8C8C8 inset, 0px 0px 0px 5px #818181 inset;
}
.post-list__heading a {
	color: #fff;
	text-decoration: none;
}
.post-list__heading a:hover,
.post-list__heading a:focus {
	text-decoration: underline;
}
.post-hub .post-hub__item.stay-hidden-im-scrollin {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
@supports (display: flex) {
    .post-list__link a:hover,
    .post-list__link a:focus,
    .post-list__link a:active {
        color: #F5E800;
    	background: -webkit-gradient(linear,left top,right top,from(#FFF050),to(#ec4e20));
    	background: linear-gradient(to right,#FFF050,#ec4e20);
    	    background-clip: border-box;
    	-webkit-background-clip: text;
    	-webkit-text-fill-color: transparent;
    	-webkit-box-decoration-break: clone;
    	box-decoration-break: clone;
    	text-shadow: none;
    }
    .post-list__link a:hover:after,
    .post-list__link a:focus:after,
    .post-list__link a:active:after {
        color: #F5E800;
    	background: -webkit-gradient(linear,left top,right top,from(#EF6A28),to(#ec4e20));
    	background: linear-gradient(to right,#EF6A28,#ec4e20);
    	    background-clip: border-box;
    	-webkit-background-clip: text;
    	-webkit-text-fill-color: transparent;
    	-webkit-box-decoration-break: clone;
    	box-decoration-break: clone;
    	text-shadow: none;
    }
}


/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .post-hub__item__content {
        margin: 0 0 32px;
    }
    .post-hub__body {
        padding: 40px 40px 0;
    }
    .post-hub__footer {
        padding: 17px 40px 40px;
    }
    .post-hub__item {
        padding-top: 40px;
    }
    .post-hub__item--hidden {
        padding-top:0;
    }
    .post-hub__item::before {
        font-size: 40px;
        line-height: 50px;
        padding-left: 40px;
    }
    .promo-posts .post-hub__body h2 {
        font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
        font-size: 2rem;
    }
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .post-hub__item::before {
        font-size: 48px;
        line-height: 60px;
    }
    .post-hub__item {
        padding-top: 48px;
    }
    .post-hub__item::before {
        padding-left: 40px;
    }
    .post-hub__item--hidden {
        padding-top:0;
    }
    .promo-posts .post-hub__item::before {
    	padding-left: 48px;
    }
    .promo-posts .post-hub__body p,
    .promo-posts .post-list__link {
        font-size: 2.4rem;
    }
    .promo-posts .post-hub__body h2 {
        font-size: 2.4rem;
    }
}

/* BP */
@media screen and (min-width: 87.5em) { /* 1400px */
    .promo-posts .post-hub__body p,
    .promo-posts .post-list__link,
    .promo-posts .post-hub__body h2 {
        font-size: 3.2rem;
    }
}

.sidebar-linklist__item {
	color: #fff;
	border-bottom: none;
}
.sidebar-linklist__item__button::before {
	color: #fff;
	top: calc(0.4em);
	-webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
button.sidebar-linklist__item__button {
	color: #fff;
	font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
}
.sidebar-linklist__item__sublist__item__link::before {
    content: "\2013\00a0";
    color: #fff;
}
.sidebar-linklist__item__sublist__item__link {
	color: #fff;
}
.sidebar-linklist__item__sublist__item__link:hover,
.sidebar-linklist__item__sublist__item__link:focus {
	color: #FFF050;
}

/* ---- Home page custom view ---- */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .recipe .post-hub__body h2 {
        border: 0;
        clip: unset;
        height: unset;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: static;
        width: unset;
        font-family: brandon-grotesque, Helvetica, Arial, sans-serif;
        font-size: 2rem;
        text-transform: none;
        line-height: 1.5;
    }
    .recipe .post-hub__body h2 a:hover,
    .recipe .post-hub__body h2 a:focus,
    .recipe .post-hub__body h2 a:active {
        border-color: transparent;
    }
    .recipe .post-hub__body p {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .promo-post-column--left .post-hub__item__content {
        margin-right: 8px;
    }
    .promo-post-column--right .post-hub__item__content {
        margin-left: 8px;
    }
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .recipe .post-hub__body h2 {
        font-size: 2.4rem;
    }
    .promo-posts .post-hub__body {
        padding: 48px 48px 0;
    }
    .promo-posts .post-hub__footer {
        padding: 17px 48px 48px;
    }
    .post-hub__item__content {
	    margin: 0 0 48px;
    }
    .promo-post-column--left .post-hub__item__content {
        margin-right: 12px;
    }
    .promo-post-column--right .post-hub__item__content {
        margin-left: 12px;
    }
}
/* BP */
@media screen and (min-width: 87.5em) { /* 1400px */
    .recipe .post-hub__body h2 {
        font-size: 3.2rem;
    }
    .promo-post-column--left {
        padding-right: 24px;
    }
    .promo-post-column--right {
        padding-left: 24px;
    }
}

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

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

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

iframe {
    border: 0;
}

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

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

/* ---- products promo ---- */
.product__item__inner {
    margin: 8px 8px;
}
.product__item__image {
	position: relative;
}
.product__item__image__img {
	width: 100%;
}
.product__item__image__link {
    display: block;
    position: relative;
    overflow: hidden;
}

.product__item__text a {
    color: #fff;
    text-decoration: none;
    transition: all 50ms ease;
    border-bottom: 1px solid rgba(255,240,80,0);
}
.product__item__text a:hover,
.product__item__text a:focus,
.product__item__text a:active {
    color: #FFF050;
    border-bottom: 1px solid rgba(255,240,80,1);
}

/* Text */
.product__item__text {
	text-align: center;
	margin: 15px 0 0;
	position: relative;
}
.product__item__text__title p {
    color: #fff;
}
.product__item .info-tag {
    opacity: 0;
}

/* Grid */
.product-grid {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin-left: -0.4rem;
	margin-right: -0.4rem;
	margin-top: 1.5rem;
	margin-bottom: -1.5rem;
}
.product-grid .product__item {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	margin-bottom: 2.5rem;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.button.button--product {
    padding: 8px 24px;
    width: 100%;
}

/* Hover */
@media only screen and (max-width: 64em) { /* 1024px */
	.product__item__image__link:focus .product__item__image__img {
		opacity: 0.6;
	}
	.product__item__hover,
	.product__item__text__link {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
	.product__item__text__link-wrap {
		display: block;
		text-decoration: none;
	}
	.product__item__text__link-wrap:hover .product__item__text__title {
		text-decoration: underline;
	}
}

/* BP Extra Small */
@media only screen and (min-width: 37.5em) { /* 600px */
	/* 5 */
	.product-grid .product__item {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33.33333%;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
}

/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
	.product-grid .product__item {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
	.product__item__text {
		margin-top: 25px;
	}
}

/* BP Medium */
@media only screen and (min-width: 62.5em) { /* 1000px */
	.product-grid {
		margin-top: 3rem;
		margin-bottom: -1rem;
	}
	.product-grid .product__item {
		margin-bottom: 3.5rem;
	}
}

/* Wider than iPad */
@media only screen and (min-width: 64.063em) { /* 1025px */
	.product__item__hover {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		text-align: center;
		background-color: transparent;
		padding: 15px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-transition: background-color 50ms ease;
		-o-transition: background-color 50ms ease;
		transition: background-color 50ms ease;
	}
	.product__item__hover__inner {
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
		-webkit-animation-duration: 50ms;
		        animation-duration: 50ms;
		-webkit-animation-name: shrinkOutFade;
		        animation-name: shrinkOutFade;
	}
	.subtitle.product__item__hover__title {
		font-size: 2rem;
	}
	.product__item__hover__title {
		display: inline-block;
		margin: 0;
	}
	.product__item__hover__title:after {
		content: " ";
		height: 1px;
		margin: 8px 0;
		display: block;
		background: #979797;
        content: "";
	}
    .product__item__text__title p span {
        display: none;
    }

	/* Hover */
	.product__item:hover .product__item__hover {
		background-color: rgba(35, 33, 33, 0.8);
		-webkit-transition-duration: 350ms;
		     -o-transition-duration: 350ms;
		        transition-duration: 350ms;
	}
	.product__item:hover .product__item__hover__inner {
		-webkit-animation-name: growInFade;
		        animation-name: growInFade;
		-webkit-animation-duration: 350ms;
		        animation-duration: 350ms;
	}

	.product__item:hover .product__item__text__title {
		-webkit-animation-name: shrinkOutFade;
		        animation-name: shrinkOutFade;
		-webkit-animation-duration: 50ms;
		        animation-duration: 50ms;
	}
	.product__item:hover .product__item__text__link {
		-webkit-animation-name: growInFade;
		        animation-name: growInFade;
		-webkit-animation-duration: 350ms;
		        animation-duration: 350ms;
	}
    .product__item:hover .info-tag {
        opacity: 1;
    }

	.product__item__text__title {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		-webkit-animation-name: growInFade;
		        animation-name: growInFade;
		-webkit-animation-duration: 350ms;
		        animation-duration: 350ms;
	}
	.product__item__text__link {
		margin: 0;
		opacity: 0;
		-webkit-animation-name: shrinkOutFade;
		        animation-name: shrinkOutFade;
		-webkit-animation-duration: 50ms;
		        animation-duration: 50ms;
	}
	.product__item__text__title,
	.product__item__text__link {
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}
}

/* BP Large */
@media only screen and (min-width: 77.5em) { /* 1240px */
	.product__item__hover {
		padding: 25px;
	}
	.product__item__hover__title:after {
		margin-top: 18px;
		margin-bottom: 18px;
	}
	.subtitle.product__item__hover__title {
		font-size: 1.6rem;
	}
}

/* ---- Product results ---- */
.product-result__inner {
    border-bottom: 1px solid #D0D0D0;
    height: 100%;
    position: relative;
}

.product-result__image {
    position: relative;
}
.product-result__image > a {
    padding-bottom: 100%;
    display: block;
    position: relative;
    background-color: transparent;
}
.product-result__image__img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Text */
.product-result__text {
    margin: 16px 0 0;
    position: relative;
    padding-bottom: 16px;
}
.product-result__text a {
    text-decoration: none;
}
.product-result__text a,
.product-result__text a:focus {
    color: inherit;
}
.product-result__text a:hover {
    color: #F8E71C;
}
.product-result__text__title {
    margin-bottom: 4px;
    line-height: 1.25;
}
.product-result__text__price sub {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}
.product-result__text__price {
    margin-bottom: 0;
	letter-spacing: 0.5px;
	font-size: 2rem;
	font-family: bebas-neue, Helvetica, Arial, sans-serif;
}
.product-result__text__price span {
	font-size: 0.8em;
	text-transform: uppercase;
}
.product-result__hover__links__button {
    width: 100%;
}
.product-result__hover__title a {
    color: #ECECEC;
}
.product-result__hover__title a:hover,
.product-result__hover__title a:focus {
    color: #F8E71C;
}

/* Grid */
.product-result-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -0.4rem;
    margin-right: -0.4rem;
    margin-top: 1.5rem;
    margin-bottom: -0.5rem;
}
.product-result-grid .product-result {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    margin-bottom: 2.5rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

/* Animate in */
.product-result-grid.product-result-grid--animate-in .product-result {
    -webkit-animation-name: growIn;
    animation-name: growIn;
    -webkit-animation-duration: 250ms;
    animation-duration: 250ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/* Tags */
.product__tag {
    position: absolute;
    top: -7px;
    left: 13px;
    background-color: #F8E71C;
    z-index: 1;
    color: #232121;
    text-transform: uppercase;
    font-weight: 600;
	font-family: bebas-neue, Helvetica, Arial, sans-serif;
    padding: 1px 5px 0;
    font-weight: bold;
    font-size: 1.6rem;
    box-shadow: -2px 2px 8px 0px rgba(0,0,0,0.3);
}
.product__tag:before {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 7px 7px;
    border-color: transparent transparent #505050 transparent;
    position: absolute;
    right: 100%;
    top: 0;
}

/* Sale */
.product__tag.product__tag--sale {
    background-color: #F8E71C;
}
.product__tag.product__tag--sale:before {
    border-color: transparent transparent #7B730D transparent;
}


/* In bag */
.product__tag.product__tag--bag {
    background-color: #ECECEC;
	color: #232121;
}
.product__tag.product__tag--bag:before {
    border-color: transparent transparent #505050 transparent;
}

/* BP Extra Small */
@media only screen and (min-width: 37.5em) { /* 600px */

}

/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
    .product__tag {
        font-size: 2rem;
    }
    .product-result-grid .product-result {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33%;
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
    }
}

/* BP Medium */
@media only screen and (min-width: 62.5em) { /* 1000px */
    .product-result__text {
        padding-bottom: 20px;
        margin-top: 25px;
    }
    .product-result-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 2.5rem;
        margin-bottom: 0;
    }
    .product-result-grid .product-result {
        margin-bottom: 4.5rem;
    }
}

/* Hover */
@media only screen and (max-width: 64em) { /* 1024px */
    .product-result__hover {
        display: none;
    }
}

/* Wider than iPad */
@media only screen and (min-width: 64.063em) { /* 1025px */
    .product-result__hover {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        background-color: transparent;
        padding: 25px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: background-color 50ms ease;
        -o-transition: background-color 50ms ease;
        transition: background-color 50ms ease;
    }
    .product-result__hover__title {
        display: inline-block;
        margin: 0;
        font-size: 2.4rem;
        font-family: bebas-neue, Helvetica, Arial, sans-serif;
    }
    .product-result__hover__title:after {
        content: "";
        height: 1px;
        margin: 24px 0;
        display: block;
        background: #979797;
        max-width: 280px;
    }

    .product-result__hover__links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .product-result__hover__inner {
        opacity: 0;
    }

    /* Bold */
    .product-result__hover__links__item--bold a {
        font-weight: bold;
    }
    .product-result__hover__links a,
    .product-result__hover__links a:hover,
    .product-result__hover__links a:focus {
        color: #232121;
    }
    .product-result__hover__links a:hover,
    .product-result__hover__links a:focus {
        text-decoration: underline;
    }


    /* Hover */
    .product-result:hover .product-result__hover {
        background-color: rgba(35, 33, 33, 0.8);
        -webkit-transition-duration: 350ms;
        -o-transition-duration: 350ms;
        transition-duration: 350ms;
    }
    .product-result:hover .product-result__hover__inner {
        -webkit-animation-name: growInFade;
        animation-name: growInFade;
        -webkit-animation-duration: 350ms;
        animation-duration: 350ms;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}

/* BP Large */
@media only screen and (min-width: 77.5em) { /* 1240px */
    .product__tag {
        left: 20px;
        padding: 4px 7px;
        font-size: 1.7rem;
    }
    .product-result-grid {
        margin-top: 3rem;
    }
}

/* ---- product single view ---- */
.product-controller .page-title {
    display: none;
}
.product__item__header {
	width: 100%;
}
.product__image {
	position: relative;
	width: 100%;
}
.product__image__link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.product__price {
	letter-spacing: 0.5px;
	font-size: 2.4rem;
	font-family: bebas-neue, Helvetica, Arial, sans-serif;
	line-height: 40px;
}
.product__price span {
	font-size: 0.8em;
	text-transform: uppercase;
	padding-left: 0.25em;
	color: #C7C7C7;
}
.product__price:first-child span:first-child {
	padding-right: 0.25em;
	padding-left: 0;
}
.product__info {
	width: 100%;
	display:block;
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	padding: 0;
}
.product__info li {
	display: inline-block;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 50%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: flex-start;
	flex-direction: flex-start;
	align-items: baseline;
}
.product__info li:last-child {
	margin-bottom: 1.6rem;
}
.product__price__from,
.product__price__from span {
	color: #919090;
}
.product__cta a {
	width: 100%;
	padding: 8px 40px;
}
.product__content {
	padding: 20px 0;
}
/* ---- Override module product tabs ---- */
.product__item .tabs__list {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
	display: block;
	width: 100%;
}
.product__item .tabs__item {
    display: none;
}
.product__item .tabs__item:first-child {
    display: inline-block;
}
.product__item .tabs-content {
    padding: 24px;
}

.product__item .tabs-content__item {
    border: 0;
    clip: auto;
    height: auto;
    margin: auto;
    overflow: visible;
    position: relative;
    width: auto;
    padding: 0;
}

@media screen and (min-width: 37.5em) {
	.product__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}
	.product__price,
	.product__cta {
		display: flex;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		width: 50%;
	}
	.product__image__link {
		min-height: 0;
	}
	.product__cta {
		justify-content: flex-end;
	}
	.product__cta p {
		width: 75%;
	}
}
@media screen and (min-width: 48em) {
	.product__item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}
	.product__content,
	.product__image {
		display: flex;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}
    .product__item .tabs-content {
        padding: 40px;
    }
	.product__content .tabs {
		display: flex;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		width: 100%;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		text-align: left;
	}
	.product__price p {
	}
	.product__price__current {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 62em) {
	.product__content {
		padding: 0 40px;
	}
	.product__content {
		width: 50%;
	}
	.product__image {
		width: 50%;
	}
	.product__item {
		-ms-flex-pack: left;
		-webkit-box-pack: left;
		justify-content: left;
		text-align: left;
	}
	.product__price {
		line-height: 44px;
	}
}

/* ---- Gumroad integration styles ---- */
.button--gumroad {
    background-color: #fff;
    font-size: 16px;
	font-style: normal;
	padding: 12px 24px 8px;
    display: inline-block;
	width: 160px;
    font-size: 2rem;
    text-align: center;
    color: #848484;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    position: relative;
}
.button--gumroad:before {
    content: "";
    position: absolute;
    top:0;
    left:0;
    height: 3px;
    width: 100%;
    background-image: url(https://gumroad.com/button/button_bar.jpg);
    background-position: left top;
    background-repeat: repeat;
}
.button--gumroad:hover {
    background-position: left top;
    color: #fff;
    background-color: #848484;
}

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

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

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

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

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

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

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

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

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

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

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

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

    @page {
        margin: 0.5cm;
    }

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

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