/** Shopify CDN: Minification failed

Line 25:6 Unexpected "{"
Line 171:1 Unexpected "}"
Line 174:1 Unexpected "0%"
Line 175:1 Unexpected "100%"

**/
/*
Base
*/
*,
*::after,
*::before {
	box-sizing: border-box;
}
html { 
	margin: 0;
	padding: 0;
	background-color: #c9c0ff; 
	color: #fff;
	font-family: 'Hiruko';
	font-weight: normal;
}
body, {
	width: 100%;
	font-family: 'Hiruko';
	font-weight: 100;
	letter-spacing: .5px;
	margin: 0;
	padding: 0;
	color: #fff;
	-moz-osx-font-smoothing: grayscale !important;
	overflow:initial !important;
	scroll-behavior: smooth;
	background-color: #c9c0ff; 
	min-height: 100vh;
	min-height: -webkit-fill-available;
}
html {
	height: -webkit-fill-available;
}
@font-face {
    font-family: 'Hiruko';
    src: url('./HirukoPro-Book.woff2') format('woff2'),
        url('./HirukoPro-Book.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Hiruko';
    src: url('./HirukoPro-Light.woff2') format('woff2'),
        url('./HirukoPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jamie Paige';
    src: url('./Jamie-Paige-Doodles.woff2') format('woff2'),
        url('./Jamie-Paige-Doodles.woff') format('woff');
    font-weight: bolder;
    font-style: normal;
    font-display: swap;
}
a {
	text-decoration: none;
	color: #eee9ff;
}
p {
	font-size: 20px;
	font-weight: 500;
	font-family: 'Hiruko';
	line-height: 1;
}
hr {
	color: #fff;
	border: 1px solid;
}
button {
	background: #7665fb;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	color: #fff;
	padding: 10px 10px 5px 10px;
	font-weight: 700;
	font-family: 'Hiruko';
	letter-spacing: 0px;
	line-height: 1em;
	cursor: pointer;
}
button:hover {
	background: #fff;
	color: #7665fb;
}
.button {
	background: #7665fb;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	color: #fff;
	padding: 10px 10px 5px 10px;
	font-weight: 700;
	font-family: 'Hiruko';
	letter-spacing: 0px;
	line-height: 1em;
	cursor: pointer;
}
.button:hover {
	background: #fff;
	color: #7665fb;
}
.image-wrap {
    background-color: unset;
}
/*
Grid
*/
.grid {
	display: grid;
	grid-gap: 10px;
}
.one-column {
	grid-template-columns: repeat(1, 1fr);
}
.two-columns {
	grid-template-columns: repeat(2, 1fr);
}
.three-columns {
	grid-template-columns: repeat(3, 1fr);
}
.three-quarters-columns {
	grid-template-columns: 66% 33.3%;
}
.four-columns {
	grid-template-columns: repeat(4, 1fr);
}
.five-columns {
	grid-template-columns: repeat(5, 1fr);
}
.six-columns {
	grid-template-columns: repeat(6, 1fr);
}
.icons-columns {
	grid-template-columns: repeat(3, 1fr);
}
/*
Landing Page
*/
.banner-wrapper p{
  margin: 0;
  padding: 10px 0px 5px;
  line-height: 1.2;
	text-align: center;
}
svg {
	object-fit: contain;
}
.jamie-paige {
	animation: logo 5s linear 1s infinite;
    -webkit-animation: logo 30s linear 0s infinite alternate;
	fill:#e2daff;
}
@keyframes logo
    {
		0%   {fill:#6250f2; }
		100%  {fill:#ff682e; }
		 }
	}
@-webkit-keyframes logo /* Safari and Chrome - necessary duplicate */
{
	0%   {fill:#6250f2; }
	100%  {fill:#ff682e; }
}
.logo {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: flex-start;
}
.logo svg {
	width: 75%;
	padding: 20px;
}
/*
Marquee
*/
.marquee {
	background: #7665fb;
	position: sticky;
	width: 100%;
	padding: 5px 0px 1px 0px;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 700;
	overflow: hidden;
	z-index: 5;
	top: 0;
}
.marquee a {
	text-decoration: none;
	color: white;
}
@-webkit-keyframes marquee {
	100% {
		transform: translateX(-100%);
	}
}
@keyframes marquee {
	100% {
		transform: translateX(-100%);
	}
}
[data-marquee] {
	--loop-duration: 30s;
		display: block;
}
[data-marquee] [data-marquee-shadow] {
	position: absolute;
	visibility: hidden;
	height: auto;
	width: auto;
	white-space: nowrap;
}
[data-marquee] [data-marquee-overflow] {
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}
[data-marquee] [data-marquee-container] {
	display: flex;
	-webkit-animation: marquee var(--loop-duration) linear infinite;
			animation: marquee var(--loop-duration) linear infinite;
}
[data-marquee] [data-marquee-container]:hover {
	-webkit-animation-play-state: paused;
			animation-play-state: paused;
}
[data-marquee] [data-marquee-style] {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
[data-marquee-style] {
	padding: 0 12px;
	text-transform: uppercase;
}
@media screen and (max-width: 920px) {
	svg {
		max-width: 60%;
		transition: all 1s;
		-webkit-transition: 1s;
	}
}
/*
Menu
*/
.menu {
	font-size: 24px;
	font-weight: 500;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	position: fixed;
	justify-content: space-between;
	width: 100%;
	height: 100px;
	z-index: 5;
	top: 0px;
	transition: top 0.3s;
	background-color: transparent;
/*	text-transform: uppercase;*/
}
.header-gradient {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 450px;
	pointer-events: none;
	background: linear-gradient(180deg,rgb(109, 103, 187) 20%,transparent);
	transform: translateZ(0);
	top: -300px;
}
#header.menu {
	top: 0px;
	transition: top 0.3s;
}
.secondary-menu a{
	display: inline-flex;
	
}
.secondary-menu a:hover{
	opacity: .5;
}
.primary-menu a {
	display: inline-flex;
	padding-right: 20px;
	font-size: 24px;
	z-index: 11;
	letter-spacing: 0;
	text-transform: capitalize;
}
.primary-menu a:last-child {
	padding-right: 0px;
}
.primary-menu a:hover {
	opacity: .5;
}

/*Dropdown*/

.dropdown {
	position: relative;
	display: flex;
}

.dropdown-content {
	display: none;
	position: absolute;
	min-width: 420px;
	z-index: 10;
	padding: 30px 80px;
	margin-left: -80px;
}
.dropdown-content a{
	font-size: 24px;
}
.drop-background {
	opacity: 0;
	height: 100vh;
	width: 100vw;
	position: fixed;
	z-index: 2;
	top: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out; 
	pointer-events: none;
}
.dropdown:hover + .drop-background {
	background: #b4aeff;
	height: 100vh;
	width: 100vw;
	position: fixed;
	z-index: 2;
	top: 0;
	opacity: 1;
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out; 
}
.dropdown-content a {
	color: black;
	text-decoration: none;
	display: block;
	background: transparent;
	color: #e2daff;
}

.dropdown-content a:hover {
	background-color: transparent;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: transparent;
}
li.products-menu {
	font-size: 14px;
	margin-left: 10px;
}
.menu li.products-menu a{
/*	text-transform: capitalize;*/
}
.secondary-menu ul li {
	display: inline-flex;
	padding-right: 10px;
}
.secondary-menu ul li:last-child {
    display: inline-flex;
    padding-right: 0;
    top: -5px;
    position: relative;
}
.secondary-menu ul {
	list-style-type: none;
	padding-right: 5px;
	height: 24px;
}
.cart {
	width: 20px;
    margin-top: -3px;
    padding-left: 8px;
}

.item-count:before {
	content: '-';
	margin-left: 5px;
	margin-right: 5px;
}
/*
Logo
*/
.jpd-logo {
	height: 90px;
	display: flex;
	position: relative;
	z-index: 100;
	left: 0;
	width: 33%;
	padding: 15px 23px;
}
.jpd-logo a {
	align-items: center;
	display: flex;
}
.jpd-logo img {
	width: 180px;
}
.primary-menu {
	display: flex;
	justify-content: center;
	z-index: 10;
	position: relative;
	font-family: 'Jamie Paige';
	text-transform: lowercase;
}
.secondary-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.primary-menu, .secondary-menu {
	z-index: 20;
	width: 33%;
}
.menu-icon.account a{
	width: 20px;
	height: 23px;
}
.menu-icon.account {
	margin-right: 20px;
	width: 15px;
	height: 32px;
}
.menu-icon.account img{
	width: 17px;
}
.menu-icon.cart-products {
	font-size: 12px;
	margin-left: 5px;
	margin-right: 10px;
	color: #e2daff;
	justify-content: flex-start;
}
.menu-icon {
	width: 28px;
	height: 30px;
	align-self: center;
}
.menu-icon img{
	border-radius: 0px;
}
.primary-cart-button {
	cursor: pointer;
	width: 24px;
}
.primary-cart-button:hover {
	opacity: .5;
}
a.active {
	text-decoration: underline;
}
/*
Mobile Menu
*/
.mobile {
	position: sticky;
    top: 50px;
	z-index: 9999;
}
.mobile-menu, .mobile-cart {
	display: none;
}

.mobile-menu, .mobile-cart-icon {
	width: 100%;
	z-index: 20;
}
.cart-button-botton {
	position: fixed;
	bottom: 20px;
	display: flex;
	height: 100vh;
	width: 100%;
	justify-content: flex-start;
	align-items: flex-end;
	z-index: 10;
	pointer-events: none;
}
.primary-cart-button a{
	background: #dfdf34;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 24px;
	font-weight: 100;
	line-height: 1em;
	margin-top: 5px;
	margin-left: 20px; 
	position: relative;
	display: flex;
	align-content: inherit;
	align-items: start;
	height: 52px;
	pointer-events: all;
}
.mobile-header-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
	display: block;
}
.mobile-header-nav li:first-child {
	margin-top: 150px;
}
.mobile-header-nav li a {
    color: #E2DAFF;
    display: block;
    padding: 15px 0px 5px 0px;
    text-align: left;
    text-decoration: none;
    transition: all .3s ease-in-out;
    font-size: 32px;
	font-family: 'Jamie Paige';
	padding: 10px 20px;
}
.mobile-header-nav li a:hover {
	text-decoration: underline;
}
.hamburger-menu {
	display: inline-block;
	height: 100px;
	padding: 35px 25px;
	transition: all 0.3s ease-in-out;
}
.hamburger-menu:hover {
	cursor: pointer;
}
.hamburger-menu .menu-item {
	background: black;
	display: block;
	height: 3px;
	margin: 0 0 10px;
	transition: all 0.3s ease-in-out;
	width: 40px;
}
.hamburger-menu.open .menu-item {
	margin: 0 0 5px;
}
.hamburger-menu.open .menu-item:first-child {
	transform: rotate(45deg);
	transform-origin: 10px;
}
.hamburger-menu.open .menu-item:nth-child(2) {
	opacity: 0;
}
.hamburger-menu.open .menu-item:nth-child(3) {
	transform: rotate(-45deg);
	transform-origin: 8px;
}
/*
Select
*/
select {
	width: 100%;
	background: transparent;
	border: none;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #fff;
	border-radius: 10px;
	color:  #fff;
}
#shopify-section-header {
	display: contents;
}
/*
Currency
*/
.currency {
	background: transparent;
	padding: 0;
	font-family: 'Hiruko';
	font-size: 13px;
	font-weight: bold;
	appearance: none;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 5px 0px 1px 4px;
	margin: 0px;
	color: #fff;
	cursor: pointer;
	margin-top: 15px;
}
.currency-dropdown {
	width: 51px;
	margin-right: 25px;
	height: 38px;
}
.header-currency.currency-dropdown .currency{
	margin-top: 0px;
	color: #eee9ff;
	border: 1px solid #eee9ff;
}
/*
Main
*/
main.single-page {
	padding: 130px 10px 40px 10px;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
}
.pagination {
	font-size: 32px;
	padding: 20px 0px;
	border-top: 1px solid #fff;
	margin-top: 30px;
}
.single-product {
	padding: 0px 20px;
	grid-gap: 20px;
	padding-bottom: 40px;
}
.grid.two-columns.single-product {
	grid-template-columns: 50% 50%;
}
/*
Thumbnail Sections
*/
.thumbnail-section {
	width: 100%;
	height: 700px;
	align-items: flex-end;
	max-width: 100%;
	display: flex;
}
.thumbnail-section a {
	display: contents;
}
.thumbnail-section img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.thumbnail-section-title {
	padding: 20px;
	position: absolute;
	width: 49vw;
	max-width: 100%;
	font-size: 24px;
	display: flex;
    max-width: 100%;
    justify-content: space-between;
}
.one-column .thumbnail-section-title {
	padding: 20px;
	position: absolute;
	width: 98.5vw;
	max-width: 100%;
}
/*
Sections
*/
.section {
	padding: 30px;
	max-width: 1440px;
	margin: 0 auto;
}
.section.default-page, .section.blog-single, .section.contact {
	max-width: 900px;
	padding-top: 120px;
}
.section-title {
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	padding-top: 20px;
}
.text-block {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.text-block h1{
	font-size: 50px;
	line-height: 1em;
	font-weight: normal;
}
.text-block p{
	font-size: 24px;
}
.text-block-wrapper {
	padding: 60px;
}

.text-block h1{
	font-size: 40px;
	line-height: 1em;
	font-weight: normal;
	font-family: 'Jamie Paige';
	letter-spacing: 1px;
}
.text-block p{
	font-size: 18px;
}
.text-block small{ 
	font-family: 'arial';
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
}
.revert {
	direction:ltr;
}
.page-title {
	text-align: center;
}
.section-title, .page-title{ 
	font-family: 'Jamie Paige';
	letter-spacing: -1px;
}
.call-to-action {
  padding: 60px 30px;
}
.follow {
	padding: 40px 30px 0px 30px;
}
/*
Home
*/
.notebook {
	width: 100%;
	height: 85vh;
	display: flex;
	justify-content: flex-start;
}
.notebook img{
	width: 75%;
	padding: 20px;
	object-fit: contain;
	object-position: top;
}
.notebook-mobile-link {
	display: none;
	height: 650px;
	position: absolute;
	width: 80%;
	top: 0;
	z-index: 10000;
	margin: 0 auto;
	justify-content: center;
}
.home-slideshow {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.home-slideshow .slide img{
	border-radius: 0px;
}
.home-slideshow .slide button {
	font-size: 30px;
	padding: 13px 10px 5px 10px;
}
.home-slideshow .home-slider .slide img {
	height: 100vh;
	object-fit: cover;
}
.stamp {
	display: flex;
	width: 180px;
	height: 120px;
	justify-content: center;
	align-items: center;
}
.stamp-text {
	position: absolute;
	padding: 45px;
	margin-top: 3px;
	text-align: center;
}
.happy {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 200px;
	padding: 60px 40px;
	z-index: 10000;
	width: 100%;
	cursor: pointer;
}
.happy:hover {
	animation: drive 2s steps(2, end) infinite;
}
.happy-face {
	position: absolute;
	top: 120px;
	left: 0;
	max-width: 250px;
	padding: 60px 40px;
	z-index: 4;
	width: 100%;
	cursor: pointer;
}
.happy-face:hover {
	animation: drive 2s steps(2, end) infinite;
}
 @keyframes drive
	{
		0%   {rotate: -15deg; }
		100%  {rotate: 0deg; }
	}
	@-webkit-keyframes drive /* Safari and Chrome - necessary duplicate */
	{
		0%   {background: #c9c0ff; }
		100%  {background: #f5cbd8; }
	}

.signature img{
	max-width: 150px;
}
.signature h1{
	margin-top: 10px;
		
}
/*
Sticker Sheet
*/
.stickers-section {
	position: relative;
	margin-top: 0px;
}
.title-wrapper {
	padding: 60px 0px 0px 0px;
}
.absolute {
	position: absolute;
}
.stickers-sheet {
	position: absolute;
	top: 0;
	width: 25%;
	width: 100%;
	height: 90vh;
/*	overflow: hidden;*/
	padding: 40px;
	display: flex;
	justify-content: flex-end;
}
.stickers-wrapper-header .section-title {
	padding-bottom: 10px;
}
.label {
	width: 100%;
	max-width: 400px;
	position: relative;
	display: flex;
	flex-direction: column;
	position: relative;
	height: fit-content;
}
.interactive-sticker-sheet {
	background: #fef7f1;
	box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.stickers-wrapper {
	width:100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 1;
	position: relative;
}
.label-header {
	font-size: 24px;
	line-height: 1em;
	height: fit-content;
	text-align: center;
	padding: 20px 20px 0px 20px;
	font-weight: 700;
	width: 100%;
	position: relative;
	z-index: 2;
}
.sticker-sheet-logo img {
  width: 90%;
}
.label-footer {
	font-size: 14px;
	height: fit-content;
	text-align: center;
	padding: 15px;
	font-weight: 700;
	width: 100%;
	position: relative;
	z-index: 2;
}

.label-footer p{
	margin: 0px;
}
.label-footer a{
	font-size: 24px;
}
.label-footer a:hover{
	opacity: .5;
}
.sticker-call-to-action{
	display: flex;
	flex-direction: row;
	column-gap: 20px;
	padding: 40px 0px;
	font-weight: bold;
	font-family: 'Jamie Paige';
	font-size: 30px;
	text-align: center;
}
.action-arrow img{
	max-width: 80px;
	height: 40px;
	display: block;
	max-width: 125px;
}
a.action-link{
	color: #fff;
	opacity: 1;
}
a.action-link:hover {
	opacity: .5;
}
.background-image {
	position: absolute;
	z-index: 0;
	width: 100%;
	top: 50px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}
.background-image img {
	padding: 140px 40px;
	object-fit: contain;
}
.sticker {
	width: 105px;
	cursor: pointer;
	padding: 15px;
	align-items: center;
	display: flex;
	border-radius: 10px;
}
.sticker:hover {
	opacity: .5;
}
/*
.stickers-section {
	overflow: hidden;
}
*/
.sticker-wrap {
	width: 100px;
	height: 150px;
	display: flex;
	align-items: center;
	border-radius: 10px;
	margin: 10px 10px 0px 10px;
}
.draggable {
	cursor: pointer;
}
.active-bonus {
	background: ;
	background-image: url('bonus.svg');
	background-position:top 0px center;
	background-size: 40%;
	background-repeat: no-repeat;
}

.discount-code-sticker {
	position: relative;
	font-size: 12px;
	text-align: center;
	color: black;
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.active-bonus .discount-code-sticker {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.discount-title {
	font-weight: bold;
	font-size: 9px;
	display: block;
	width: 100%;
}
.discount-code {
	display: block;
	width: 100%;
	font-weight: bold;
}
/*
Default Page
*/
.default-page h1 {
	font-family: 'Jamie Paige';
	text-align: center;
	letter-spacing: -1px;
	font-weight: normal;
	font-size: 40px;
}
/*
Dividers
*/
.divider {
	padding: 40px 0px;
	
}
/*
About
*/
.about {
	padding: 120px 0px;
}
.about h2 {
	font-weight: 500;
	text-align: center;
	font-size: 16px;
}
.about-page-content {
	padding-bottom: 20px;
	max-width: 860px;
	margin: 0 auto;
}
.about-section-1 img{
	height: 500px;
	object-fit: cover;
}
.about-page-video {
	padding: 40px 0px;
}
.about h1 {
	font-size: 3em;
	line-height: 1em;
	margin: 0;
	font-weight: normal;
}
.default-page img{
	width: auto;
}
.face {
	text-align: center;
}
.face img {
	max-width: 40px;
}
/*
Contact
*/
.contact {
	padding: 120px 0px;
}
.contact h1 {
	font-family: 'Jamie Paige';
	text-align: center;
	letter-spacing: -1px;
	font-weight: normal;
	font-size: 40px;
}
.contact-form {
	display: flex;
	flex-direction: column;
}
.contact-form label {
	margin: 10px 0px;
}
#ContactFormName, #ContactFormEmail, #ContactFormPhone, #ContactFormMessage {
	border: none;
	padding: 10px;
}
.contact-button {
	margin-top: 20px;
}
/*
Costumer
*/
.section.costumer {
	max-width: 400px;
	padding-top: 120px;
}
.costumer {
	padding: 120px 0px;
}
.costumer h1 {
	font-family: 'Jamie Paige';
	text-align: center;
	letter-spacing: -1px;
	font-weight: normal;
	font-size: 40px;
	margin-bottom: 0px;
	margin-top: 10px;
}
.costumer form {
	display: flex;
	flex-direction: column;
}
.costumer form label {
	margin: 10px 0px;
}
.costumer form input  {
	border: none;
	padding: 10px;
}
.costumer-button {
	margin-top: 20px;
}
.forgot-password h1{
	font-size: 24px;
}
.errors {
	text-align: center;
}
.errors ul{
	padding: 0;
}
.errors li{
    display: block;
	font-size: 16px;
}
.costumer-log {
	font-size: 12px;
	margin-right: 20px;
}
.register-link {
	padding-top: 20px;
	text-align: center;
}
/*
Orders
*/
section.orders-page {
	max-width: 400px;
	padding-top: 120px;
}
.orders-page {
	padding: 120px 0px;
}
.orders-page h1 {
	font-family: 'Jamie Paige';
	text-align: center;
	letter-spacing: -1px;
	font-weight: normal;
	font-size: 40px;
	margin-bottom: 0px;
	margin-top: 10px;
}
.orders-page form {
	display: flex;
	flex-direction: column;
}
.orders-page form label {
	margin: 10px 0px;
}
.orders-page form input  {
	border: none;
	padding: 10px;
}
.costumer-information {
	text-align: center;
	padding-bottom: 20px;
}
.order-items a{
	font-size: 16px;
	color: #fff;
	margin-right: 20px;
}
.order-items table td{
	margin: 0;
	padding: 0;
	text-align: left;
}
.order-items table th{
	
	text-align: left;
}
.order-items table th,.order-items table td{
	padding-right: 10px;
}
/*
Single Page Collection
*/
.collection .section-title{
	padding-bottom: 30px;
}
/*
Thumbnail Item
*/
.featured-products {
	grid-gap: 30px;
	padding-top: 15px;
}
.featured-products-single {
	grid-gap: 30px;
	padding-top: 15px;
}
.featured-products .slick-slide{
	opacity: 1;
}
.featured-products-single .slick-slide{
	opacity: 1;
}
.featured-products-wrapper {
	position: relative;
}
.featured-products-wrapper .section-title{
	padding: 30px 40px 40px 40px;
	margin: 0;
}
.thumbnail-item {
	width: 100%;
	height: auto;
	max-width: 100%;
	padding: 0px 10px;
}
.thumbnail-item img {
	object-fit: cover;
	width: 100%;
	height: 40vh;
}
.thumbnail-item-title {
	padding: 10px;
	width: 100%;
	max-width: 100%;
	font-size: 16px;
	font-weight: 700;
	display: flex;
    justify-content: space-between;
}
.thumbnail-item-title:hover {
	opacity: .5;
}
.thumbnail-item-title .left b{
	text-transform: uppercase;
}
.item-type {
	font-family: 'Optima';
}
/* Discount */
.original-price {
	opacity: .5;
	display: inline-block;
	text-decoration:line-through;
}
.hidden {
	display: none;
}
.image-hidden {
	display: none;
}
.image-hidden img{
	height: 40vh;
}
.thumbnail-item:hover .image-hidden{
	display: block
}

.reveal .image-hidden { 
	display: block !important; 
	visibility: visible !important;
}
.product:hover .reveal img { 		opacity: 1; 
}
.reveal { 
	position: relative;
}
.thumbnail-item .reveal img{ 
	height: 540px;
}
.thumbnail-item a{ 
	color: #fff;
}
.reveal .image-hidden { 
  position: absolute; 
  z-index: -1;
  top: 0; 
  width: 100%; 
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;  
}
.reveal:hover .image-hidden { 
  z-index: 4;
  opacity: 1;    
}
.collections-wrapper {
	padding-top: 20px;
	grid-gap: 30px;
	position: relative;
}
.collection-item {
	font-size: 24px;
	cursor: pointer;
	text-align: center;
}

.collection-item img{
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
}
.collection-item a{
	color: #fff;
	font-weight: 700;
}
.collection-item:hover .collection-title{
	opacity: .5;
}
.collection-thumbnail {
	width: 100%;
	padding-top: 100%; 
	position: relative;
	margin-bottom: 20px;
	height: 100px;
}
.collection-thumbnail-list {
	width: 50%;
	padding-top: 100%; 
	position: absolute;
	right: 0;
	top: 0;
	margin-bottom: 20px;
}
.collection-thumbnail-list img{
	height: auto;
	object-fit: cover;
}
.collection-title {
	font-weight: 500;
	text-align: left;
}
.multiple-collection img{
	max-width: 80px;
	padding: 10px;
}
/*
Collection List
*/
.collection-list {
	padding-top: 80px;
}
.collection-list .collection-item {
	font-size: 48px;
	cursor: pointer;
}
.collection-list .section-title {
	background: #7665fb;
	margin-top: 40px;
	padding: 15px 15px 7px 15px;
}
.collection-list .collection-item:hover .collection-title{
	opacity: 1;
	color: #7665fb;
}
.collection-list .collections-wrapper {
	background: #fff;
	color: #7665fb;
	border-radius: 0px 0px 10px 10px;
}
.collection-list .collections-wrapper a{
	color: #000;
}
.collection-list .collection-title{
	width: 100%;
	padding: 0px 20px;
	border-bottom: 1px solid #a6deff;
	z-index: 0;
	position: relative;
	line-height: 40px;
	padding-top: 12px;
	display: flex;
	justify-content: flex-start;
}

/*
.collection-title-item {
	width: 49%;
}
*/
.collection-list .collections-wrapper .collection-item:last-child .collection-title{
	border-bottom: 0px solid;
}
.collection-list .collection-thumbnail-list {
	width: 45%;
	padding-top: 100%; 
	position: absolute;
	right: 0;
	top: 0;
	margin-bottom: 20px;
	display: none;
	height: 650px;
	z-index: 1;
}
.collection-list .collection-thumbnail-list.list-description{
	width: 42%;
	padding-top: 0;
	position: absolute;
	right: 0;
	top: 0;
	margin-bottom: 20px;
	height: 562px;
	z-index: 1;
	background: #fff;
	border: 1px solid;
	margin: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.list-description {
	font-size: 16px;
}
.list-description span{
	font-size: 14px;
}
.collection-list .collection-thumbnail-list img{
	height: 603px;
	padding: 40px;
}
.collection-list .collection-item:hover .collection-thumbnail-list {
	display: flex;
}
.collection-item-number {
	font-size: 20px;
	line-height: 20px;
	margin-left: 10px;
}
.image-description img{
	width: 20px;
}
.image-description img{
	width: 20px;
}
.collection-list .collection-thumbnail-list .image-description img {
	height: 60px;
	width: 60px;
	padding: 10px;
	position: relative;
}
/*
Collection Icons
*/
#collections {
	max-width: 700px;
	padding-bottom: 80px;
}
.collections-icon {
	position: relative;
}
.collections-icon .collection-icon-title {
	font-size: 20px;
	text-align: center;
	font-weight: 100;
	letter-spacing: 1px;
}
.collections-icon .collection-icon-item-number {
	font-size: 16px;
	line-height: inherit;
	display: none;
}
.collection-icon-image svg{
	padding: 10px;
	width: 45%;
}
.collection-icon-image svg, .collection-icon-image svg path{
  fill:#6250f2;
}
@keyframes svgcolor {
	0%   {fill:#6250f2; }
	100%  {fill:#ff682e; }
}
@-webkit-keyframes svgcolor {
	0%   {fill:#6250f2; }
	100%  {fill:#ff682e; }
}
.collection-icon-image {
	display: flex;
	justify-content: center;
}
.collections-icon .section-title {
	padding-bottom: 10px;
}
.collection-icon-description {
	max-width: 500px;
	text-align: center;
	margin: 0 auto;
	font-size: 16px;
}
.collection-icon-description p{
	margin: 0px 0px 20px 0px;
}
.collection-icon-text-wrapper {
	padding: 20px 0px 40px 0px;
}

.collection-icon-text-wrapper .collection-title-item a, .collection-icon-text-wrapper .collection-icon-item-number, .collections-icon .collection-icon-title, .section-title, .text-block-wrapper h1 {
	animation: color 5s linear 1s infinite;
    -webkit-animation: color 30s linear 0s infinite alternate;
}
.collection-icon-text-wrapper {
animation: color 5s linear 1s infinite;
-webkit-animation: color 30s linear 0s infinite alternate;
}
@keyframes color {
	0%   {color:#6250f2; }
	100%  {color:#ff682e; }
}
@-webkit-keyframes color {
    0%   {color:#6250f2; }
	100%  {color:#ff682e; }
}
.collection-icon-item a:hover .collection-icon-title{
	color: #6250f2 !important;
}
.our-doodles {
	padding-top: 120px;
}
/*
Follow
*/
.about .collection-icon-text-wrapper {
	padding: 30px;
}
.icon-image img{
	padding: 20px;
	width: 25%;
	height: 80px;
}
.join-the-team .icon-image img{
	padding: 20px;
	width: 80px;
	height: 80px;
}
.icon-image {
  display: flex;
  justify-content: center;
  
}
/*
Video
*/
.video {
	padding: 0px 30px;
}
/*
Slisdeshow
*/
.slick-vertical .slick-slide {
	padding-bottom: 10px;
}
.slideshow-grid {
	grid-template-columns: 20% 80%;
}
.slideshow-nav {
	position: absolute;
	z-index: 2;
	bottom: 10px;
	left: 0px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 30px;
}
.home-slideshow .slideshow-nav {
	width: auto;
}
.slideshow-nav svg{
	max-width: 80px;
}
.featured-slideshow-nav {
	position: absolute;
	z-index: 2;
	top: 20px;
	left: 0px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 30px;
}
.featured-slideshow-nav svg{
	max-width: 80px;
}
.featured-slideshow-nav .icon-arrow{
	background: transparent;
}
.arrow {
	fill:#fff;
	display: block;
}
#arrow g path {
  fill: #7665fb;
}
.next:hover #arrow g path, .prev:hover #arrow g path {
  fill: #fff;
}
.prev, .next {
	cursor: pointer;
	width: 50px;
}
.home-slideshow .next {
	right: 30px;
	position: absolute;
	z-index: 100;
	bottom: 30px;
}
.prev:hover .arrow, .next:hover .arrow{
	fill: #7665FB;
}
.icon-arrow {
	align-items: center;
	background: #debeea;
	border: 2px solid #7665fb;
	border-radius: 50%;
	display: flex;
	height: 50px;
	justify-content: center;
	width: 50px;
	padding: 10px;
	max-width: 100%;
	
}
.next:hover .icon-arrow  {
	fill: #fff;
	background: #7665fb !important;
}
.prev:hover .icon-arrow  {
	fill: #fff;
	background: #7665fb !important;
}
.prev-slide {
	cursor: url('prev-slide.png'), auto;
    height: calc(90vw - 80px);
    position: absolute;
    width: 33.3%;
    z-index: 20;
}
.next-slide {
	cursor: url('next-slide.png'), auto;
    height: calc(90vw - 80px);
    left: 33.3%;
    position: absolute;
    width: 33.3%;
    z-index: 20;
    overflow: hidden;
}
.slick-next:before, .slick-prev:before{
	color:#000;
}
.slick-next{
	right:0px;
	z-index: 100;
}
.slick-prev{
	left:0px;
	z-index:100;
}
.slick-slider {
	max-width: 100%;
}
.grid.slideshow-grid {
	padding-right: 10px;
}
.slick-slide.slick-current.slick-active {
	opacity: 1;
}
.slick-slide {
    opacity: .4;
/*	transition: 1s;*/
	height: 100%;
    overflow: hidden;
  
}
.slick-slide .reveal {
  overflow:hidden;
}
.slick-slide img{
   transition: transform .5s ease; 
      transform-origin: center center;
}
/* .slick-slider.main-image img:hover{
   transform: scale(1.8);
} */
.slick-vertical .slick-slide {
  cursor:pointer;
}
.slide {
	height: 100%;
}
.slick-list {
	height: auto !important;
}
.navigation-slide {
	display: none;
}
.primary-images, .img-carousel {
	display: block;
}
.navigation-slide {
	position: absolute;
}
.slick-dots li button::before {
	font-size: 10px !important;
}
.primary-images, .img-carousel {
	display: block;
}
.slideshow-button {
	display: flex;
	position: absolute;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	padding: 40px;
}
.slideshow-button button{
	font-size: 24px;
	text-transform: uppercase;
}
.slideshow-button.center-button {
	align-items: center;
	justify-content: center;
}
.slideshow-button.bottom-button {
	align-items: flex-end;
}
.slick-slide img.desktop-slide {
	display: block;
}
.slick-slide img.mobile-slide {
	display: none;
}
/*
Components
*/
.editorial-text{
	max-width: 33.3%;
	margin: 0 auto;
}
.editorial-text p{
	font-size: 16px;
}
.vertical-center {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 20px;
}
/*
Single Item
*/
.product-preview {
	max-width: 100%;
	width: 45vw;
	
}
.product-preview img {
	
}
.addditional-images img:first-child {
	margin-top: 0px;
}
.addditional-images img {
	margin-top: 5px;
	cursor: pointer;
}
.addditional-images img:hover{
	opacity: .9;
}
.item-description {
	margin-top: 20px;
}
.item-price {
	text-align: right;
}
.item-title {
	text-transform: uppercase;
	padding-bottom: 10px;
}
.item-single-page-header h1 {
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 1em;
}
.item-text {
	padding-bottom: 20px;
	font-family: 'Hiruko';
	font-size: 16px;
	line-height: 16px;
}
img {
	width: 100%;
	border-radius: 10px;
}
.item-description button {
	border-radius: 0px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	width: 100%;
	padding: 10px;
	cursor: pointer;
}
.item-description button:hover {
	border-radius: 0px;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	width: 100%;
	padding: 10px;
}
.item-size {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 10px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}
.size-guide {
	opacity: .3;
}
.add-note textarea{
	border: none;
	width: 100%;
	display: block;
	margin-bottom: 20px;
}
/*
Quantity
*/
#Quantity {
    width: 100%;
    margin-bottom: 20px;
    height: 30px;
    padding: 10px 10px;
	border-radius: 10px;
	background: #e2daff;
	border: 1px solid #e2daff;
	color: #000;
}
.add-to-cart-button {
	background: #7665fb;
	font-family: 'Hiruko';
	padding: 10px 10px 7px 10px;
	border: none;
	border-radius: 10px;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
}
.add-to-cart-button:hover {
	background: #4736c6;
}
/*
Accordion
*/
.information-accordion {
	padding-top: 15px;
}
.accordion {
	border-bottom: 1px solid #fff;
	padding: 5px 0px;
}
.accordion .item-container {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.4s ease-in-out 0s;
	-moz-transition: max-height 0.4s ease-in-out 0s;
	-webkit-transition: max-height 0.4s ease-in-out 0s;
	-o-transition: max-height 0.4s ease-in-out 0s;
	-ms-transition: max-height 0.4s ease-in-out 0s;
	display: block;
	justify-content: space-between;
}
.accordion-title.active + .item-container {
	max-height: 10000px;
	transition: max-height 0.4s ease-in-out 0s;
	-moz-transition: max-height 0.4s ease-in-out 0s;
	-webkit-transition: max-height 0.4s ease-in-out 0s;
	-o-transition: max-height 0.4s ease-in-out 0s;
	-ms-transition: max-height 0.4s ease-in-out 0s;
	overflow-y: hidden;
}
.accordion-title.active .plus {
	transform: rotate(45deg);
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transition: transform 0.4s ease-in-out 0s;
}
.accordion-title {
	cursor: pointer;
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}
.more-info {
    display: flex;
}
.plus {
    position: relative;
    transition: 0.4s ease-in-out 0s;
    width: 100%;
}
.accordion .item-container {
	font-family: 'Hiruko';
}
.accordion .item-container h1,
.accordion .item-container h2{
  	font-size: 14px;
	font-weight: normal;
}
/*
Related Items
*/
.related-products {
	margin-top: 20px;
	padding: 0px 20px;
}
.related-items .thumbnail-item img {
	object-fit: cover;
	width: 100%;
	height: 60vh;
}
.related-items-title {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 10px;
}
.related-products .thumbnail-item img {
	height: 20vw;
}
/*
Full Width Image
*/
.full-width-image {
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	z-index: 0;
	position: relative;
}
.full-width-image .text-block-wrapper{
	display: flex;
	width: 50%;
	height: 100vh;
	justify-content: center;
	align-items: flex-start;
	z-index: 5;
	flex-direction: column;
	margin-left: 80px;
	
}
.full-width-image .text-block-wrapper p {
	font-size: 24px;
}
.full-width-image .text-block{
	justify-content: flex-start;
	width: 100%;
	text-align: left;
}
/*
Video
*/
:root {
--plyr-color-main: #eee9ff;
}
.plyr__control svg {
	height: 30px !important;
	width: 30px !important;
}
.plyr__control.plyr__control--overlaid {
	padding: 30px !important;
	opacity: 1 !important;
}
/*
Search
*/
.search {
	padding-top: 120px;
	width: 100%;
	padding-bottom: 120px;
}
main.single-page.search {
	padding-bottom: 120px;
}
.search-form {
	display: flex;
	flex-direction: row;
	padding:10px;
}
input.search-input {
	width: 100%;
	border: none;
	margin-right: 10px;
	padding: 10px;
	font-size: 24px;
	background: transparent;
	border-bottom: 3px solid #fff;
	color: #4736c6;
  font-family: 'Jamie Paige';
}
.search-submit {
	padding: 10px 20px;
}
.menu-icon.search-icon {
	cursor: pointer;
	margin-right: 20px;
	width: 22px;
	height: 27px;
}
.menu-icon.search-icon:hover {
	opacity: .5;
}
.search-header {
	width: 100vw;
	height: 100vh;
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 4;
	background: #b4aeff;
	animation: colorchange 30s linear 1s infinite;
-webkit-animation: colorchange 30s linear 0s infinite alternate;
}
.search-header.open-search {
	display: flex;
	opacity: 1;
}


/*
Footer
*/
footer {
	background: #b4aeff;
	transform: translateZ(0);
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
	padding:  30px 20px 20px 10px;
	font-size: 14px;
	font-weight: 500;
/*	margin-top: 40px;*/
}
footer a:hover {
	opacity: .3;
}
footer a {
	font-family: 'Hiruko';
}
footer ul {
	list-style-type: none;
	padding: 0;
	font-weight: 300;
}
.footer-newsletter {
    padding: 0px 20px;
}
.footer-newsletter p{
    font-size: 14px;
	margin-top: 15px;
}
.support {
    margin-left: 0px;
}
.inc{

}
.footer-banner {
	width: 100%;
	text-align: center;
	background-color: #e2daff;
	padding: 120px 0px;
	color: #fff;
}
.footer-banner a {
	color: #fff;
}
.footer-banner a:hover {
	opacity: .5;
}
footer li {
	margin-bottom: 10px;
}
.banner-item img{
	max-width: 80px;
}
.payments {
	padding-top: 25px;
}
footer .email {
	display: flex;
	flex-direction: row;
	width: 100%;
}
footer .email-subscription {
	font-size: 24px;
}
footer input.email-input {
	padding: 10px;
	border: none;
}
footer .submit {
	margin-left: 10px;
}
footer .submit input {
	background: #7665fb;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	color: #fff;
	padding: 10px;
	font-weight: 700;
	font-family: sans initial;
	letter-spacing: 0px;
	line-height: 1;
	cursor: pointer;
	text-transform: uppercase;
}
/*AJAX Cart*/

.hidden {
	display: none;
}
.go-cart__modal{position:fixed;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:50;display:flex;align-items:center;width:100%;max-width:420px;height:220px;background-color:#fff;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;opacity:0;visibility:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden}.go-cart__modal.is-open{opacity:1;visibility:visible}.go-cart__overlay{position:fixed;top:0;bottom:0;left:0;right:0;z-index:30;background-color:rgba(0,0,0,.4);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;opacity:0;visibility:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden}.go-cart__overlay.is-open{opacity:1;visibility:visible}.go-cart__drawer{position:fixed;top:0;right:-480px;z-index:40;width:100%;max-width:480px;height:100%;background-color:#7059ff;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden}.go-cart__drawer.is-open{-webkit-transform:translateX(-480px);transform:translateX(-480px)}.go-cart__drawer--left{right:auto;left:-480px}.go-cart__drawer--left.is-open{-webkit-transform:translateX(480px);transform:translateX(480px)}.go-cart__mini-cart{position:absolute;top:100%;left:0;z-index:40;width:480px;height:480px;background-color:#fff;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;opacity:0;visibility:hidden;cursor:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.go-cart__mini-cart.is-open{opacity:1;visibility:visible}.go-cart__empty{text-align:center;padding:40px 0}.go-cart__trigger{position:relative;cursor:pointer}.go-cart__button{background:#000;color:#fff;padding:20px 10px;text-align:center;cursor:pointer}.go-cart-modal{position:relative;width:100%;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.go-cart-modal__close{position:absolute;z-index:10;right:20px;top:20px;line-height:0;cursor:pointer}.go-cart-modal__content{width:100%;padding:20px;text-align:center}.go-cart-modal__buttons{width:100%;display:flex;align-items:center;justify-content:space-between;padding:0 20px 20px}.go-cart-drawer{position:relative;height:100%}.go-cart-drawer__header{width:100%;height:70px;display:flex;justify-content:flex-end;align-items:center;padding:0 30px}.go-cart-drawer__close{cursor:pointer;line-height:0}.go-cart-drawer__content{height:calc(100% - 400px);scrollbar-width: none;overflow:hidden;overflow-y:scroll;padding:0 30px}.go-cart-drawer__subtotal{align-items:center;height:50px;padding:0 30px}.go-cart-drawer__footer,.go-cart-drawer__subtotal{display:flex;justify-content:space-between;width:100%;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.go-cart-drawer__footer{flex-direction:column;height:170px;padding:20px 30px}.go-cart-mini-cart{position:relative}.go-cart-mini-cart__content{position:relative;height:330px;overflow:hidden;overflow-y:scroll;padding:0 30px}.go-cart-mini-cart__subtotal{align-items:center;height:50px;padding:0 30px}.go-cart-mini-cart__footer,.go-cart-mini-cart__subtotal{display:flex;justify-content:space-between;width:100%;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.go-cart-mini-cart__footer{height:100px;text-align:center;padding:20px 30px}.go-cart-item__single{position:relative;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;padding:15px 0;border-bottom:1px solid #fff}.go-cart-item__info-wrapper{position:relative;display:flex}.go-cart-item__info{max-width:190px;line-height:1.18;padding:10px 10px 10px 30px}.go-cart-item__image{width:90px;height:110px;background-size:cover;background-position:50%;background-repeat:no-repeat}.go-cart-item__title{vertical-align:top}.go-cart-item__variant{position:relative;top:5px}.go-cart-item__quantity{position:absolute;bottom:10px;display:flex;align-items:center}.go-cart-item__quantity-label{margin-right:5px}.go-cart-item__quantity-number{width:30px;height:24px;margin:0;text-align:center;font-size:1rem;color:#000;border:none;outline:none;-moz-appearance:textfield}.go-cart-item__quantity-number::-webkit-inner-spin-button,.go-cart-item__quantity-number::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;display:none}.go-cart-item__quantity-button{width:24px;height:24px;display:flex;align-items:center;justify-content:center;border:1px solid #f5f5f5;font-size:1rem;padding:0 5px;margin:0 2px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.go-cart-item__price{position:absolute;bottom:25px;right:0}.go-cart-item__remove{position:absolute;right:0;top:25px;cursor:pointer}.go-cart-modal-item{position:relative;display:flex}.go-cart-modal-item__info{max-width:250px;padding:10px 10px 10px 30px;line-height:1.18}.go-cart-modal-item__image{width:90px;height:110px;background-size:cover;background-position:50%;background-repeat:no-repeat}.is-invisible{opacity:0;visibility:hidden}
.close-button-color {
	fill: #e2daff;
}
.instructions-ajax {
	padding: 0px 30px;
}
.instructions-ajax span {
	padding: 10px 0px;
	display: block;
	border-top: 1px solid #fff;
}
.instructions-ajax textarea{
	width: calc( 100% - 150px);
}
.instructions-ajax button{
	background: #fff;
	color: #7665fb;
	border: 1px solid #7665fb; 
}
.instructions-ajax button:hover{
	background: #7665fb;
	color: #fff;
	border: 1px solid #fff; 
}
.instructions-ajax form{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
/*
Blog
*/
.blog-archive {
	padding-top: 120px;
}
.blog-archive h1{
	text-align: center;
}
.blog-archive h2{
	margin-bottom: 0px;
}
.blog-excerpt p{
	font-size: 16px;
}
.blog-thumbnail a {
	color: #fff;
}
.blog-single {
	
}
.blog-featured-image {
	height: 600px;
	width: 100%;
	display: flex;
}
.blog-featured-image img{
	object-fit: cover;
	object-position: center;
}
.article-content {
	font-size: 16px;
	font-weight: 500;
	padding-top: 40px;
}
.comments-form form{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#CommentAuthor, #CommentEmail, #CommentBody {
  border: none;
  padding: 10px;
}
.blog-title {
	text-align: center;
}
.medium {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
	opacity: .4;
}
.blog-title h1{
	margin-bottom: 0px;
}
/*
Mobile Menu
*/
.mobile-menu-wrapper {
	position: fixed;
	z-index: 5;
	top: 0px;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	display: none;
	transition: top 0.3s;
}
.mobile-nav-wrap {
	width: 100%;
	height: 100vh;
	background: #7665fb;
	top: 0;
	z-index: 4;
	position: fixed;
	pointer-events: none;
	opacity: 0;
	transition: .5s;
	-webkit-transition: .5s;
}
body.open-menu .mobile-nav-wrap {
	display: flex;
	pointer-events: auto;
	opacity: 1;
	transition: .5s;
	-webkit-transition: .5s;
}
/*
Cart
*/
.cart-page {
	padding-top: 140px;
	color: #fff;
}
/*
Cart Page
*/

.cart-labels {
	margin-bottom: 20px;
	border-top: 1px solid #fff;
	padding: 10px 0px;
	border-bottom: 1px solid #fff;
	top: 80px;
}
.cart-labels span {
	font-size: 16px;
	font-weight: normal;
	line-height: 10px;
}
.cart-item-section {
	border-bottom: 1px solid #fff;
	margin-bottom: 15px;
	padding-bottom: 10px;
}
.product-image-cart {
	max-width: 50%;
}
.sub-total {
	margin-bottom: 20px;
	text-align: right;
	width: 50%;
}
.sub-total button:hover{
	background: #fff;
	color: #7665fb;
	cursor: pointer;
}
.cart-quantity input{
	border: 1px solid #fff;
	padding: 10px;
	background: transparent;
	color: #fff;
}
.form-footer {
	display: flex;
	flex-direction: row;
	gap: 40px;
}
.cart-attribute__field {
	display: flex;
	flex-direction: column;
	width: 50%;
}
.cart-attribute__field textarea {
	border: none;
}
.cart-attribute__field label {
	font-size: 20px;
	margin-bottom: 20px;
}
/*
Other
*/
.doodles-smile {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	position: absolute;
	overflow: hidden;
}
.circle {
	max-width: 550px;
	z-index: 4;
	width: 100%;
	cursor: pointer;
}
.circle {
	 animation: rotation 50s infinite;
}

@keyframes rotation {
  00% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.hamburger {
	display: none;
}
.multiple-collection.grid.three-columns {
    padding-bottom: 80px;
}
@media screen and (max-width: 1440px) {
	.icons-columns {
		grid-template-columns: repeat(3, 1fr);
	}
	main.single-page {
		max-width: 1080px;
	}
	.section {
		max-width: 1080px;
	}
	.text-block h1 {
		font-size: 40px;
	}
	.text-block p {
		font-size: 16px;
		letter-spacing: .5px;
	}
	.thumbnail-item .reveal img {
		max-height: 400px;
		max-width: 320px;
		height: 400px;
		display: block;
	}
	.label {
		width: 330px;
	}
	.sticker-wrap {
		width: 80px;
		height: 110px;
	}
	.sticker-call-to-action {
		padding: 20px 0px;
	}
	.label-footer {
		padding: 15px;
	}
	.label-footer a{
		font-size: 14px;
	}
	.sticker {
		width: 100px;
	}
	.background-image img {
		padding: 130px 40px;
	}
	.slideshow-nav {
		width: 100%;
	}
	#collections {
		padding-bottom: 40px;
	}
	.collection-list .collection-thumbnail-list.list-description {
		width: 420px;
		height: 475px;
	}
	.collection-icon-text-wrapper {
		padding: 40px 0px 40px 0px;
	}
	.collection-list .collection-thumbnail-list img {
		height: 515px;
	}
	.collection-list .collection-title {
		line-height: 32px;
		font-size: 32px;
	}
	.collection-item-number {
		font-size: 16px;
		line-height: 20px;
		margin-left: 10px;
	}
	.collection-icon-image svg {
		padding: 10px;
		width: 80px;
	}
	.item-title h1, .item-price h1{
		font-size: 24px;
	}
	.item-text p{
		font-size: 16px;
	}
	.icons-columns {
		padding-bottom: 60px;
	}
	.blog-featured-image {
		height: 400px;
	}
	
}
@media screen and (max-width: 920px) {
	.one-column,
	.two-columns, 
	.three-quarters-columns,
	.six-columns {
		grid-template-columns: repeat(1, 1fr);
	}
    .three-columns {
      grid-template-columns: 1fr 1fr
    }
	.archive.three-columns {
		grid-template-columns: repeat(3, 1fr);
	}
	.icons-columns {
		grid-template-columns: repeat(3, 1fr);
	}
	.menu {
		display: none;
	}
	.revert {
		display: flex;
		flex-flow: column-reverse;
	}
	.five-columns {
		grid-template-columns: repeat(2, 2fr);
	}
	.four-columns {
		grid-template-columns: repeat(2, 2fr);
	}
	.mobile-menu-wrapper { 
		display: flex;
	}
	.mobile .currency-dropdown::after {
		margin-top: -30px;
		max-width: 10px;
		display: block;
		position: relative;
		float: right;
		width: 100%;
	}
	.mobile .currency-dropdown {
    	padding: 15px 10px 5px 8px;
	}
	.mobile .currency {
		font-family: 'Optima';
		font-weight: normal;
	}
	.mobile option {
		margin: 0px;
		padding: 0px;
		padding-inline: 0px;
	}
	.related-products.four-columns {
		grid-template-columns: repeat(1, 1fr 1fr);
	}
	.product-image-cart {
		max-width: 100%;
	}
	.related-products {
		border: 0px;
		margin-top: 0px;
	}
	.related-products .thumbnail-item img {
    	height: 50vw;
	}
	.primary-menu {
		display: none;
	}
	.one-column .thumbnail-section-title {
		width: 97vw;
	}
	.thumbnail-section-title {
		width: 98%;
	}
	.thumbnail-item img {
		height: 80vh;
	}
	.product-preview {
		max-width: 100%;
		width: 100%;
		margin: 0;
		overflow: hidden;
	}
	.mobile-menu, .mobile-cart {
		display: flex;
		width: 20px;
		margin: 20px;
		cursor: pointer;
	}
	.home-slideshow .next {
		left: 80px;
	}
	.item-single-page-header.grid.two-columns {
		grid-template-columns: 1fr 1fr;
	}
	footer {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-newsletter {
    	padding: 0px;
	}
	.support {
    	margin-left: 0px;
	}
	.cart-labels {
		display: none;
	}
	.cart-mobile-titles {
		display: block;
	}
	.cart-product-size {
		padding: 0px;
	}
	.cart-size, .cart-price, .cart-total, .cart-quantity {
		display:flex;
/*		border-top: 1px solid #fff;*/
        margin-top: 5px;
        padding: 10px 0px;
        justify-content: space-between;
	}
	a.remove-cart {
		width: 100%;
		text-align: center;
	}
	.home-slideshow .slide button{
		font-size: 16px;
		margin-bottom: 30px;
	}
    .prev-slide {
        cursor: url('prev.png'), auto;
        height: calc(100vh - 80px);
        position: absolute;
        width: 50%;
        z-index: 20;
    }
    .next-slide {
        cursor: url('next.png'), auto;
        height: calc(100vh - 80px);
        left: 50%;
        position: absolute;
        width: 50%;
        z-index: 20;
    }
	.slideshow-button.bottom-button {
		justify-content: flex-end;
	}
	.slideshow-button.center-button {
		align-items: center;
	}
	.jdp-logo {
		padding: 10px;
	}
	.ferme img {
    	width: 130px;
	}
	.secondary-menu ul {
		padding-right: 0px;
		display: flex;
		align-items: center;
	}
	.menu-icon {
		display: none;
	}
	.resize {
		max-width: 130px;
		padding: 0px;
	}
	li.currency-dropdown select {
		margin-bottom: 0px;
	}
	main.single-page {
		padding: 150px 0px 40px;
	}
	.single-product {
		padding: 0px 30px 40px;
	}
	.grid.two-columns.single-product {
		grid-template-columns: 1fr;
	}
	.collection-list .collection-item:hover .collection-thumbnail-list {
		display: none;
	}
	.collection-list .collection-thumbnail-list.list-description {
		display: none;
	}
	.stickers-wrapper {
		background: transparent;
		box-shadow: none;
	}
	.stickers-wrapper-header.title-wrapper {
		display: none;
	}
	.sticker-sheet-logo {
		display: none;
	}
	.label-header{
		display: none;
	}
	.label {
		background: transparent;
		box-shadow: none;
		margin: 0 auto;
		top: 20px;
		background-size: contain;
		height: auto;
	}
	.logo {
		justify-content: center;
		align-items: first baseline;
		z-index: 10;
		position: relative;
		
	}
	.happy-face {
		margin: 0 auto;
		top: initial;
		left: initial;
		width: 100%;
		max-width: 100%;
		display: flex;
		z-index: 1;
		height: 200px;
		justify-content: center;
		display: none;
	}
	.happy-face img{
		max-width: 150px;
		margin: 0 auto;
		position: relative;
		height: 90px;
	}
	.section {
		padding: 0px 30px 30px 30px;
	}
	.stickers-wrapper-header {
		padding: 50px 0px 0px 0px;
	}
	.stickers-wrapper-header .section-title{
		padding: 0px 40px;
	}
	.stickers-wrapper-header .collection-icon-description {
		display: none;
	}
	.about, .blog-archive{
		margin-top: 150px;
	}
	.collections-wrapper {
		padding-top: 5px;
	}
	.collection-list .collection-title {
		line-height: 24px;
		font-size: 24px;
		padding: 0px 10px;
		padding-top: 7px;
	}
	.collection-list .section-title {
		background: #7665fb;
		margin-top: 40px;
		padding: 10px 15px 5px 15px;
	}
	.text-block h1 {
		font-size: 24px;
		padding: 0px;
		margin: 0px;
	}
	footer {
		padding: 30px;
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
	.footer-banner {
		padding: 40px 0px;
	}
	.footer-banner.three-columns {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.footer-banner h2 {
		font-size: 14px;
		font-weight: normal;
		text-align: left;
		padding-left: 20px;
	}
	.notebook img{
		display: none;
	}
	.notebook-mobile-link {
		display: block;
	}
	.notebook {
		width: 100%;
		height: 650px;
		display: flex;
		justify-content: center;
		background-image: url('notepad.png');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
	.label-footer {
		display: none;
	}
	.sticker {
		width: 85px;
		padding: 15px;
	}
	.stickers-sheet {
		position: absolute;
		height: 700px;
		overflow: hidden;
		padding: 0px 20px;
		align-items: center;
	}
/*
	.home-slideshow .home-slider .slide:first-child img {
		object-position: -200px;
	}
*/
	.full-width-image .text-block-wrapper {
		width: 80%;
		margin-left: 0px;
		text-align: center;
		margin: 0 auto;
		height: 60vh;
		align-items: center;
		justify-content: center;
	}
	.full-width-image {
		height: 80vh;
	}
	.full-width-image .text-block-wrapper p {
		font-size: 15px;
	}
	.icon-arrow {
		width: 40px;
		height: 40px;
	}
	.prev, .next {
		width: 40px;
	}
	.text-block p {
		font-size: 14px;
	}
	button {
		font-size: 14px;
	}
	.jpd-logo img {
		width: 230px;
		margin-top: 10px;
	}
	.jpd-logo {
		width: 100%;
		justify-content: center;
	}
	.jpd-header-mobile .mobile-logo img {
		width: 280px;
		margin-top: 10px;
	}
	.jpd-header-mobile {
		width: 100%;
		z-index: 10000;
		margin-top: 20px;
		display: flex;
		justify-content: space-between;
		flex-direction: row;
		padding: 0px 20px;
		align-items: center;
	}
	.hamburger {
		display: flex;
		margin-bottom: 20px;
		padding: 10px;
	}
	.hamburger img {
		max-width: 30px;
		border-radius: 0px;
		height: 30px;
	}
	.close-button {
		display: none;
		pointer-events: none;
	}
	.jpd-header-mobile.open .close-button {
		display: block;
		pointer-events: auto;
	}
	.hamburger-button {
		display: block;
		pointer-events: auto;
	}
	.jpd-header-mobile.open .hamburger-button {
		display: none;
		pointer-events: none;
	}
	.secondary-menu {
		display: none;
	}
	.mobile-menu, .mobile-cart {
		display: none;
	}
	.slideshow-button {
		display: flex;
		position: absolute;
		width: 100%;
		height: 100vh;
		justify-content: center;
		align-items: flex-end;
		padding: 0px 30px;
	}
	.slideshow-nav {
		width: 50%;
		right: 0px;
		bottom: 0px;
		justify-content: flex-start;
	}
	.home-slideshow .slideshow-nav {
		width: 150px;
	}
	.prev {
		margin-right: 10px;
	}
	.banner-item {
		max-width: 80%;
		margin: 0 auto;
	}
	.logo{
		opacity: 0;
	}
	.follow-us {
		padding: 0px;
	}
	.text-block-wrapper {
		padding: 30px 0px;
	}
	.text-block h1{
		font-size: 32px;
	}
	.collection-icon-text-wrapper {
		padding: 40px 0px 40px 0px;
	}
	.home-about img{
		padding-top: 40px;
	}
	.home-about .signature img{
		padding-top: 0px;
		max-width: 100px;
	}
	.plyr__control.plyr__control--overlaid {
		padding: 10px !important;
	}
	.plyr__control--overlaid svg {
		left: 8px !important;
	}
	.follow {
		padding: 20px 40px;
	}
	.divider {
		background-image: url('divider-mobile.svg');
		background-size: contain;
		height: 15px;
		background-position: center;
		background-repeat: no-repeat;
		padding: 40px 0px;
	}
	.divider img{
		display: none;
		
	}
	.stickers-wrapper {
		pointer-events: none;
	}
	.circle {
		display: none;
	}
	.collections-icon .collection-icon-title {
		font-size: 14px;
	}
	.sticker-sheet-logo svg{
		max-width: 100%;
	}
	.featured-slideshow-nav {
		top: 10px;
		padding: 30px 20px;
	}
	.featured-slideshow-nav .icon-arrow {
		width: 30px;
		height: 30px;
		padding: 6px;
	}
	.featured-slideshow-nav .prev {
		margin-right: 0px;
	}
	.interactive-sticker-sheet{
		background: transparent;
		box-shadow: none;
	}
	.sticker-call-to-action {
		padding: 20px 10px;
		color: #e65423;
		display: none;
	}
	body, html {
		background-color: #c9c0ff !important;
		animation: none;
    	-webkit-animation: none; 
	}
	section {
		background-color: #c9c0ff !important;
	}
	#collections {
		padding-bottom: 0px;
	}
	.full-width-image {
		background-size: cover;
		background-attachment: scroll;
		z-index: -2;
		height: 60vh;
	}
	.three-columns.search-products {
		grid-template-columns: 1fr;
	}
	.search-products img{
		height: auto;
	}
	.cart-item-section {
		grid-template-columns: 1fr;
		font-size: 16px;
	}
    .go-cart-item__price {
        position: relative;
        bottom: 0;
        right: 0;
        padding: 20px 0px;
        text-align: right;
    }
	.form-footer {
		flex-direction: column;
	}
	.cart-attribute__field, .sub-total {
		width: 100%
	}
	.our-doodles {
		padding-top: 120px;
	}
	.thumbnail-item {
		padding: 0px 20px;
	}
	.thumbnail-item .add-to-cart-button {
		margin: 0px 10px;
	}
	.right  {
		text-align: right;
	}
	.thumbnail-item .reveal img {
		max-height: 300px;
		max-width: 520px;
		height: auto;
	}
	.slick-slide img.desktop-slide {
		display: none;
	}
	.slick-slide img.mobile-slide {
		display: block;
	}
    .multiple-collection.grid.three-columns {
      grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 812px) {
 
	.archive.three-columns {
		grid-template-columns: 1fr 1fr;
	}
    
}
@media screen and (max-width: 600px) {
   .three-columns {
      grid-template-columns: 1fr 
    }
	.archive.three-columns {
		grid-template-columns: 1fr;
	}
	.thumbnail-item .reveal img {
		max-height: 600px;
		max-width: 520px;
		height: auto;
	}
	.banner-wrapper p {
		font-size: 12px;
	}
}
main {
	background: transparent;
	z-index: 1;
	position: relative;
}
.home-slider {
    overflow: hidden;
}
.loading {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	background-size: 100px;
	display: flex;
	align-items: center;
	background-color: #c9c0ff; 
	justify-content: center;
}

.rotate {
	animation: fadeIn 1.4s infinite alternate ease-in-out;
	opacity: 0;
	width: 200px;
	height: 200px;
}

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

.rotate img {
	width: 100%;
	height: auto;
	-webkit-animation: rotating 10s linear infinite;
	-moz-animation: rotating 10s linear infinite;
	-ms-animation: rotating 10s linear infinite;
	-o-animation: rotating 10s linear infinite;
	animation: rotating 10s linear infinite;
}

@-webkit-keyframes rotating {
	from {
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.loading-face img {
	width: 100%;
	height: auto;
}
.loading-face {
	width: 40px;
	height: 40px;
	position: absolute;
}
div#dd-restock-notification-container .da-restock-notification .da-restock-notification-form, div#dd-restock-notification-container .da-restock-notification form {
background-color: #e3dafe !important;
}
.da-restock-collection-img-new-wrapper p, .da-restock-image p, div#dd-restock-notification-container .da-restock-notification p{
color: #ffffff !important;
}
div#dd-restock-notification-container .da-restock-notification form button, div#dd-restock-notification-container .da-restock-notification-button {
  background-color: #7665fb !important;
}
div#dd-restock-notification-container #dd-restock-notification-msg {
  background-color: #7665fb !important;
}
.you-might-like-wrapper {
  position: relative;
  .featured-slideshow-nav {
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 30px;
  }
  .related-products .thumbnail-item img {
    height: auto;
  }
  .section-title {
    padding-top:0;
    padding-bottom: 20px;
  }
}