/*
 Theme Name:	Instax EU
 Author:		Greendog
 Author URI:	https://www.greendogmedia.co.uk/
 Text Domain:	instaxeu
 Version:		1.0.0
*/

/* --------------------
	Global
-------------------- */

:root {
	--yellow: #ffd940;
	--amber: #ffbd40;
	--orange: #ff8026;
	--scarlet: #ff4d33;
	
	--pink: #f266bf;
	--red: #cc1400;
	--purple: #830065;
	--violet: #685bc7;
	
	--plum: #6c1d45;
	--turquoise: #40c3c3;
	--teal: #00677f;
	--blue: #001e62;
	
	--celeste: #d9ffff;
	--mint: #c0f2ea;
	--grey: #999999;
	--dark: #262626;
	
	--light: #eeeeee;
	--white: #ffffff;
	--black: #000000;
	--body: #212529;
}

html {
	font-size: 18px;
}

body {
	font-family: "Roboto", sans-serif;
	line-height: 1.5;
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1;
}

.section-heading-primary {font-size: 72px;}
.section-heading-secondary {font-size: 60px;}

@media screen and (max-width: 991px) {
	.section-heading-primary {font-size: 50px;}
	.section-heading-secondary {font-size: 40px;}
}

img {
    max-width: 100%;
}

.text-14 {
	font-size: 14px;
}

.text-yellow {color: var(--yellow);}
.text-amber {color: var(--amber);}
.text-orange {color: var(--orange);}
.text-scarlet {color: var(--scarlet);}
.text-pink {color: var(--pink);}
.text-red {color: var(--red);}
.text-purple {color: var(--purple);}
.text-violet {color: var(--violet);}
.text-plum {color: var(--plum);}
.text-turquoise {color: var(--turquoise);}
.text-teal {color: var(--teal);}
.text-blue {color: var(--blue);}
.text-celeste {color: var(--celeste);}
.text-mint {color: var(--mint);}
.text-grey {color: var(--grey);}
.text-dark-grey {color: var(--dark);}
.text-light-grey {color: var(--light);}

a {
    color: var(--purple);
}

a:hover {
    color: var(--plum);
    text-decoration: none;
}


nav#navi ul li a { color:#000; }


.btn,
.btn.focus,
.btn:focus {
    padding: 5px 40px;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    color: var(--white);
    background-color: var(--body);
    font-size: 17px;
    font-weight: 700;
	cursor: pointer;
}

.btn:hover {
    color: var(--white);
    text-decoration: none;
}

.btn.btn-white {background-color: var(--white);}
.btn.btn-white:hover {background-color: #f5f5f5;}

.btn.btn-black {background-color: var(--black);}
.btn.btn-black:hover {background-color: #444444;}

.btn.btn-purple {background-color: var(--purple);}
.btn.btn-purple:hover {background-color: #9c0f7c;}

.btn.btn-teal {background-color: var(--teal);}
.btn.btn-teal:hover {background-color: #12819a;}

.btn.btn-yellow {background-color: var(--yellow);}
.btn.btn-yellow:hover {background-color: #fdcc19;}

.btn.btn-text-black {color: var(--black);}
.btn.btn-text-orange {color: var(--orange);}

.bg-yellow {background-color: var(--yellow);}
.bg-amber {background-color: var(--amber);}
.bg-orange {background-color: var(--orange);}
.bg-scarlet {background-color: var(--scarlet);}
.bg-pink {background-color: var(--pink);}
.bg-red {background-color: var(--red);}
.bg-purple {background-color: var(--purple);}
.bg-violet {background-color: var(--violet);}
.bg-plum {background-color: var(--plum);}
.bg-turquoise {background-color: var(--turquoise);}
.bg-teal {background-color: var(--teal);}
.bg-blue {background-color: var(--blue);}
.bg-celeste {background-color: var(--celeste);}
.bg-mint {background-color: var(--mint);}
.bg-grey {background-color: var(--grey);}
.bg-dark-grey {background-color: var(--dark);}
.bg-light-grey {background-color: var(--light);}
.bg-swatches {background-color:#c0f2ea; }

.background-image {
    position: absolute;
    top: 0;
	bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grecaptcha-badge { visibility: hidden; }

section,
.container {
    position: relative;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}

/* --------------------
	Other
-------------------- */

#size-indicator {
    position: fixed;
    z-index: -1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

#mobile-indicator,
#phablet-indicator,
#tablet-indicator {
    display: none;
}

@media (max-width: 575px) {
	#mobile-indicator {
        display: block;
	}
}

@media (max-width: 767px) {
	#phablet-indicator {
        display: block;
	}
}

@media (max-width: 991px) {
	#tablet-indicator {
        display: block;
	}
}

.big-text,
.big-text span {
	font-weight: 900;
	line-height: 1;
}

.big-text.back {
    color: var(--black);
}

.big-text.front {
	color: transparent;
	-webkit-text-stroke: 1px var(--black);
	-webkit-text-fill-color: transparent;
}

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

label {
	display: block;
	margin-bottom: .5em;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    color: #333;
    font-size: 1em;
	font-weight: 400;
    display: block;
    border: solid 1px #aaa;
    width: 100%;
	height: auto;
    box-sizing: border-box;
    padding: 10px;
    outline: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
	transition: all .2s linear;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
	-moz-box-shadow: none;
    -webkit-box-shadow: none;
	box-shadow: none;
}

textarea {
	height: 200px;
	overflow: auto;
	resize: vertical;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
    background: #edecec;
    border-color: #112c27;
    color: #000;
    outline: none;
}

select {
	color: #333;
	font-size: 1em;
    font-weight: 400;
	display: block;
    border: 1px solid #ccc;
	width: 100%;
	height: auto;
	box-sizing: border-box;
    padding: 12px 20px;
    background: url("../../img/film/arrow_down.png") no-repeat;
    background-position: right 10px center;
    outline: none;
	-webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
	transition: all .2s linear;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
	box-shadow: none;
}

select::-ms-expand {
    display: none;
}


button,
[type="button"],
[type="reset"],
[type="submit"] {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    background: #b7b7b7;
    color: #fff;
    font-size: 1.1em;
    font-weight: 400;
    padding: 8px 20px;
    overflow: hidden;
    clear: both;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
}

button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    background: #5d5d5d;
}

input[type="radio"],
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
	-webkit-appearance: listbox;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

::-webkit-input-placeholder,
:-moz-placeholder {
    color: #aaa;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 0 40px 0 !important;
    border: 2px solid #00677f !important;
    text-align: center;
    padding: 10px 20px !important;
    font-size: 15px;
}

.wpcf7-spinner {
    display: block;
    margin: 20px auto 0;
}

.post-password-form label {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.post-password-form input[type="password"] {
    padding: 5px 8px 2px;
    line-height: 1;
}

.post-password-form input[type="submit"] {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    font-size: 14px;
    background-color: var(--teal);
    margin: 0;
    padding: 6px 20px;
}

/* --------------------
	Header
-------------------- */

#header {
    position: relative;
    background: #fff;
    z-index: 1000;
    width: 100%;
}

#header .header-logo {
    display: block;
    position: relative;
    width: 120px;
    height: 60px;
    margin: 25px 0;
}

#header .header-logo img {
    position: absolute;
    width: 120px;
    height: 60px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
	-moz-transition: opacity 0.3s ease, visibility 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#header nav ul.menu {
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

#header nav ul.menu > li {
    margin: 0 0 0 16px;
}

#header nav ul.menu > li > a {
    display: block;
    font-size: 16px;
    padding: 12px 0;
    font-weight: 700;
    color: #000;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

#header nav ul.menu > li.has-sub-menu-block a:not([href]):not([tabindex]) {
    cursor: default;
}

#header nav ul.menu > li.has-sub-menu-block > a::after {
    font-family: FontAwesome;
    content: "\f107";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    padding-left: 6px;
    font-size: 16px;
    display: inline-block;
	vertical-align: middle;
    color: #000;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

#menu .sub-menu-block {
    position: absolute;
    z-index: 100;
    display: block;
    top: 75px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 70px 0 0 0;
    color: #3f3f3f;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

	#menu .has-sub-menu-block.active .sub-menu-block {
		visibility: visible;
		opacity: 1;
		padding: 35px 0 0 0;
		z-index: 110;
	}

	#menu .has-sub-menu-block:not(.active) .sub-menu-block {
		pointer-events: none;
	}

#menu .sub-menu-block-container {
    background: #ffd940;
	padding: 0 15px;
}

#menu .nav-film-icon {
    font-size: 14px;
}

#menu .nav-film-icon::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 14px;
    border: 2px solid #3f3f3f;
    margin-right: 10px;
    margin-top: -2px;
}

	#menu .nav-film-icon-square::before {
		height: 20px;
		width: 20px;
		margin-top: -4px;
	}

	#menu .nav-film-icon-wide::before {
		height: 20px;
		width: 28px;
		margin-top: -4px;
	}

@media screen and (max-width: 1439px) {
    #menu .nav-film-icon {
        font-size: 13px;
    }

    #menu .nav-film-icon::before {
        margin-right:  6px;
    }
}

#menu .split-by-type .sub-menu-block-item {
	flex-basis: 0;
    flex-grow: 1;
	padding: 0 1%;
}

	#menu .split-by-type .sub-menu-block-item.sub-menu-block-item-mini {
		padding: 0 0.5%;
	}
	
	@media screen and (max-width: 1199px) {
		#menu .split-by-type .sub-menu-block-item {
			padding: 0 0.5%;
		}
	}

#menu #printers-sub-menu .sub-menu-block-item,
#menu .standard-sub-menu .sub-menu-block-item {
	padding: 0 20px;
}

#menu .sub-menu-block-img {
	height: 100px;
	margin-bottom: 10px;
}

#menu #printers-sub-menu .sub-menu-block-img {
    height: 120px;
}

#menu .standard-sub-menu .sub-menu-block-img {
    height: 130px;
}

#menu .sub-menu-block-img img {
    max-height: 100%;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

#menu .sub-menu-block-item-title {
	color: #3f3f3f;
	font-size: 15px;
	font-weight: 700;
}

#menu #printers-sub-menu .sub-menu-block-item-title {
    font-size: 17px;
}

#menu .sub-menu-block-item-new {
    display: inline-block;
    background: #3f3f3f;
    color: #ffd940;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    padding: 4px 8px;
    margin: 10px 0 0 0;
}

#menu .nav-divider {
	padding: 0 1%;
}
	
#menu .nav-divider::after {
    content: "";
    display: block;
    width: 3px;
    height: 125px;
    background: #3f3f3f;
    margin: 0 auto;
}

#menu .nav-compare-link {
    display: inline-block;
    background: #3f3f3f;
    color: #ffd940 !important;
    line-height: 1;
    padding: 5px 6px;
    margin: 2px 0 2px 6px;
}

.slicknav_menu {
	display: none;
}

@media screen and (max-width: 991px) {
	#menu {
		display: none;
	}
	
	.slicknav_menu {
		display: block;
	}
	
	#header .container {
		max-width: none;
	}

	#header .header-logo {
        width: 80px;
        height: 40px;
        margin: 20px 0;
	}

	#header .header-logo img {
		width: 80px;
		height: 40px;
	}
}

/* --- mobile nav --- */

.slicknav_menu .sub-menu-block {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    color: #3f3f3f;
    background: #fff;
}

	.slicknav_menu .sub-menu-block-container {
		background: #ffd940;
		margin-bottom: 10px;
		padding: 0 15px;
	}

.slicknav_menu .nav-film-icon {
    font-size: 14px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid #3f3f3f;
}

	.slicknav_menu .nav-film-icon.nav-film-icon-mini {
		border: none;
	}

.slicknav_menu .nav-film-icon::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 14px;
    border: 2px solid #3f3f3f;
    margin-right: 10px;
    margin-top: -2px;
}

	.slicknav_menu .nav-film-icon-square::before {
		height: 20px;
		width: 20px;
		margin-top: -4px;
	}

	.slicknav_menu .nav-film-icon-wide::before {
		height: 20px;
		width: 28px;
		margin-top: -4px;
	}

.slicknav_menu .sub-menu-block-item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 20px
}

@media screen and (max-width: 767px) {
	.slicknav_menu .sub-menu-block-item {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media screen and (max-width: 675px) {
	.slicknav_menu .sub-menu-block-item {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}

@media screen and (max-width: 460px) {
	.slicknav_menu .sub-menu-block-item {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.slicknav_menu .sub-menu-block-img {
	height: 100px;
	margin-bottom: 10px;
}

.slicknav_menu #printers-sub-menu .sub-menu-block-img {
    height: 120px;
    margin-bottom: 10px;
}

.slicknav_menu .sub-menu-block-img img {
    max-height: 100%;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.slicknav_menu .sub-menu-block-item-title {
	color: #3f3f3f;
	font-size: 14px;
	font-weight: 700;
}

.slicknav_menu #printers-sub-menu .sub-menu-block-item-title {
    font-size: 17px;
}

.slicknav_menu .sub-menu-block-item-new {
    display: inline-block;
    background: #3f3f3f;
    color: #ffd940;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    padding: 4px 8px;
    margin: 10px 0 0 0;
}

.slicknav_menu .nav-compare-link {
    display: block;
    background: #3f3f3f;
    color: #ffd940 !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 10px;
    margin: 0 -15px;
}

/* --- language switcher --- */

.lang-switcher {
    display: block;
    position: absolute;
    top: 0;
    right: 15px;
	z-index: 10;
}

.lang-switcher a {
    display: inline-block;
    margin: 0 0 0 5px;
    font-size: 12px;
    color: #999;
}

.lang-switcher a:hover {
    color: #000;
}

.lang-switcher a.current-lang {
    font-weight: 700;
    color: #000;
}

/* --------------------
	Header - transparent
-------------------- */

@media screen and (max-width: 991px) {
	#header .header-logo img.header-logo-image-white {
		opacity: 0;
		visibility: hidden;
	}
}

@media screen and (min-width: 992px) {
	#header.transparent {
		position: absolute;
		-webkit-transition: background 0.3s ease;
		-moz-transition: background 0.3s ease;
		transition: background 0.3s ease;
	}

	#header.transparent:not(:hover) {
		background: transparent;
	}

	#header.transparent:not(:hover) .header-logo img.header-logo-image,
	#header.transparent:hover .header-logo img.header-logo-image-white,
	#header:not(.transparent) .header-logo img.header-logo-image-white {
		opacity: 0;
		visibility: hidden;
	}

	#header.transparent:not(:hover) nav ul.menu > li > a {
		color: #fff;
	}

	#header.transparent:not(:hover) nav ul.menu > li.has-sub-menu-block > a::after {
		color: #fff;
	}
}

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

/* --- video --- */

.video-sound {
	display: block;
	position: absolute;
	width: 32px;
	height: 26px;
	right: 15px;
	bottom: 30px;
	background-image: url("../../img/film/sound-on.png");
	background-size: 32px 26px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.video-sound.video-sound-off {
	background-image: url("../../img/film/sound-off.png");
}

.full-screen-video {
    position: relative;
    width: 100%;
    height: 100vh;
	max-height: 100vw;
    overflow: hidden;
}

.full-screen-video video {
    position: absolute;
    top: 50%;
    left: 50%;
	-o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.video-overlay-text {
    position: absolute;
    width: 100%;
    padding: 0 10vw;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.continue {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	left: 50%;
	bottom: 30px;
	background-image: url("../../img/film/continue.svg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0.6;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

.continue:hover,
.continue:focus {
    opacity: 0.9;
}

@media screen and (max-width: 767px) {
	.continue {
		width: 30px;
		height: 30px;
	}
}

/* --- standard video / product page video --- */

.vs-video {
    position: relative;
    margin-bottom: 80px;
}

.vs-title {
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    margin: 80px 0 30px;
}

	.vs-title.vs-title-smaller {
		font-size: 72px;
	}

.vs-text {
    width: 80%;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.vs-video video {
    display: block;
}

.vs-sound {
	display: block;
	position: absolute;
	width: 32px;
	height: 26px;
	right: 15px;
	bottom: 30px;
	background-image: url("../../img/film/sound-on.png");
	background-size: 32px 26px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.vs-sound.vs-off {
	background-image: url("../../img/film/sound-off.png");
}

@media (max-width: 991px) {
	.vs-title {
		font-size: 80px;
		margin: 70px 0 20px;
	}
	
		.vs-title.vs-title-smaller {
			font-size: 50px;
		}
	
	.vs-text {
		margin: 0 auto 42px;
		font-size: 16px !important;
	}
}

@media (max-width: 768px) {
	.vs-title {
		font-size: 50px;
		margin: 50px 0 20px;
	}

	.vs-video {
		margin-bottom: 50px;
	}
}

/* --- which instax --- */

.which-instax h3 {
	font-size: 72px;
}

.which-instax-img {
	position: relative;
}

.which-instax-q-mark {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.which-instax-q-mark svg {
    display: block;
    position: absolute;
    width: 100%;
    height: 99%;
    top: 50%;
    left: 40%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.which-instax-q-mark:first-child svg .q-mark {
    fill: #fff;
}

.which-instax-q-mark:last-child svg .q-mark {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1px;
}

@media screen and (max-width: 1199px) {
	.which-instax h3 {
		font-size: 56px;
	}
}

@media screen and (max-width: 991px) {
	.which-instax h3 {
		font-size: 42px;
	}
}

@media screen and (max-width: 767px) {
	.which-instax h3 {
		font-size: 56px;
	}

	.which-instax-img {
		width: 290px;
	}
	
	.which-instax-q-mark svg {
        left: 50%;
    }
}

@media screen and (max-width: 575px) {
	.which-instax h3 {
		font-size: 46px;
	}
}

.which-instax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.which-instax-bg img {
    position: absolute;
    animation-name: floating;
	-webkit-animation-name: floating;
	animation-duration: 20s;	
	-webkit-animation-duration: 20s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes floating {
	0% {
		transform: translateY(-10%);	
	}
	50% {
		transform: translateY(10%);	
	}	
	100% {
		transform: translateY(-10%);
	}			
}

@-webkit-keyframes floating {
	0% {
		-webkit-transform: translateY(-4%);	
	}
	50% {
		-webkit-transform: translateY(4%);	
	}	
	100% {
		-webkit-transform: translateY(-4%);
	}			
}

.which-instax-bg img:nth-child(1) {
    height: 110%;
    top: 5%;
    left: -5%;
    animation-delay: -12s;
}

.which-instax-bg img:nth-child(2) {
    height: 100%;
    top: 0;
    left: 19%;
    animation-delay: 0s;
}

.which-instax-bg img:nth-child(3) {
    height: 100%;
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

.which-instax-bg img:nth-child(4) {
    height: 120%;
    top: 10%;
    left: 50%;
    animation-delay: -4s;
}

.which-instax-bg img:nth-child(5) {
    height: 100%;
    top: 0;
    left: 75%;
    animation-delay: -10s;
}

@media screen and (max-width: 767px) {
	.which-instax-bg img:nth-child(1) {
		height: auto;
		width: 60%;
		top: 5%;
		left: -20%;
	}

	.which-instax-bg img:nth-child(2) {
		height: auto;
		width: 70%;
		top: 60%;
		left: -15%;
	}

	.which-instax-bg img:nth-child(3) {
		height: auto;
		width: 62%;
		top: 30%;
		left: 20%;
	}

	.which-instax-bg img:nth-child(4) {
		height: auto;
		width: 60%;
		top: -5%;
		left: 50%;
	}

	.which-instax-bg img:nth-child(5) {
		height: auto;
		width: 80%;
		top: 40%;
		left: 60%;
	}
}

/* --- cameras/printers/film --- */

.cpf-cameras {
    display: block;
    position: relative;
    padding-bottom: 40%;
    background: #ffd940;
	margin-bottom: 30px;
}

.cpf-printers,
.cpf-film {
    display: block;
    position: relative;
    padding-bottom: 100%;
}

.cpf-printers {
    background: #40c3c3;
}

.cpf-film {
    background: #830065;
}

.cpf .big-text,
.cpf .cpf-image {
	position: absolute;
    top: 50%;
    left: 50%;
	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.cpf .big-text {
	text-align: center;
	width: 70%;
	height: 100%;
}

.cpf .cpf-image {
	height: 65%;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

	.cpf .cpf-cameras .cpf-image {
		height: 75%;
	}

	.cpf .in-view .cpf-image {
		opacity: 1;
	}

.cpf .big-text span {
	position: absolute;
	display: block;
	white-space: nowrap;
	margin: auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
	opacity: 0;
}

@media screen and (max-width: 767px) {
	.cpf-cameras,
	.cpf-printers,
	.cpf-film {
		padding-bottom: 50%;
		margin: 0;
	}
	
	.cpf .cpf-image,
	.cpf .cpf-cameras .cpf-image {
		height: 70%;
	}
	
	.cpf .container {
		max-width: none;
	}

	.cpf .container .col-12 {
		padding: 0;
	}
}

/* --- film link / accessories link --- */

.film-link, .accessories-link {
    overflow: hidden;
}

.film-link-images,
.accessories-link-images {
	padding: 20% 0;
}

.film-link img {
    position: absolute;
    height: 105%;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}

.film-link img:nth-child(1) {
    top: 0%;
    right: 75%;
}

.film-link img:nth-child(2) {
    top: -10%;
    left: 78%;
}

.accessories-link img {
    position: absolute;
    height: 100%;
}

.accessories-link img:nth-child(1) {
    top: 0%;
    right: 68%;
}

.accessories-link img:nth-child(2) {
    top: 0;
    left: 68%;
}

.film-link-content,
.accessories-link-content {
    position: absolute;
    display: block;
    width: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1199px) {
	.film-link-images,
	.accessories-link-images {
		padding: 25% 0;
	}
}

@media screen and (max-width: 991px) {
	.film-link-images,
	.accessories-link-images {
		padding: 30% 0;
	}
}

@media screen and (max-width: 767px) {
	.film-link-images,
	.accessories-link-images {
		padding: 40% 0;
	}

	.film-link img:nth-child(1) {
		right: 80%;
	}

	.film-link img:nth-child(2) {
		left: 83%;
	}
	
	.accessories-link img:nth-child(1) {
		right: 70%;
	}

	.accessories-link img:nth-child(2) {
		left: 68%;
	}

	.film-link-content,
	.accessories-link-content {
		width: 60%;
	}
}

@media screen and (max-width: 575px) {
	.film-link-images,
	.accessories-link-images {
		padding: 80% 0;
	}

	.film-link img {
		height: 32%;
	}

	.film-link img:nth-child(3) {
		bottom: 72%;
		right: 70%;
	}

	.film-link img:nth-child(4) {
		bottom: 70%;
		left: 76%;
	}

	.film-link img:nth-child(5) {
		top: 72%;
		right: 54%;
	}

	.film-link img:nth-child(6) {
		top: 70%;
		left: 70%;
	}
	
	.accessories-link img {
		height: 30%;
		-webkit-transform: rotate(-35deg);
		transform: rotate(-35deg);
	}

	.accessories-link img:nth-child(3) {
		bottom: 75%;
		right: 75%;
	}

	.accessories-link img:nth-child(4) {
		bottom: 75%;
		left: 79%;
	}

	.accessories-link img:nth-child(5) {
		top: 71%;
		right: 57%;
	}

	.accessories-link img:nth-child(6) {
		top: 70%;
		left: 70%;
	}

	.film-link-content,
	.accessories-link-content {
		width: 80%;
		top: 46%;
	}
}

/* --- which instax compare view --- */

.which-instax-compare-view .gallery-content {
    position: relative;
    padding-top: 75%;
}

.which-instax-compare-view .gallery-content .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

.which-instax-compare-view .gallery-content .gallery-image.current {
    opacity: 1;
}

.which-instax-compare-view .color-swatch {
    padding-top: 30px;
}

.which-instax-compare-view .color-swatch .swatch-item {
    width: 33px;
    height: 33px;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #fff;
    box-shadow: inset 0px 0px 0px 2px #fff;
}

.which-instax-compare-view .color-swatch .swatch-item:hover {
    border-color: #d1d3d5;
}

.which-instax-compare-view .color-swatch .swatch-item.current,
.which-instax-compare-view .color-swatch .swatch-item.current:hover {
    border-color: #000;
}

.which-instax-compare-view .color-labels {
    position: relative;
    font-size: 14px;
    height: 1.7em;
}

.which-instax-compare-view .color-labels .swatch-item-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
	opacity: 0;
}

.which-instax-compare-view .color-labels .swatch-item-name.current {
	opacity: 1;
}

@media only screen and (max-width: 767px) {
    .gallery-row .col-6:nth-child(1) {
        padding-right: 7px;
    }

    .gallery-row .col-6:nth-child(2) {
        padding-left: 7px;
    }
}

@media only screen and (max-width: 575px) {
	.which-instax-compare-view h5 {
		font-size: 18px;
	}
	
	.which-instax-compare-view .color-swatch .swatch-item {
		width: 28px;
		height: 28px;
	}
}

.film-type-icon::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 14px;
    border: 2px solid #212529;
}

	.film-type-icon.film-type-icon-square::before {
		width: 20px;
	}

	.film-type-icon.film-type-icon-wide::before {
		width: 28px;
	}

/* --- horizontal lifestyle scroller --- */

.horizontal-scroller {
	padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.horizontal-scroller::-webkit-scrollbar {
    display:none;
}

.horizontal-scroller-card {
    flex: 0 0 auto;
    width: 36vw;
	margin-bottom: 180px;
}

.horizontal-scroller-card .horizontal-scroller-card-content {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-right: 10px solid #fff;
}

    .horizontal-scroller-card:last-child .horizontal-scroller-card-content {
    	border-right: none;
    }

.horizontal-scroller-card-content .featured-product {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
}

.horizontal-scroller-card-content a {
    position: absolute;
    bottom: 30px;
    left: 50%;
	white-space: nowrap;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.baron__backer {
    position: absolute;
    height: 180px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.baron__track {
    position: absolute;
    height: 3px;
    width: 90%;
    max-width: 600px;
    bottom: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.baron__free {
    position: relative;
    width: 100%;
    height: 2px;
    background: #ccc;
}

.baron__bar {
    position: absolute;
    top: -9px;
    height: 20px;
    background: #212529;
    box-shadow: inset 0px 8px 0px #fff, inset 0px -8px 0px #fff;
    cursor: grab;
}

._dragging,
._dragging .baron__bar {
    cursor: grabbing;
}

.baron__instruction {
    position: absolute;
    bottom: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 16px;
    line-height: 1;
}

@media only screen and (max-width: 991px) {
	.horizontal-scroller-card {
		width: 42vw;
		margin-bottom: 160px;
	}
	
	.baron__backer {
		height: 160px;
	}

	.baron__track {
		bottom: 90px;
	}
	
	.baron__instruction {
		bottom: 50px;
	}
}

@media only screen and (max-width: 767px) {
	.horizontal-scroller-card {
		width: 60vw;
		margin-bottom: 0;
	}
	
	.baron__backer,
	.baron__track,
	.baron__instruction	{
		display: none;
	}
}

@media only screen and (max-width: 575px) {
	.horizontal-scroller-card {
		width: 90vw;
	}
}

/* --- explore cameras/printers --- */

.explore .col-mini {
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
}

.explore .col-square {
    -ms-flex: 0 0 34%;
    flex: 0 0 34%;
    max-width: 34%;
}

.explore .col-wide {
    -ms-flex: 0 0 38%;
    flex: 0 0 38%;
    max-width: 38%;
}

.film-dims {
    position: relative;
    display: inline-block;
    margin-bottom: 80px;
    font-size: 10px;
    line-height: 1;
    color: #fff;
}

.film-dims img {
    height: 200px;
}

.film-dims .v-dims, .film-dims .h-dims {
    position: absolute;
}

.film-dims .v-dims {
    top: 0;
    bottom: 0;
    right: -50px;
    width: 40px;
}

.v-dims .photo {
    position: absolute;
    top: 20px;
    height: calc(100% - 60px);
    width: 0;
    left: 10px;
    border-right: 1px dotted #fff;
}

.v-dims .frame {
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    left: 30px;
    border-right: 1px dotted #fff;
}

.v-dims .photo::before, .v-dims .photo::after,
.v-dims .frame::before, .v-dims .frame::after {
	content: "";
	display: block;
	position: absolute;
	height: 9px;
	width: 9px;
	left: -4px;
	top: -1px;
	background-image: url("../../img/film/white-triangle.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.v-dims .photo::after,
.v-dims .frame::after {
	top: auto;
	bottom: -1px;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}

.v-dims .frame span,
.v-dims .photo span {
	position: absolute;
	background: #40c3c3;
	white-space: nowrap;
	padding: 5px 0;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.film-dims .h-dims {
    right: 0;
    left: 0;
    bottom: -40px;
    height: 30px;
}

.h-dims .photo {
    position: absolute;
    left: 12px;
    width: calc(100% - 24px);
    height: 0;
    top: 6px;
    border-bottom: 1px dotted #fff;
}

.h-dims .frame {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    top: 25px;
    border-bottom: 1px dotted #fff;
}

.h-dims .photo::before, .h-dims .photo::after,
.h-dims .frame::before, .h-dims .frame::after {
	content: "";
	display: block;
	position: absolute;
	height: 9px;
	width: 9px;
	top: -4px;
	left: -1px;
	background-image: url("../../img/film/white-triangle.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
}

.h-dims .photo::after,
.h-dims .frame::after {
	left: auto;
	right: -1px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.h-dims .frame span,
.h-dims .photo span {
	position: absolute;
	background: #40c3c3;
	white-space: nowrap;
	padding: 0 5px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media only screen and (max-width: 575px) {
	.film-dims img {
		height: 160px;
	}
	
	.v-dims .photo {
		top: 16px;
		height: calc(100% - 48px);
	}
}

.explore-indicator {
    position: relative;
}

.explore-indicator .rail {
    border-bottom: 1px solid #fff;
}

.explore-indicator .carriage {
    position: absolute;
    width: 150px;
    height: 5px;
    background: #ffd940;
    top: -2px;
    left: 14%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: left 0.3s ease-out;
    transition: left 0.3s ease-out;
}

.explore-indicator .carriage.square {
    left: 45%;
}

.explore-indicator .carriage.wide {
    left: 81%;
}

.explore-section {
	display: none;
}

.explore-section.current {
	display: block;
}

.explore .color-swatch {
    padding-top: 5px;
}

.explore .color-swatch .swatch-item {
    width: 33px;
    height: 33px;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #fff;
    box-shadow: inset 0px 0px 0px 2px #fff;
}

.explore .color-swatch .swatch-item:hover {
    border-color: #d1d3d5;
}

.explore .color-swatch .swatch-item.current,
.explore .color-swatch .swatch-item.current:hover {
    border-color: #000;
}

@media only screen and (max-width: 575px) {
	.explore .color-swatch .swatch-item {
		width: 28px;
		height: 28px;
	}
}

.explore .gallery:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.explore .gallery-content {
	position: relative;
	height: 400px;
}

.explore .explore-image-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s linear, visibility 0.4s linear;
    transition: opacity 0.4s linear, visibility 0.4s linear;
}

.explore .explore-image-container.current {
	visibility: visible;
	opacity: 1;
}

.explore .order-lg-last .explore-image-container {
	text-align: left;
}

.explore .gallery-image {
	position: relative;
    height: 100%;
}

.explore .big-text {
    position: absolute;
    text-align: left;
    top: 50%;
    left: 0;
    width: 100%;
    font-size: 130px;
	white-space: nowrap;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

	.explore .explore-section-square .big-text {
		font-size: 120px;
	}

.explore .order-lg-last .big-text {
	text-align: right;
}

.explore .big-text span {
    display: inline-block;
    text-align: center;
}

.film-selection-mini,
.film-selection-square {
    border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 1439px) {
    .explore .explore-section-square .big-text {
        font-size: 110px;
    }
}

@media only screen and (max-width: 991px) {
	.explore .explore-image-container,
	.explore .order-lg-last .explore-image-container,
	.explore .big-text,
	.explore .order-lg-last .big-text {
		text-align: center;
	}
	
	.explore .gallery-content {
		height: 340px;
	}

	.explore .big-text {
		font-size: 120px;
	}
}

@media only screen and (max-width: 575px) {
	.explore .gallery-content {
		height: 240px;
	}

	.explore .big-text {
		font-size: 80px;
	}
	
	.explore .explore-section-square .big-text {
        font-size: 70px;
    }
}

/* --- image and tagline --- */

.image-and-tagline {
    font-size: 100px;
    font-weight: 700;
    line-height: 1.2;
}

.block-item-new {
    display: inline-block;
    background: #3f3f3f;
    color: #ffd940;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    padding: 4px 8px;
    margin: 0;
    position: relative;
    top: -2px;
}

.image-and-tagline .row {
    min-height: 500px;
}

@media only screen and (max-width: 1439px) {
	.image-and-tagline {
		font-size: 7vw;
	}
}

@media only screen and (max-width: 767px) {
	.image-and-tagline {
		font-size: 6vw;
	}
}

@media only screen and (max-width: 575px) {
	.image-and-tagline .background-image {
		position: relative;
		padding-bottom: 100%;
	}
	
    .image-and-tagline {
		font-size: 50px;
	}
}

/* --- showcase mini link --- */

.showcase-mini-link .blurb {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
	opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
    z-index: 1;
}

.showcase-mini-link .big-text {
    display: block;
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
}

.showcase-mini-link .big-text span {
	position: absolute;
	display: block;
	white-space: nowrap;
	margin: auto;
	top: 46%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.showcase-mini-link img {
	position: relative;
	width: 400px;
    margin-top: 120px;
}

@media only screen and (max-width: 1199px) {
	.showcase-mini-link img {
		width: 300px;
		margin-top: 80px;
	}
}

@media only screen and (max-width: 767px) {
	.showcase-mini-link img {
		width: 260px;
		margin-top: 200px;
	}
	
	.showcase-mini-link .big-text {
		max-width: 260px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.showcase-mini-link .big-text span {
		top: 28%;
	}
}

/* --- showcase mini evo --- */

.showcase-mini-evo .blurb {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
	opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
    z-index: 1;
}

.showcase-mini-evo .big-text {
    display: block;
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
}

.showcase-mini-evo .big-text span {
	position: absolute;
	display: block;
	white-space: nowrap;
	margin: auto;
	top: 46%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.showcase-mini-evo img {
	position: relative;
	width: 420px;
	margin: 60px 0;
}

@media only screen and (max-width: 1199px) {
	.showcase-mini-evo img {
		width: 340px;
		margin: 40px 0;
	}
}

@media only screen and (max-width: 767px) {
	.showcase-mini-evo img {
		width: 260px;
		margin-top: 100px;
	}
	
	.showcase-mini-evo .big-text {
		max-width: 260px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.showcase-mini-evo .big-text span {
		top: 28%;
	}
}

/* --- showcase share sp-3 --- */

.showcase-share-sp-3 svg {
	position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
	fill: #fff;
    opacity: 0.1;
}

.showcase-share-sp-3 img {
	margin-top: 60px;
}

@media only screen and (max-width: 767px) {
	.showcase-share-sp-3 img {
		width: 100%;
		max-width: 380px;
	}
}

/* --- showcase link wide --- */

.showcase-link-wide .blurb {
    position: absolute;
    top: 0;
    right: 0;
    width: 520px;
    opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
    z-index: 1;
}

.showcase-link-wide .big-text {
    display: block;
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
}

.showcase-link-wide .big-text span {
	position: absolute;
	display: block;
	white-space: nowrap;
	margin: auto;
	top: 46%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.showcase-link-wide img {
	position: relative;
	width: 320px;
	margin: 80px 0 60px 60px;
}

@media only screen and (max-width: 1199px) {
	.showcase-link-wide img {
		width: 300px;
		margin: 60px 0 50px 40px;
	}
}

@media only screen and (max-width: 767px) {
	.showcase-link-wide img {
		width: 260px;
		margin: 60px 0 30px 0;
	}
	
	.showcase-link-wide .big-text {
		max-width: 260px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.showcase-link-wide .big-text span {
		top: 28%;
	}
}

/* --- showcase mini 11 --- */

.showcase-mini-11 img {
	margin-top: 120px;
	max-width: 80%;
	opacity: 0;
	-webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
	/*
	-webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    */
}

.showcase-mini-11 img.triggered {
    opacity: 1;
    /*
    -webkit-transform: translateX(0);
    transform: translateX(0);
    */
}

.showcase-mini-11 .svg-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    overflow: hidden;
}

.showcase-mini-11 svg {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.showcase-mini-11 .svg-container:first-child svg {
    fill: #fff;
}

.showcase-mini-11 .svg-container:last-child svg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1px;
}

@media only screen and (max-width: 767px) {
	.showcase-mini-11 .svg-container {
		width: 100%;
	}
}

/* --- showcase mini 40 --- */

.showcase-mini-40 img {
	margin-top: 60px;
	max-width: 80%;
	opacity: 0;
	-webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
	/*
	-webkit-transform: translateX(100%);
    transform: translateX(100%);
    */
}

.showcase-mini-40 img.triggered {
    opacity: 1;
    /*
    -webkit-transform: translateX(0);
    transform: translateX(0);
    */
}

.showcase-mini-40 .svg-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-mini-40 svg {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.showcase-mini-40 .svg-container:first-child svg {
    fill: #fff;
}

.showcase-mini-40 .svg-container:last-child svg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1px;
}

/* --- banner mini 40 --- */

.banner-mini-40 .img-container img {
	width: 180px;
}

@media only screen and (max-width: 767px) {
	.banner-mini-40 .container,
	.banner-mini-40 .row,
	.banner-mini-40 .col-12:first-child {
		max-width: none;
	    padding: 0;
		margin: 0;
	}

	.banner-mini-40 .background-image {
		position: relative;
		padding-bottom: 100%;
	}
}

@media only screen and (min-width: 768px) {
	.banner-mini-40 .background-image {
		left: 15px;
	}
	
	.banner-mini-40 .img-container {
		width: 40%;
		padding-right: 3vw;
	}
	
	.banner-mini-40 .img-container img {
		width: auto;
	}
}

/* --- film hero --- */

.film-hero {
	font-size: 1.2rem;
}

.film-hero .h2 {
	font-size: 100px;
}

@media only screen and (max-width: 991px) {
	.film-hero .h2 {
		font-size: 80px;
	}
}

/* --- deco film --- */

.deco-film .bg-violet {
/*    background-image: url("../../img/film/deco-bg.png");*/
    background-size: cover;
    background-position: center;
}

.deco-heading {
    font-size: 100px;
}

@media only screen and (max-width: 767px) {
	.deco-heading {
		font-size: 80px;
	}
}

.stills {
    display: block;
    position: relative;
    margin-top: -100vh;
}

.still {
    display: block;
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.wipe-container{
    position: relative;
}

.wipes {
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
}

.wipe {
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.wipe-background {
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.wipe-content img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 620px;
}

.wipe-content .film-name {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 420px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

@media only screen and (max-width: 1439px) {
    .wipe-content img {
		width: 500px;
	}

	.wipe-content .film-name {
		width: 390px;
		font-size: 34px;
	}
}

@media only screen and (max-width: 1199px) {
	.wipe-content img {
		width: 420px;
	}

	.wipe-content .film-name {
		width: 340px;
	}
}

@media only screen and (max-width: 991px) {

	.wipe-content .film-name {
		top: auto;
		bottom: 75%;
		width: 100%;
		text-align: center;
		-webkit-transform: none;
		transform: none;
		padding-bottom: 40px;
/**/

	}
}

/* --- film animation --- */

.display-5 {
	font-size: 1.25rem;
}

.film-animation {
	height: 550vh;
}

.film-anim {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-content: center;
	position: sticky;
	top: 0;
}

.film-anim-wrapper {
    height: 50%;
    width: 100%;
    position: relative;
}

.scene-actor {
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-bottom: 10%;
}

@media (min-width: 768px) {
    .scene-actor {
        margin-bottom: initial;
    }
}

.film-anim-continue {
    filter: invert(1);
    bottom: -60px;
    /* margin-left: -20px; */
    cursor: default;
    -webkit-transition: none;
    transition: none;
    width: 26px;
    height: 26px;
}

@media screen and (max-width: 767px) {
	.film-anim-continue {
		/* margin-left: -15px; */
	}
}

.film-anim-scroll {
    position: absolute;
    width: 100%;
    bottom: -30px;
    font-size: 16px;
}

.anim-floating{
	animation-name: floatingAnim;
	-webkit-animation-name: floatingAnim;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes floatingAnim {
	0% {
		transform: translateY(0%);	
	}
	50% {
		transform: translateY(8%);	
	}	
	100% {
		transform: translateY(0%);
	}			
}

.film-anim-camera {
    background-image: url("/common2/img/film/film-animation/scene_camera.png");
    bottom: -10%;
}

.film-anim-camera-flash {
    background-image: url("/common2/img/film/film-animation/scene_camera_flash.png");
    opacity: 0;
    bottom: -10%;
}

.film-anim-film {
    background-image: url("/common2/img/film/film-animation/scene_film_1.png");
    bottom: -10%;
}

.film-anim-film-frame {
    background-image: url("/common2/img/film/film-animation/scene_frame.png");
    bottom: -10%;
}

.film-anim-film-image-1 {
    background-image: url("/common2/img/film/film-animation/scene_film_image_1.png");
    opacity: 0;
}

.film-anim-film-square {
    background-image: url("/common2/img/film/film-animation/scene_film_square.png");
    opacity: 0;
}

.film-anim-film-wide {
    background-image: url("/common2/img/film/film-animation/scene_film_wide.png");
    opacity: 0;
}

.film-anim-text {
    display: flex;
    width: 100%;
    text-align: center;
}

.film-anim-text-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

@media (min-width: 768px) {
    .film-anim-text-wrapper {
        top: 5%;
    }
}

.film-anim-title {
    opacity: 0;
}

.film-anim-desc {
    opacity: 0;
}

.film-anim-film-trigger {
    margin-top: 200vh;
}

.film-anim-links {
    position: absolute;
    bottom: 20px;
    font-size: 16px;
    padding: 10px 20px;
    padding-bottom: env(safe-area-inset-bottom, 20px);
    color: var(--orange);
}

@media screen and (min-width: 992px) {
    .film-anim-links {
        bottom: 50px;
    }
}

.film-anim-links a {
    color: var(--orange);
}

@media screen and (max-width: 767px) {
	.film-anim-links {
		font-size: 14px;
		padding: 6px 12px;
	}
}

.film-anim-film-shine {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.1) 40%, rgba(246, 255, 255, 0.1) 100%);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -25%;
    width: 50%;
    height: 100%;
    opacity: 0;
}

.progress-ring-wrapper {
    position: absolute;
    bottom: -20%;
    opacity: 0;
}

@media screen and (min-width: 992px) {
    .progress-ring-wrapper {
        right: 0%;
        bottom: unset;
    }
}

@media screen and (min-width: 1200px) {
    .progress-ring-wrapper {
        right: 25%;
    }
}

.progress-ring__circle {
    transition: 0.35s stroke-dashoffset;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.progress-ring-time {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    color: #b3b3b3;
    font-size: 2rem;
    line-height: 120px;
}

.progress-ring-caption {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding-top: 0.5rem;
    line-height: 1;
    font-size: 0.8rem;
}

/* --- film selector --- */

.size-select figure {
    position: relative;
    cursor: pointer;
}

.size-select figure.disabled {
    opacity: 0.25;
}

@media screen and (max-width: 991px) {
	.size-select figure.size-select-item {
		padding: 0 6px;
	}
}

.size-select figure .size-item {
    display: flex;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    justify-content: center;
    align-content: center;
    transition: all 0.25s ease-in;
}

.size-select figure.current .size-item {
    background-color: #999999;
}

.size-select figure.current .size-item span {
    border-color: #fff;
}

.size-select figure.current figcaption {
    opacity: 1;
}

.size-select figcaption {
    position: absolute;
	white-space: nowrap;
    bottom: -2rem;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    min-width: 100px;
    opacity: 0;
    line-height: 2rem;
    transition: opacity 0.25s ease-in;
    will-change: opacity;
}

.size-item {
    cursor: pointer;
}

.size-item span {
    border: 2px solid #262626;
    display: block;
    width: 24px;
    height: 24px;
    margin: auto;
}

.size-item.size-mini span {
    width: 18px;
}

.size-item.size-wide span {
    width: 36px;
}

.size-item.current {
    border-color: #fff;
}

@media screen and (min-width: 992px) {
	.film-selector .selections {
		min-height: 560px;
	}
	
    .size-select {
        flex-direction: column;
    }

    .size-select .size-select-item {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }

    .size-select .size-select-item .size-item {
        width: 48px;
    }

    .size-select .size-select-item figcaption {
        position: relative;
        left: 0;
        bottom: initial;
        transform: none;
        text-align: left;
        margin: 0 0 0 0.5rem;
        line-height: 48px;
        opacity: 1;
    }
}

#buyFilmDirectBtn.disabled,
.style-films .btn.disabled {
    opacity: 0;
    visibility: hidden;
    background-color: var(--light);
    color: var(--grey);
}

.film-size {
    display: none;
}

.film-size.current {
    display: block;
}

.style-films {
    display: flex;
    height: 100%;
}

.style-film {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.style-film.current {
    display: flex;
}

.style-film figcaption {
    color: #830065;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 1rem 0;
}

.style-film .btn {
    margin-bottom: 2rem;
}

.style-swatches {
    padding: 1rem 0;
}

.style-swatch {
    width: 44px;
    height: 44px;
    background: #fff center no-repeat;
    background-size: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    margin: auto;
}

.style-swatch:hover {
    opacity: 0.5;
}

.style-swatch.current:before {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border: 1px solid #000;
    border-radius: 50%;
}

.scroll-wrapper {
    position: relative;
    padding: 0 50px;
    margin: auto;
    width: 596px;
	justify-content: center;
	display: flex;
}

@media screen and (max-width: 767px) {
	.scroll-wrapper {
		width: 410px;
	}
}

@media screen and (max-width: 575px) {
	.scroll-wrapper {
		width: 286px;
	}
}

.scroll-wrapper.scroll-arrows-show .scroll-arrow {
    display: block;
}

.scroll-wrapper .scroll-items {
    overflow-x: scroll;
    overflow-y: visible;
    white-space: nowrap;
    text-align: center;
    position: relative;
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: start;
    -webkit-overflow-scrolling: touch;
}

.scroll-wrapper .scroll-items::-webkit-scrollbar {
    display: none;
}

.scroll-wrapper .scroll-items .scroll-item {
    flex: 0 0 auto;
    cursor: pointer;
}

.scroll-wrapper .scroll-arrow {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    cursor: pointer;
}

.scroll-wrapper .scroll-arrow:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent #3fc3c3 transparent transparent;
}

.scroll-wrapper .scroll-arrow:hover {
    opacity: 0.5;
}

.scroll-wrapper .scroll-arrow-prev {
    left: 0;
}

.scroll-wrapper .scroll-arrow-next {
    right: 0;
}

.scroll-wrapper .scroll-arrow-next:before {
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #3fc3c3;
}

.camera-icons {
    position: relative;
    margin-left: 1rem;
}

.camera-icons figure {
    color: #212529;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-left: 16px;
    transition: opacity 0.1s ease-in;
}

.camera-icons figure img {
    width: 64px;
    height: 58px;
    -o-object-fit: contain;
    object-fit: contain;
}

.camera-icons figure figcaption {
    font-size:.8rem;
	padding:10px 0;
}

.camera-icons figure:hover {
    opacity: 0.5;
}

.camera-icons-border {
    border-left: 1px solid #830065;
    position: absolute;
    top: 0px;
    bottom: 0px;
	left:-5px;
}

.camera-icons-border:before {
    content: "";
    border-top: 1px solid #830065;
    width: 16px;
    top: 0;
    left: 0;
    position: absolute;
}

.camera-icons-border:after {
    content: "";
    border-bottom: 1px solid #830065;
    width: 16px;
    bottom: 0;
    left: 0;
    position: absolute;
}

/* --- explore film size --- */

.film-slider {
	opacity: 0;
	-webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

.film-slider .slick-track {
    min-width: 870px;
}

.film-slider .film-slide {
    min-width: 290px;
}

.film-slider .slick-dots {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 30px 0 0 0;
    list-style: none;
    text-align: center;
}

.film-slider .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 6px;
    padding: 0;
    cursor: pointer;
}

.film-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 80px;
    height: 1px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ffffff;
    opacity: 1;
}

.film-slider .slick-dots li.slick-active button {
    background: #ffd940;
    height: 5px;
}

.film-slider li button:hover,
.film-slider li button:focus {
    outline: none;
}

/* --- accessories --- */

body.page-template-accessories-page {
    background: #eeeeee;
}

.accessories-hero {
    font-size: 1.2rem;
}

.accessories-hero .h2 {
	font-size: 70px;
}

@media only screen and (max-width: 991px) {
	.accessories-hero .h2 {
		font-size: 50px;
	}
}

@media only screen and (max-width: 575px) {
	.accessories-hero .h2 {
		font-size: 40px;
	}
}

.filter-title {
    position: relative;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 1px solid var(--dark);
    padding: 5px 30px 5px 0;
    cursor: pointer;
}

.filter-title::after {
	content: '';
	position: absolute;
	display: block;
	bottom: 18px;
	right: 2px;
	border-style: solid;
	border-width: 2px 2px 0 0;
	width: 12px;
	height: 12px;
	transform: rotate(135deg);
	vertical-align: top;
}

.filter-options {
    display: none;
    padding-top: 20px;
    padding-bottom: 10px;
}

.filter-options label {
	cursor: pointer;
}

.filter-options label input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}

.filter-options label .checkmark {
	position: relative;
	display: inline-block;
	vertical-align: text-top;
	height: 20px;
	width: 20px;
	background-color: var(--white);
	border: 1px solid var(--body);
	outline: none;
	margin: 0 10px 0 0;
}

.filter-options label input:checked ~ .checkmark {
	background-color: var(--body);
}

.accessory {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
	margin-bottom: 30px;
}

.accessory-l {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: var(--white);
}

.accessory-l .accessory-thumb {
    position: absolute;
	overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
}

.accessory-l .accessory-thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

    .accessory-l .accessory-thumb .variation-thumbs img {
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
	}

		.accessory-l .accessory-thumb .variation-thumbs img.current {
			opacity: 1;
			visibility: visible;
		}

.accessory-l .accessory-qv {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: background 0.2s linear;
    transition: background 0.2s linear;
}

.accessory-l.hover .accessory-qv {
	opacity: 1;
	visibility: visible;
}

.button-qv {
    position: relative;
    background-color: var(--amber);
    color: var(--black);
    text-transform: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    width: auto;
    padding: 11px 20px 10px 56px;
    margin: 0;
    outline: none;
    -webkit-transition: background 0.2s linear;
    transition: background 0.2s linear;
}

.button-qv::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
	width: 30px;
	height: 20px;
	background-image: url("../../img/film/eye.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.button-qv:hover {
	background-color: var(--orange);
}

.button-qv:focus {
	outline: none;
}

.accessory-r {
    background: var(--white);
    padding: 15px 20px 20px;
    text-align: center;
    -ms-flex-positive: 1!important;
    flex-grow: 1!important;
}

.accessory-r .accessory-swatch {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.accessory-r .accessory-swatch .swatch-item {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 5px 10px;
	cursor: pointer;
}

.accessory-r .accessory-detail {
    color: var(--dark);
}

.accessory-r .accessory-title {
    font-size: 16px;
    margin: 0 0 5px;
}

.accessory-r .accessory-price {
    margin: 0 0 5px;
    font-weight: 700;
}

.accessory-detail .retailer-modal-button,
.accessory-detail .buy-direct-button {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 17px;
    line-height: 1;
    margin: 5px 0 0 0;
    padding: 8px 20px;
    min-width: 90px;
    height: auto;
    font-weight: 700;
    border: 1px solid var(--yellow);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    cursor: pointer;
    background-color: var(--yellow);
    color: var(--black);
}

.accessory-detail .retailer-modal-button:hover,
.accessory-detail .retailer-modal-button:focus-visible,
.accessory-detail .buy-direct-button:hover,
.accessory-detail .buy-direct-button:focus-visible {
    border: 1px solid #fdcc19;
	background-color: #fdcc19;
	color: var(--black);
    outline: none;
}

.accessory-retailer-modal {
    position: absolute;
    display: none;
    width: 400px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
    margin-top: 0;
    padding: 20px;
    background-color: #ffffff;
    text-align: left;
    font-size: 0;
    z-index: 10;
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
}

.accessory-retailer-modal.active {
    display: block;
}

.accessory-retailer-modal::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 50%;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	display: block;
	height: 15px;
	width: 15px;
	background-color: #ffffff;
	pointer-events: none;
	box-shadow: 2px 2px 0px 2px #ffffff, -2px -2px 5px 0px rgb(0 0 0 / 10%);
}

@media (min-width: 576px) and (max-width: 991px) {
    .accessory:nth-child(2n+1) .accessory-retailer-modal {
        margin-left: 100px;
    }

    .accessory:nth-child(2n+1) .accessory-retailer-modal::before {
        margin-left: -100px;
    }

    .accessory:nth-child(2n+2) .accessory-retailer-modal {
        margin-left: -100px;
    }

    .accessory:nth-child(2n+2) .accessory-retailer-modal::before {
        margin-left: 100px;
    }
}

@media (min-width: 992px) {
    .accessory:nth-child(3n+1) .accessory-retailer-modal {
        margin-left: 100px;
    }

    .accessory:nth-child(3n+1) .accessory-retailer-modal::before {
        margin-left: -100px;
    }

    .accessory:nth-child(3n+3) .accessory-retailer-modal {
        margin-left: -100px;
    }

    .accessory:nth-child(3n+3) .accessory-retailer-modal::before {
        margin-left: 100px;
    }
}

.accessory-retailer-modal .arm-section {
    position: relative;
}

.accessory-retailer-modal .arm-section:not(.no-toggle) {
    display: none;
}

.accessory-retailer-modal .arm-section.current {
    display: block;
}

.accessory-retailer-modal .arm-section:not(.last-visible) {
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--light);
}

.accessory-retailer-modal .retailer-link {
    display: inline-block;
    width: 50%;
    padding: 5px 0;
    margin: 10px 0 0;
    text-align: center;
}

.accessory-retailer-modal .retailer-link:nth-child(-n+2) {
	margin: 0;
}

.accessory-retailer-modal .retailer-link img {
    height: 26px;
}

.accessory-retailer-modal .modal-swatch {
    position: relative;
    text-align: center;
}

.accessory-retailer-modal .modal-swatch .swatch-item {
    width: 30px;
    height: 30px;
    margin: 0 2px;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--white);
    box-shadow: inset 0px 0px 0px 2px var(--white);
}

.accessory-retailer-modal .modal-swatch .swatch-item.current,
.accessory-retailer-modal .modal-swatch .swatch-item.current:hover {
    border-color: var(--body);
}

@media (max-width: 575px) {
    .accessory {
        -ms-flex-direction: row!important;
        flex-direction: row!important;
        margin-bottom: 15px;
    }
    
    .accessory-l {
        -ms-flex: 0 0 40%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0;
    }

    .accessory-l .accessory-thumb {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        padding-bottom: 100%;
    }

    .accessory-l .accessory-thumb img {
        position: absolute;
    }

    .accessory-l .accessory-qv {
		display: block;
		width: auto;
		height: auto;
		top: 15px;
		left: 15px;
		right: 15px;
		padding-bottom: calc(100% - 30px);
	}

	.button-qv {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
		font-size: 14px;
		padding: 9px 20px 8px;
	}

	.button-qv::before {
		display: none;
	}

    .accessory-r {
        text-align: left;
        padding: 15px;
    }

    .accessory-r .accessory-detail {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column!important;
		flex-direction: column!important;
		height: 100%;
		-ms-flex-pack: justify!important;
		justify-content: space-between!important;
	}
	
	.accessory-r .accessory-swatch {
        -ms-flex-pack: start!important;
        justify-content: start!important;
    }

    .accessory-r .accessory-swatch .swatch-item {
        margin: 0 10px 10px 0;
    }
	
	.accessory-retailer-modal {
		width: 260px;
		padding: 10px;
	}
	
	.accessory-retailer-modal::before {
		margin-left: 35px;
	}

	.accessory-retailer-modal .arm-section:not(.last-visible) {
		padding: 0 0 10px;
		margin: 0 0 10px;
	}

	.accessory-retailer-modal .retailer-link img {
		height: 18px;
	}

	.accessory-detail .retailer-modal-button,
    .accessory-detail .buy-direct-button {
		font-size: 13px;
		min-width: 70px;
	}

	.accessory-r .accessory-price {
		font-size: 16px;
	}

	.accessory-retailer-modal .modal-swatch {
		padding: 0 0 10px;
		margin: 0 0 10px;
	}

	.accessory-retailer-modal .modal-swatch .swatch-item {
		width: 30px;
		height: 30px;
	}
}

/* --- quick view --- */

#qv-modal {
    position: fixed;
    display: none;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    #qv-modal.active {
        display: block;
    }

#qv-modal .qv-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

    #qv-modal .qv-modal-overlay .lds-spinner {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

#qv-modal .qv-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 900px;
    line-height: 1;
    height: auto;
    padding: 50px;
    background-color: var(--light);
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 991px) {
	#qv-modal .qv-modal-content {
		width: 700px;
	}
}

@media screen and (max-width: 767px) {
	#qv-modal .qv-modal-content {
		width: 90%;
		padding: 30px;
	}
}

@media screen and (max-width: 575px) {
	#qv-modal .qv-modal-content {
		padding: 20px;
		text-align: center;
	}
}

    #qv-modal .qv-modal-content.active {
        visibility: visible;
		opacity: 1;
    }

#qv-modal .container {
    max-width: none !important;
}

.modal-gallery {
    position: relative;
	width: 100%;
}

.modal-gallery .variation-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
}

	.modal-gallery .variation-gallery.sizing {
		position: relative;
	}

	.modal-gallery .variation-gallery.current {
		opacity: 1;
		visibility: visible;
	}

.modal-gallery .gallery-images {
	margin-bottom: 10px;
}

.modal-gallery .gallery-thumbs {
    margin: 0 -5px;
}

.modal-gallery .gallery-thumbs::before,
.modal-gallery .gallery-thumbs::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: var(--light);
    z-index: 1;
}

.modal-gallery .gallery-thumbs::after {
    left: auto;
    right: 0;
}

.modal-gallery .mg-thumb {
    margin: 0 5px;
}

.modal-gallery .mg-image-inner,
.modal-gallery .mg-thumb-inner {
    position: relative;
    padding-bottom: 100%;
    background-color: var(--white);
}

.modal-gallery .mg-image-inner img,
.modal-gallery .mg-thumb-inner img {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.modal-gallery .mg-thumb-inner img {
    cursor: pointer;
}

.qv-quit {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.qv-quit::before,
.qv-quit::after {
    content: "";
    display: block;
    position: absolute;
    height: 40px;
    width: 3px;
    left: 50%;
    margin-left: -1px;
    background-color: var(--body);
    transform: rotate(45deg);
}

.qv-quit::after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
	.qv-quit {
		position: absolute;
		background: var(--white);
		top: -10px;
		right: -10px;
		border-radius: 50%;
		width: 36px;
		height: 36px;
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	}

	.qv-quit::before,
	.qv-quit::after {
		height: 20px;
		width: 2px;
		margin-left: 0px;
		top: 8px;
	}
}

@media screen and (max-width: 575px) {
	.modal-gallery {
		margin-bottom: 15px;
	}

	.modal-gallery .mg-image-inner {
		position: relative;
		padding-bottom: 80%;
		background-color: var(--white);
	}

	.qv-quit {
        top: -15px;
		right: -15px;
	}
}

.qv-detail-lower > .modal-swatch {
    margin: 0 0 10px 0;
}

.qv-detail-lower > .modal-swatch .swatch-item {
    width: 33px;
    height: 33px;
    margin: 0 4px 0 0;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--light);
    box-shadow: inset 0px 0px 0px 2px var(--light);
}

.qv-detail-lower > .modal-swatch .swatch-item.current,
.qv-detail-lower > .modal-swatch .swatch-item.current:hover {
    border-color: var(--body);
}

.qv-detail-lower .variation-buy-option {
	display: none;
}

.qv-detail-lower .variation-buy-option.current {
	display: block;
}

.qv-detail-lower .qv-modal-button,
.qv-detail-lower .buy-direct-button {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 17px;
    line-height: 1;
    margin: 5px 0 0 0;
    padding: 8px 20px;
    min-width: 90px;
    height: auto;
    font-weight: 700;
    border: 1px solid var(--yellow);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    cursor: pointer;
    background-color: var(--yellow);
    color: var(--black);
}

.qv-detail-lower .qv-modal-button.current,
.qv-detail-lower .buy-direct-button.current {
    display: inline-block;
}

.qv-detail-lower .qv-modal-button:hover,
.qv-detail-lower .qv-modal-button:focus-visible,
.qv-detail-lower .buy-direct-button:hover,
.qv-detail-lower .buy-direct-button:focus-visible {
    border: 1px solid #fdcc19;
	background-color: #fdcc19;
	color: var(--black);
    outline: none;
}

@media screen and (max-width: 767px) {
	#qv-modal .qv-modal-content h1 {
		font-size: 1.75rem;
	}

	#qv-modal .qv-modal-content h5 {
		font-size: 1rem;
	}
}

@media screen and (max-width: 575px) {
    #qv-modal .qv-modal-content h1 {
		font-size: 1.25rem;
		margin: 0 0 0 0 !important;
	}

	#qv-modal .qv-modal-content h5 {
		font-size: 16px;
		margin: 10px 0 0 0;
	}
    
    .qv-detail-lower > .modal-swatch {
		margin: 10px 0 0 0;
	}
	
	.qv-detail-lower > .modal-swatch .swatch-item {
		width: 30px;
		height: 30px;
	}

	.qv-detail-lower .qv-modal-button,
	.qv-detail-lower .buy-direct-button {
		font-size: 13px;
		min-width: 70px;
		margin: 10px 0 0 0;
	}
}

.qv-retailer-modal {
    position: absolute;
    display: none;
    width: 400px;
    left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 50px;
    margin-top: 0;
    padding: 20px;
    background-color: #ffffff;
    text-align: left;
    font-size: 0;
    z-index: 10;
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
}

.qv-retailer-modal.active {
    display: block;
}

.qv-retailer-modal::before {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	margin-left: 60px;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	display: block;
	height: 15px;
	width: 15px;
	background-color: #ffffff;
	pointer-events: none;
	box-shadow: -2px -2px 0px 2px #ffffff, 2px 2px 5px 0px rgb(0 0 0 / 10%);
}

.qv-retailer-modal .qrm-section {
    position: relative;
}

.qv-retailer-modal .qrm-section:not(.no-toggle) {
    display: none;
}

.qv-retailer-modal .qrm-section.current {
    display: block;
}

.qv-retailer-modal .qrm-section:not(.last-visible) {
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--light);
}

.qv-retailer-modal .retailer-link {
    display: inline-block;
    width: 50%;
    padding: 5px 0;
    margin: 10px 0 0;
    text-align: center;
}

.qv-retailer-modal .retailer-link:nth-child(-n+2) {
	margin: 0;
}

.qv-retailer-modal .retailer-link img {
    height: 26px;
}

.qv-retailer-modal .modal-swatch {
    position: relative;
    text-align: center;
}

.qv-retailer-modal .modal-swatch .swatch-item {
    width: 33px;
    height: 33px;
    margin: 0 2px;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--white);
    box-shadow: inset 0px 0px 0px 2px var(--white);
}

.qv-retailer-modal .modal-swatch .swatch-item.current,
.qv-retailer-modal .modal-swatch .swatch-item.current:hover {
    border-color: var(--body);
}

.qv-retailer-modal .variation-retailers.current {
    display: block;
}

@media screen and (max-width: 575px) {
    .qv-retailer-modal {
		width: 260px;
		padding: 10px;
		left: 50%;
		bottom: 44px;
	}
	
	.qv-retailer-modal::before {
		margin-left: 0;
	}
    
    .qv-retailer-modal .qrm-section:not(.last-visible) {
		padding: 0 0 10px;
		margin: 0 0 10px;
	}

	.qv-retailer-modal .retailer-link img {
		height: 18px;
	}

	.qv-retailer-modal .modal-swatch .swatch-item {
		width: 30px;
		height: 30px;
	}
}

/* --------------------
	Store locator
-------------------- */

@media (min-width: 571px) {
	.wpsl-search {
		padding: 10px;
	}

	#wpsl-search-wrap form {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: justify!important;
		justify-content: space-between!important;
	}

	#wpsl-search-wrap .wpsl-input,
	#wpsl-search-wrap .wpsl-select-wrap,
	#wpsl-search-wrap .wpsl-search-btn-wrap {
		float: none;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center!important;
		align-items: center!important;
		margin: 0;
		padding: 5px;
	}

	#wpsl-search-wrap .wpsl-input {

	}

		#wpsl-search-wrap .wpsl-input div {
			float: none;
			margin: 0;
		}

			#wpsl-search-wrap .wpsl-input div label {
				display: block;
				width: auto;
				margin: 0 10px 0 0;
				pointer-events: none;
				white-space: nowrap;
			}

		#wpsl-search-wrap #wpsl-search-input {
			display: block;
			width: 100%;
			background: var(--white);
			-webkit-transition: none;
			-moz-transition: none;
			transition: none;
		}
        
        #wpsl-search-wrap #wpsl-search-input:hover {
		    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
        }

	#wpsl-search-wrap .wpsl-select-wrap {
		-ms-flex-positive: 1!important;
		flex-grow: 1!important;
	}

		#wpsl-search-wrap .wpsl-select-wrap #wpsl-radius,
		#wpsl-search-wrap .wpsl-select-wrap #wpsl-results {
			float: none;
			display: -ms-flexbox;
			display: flex;
			-ms-flex-align: center!important;
			align-items: center!important;
			margin: 0;
		}

		#wpsl-search-wrap .wpsl-select-wrap #wpsl-radius {
			margin: 0 10px 0 0;
		}

			#wpsl-search-wrap .wpsl-select-wrap #wpsl-radius label,
			#wpsl-search-wrap .wpsl-select-wrap #wpsl-results label {
				display: block;
				width: auto;
				margin: 0 10px 0 0;
			}

			#wpsl-search-wrap .wpsl-select-wrap #wpsl-radius div,
			#wpsl-search-wrap .wpsl-select-wrap #wpsl-results div {
				float: none;
				width: auto;
				margin: 0;
			}

	#wpsl-search-wrap .wpsl-search-btn-wrap {

	}
	
}

#wpsl-search-wrap .wpsl-search-btn-wrap #wpsl-search-btn {
	float: none;
	margin: 0;
	line-height: 1.5;
	padding: 10px 20px;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	color: var(--black);
	background: var(--yellow);
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
}

	#wpsl-search-wrap .wpsl-search-btn-wrap #wpsl-search-btn:hover {
		background: #fdcc19;
	}

.wpsl-direction-wrap, .wpsl-directions, a.wpsl-directions {
    display: none !important;
}

#wpsl-result-list li p:last-child {
    margin: 0;
}

/* --------------------
	Footer
-------------------- */

#footer {
    background: #ffd940 !important;
	font-size: 15px;
}

#footer ul {
    margin: 0;
    padding: 0;
    font-size: 15px;
}

#footer ul li {
    list-style: none;
}

#footer ul li a {
    color: #212529;
}

#footer .social a {
    display: inline-block;
    width: 36px;
    margin-left: 10px;
}

@media only screen and (max-width: 991px) {
	#footer .social a {
		margin: 0 5px;
	}	
}

/* --------------------
	Cookies
-------------------- */

button#ot-sdk-btn.ot-sdk-show-settings,
button#ot-sdk-btn.optanon-show-settings {
    color: var(--purple);
    display: inline;
	width: auto;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    border: none;
    background: none;
    text-transform: lowercase;
    line-height: inherit;
    outline: none;
}

button#ot-sdk-btn.ot-sdk-show-settings:hover,
button#ot-sdk-btn.optanon-show-settings:hover {
    color: var(--plum);
    border: none;
    background: none;
}

#footer button#ot-sdk-btn.ot-sdk-show-settings,
#footer button#ot-sdk-btn.optanon-show-settings {
	color: var(--body);
	font-size: 15px;
	text-transform: none;
}

/* --------------------
	Misc
-------------------- */

.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}