/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
@font-face{font-display:swap;font-family:'Rottersand';font-style:normal;font-weight:normal;src:url(https://static.artofwhere.net/fonts/rottersand-c5a87b34bf754d801515.eot);src:url(https://static.artofwhere.net/fonts/rottersand-c5a87b34bf754d801515.eot?#iefix) format("embedded-opentype"),url(https://static.artofwhere.net/fonts/rottersand-ed0de9e2a43b2f8ffcf9.woff2) format("woff2"),url(https://static.artofwhere.net/fonts/rottersand-2bf6d042572722d35137.woff) format("woff"),url(https://static.artofwhere.net/fonts/rottersand-cd311365ce0006fc4d50.ttf) format("truetype"),url(https://static.artofwhere.net/img2/font/rottersand/rottersand-e32c51607c9de84b0ca2.svg#Rottersand) format("svg")}.materialize-red{background-color:#e51c23 !important}.materialize-red-text{color:#e51c23 !important}.materialize-red.lighten-5{background-color:#fdeaeb !important}.materialize-red-text.text-lighten-5{color:#fdeaeb !important}.materialize-red.lighten-4{background-color:#f8c1c3 !important}.materialize-red-text.text-lighten-4{color:#f8c1c3 !important}.materialize-red.lighten-3{background-color:#f3989b !important}.materialize-red-text.text-lighten-3{color:#f3989b !important}.materialize-red.lighten-2{background-color:#ee6e73 !important}.materialize-red-text.text-lighten-2{color:#ee6e73 !important}.materialize-red.lighten-1{background-color:#ea454b !important}.materialize-red-text.text-lighten-1{color:#ea454b !important}.materialize-red.darken-1{background-color:#d0181e !important}.materialize-red-text.text-darken-1{color:#d0181e !important}.materialize-red.darken-2{background-color:#b9151b !important}.materialize-red-text.text-darken-2{color:#b9151b !important}.materialize-red.darken-3,.order-status .step.step-done .materialize-red.info-badge.icon,.order-status .materialize-red.info-badge.step-line.step-line-done,.materialize-red.info-badge.green{background-color:#a21318 !important}.materialize-red-text.text-darken-3{color:#a21318 !important}.materialize-red.darken-4{background-color:#8b1014 !important}.materialize-red-text.text-darken-4{color:#8b1014 !important}.red,.order-status .step.step-cancelled .icon,.info-badge.red{background-color:#F44336 !important}.red-text,.order-status .step.step-cancelled .label{color:#F44336 !important}.red.lighten-5,.order-status .step.step-cancelled .lighten-5.icon{background-color:#FFEBEE !important}.red-text.text-lighten-5,.order-status .step.step-cancelled .text-lighten-5.label{color:#FFEBEE !important}.red.lighten-4,.order-status .step.step-cancelled .lighten-4.icon{background-color:#FFCDD2 !important}.red-text.text-lighten-4,.order-status .step.step-cancelled .text-lighten-4.label{color:#FFCDD2 !important}.red.lighten-3,.order-status .step.step-cancelled .lighten-3.icon{background-color:#EF9A9A !important}.red-text.text-lighten-3,.order-status .step.step-cancelled .text-lighten-3.label{color:#EF9A9A !important}.red.lighten-2,.order-status .step.step-cancelled .lighten-2.icon{background-color:#E57373 !important}.red-text.text-lighten-2,.order-status .step.step-cancelled .text-lighten-2.label{color:#E57373 !important}.red.lighten-1,.order-status .step.step-cancelled .lighten-1.icon{background-color:#EF5350 !important}.red-text.text-lighten-1,.order-status .step.step-cancelled .text-lighten-1.label{color:#EF5350 !important}.red.darken-1,.order-status .step.step-cancelled .darken-1.icon{background-color:#E53935 !important}.red-text.text-darken-1,.order-status .step.step-cancelled .text-darken-1.label{color:#E53935 !important}.red.darken-2,.order-status .step.step-cancelled .darken-2.icon{background-color:#D32F2F !important}.red-text.text-darken-2,.order-status .step.step-cancelled .text-darken-2.label{color:#D32F2F !important}.red.darken-3,.order-status .step.step-cancelled .darken-3.icon,.order-status .step.step-cancelled .icon.info-badge.green,.order-status .step.step-cancelled .step.step-done .icon.info-badge,.order-status .step.step-done .step.step-cancelled .icon.info-badge,.order-status .step.step-cancelled .icon.info-badge.step-line.step-line-done,.order-status .step.step-done .info-badge.icon.red,.order-status .info-badge.step-line.step-line-done.red,.info-badge.green.red{background-color:#C62828 !important}.red-text.text-darken-3,.order-status .step.step-cancelled .text-darken-3.label{color:#C62828 !important}.red.darken-4,.order-status .step.step-cancelled .darken-4.icon{background-color:#B71C1C !important}.red-text.text-darken-4,.order-status .step.step-cancelled .text-darken-4.label{color:#B71C1C !important}.red.accent-1,.order-status .step.step-cancelled .accent-1.icon,.order-status .step.step-cancelled .icon.info-badge.green,.order-status .step.step-cancelled .step.step-done .info-badge.icon,.order-status .step.step-done .step.step-cancelled .info-badge.icon,.order-status .step.step-cancelled .info-badge.icon.step-line.step-line-done,.info-badge.green.red{background-color:#FF8A80 !important}.red-text.text-accent-1,.order-status .step.step-cancelled .text-accent-1.label{color:#FF8A80 !important}.red.accent-2,.order-status .step.step-cancelled .accent-2.icon{background-color:#FF5252 !important}.red-text.text-accent-2,.order-status .step.step-cancelled .text-accent-2.label{color:#FF5252 !important}.red.accent-3,.order-status .step.step-cancelled .accent-3.icon{background-color:#FF1744 !important}.red-text.text-accent-3,.order-status .step.step-cancelled .text-accent-3.label{color:#FF1744 !important}.red.accent-4,.order-status .step.step-cancelled .accent-4.icon{background-color:#D50000 !important}.red-text.text-accent-4,.order-status .step.step-cancelled .text-accent-4.label{color:#D50000 !important}.pink{background-color:#e91e63 !important}.pink-text{color:#e91e63 !important}.pink.lighten-5{background-color:#fce4ec !important}.pink-text.text-lighten-5{color:#fce4ec !important}.pink.lighten-4{background-color:#f8bbd0 !important}.pink-text.text-lighten-4{color:#f8bbd0 !important}.pink.lighten-3{background-color:#f48fb1 !important}.pink-text.text-lighten-3{color:#f48fb1 !important}.pink.lighten-2{background-color:#f06292 !important}.pink-text.text-lighten-2{color:#f06292 !important}.pink.lighten-1{background-color:#ec407a !important}.pink-text.text-lighten-1{color:#ec407a !important}.pink.darken-1{background-color:#d81b60 !important}.pink-text.text-darken-1{color:#d81b60 !important}.pink.darken-2{background-color:#c2185b !important}.pink-text.text-darken-2{color:#c2185b !important}.pink.darken-3,.order-status .step.step-done .pink.info-badge.icon,.order-status .pink.info-badge.step-line.step-line-done,.pink.info-badge.green{background-color:#ad1457 !important}.pink-text.text-darken-3{color:#ad1457 !important}.pink.darken-4{background-color:#880e4f !important}.pink-text.text-darken-4{color:#880e4f !important}.pink.accent-1,.pink.info-badge.green{background-color:#ff80ab !important}.pink-text.text-accent-1{color:#ff80ab !important}.pink.accent-2{background-color:#ff4081 !important}.pink-text.text-accent-2{color:#ff4081 !important}.pink.accent-3{background-color:#f50057 !important}.pink-text.text-accent-3{color:#f50057 !important}.pink.accent-4{background-color:#c51162 !important}.pink-text.text-accent-4{color:#c51162 !important}.purple{background-color:#9c27b0 !important}.purple-text{color:#9c27b0 !important}.purple.lighten-5{background-color:#f3e5f5 !important}.purple-text.text-lighten-5{color:#f3e5f5 !important}.purple.lighten-4{background-color:#e1bee7 !important}.purple-text.text-lighten-4{color:#e1bee7 !important}.purple.lighten-3{background-color:#ce93d8 !important}.purple-text.text-lighten-3{color:#ce93d8 !important}.purple.lighten-2{background-color:#ba68c8 !important}.purple-text.text-lighten-2{color:#ba68c8 !important}.purple.lighten-1{background-color:#ab47bc !important}.purple-text.text-lighten-1{color:#ab47bc !important}.purple.darken-1{background-color:#8e24aa !important}.purple-text.text-darken-1{color:#8e24aa !important}.purple.darken-2{background-color:#7b1fa2 !important}.purple-text.text-darken-2{color:#7b1fa2 !important}.purple.darken-3,.order-status .step.step-done .purple.info-badge.icon,.order-status .purple.info-badge.step-line.step-line-done,.purple.info-badge.green{background-color:#6a1b9a !important}.purple-text.text-darken-3{color:#6a1b9a !important}.purple.darken-4{background-color:#4a148c !important}.purple-text.text-darken-4{color:#4a148c !important}.purple.accent-1,.purple.info-badge.green{background-color:#ea80fc !important}.purple-text.text-accent-1{color:#ea80fc !important}.purple.accent-2{background-color:#e040fb !important}.purple-text.text-accent-2{color:#e040fb !important}.purple.accent-3{background-color:#d500f9 !important}.purple-text.text-accent-3{color:#d500f9 !important}.purple.accent-4{background-color:#a0f !important}.purple-text.text-accent-4{color:#a0f !important}.deep-purple{background-color:#673ab7 !important}.deep-purple-text{color:#673ab7 !important}.deep-purple.lighten-5{background-color:#ede7f6 !important}.deep-purple-text.text-lighten-5{color:#ede7f6 !important}.deep-purple.lighten-4{background-color:#d1c4e9 !important}.deep-purple-text.text-lighten-4{color:#d1c4e9 !important}.deep-purple.lighten-3{background-color:#b39ddb !important}.deep-purple-text.text-lighten-3{color:#b39ddb !important}.deep-purple.lighten-2{background-color:#9575cd !important}.deep-purple-text.text-lighten-2{color:#9575cd !important}.deep-purple.lighten-1{background-color:#7e57c2 !important}.deep-purple-text.text-lighten-1{color:#7e57c2 !important}.deep-purple.darken-1{background-color:#5e35b1 !important}.deep-purple-text.text-darken-1{color:#5e35b1 !important}.deep-purple.darken-2{background-color:#512da8 !important}.deep-purple-text.text-darken-2{color:#512da8 !important}.deep-purple.darken-3,.order-status .step.step-done .deep-purple.info-badge.icon,.order-status .deep-purple.info-badge.step-line.step-line-done,.deep-purple.info-badge.green{background-color:#4527a0 !important}.deep-purple-text.text-darken-3{color:#4527a0 !important}.deep-purple.darken-4{background-color:#311b92 !important}.deep-purple-text.text-darken-4{color:#311b92 !important}.deep-purple.accent-1,.deep-purple.info-badge.green{background-color:#b388ff !important}.deep-purple-text.text-accent-1{color:#b388ff !important}.deep-purple.accent-2{background-color:#7c4dff !important}.deep-purple-text.text-accent-2{color:#7c4dff !important}.deep-purple.accent-3{background-color:#651fff !important}.deep-purple-text.text-accent-3{color:#651fff !important}.deep-purple.accent-4{background-color:#6200ea !important}.deep-purple-text.text-accent-4{color:#6200ea !important}.indigo{background-color:#3f51b5 !important}.indigo-text{color:#3f51b5 !important}.indigo.lighten-5{background-color:#e8eaf6 !important}.indigo-text.text-lighten-5{color:#e8eaf6 !important}.indigo.lighten-4{background-color:#c5cae9 !important}.indigo-text.text-lighten-4{color:#c5cae9 !important}.indigo.lighten-3{background-color:#9fa8da !important}.indigo-text.text-lighten-3{color:#9fa8da !important}.indigo.lighten-2{background-color:#7986cb !important}.indigo-text.text-lighten-2{color:#7986cb !important}.indigo.lighten-1{background-color:#5c6bc0 !important}.indigo-text.text-lighten-1{color:#5c6bc0 !important}.indigo.darken-1{background-color:#3949ab !important}.indigo-text.text-darken-1{color:#3949ab !important}.indigo.darken-2{background-color:#303f9f !important}.indigo-text.text-darken-2{color:#303f9f !important}.indigo.darken-3,.order-status .step.step-done .indigo.info-badge.icon,.order-status .indigo.info-badge.step-line.step-line-done,.indigo.info-badge.green{background-color:#283593 !important}.indigo-text.text-darken-3{color:#283593 !important}.indigo.darken-4{background-color:#1a237e !important}.indigo-text.text-darken-4{color:#1a237e !important}.indigo.accent-1,.indigo.info-badge.green{background-color:#8c9eff !important}.indigo-text.text-accent-1{color:#8c9eff !important}.indigo.accent-2{background-color:#536dfe !important}.indigo-text.text-accent-2{color:#536dfe !important}.indigo.accent-3{background-color:#3d5afe !important}.indigo-text.text-accent-3{color:#3d5afe !important}.indigo.accent-4{background-color:#304ffe !important}.indigo-text.text-accent-4{color:#304ffe !important}.blue{background-color:#2196F3 !important}.blue-text{color:#2196F3 !important}.blue.lighten-5{background-color:#E3F2FD !important}.blue-text.text-lighten-5{color:#E3F2FD !important}.blue.lighten-4{background-color:#BBDEFB !important}.blue-text.text-lighten-4{color:#BBDEFB !important}.blue.lighten-3{background-color:#90CAF9 !important}.blue-text.text-lighten-3{color:#90CAF9 !important}.blue.lighten-2{background-color:#64B5F6 !important}.blue-text.text-lighten-2{color:#64B5F6 !important}.blue.lighten-1{background-color:#42A5F5 !important}.blue-text.text-lighten-1{color:#42A5F5 !important}.blue.darken-1{background-color:#1E88E5 !important}.blue-text.text-darken-1{color:#1E88E5 !important}.blue.darken-2{background-color:#1976D2 !important}.blue-text.text-darken-2{color:#1976D2 !important}.blue.darken-3,.order-status .step.step-done .blue.info-badge.icon,.order-status .blue.info-badge.step-line.step-line-done,.blue.info-badge.green{background-color:#1565C0 !important}.blue-text.text-darken-3{color:#1565C0 !important}.blue.darken-4{background-color:#0D47A1 !important}.blue-text.text-darken-4{color:#0D47A1 !important}.blue.accent-1,.blue.info-badge.green{background-color:#82B1FF !important}.blue-text.text-accent-1{color:#82B1FF !important}.blue.accent-2{background-color:#448AFF !important}.blue-text.text-accent-2{color:#448AFF !important}.blue.accent-3{background-color:#2979FF !important}.blue-text.text-accent-3{color:#2979FF !important}.blue.accent-4{background-color:#2962FF !important}.blue-text.text-accent-4{color:#2962FF !important}.light-blue{background-color:#03a9f4 !important}.light-blue-text{color:#03a9f4 !important}.light-blue.lighten-5{background-color:#e1f5fe !important}.light-blue-text.text-lighten-5{color:#e1f5fe !important}.light-blue.lighten-4{background-color:#b3e5fc !important}.light-blue-text.text-lighten-4{color:#b3e5fc !important}.light-blue.lighten-3{background-color:#81d4fa !important}.light-blue-text.text-lighten-3{color:#81d4fa !important}.light-blue.lighten-2{background-color:#4fc3f7 !important}.light-blue-text.text-lighten-2{color:#4fc3f7 !important}.light-blue.lighten-1{background-color:#29b6f6 !important}.light-blue-text.text-lighten-1{color:#29b6f6 !important}.light-blue.darken-1{background-color:#039be5 !important}.light-blue-text.text-darken-1{color:#039be5 !important}.light-blue.darken-2{background-color:#0288d1 !important}.light-blue-text.text-darken-2{color:#0288d1 !important}.light-blue.darken-3,.order-status .step.step-done .light-blue.info-badge.icon,.order-status .light-blue.info-badge.step-line.step-line-done,.light-blue.info-badge.green{background-color:#0277bd !important}.light-blue-text.text-darken-3{color:#0277bd !important}.light-blue.darken-4{background-color:#01579b !important}.light-blue-text.text-darken-4{color:#01579b !important}.light-blue.accent-1,.light-blue.info-badge.green{background-color:#80d8ff !important}.light-blue-text.text-accent-1{color:#80d8ff !important}.light-blue.accent-2{background-color:#40c4ff !important}.light-blue-text.text-accent-2{color:#40c4ff !important}.light-blue.accent-3{background-color:#00b0ff !important}.light-blue-text.text-accent-3{color:#00b0ff !important}.light-blue.accent-4{background-color:#0091ea !important}.light-blue-text.text-accent-4{color:#0091ea !important}.cyan{background-color:#00bcd4 !important}.cyan-text{color:#00bcd4 !important}.cyan.lighten-5{background-color:#e0f7fa !important}.cyan-text.text-lighten-5{color:#e0f7fa !important}.cyan.lighten-4{background-color:#b2ebf2 !important}.cyan-text.text-lighten-4{color:#b2ebf2 !important}.cyan.lighten-3{background-color:#80deea !important}.cyan-text.text-lighten-3{color:#80deea !important}.cyan.lighten-2{background-color:#4dd0e1 !important}.cyan-text.text-lighten-2{color:#4dd0e1 !important}.cyan.lighten-1{background-color:#26c6da !important}.cyan-text.text-lighten-1{color:#26c6da !important}.cyan.darken-1{background-color:#00acc1 !important}.cyan-text.text-darken-1{color:#00acc1 !important}.cyan.darken-2{background-color:#0097a7 !important}.cyan-text.text-darken-2{color:#0097a7 !important}.cyan.darken-3,.order-status .step.step-done .cyan.info-badge.icon,.order-status .cyan.info-badge.step-line.step-line-done,.cyan.info-badge.green{background-color:#00838f !important}.cyan-text.text-darken-3{color:#00838f !important}.cyan.darken-4{background-color:#006064 !important}.cyan-text.text-darken-4{color:#006064 !important}.cyan.accent-1,.cyan.info-badge.green{background-color:#84ffff !important}.cyan-text.text-accent-1{color:#84ffff !important}.cyan.accent-2{background-color:#18ffff !important}.cyan-text.text-accent-2{color:#18ffff !important}.cyan.accent-3{background-color:#00e5ff !important}.cyan-text.text-accent-3{color:#00e5ff !important}.cyan.accent-4{background-color:#00b8d4 !important}.cyan-text.text-accent-4{color:#00b8d4 !important}.teal{background-color:#009688 !important}.teal-text{color:#009688 !important}.teal.lighten-5{background-color:#e0f2f1 !important}.teal-text.text-lighten-5{color:#e0f2f1 !important}.teal.lighten-4{background-color:#b2dfdb !important}.teal-text.text-lighten-4{color:#b2dfdb !important}.teal.lighten-3{background-color:#80cbc4 !important}.teal-text.text-lighten-3{color:#80cbc4 !important}.teal.lighten-2{background-color:#4db6ac !important}.teal-text.text-lighten-2{color:#4db6ac !important}.teal.lighten-1{background-color:#26a69a !important}.teal-text.text-lighten-1{color:#26a69a !important}.teal.darken-1{background-color:#00897b !important}.teal-text.text-darken-1{color:#00897b !important}.teal.darken-2{background-color:#00796b !important}.teal-text.text-darken-2{color:#00796b !important}.teal.darken-3,.order-status .step.step-done .teal.info-badge.icon,.order-status .teal.info-badge.step-line.step-line-done,.teal.info-badge.green{background-color:#00695c !important}.teal-text.text-darken-3{color:#00695c !important}.teal.darken-4{background-color:#004d40 !important}.teal-text.text-darken-4{color:#004d40 !important}.teal.accent-1,.teal.info-badge.green{background-color:#a7ffeb !important}.teal-text.text-accent-1{color:#a7ffeb !important}.teal.accent-2{background-color:#64ffda !important}.teal-text.text-accent-2{color:#64ffda !important}.teal.accent-3{background-color:#1de9b6 !important}.teal-text.text-accent-3{color:#1de9b6 !important}.teal.accent-4{background-color:#00bfa5 !important}.teal-text.text-accent-4{color:#00bfa5 !important}.green,.order-status .step.step-done .icon,.order-status .step-line.step-line-done,.info-badge.green{background-color:#4CAF50 !important}.green-text,.order-status .step.step-done .label,.info-badge.green{color:#4CAF50 !important}.green.lighten-5,.order-status .step.step-done .lighten-5.icon,.order-status .lighten-5.step-line.step-line-done{background-color:#E8F5E9 !important}.green-text.text-lighten-5,.order-status .step.step-done .text-lighten-5.label,.order-status .step.step-done .text-lighten-5.info-badge.icon,.order-status .text-lighten-5.info-badge.step-line.step-line-done,.text-lighten-5.info-badge.green{color:#E8F5E9 !important}.green.lighten-4,.order-status .step.step-done .lighten-4.icon,.order-status .lighten-4.step-line.step-line-done{background-color:#C8E6C9 !important}.green-text.text-lighten-4,.order-status .step.step-done .text-lighten-4.label,.order-status .step.step-done .text-lighten-4.info-badge.icon,.order-status .text-lighten-4.info-badge.step-line.step-line-done,.text-lighten-4.info-badge.green{color:#C8E6C9 !important}.green.lighten-3,.order-status .step.step-done .lighten-3.icon,.order-status .lighten-3.step-line.step-line-done{background-color:#A5D6A7 !important}.green-text.text-lighten-3,.order-status .step.step-done .text-lighten-3.label,.order-status .step.step-done .text-lighten-3.info-badge.icon,.order-status .text-lighten-3.info-badge.step-line.step-line-done,.text-lighten-3.info-badge.green{color:#A5D6A7 !important}.green.lighten-2,.order-status .step.step-done .lighten-2.icon,.order-status .lighten-2.step-line.step-line-done{background-color:#81C784 !important}.green-text.text-lighten-2,.order-status .step.step-done .text-lighten-2.label,.order-status .step.step-done .text-lighten-2.info-badge.icon,.order-status .text-lighten-2.info-badge.step-line.step-line-done,.text-lighten-2.info-badge.green{color:#81C784 !important}.green.lighten-1,.order-status .step.step-done .lighten-1.icon,.order-status .lighten-1.step-line.step-line-done{background-color:#66BB6A !important}.green-text.text-lighten-1,.order-status .step.step-done .text-lighten-1.label,.order-status .step.step-done .text-lighten-1.info-badge.icon,.order-status .text-lighten-1.info-badge.step-line.step-line-done,.text-lighten-1.info-badge.green{color:#66BB6A !important}.green.darken-1,.order-status .step.step-done .darken-1.icon,.order-status .darken-1.step-line.step-line-done{background-color:#43A047 !important}.green-text.text-darken-1,.order-status .step.step-done .text-darken-1.label,.order-status .step.step-done .text-darken-1.info-badge.icon,.order-status .text-darken-1.info-badge.step-line.step-line-done,.text-darken-1.info-badge.green{color:#43A047 !important}.green.darken-2,.order-status .step.step-done .darken-2.icon,.order-status .darken-2.step-line.step-line-done{background-color:#388E3C !important}.green-text.text-darken-2,.order-status .step.step-done .text-darken-2.label,.order-status .step.step-done .text-darken-2.info-badge.icon,.order-status .text-darken-2.info-badge.step-line.step-line-done,.text-darken-2.info-badge.green{color:#388E3C !important}.green.darken-3,.order-status .step.step-done .darken-3.icon,.order-status .step.step-done .icon.info-badge.green,.order-status .darken-3.step-line.step-line-done,.order-status .step-line.step-line-done.info-badge.green,.info-badge.green{background-color:#2E7D32 !important}.green-text.text-darken-3,.order-status .step.step-done .text-darken-3.label,.order-status .step.step-done .text-darken-3.info-badge.icon,.order-status .text-darken-3.info-badge.step-line.step-line-done,.text-darken-3.info-badge.green{color:#2E7D32 !important}.green.darken-4,.order-status .step.step-done .darken-4.icon,.order-status .darken-4.step-line.step-line-done{background-color:#1B5E20 !important}.green-text.text-darken-4,.order-status .step.step-done .text-darken-4.label,.order-status .step.step-done .text-darken-4.info-badge.icon,.order-status .text-darken-4.info-badge.step-line.step-line-done,.text-darken-4.info-badge.green{color:#1B5E20 !important}.green.accent-1,.order-status .step.step-done .accent-1.icon,.order-status .step.step-done .icon.info-badge.green,.order-status .accent-1.step-line.step-line-done,.order-status .step-line.step-line-done.info-badge.green,.info-badge.green{background-color:#B9F6CA !important}.green-text.text-accent-1,.order-status .step.step-done .text-accent-1.label,.order-status .step.step-done .text-accent-1.info-badge.icon,.order-status .text-accent-1.info-badge.step-line.step-line-done,.text-accent-1.info-badge.green{color:#B9F6CA !important}.green.accent-2,.order-status .step.step-done .accent-2.icon,.order-status .accent-2.step-line.step-line-done{background-color:#69F0AE !important}.green-text.text-accent-2,.order-status .step.step-done .text-accent-2.label,.order-status .step.step-done .text-accent-2.info-badge.icon,.order-status .text-accent-2.info-badge.step-line.step-line-done,.text-accent-2.info-badge.green{color:#69F0AE !important}.green.accent-3,.order-status .step.step-done .accent-3.icon,.order-status .accent-3.step-line.step-line-done{background-color:#00E676 !important}.green-text.text-accent-3,.order-status .step.step-done .text-accent-3.label,.order-status .step.step-done .text-accent-3.info-badge.icon,.order-status .text-accent-3.info-badge.step-line.step-line-done,.text-accent-3.info-badge.green{color:#00E676 !important}.green.accent-4,.order-status .step.step-done .accent-4.icon,.order-status .accent-4.step-line.step-line-done{background-color:#00C853 !important}.green-text.text-accent-4,.order-status .step.step-done .text-accent-4.label,.order-status .step.step-done .text-accent-4.info-badge.icon,.order-status .text-accent-4.info-badge.step-line.step-line-done,.text-accent-4.info-badge.green{color:#00C853 !important}.light-green{background-color:#8bc34a !important}.light-green-text{color:#8bc34a !important}.light-green.lighten-5{background-color:#f1f8e9 !important}.light-green-text.text-lighten-5{color:#f1f8e9 !important}.light-green.lighten-4{background-color:#dcedc8 !important}.light-green-text.text-lighten-4{color:#dcedc8 !important}.light-green.lighten-3{background-color:#c5e1a5 !important}.light-green-text.text-lighten-3{color:#c5e1a5 !important}.light-green.lighten-2{background-color:#aed581 !important}.light-green-text.text-lighten-2{color:#aed581 !important}.light-green.lighten-1{background-color:#9ccc65 !important}.light-green-text.text-lighten-1{color:#9ccc65 !important}.light-green.darken-1{background-color:#7cb342 !important}.light-green-text.text-darken-1{color:#7cb342 !important}.light-green.darken-2{background-color:#689f38 !important}.light-green-text.text-darken-2{color:#689f38 !important}.light-green.darken-3,.order-status .step.step-done .light-green.info-badge.icon,.order-status .light-green.info-badge.step-line.step-line-done,.light-green.info-badge.green{background-color:#558b2f !important}.light-green-text.text-darken-3{color:#558b2f !important}.light-green.darken-4{background-color:#33691e !important}.light-green-text.text-darken-4{color:#33691e !important}.light-green.accent-1,.light-green.info-badge.green{background-color:#ccff90 !important}.light-green-text.text-accent-1{color:#ccff90 !important}.light-green.accent-2{background-color:#b2ff59 !important}.light-green-text.text-accent-2{color:#b2ff59 !important}.light-green.accent-3{background-color:#76ff03 !important}.light-green-text.text-accent-3{color:#76ff03 !important}.light-green.accent-4{background-color:#64dd17 !important}.light-green-text.text-accent-4{color:#64dd17 !important}.lime{background-color:#cddc39 !important}.lime-text{color:#cddc39 !important}.lime.lighten-5{background-color:#f9fbe7 !important}.lime-text.text-lighten-5{color:#f9fbe7 !important}.lime.lighten-4{background-color:#f0f4c3 !important}.lime-text.text-lighten-4{color:#f0f4c3 !important}.lime.lighten-3{background-color:#e6ee9c !important}.lime-text.text-lighten-3{color:#e6ee9c !important}.lime.lighten-2{background-color:#dce775 !important}.lime-text.text-lighten-2{color:#dce775 !important}.lime.lighten-1{background-color:#d4e157 !important}.lime-text.text-lighten-1{color:#d4e157 !important}.lime.darken-1{background-color:#c0ca33 !important}.lime-text.text-darken-1{color:#c0ca33 !important}.lime.darken-2{background-color:#afb42b !important}.lime-text.text-darken-2{color:#afb42b !important}.lime.darken-3,.order-status .step.step-done .lime.info-badge.icon,.order-status .lime.info-badge.step-line.step-line-done,.lime.info-badge.green{background-color:#9e9d24 !important}.lime-text.text-darken-3{color:#9e9d24 !important}.lime.darken-4{background-color:#827717 !important}.lime-text.text-darken-4{color:#827717 !important}.lime.accent-1,.lime.info-badge.green{background-color:#f4ff81 !important}.lime-text.text-accent-1{color:#f4ff81 !important}.lime.accent-2{background-color:#eeff41 !important}.lime-text.text-accent-2{color:#eeff41 !important}.lime.accent-3{background-color:#c6ff00 !important}.lime-text.text-accent-3{color:#c6ff00 !important}.lime.accent-4{background-color:#aeea00 !important}.lime-text.text-accent-4{color:#aeea00 !important}.yellow{background-color:#ffeb3b !important}.yellow-text{color:#ffeb3b !important}.yellow.lighten-5{background-color:#fffde7 !important}.yellow-text.text-lighten-5{color:#fffde7 !important}.yellow.lighten-4{background-color:#fff9c4 !important}.yellow-text.text-lighten-4{color:#fff9c4 !important}.yellow.lighten-3{background-color:#fff59d !important}.yellow-text.text-lighten-3{color:#fff59d !important}.yellow.lighten-2{background-color:#fff176 !important}.yellow-text.text-lighten-2{color:#fff176 !important}.yellow.lighten-1{background-color:#ffee58 !important}.yellow-text.text-lighten-1{color:#ffee58 !important}.yellow.darken-1{background-color:#fdd835 !important}.yellow-text.text-darken-1{color:#fdd835 !important}.yellow.darken-2{background-color:#fbc02d !important}.yellow-text.text-darken-2{color:#fbc02d !important}.yellow.darken-3,.order-status .step.step-done .yellow.info-badge.icon,.order-status .yellow.info-badge.step-line.step-line-done,.yellow.info-badge.green{background-color:#f9a825 !important}.yellow-text.text-darken-3{color:#f9a825 !important}.yellow.darken-4{background-color:#f57f17 !important}.yellow-text.text-darken-4{color:#f57f17 !important}.yellow.accent-1,.yellow.info-badge.green{background-color:#ffff8d !important}.yellow-text.text-accent-1{color:#ffff8d !important}.yellow.accent-2{background-color:#ff0 !important}.yellow-text.text-accent-2{color:#ff0 !important}.yellow.accent-3{background-color:#ffea00 !important}.yellow-text.text-accent-3{color:#ffea00 !important}.yellow.accent-4{background-color:#ffd600 !important}.yellow-text.text-accent-4{color:#ffd600 !important}.amber{background-color:#ffc107 !important}.amber-text{color:#ffc107 !important}.amber.lighten-5{background-color:#fff8e1 !important}.amber-text.text-lighten-5{color:#fff8e1 !important}.amber.lighten-4{background-color:#ffecb3 !important}.amber-text.text-lighten-4{color:#ffecb3 !important}.amber.lighten-3{background-color:#ffe082 !important}.amber-text.text-lighten-3{color:#ffe082 !important}.amber.lighten-2{background-color:#ffd54f !important}.amber-text.text-lighten-2{color:#ffd54f !important}.amber.lighten-1{background-color:#ffca28 !important}.amber-text.text-lighten-1{color:#ffca28 !important}.amber.darken-1{background-color:#ffb300 !important}.amber-text.text-darken-1{color:#ffb300 !important}.amber.darken-2{background-color:#ffa000 !important}.amber-text.text-darken-2{color:#ffa000 !important}.amber.darken-3,.order-status .step.step-done .amber.info-badge.icon,.order-status .amber.info-badge.step-line.step-line-done,.amber.info-badge.green{background-color:#ff8f00 !important}.amber-text.text-darken-3{color:#ff8f00 !important}.amber.darken-4{background-color:#ff6f00 !important}.amber-text.text-darken-4{color:#ff6f00 !important}.amber.accent-1,.amber.info-badge.green{background-color:#ffe57f !important}.amber-text.text-accent-1{color:#ffe57f !important}.amber.accent-2{background-color:#ffd740 !important}.amber-text.text-accent-2{color:#ffd740 !important}.amber.accent-3{background-color:#ffc400 !important}.amber-text.text-accent-3{color:#ffc400 !important}.amber.accent-4{background-color:#ffab00 !important}.amber-text.text-accent-4{color:#ffab00 !important}.orange{background-color:#ff9800 !important}.orange-text{color:#ff9800 !important}.orange.lighten-5{background-color:#fff3e0 !important}.orange-text.text-lighten-5{color:#fff3e0 !important}.orange.lighten-4{background-color:#ffe0b2 !important}.orange-text.text-lighten-4{color:#ffe0b2 !important}.orange.lighten-3{background-color:#ffcc80 !important}.orange-text.text-lighten-3{color:#ffcc80 !important}.orange.lighten-2{background-color:#ffb74d !important}.orange-text.text-lighten-2{color:#ffb74d !important}.orange.lighten-1{background-color:#ffa726 !important}.orange-text.text-lighten-1{color:#ffa726 !important}.orange.darken-1{background-color:#fb8c00 !important}.orange-text.text-darken-1{color:#fb8c00 !important}.orange.darken-2{background-color:#f57c00 !important}.orange-text.text-darken-2{color:#f57c00 !important}.orange.darken-3,.order-status .step.step-done .orange.info-badge.icon,.order-status .orange.info-badge.step-line.step-line-done,.orange.info-badge.green{background-color:#ef6c00 !important}.orange-text.text-darken-3{color:#ef6c00 !important}.orange.darken-4{background-color:#e65100 !important}.orange-text.text-darken-4{color:#e65100 !important}.orange.accent-1,.orange.info-badge.green{background-color:#ffd180 !important}.orange-text.text-accent-1{color:#ffd180 !important}.orange.accent-2{background-color:#ffab40 !important}.orange-text.text-accent-2{color:#ffab40 !important}.orange.accent-3{background-color:#ff9100 !important}.orange-text.text-accent-3{color:#ff9100 !important}.orange.accent-4{background-color:#ff6d00 !important}.orange-text.text-accent-4{color:#ff6d00 !important}.deep-orange{background-color:#ff5722 !important}.deep-orange-text{color:#ff5722 !important}.deep-orange.lighten-5{background-color:#fbe9e7 !important}.deep-orange-text.text-lighten-5{color:#fbe9e7 !important}.deep-orange.lighten-4{background-color:#ffccbc !important}.deep-orange-text.text-lighten-4{color:#ffccbc !important}.deep-orange.lighten-3{background-color:#ffab91 !important}.deep-orange-text.text-lighten-3{color:#ffab91 !important}.deep-orange.lighten-2{background-color:#ff8a65 !important}.deep-orange-text.text-lighten-2{color:#ff8a65 !important}.deep-orange.lighten-1{background-color:#ff7043 !important}.deep-orange-text.text-lighten-1{color:#ff7043 !important}.deep-orange.darken-1{background-color:#f4511e !important}.deep-orange-text.text-darken-1{color:#f4511e !important}.deep-orange.darken-2{background-color:#e64a19 !important}.deep-orange-text.text-darken-2{color:#e64a19 !important}.deep-orange.darken-3,.order-status .step.step-done .deep-orange.info-badge.icon,.order-status .deep-orange.info-badge.step-line.step-line-done,.deep-orange.info-badge.green{background-color:#d84315 !important}.deep-orange-text.text-darken-3{color:#d84315 !important}.deep-orange.darken-4{background-color:#bf360c !important}.deep-orange-text.text-darken-4{color:#bf360c !important}.deep-orange.accent-1,.deep-orange.info-badge.green{background-color:#ff9e80 !important}.deep-orange-text.text-accent-1{color:#ff9e80 !important}.deep-orange.accent-2{background-color:#ff6e40 !important}.deep-orange-text.text-accent-2{color:#ff6e40 !important}.deep-orange.accent-3{background-color:#ff3d00 !important}.deep-orange-text.text-accent-3{color:#ff3d00 !important}.deep-orange.accent-4{background-color:#dd2c00 !important}.deep-orange-text.text-accent-4{color:#dd2c00 !important}.brown{background-color:#795548 !important}.brown-text{color:#795548 !important}.brown.lighten-5{background-color:#efebe9 !important}.brown-text.text-lighten-5{color:#efebe9 !important}.brown.lighten-4{background-color:#d7ccc8 !important}.brown-text.text-lighten-4{color:#d7ccc8 !important}.brown.lighten-3{background-color:#bcaaa4 !important}.brown-text.text-lighten-3{color:#bcaaa4 !important}.brown.lighten-2{background-color:#a1887f !important}.brown-text.text-lighten-2{color:#a1887f !important}.brown.lighten-1{background-color:#8d6e63 !important}.brown-text.text-lighten-1{color:#8d6e63 !important}.brown.darken-1{background-color:#6d4c41 !important}.brown-text.text-darken-1{color:#6d4c41 !important}.brown.darken-2{background-color:#5d4037 !important}.brown-text.text-darken-2{color:#5d4037 !important}.brown.darken-3,.order-status .step.step-done .brown.info-badge.icon,.order-status .brown.info-badge.step-line.step-line-done,.brown.info-badge.green{background-color:#4e342e !important}.brown-text.text-darken-3{color:#4e342e !important}.brown.darken-4{background-color:#3e2723 !important}.brown-text.text-darken-4{color:#3e2723 !important}.blue-grey{background-color:#607d8b !important}.blue-grey-text{color:#607d8b !important}.blue-grey.lighten-5{background-color:#eceff1 !important}.blue-grey-text.text-lighten-5{color:#eceff1 !important}.blue-grey.lighten-4{background-color:#cfd8dc !important}.blue-grey-text.text-lighten-4{color:#cfd8dc !important}.blue-grey.lighten-3{background-color:#b0bec5 !important}.blue-grey-text.text-lighten-3{color:#b0bec5 !important}.blue-grey.lighten-2{background-color:#90a4ae !important}.blue-grey-text.text-lighten-2{color:#90a4ae !important}.blue-grey.lighten-1{background-color:#78909c !important}.blue-grey-text.text-lighten-1{color:#78909c !important}.blue-grey.darken-1{background-color:#546e7a !important}.blue-grey-text.text-darken-1{color:#546e7a !important}.blue-grey.darken-2{background-color:#455a64 !important}.blue-grey-text.text-darken-2{color:#455a64 !important}.blue-grey.darken-3,.order-status .step.step-done .blue-grey.info-badge.icon,.order-status .blue-grey.info-badge.step-line.step-line-done,.blue-grey.info-badge.green{background-color:#37474f !important}.blue-grey-text.text-darken-3{color:#37474f !important}.blue-grey.darken-4{background-color:#263238 !important}.blue-grey-text.text-darken-4{color:#263238 !important}.grey{background-color:#9e9e9e !important}.grey-text{color:#9e9e9e !important}.grey.lighten-5{background-color:#fafafa !important}.grey-text.text-lighten-5{color:#fafafa !important}.grey.lighten-4{background-color:#f5f5f5 !important}.grey-text.text-lighten-4{color:#f5f5f5 !important}.grey.lighten-3{background-color:#eee !important}.grey-text.text-lighten-3{color:#eee !important}.grey.lighten-2{background-color:#e0e0e0 !important}.grey-text.text-lighten-2{color:#e0e0e0 !important}.grey.lighten-1{background-color:#bdbdbd !important}.grey-text.text-lighten-1{color:#bdbdbd !important}.grey.darken-1{background-color:#757575 !important}.grey-text.text-darken-1{color:#757575 !important}.grey.darken-2{background-color:#616161 !important}.grey-text.text-darken-2{color:#616161 !important}.grey.darken-3,.order-status .step.step-done .grey.info-badge.icon,.order-status .grey.info-badge.step-line.step-line-done,.grey.info-badge.green{background-color:#424242 !important}.grey-text.text-darken-3{color:#424242 !important}.grey.darken-4{background-color:#212121 !important}.grey-text.text-darken-4{color:#212121 !important}.black{background-color:#000 !important}.black-text{color:#000 !important}.white{background-color:#fff !important}.white-text{color:#fff !important}.transparent{background-color:rgba(0,0,0,0) !important}.transparent-text{color:rgba(0,0,0,0) !important}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1,.h1_wrap .h1_group .breadcrumbs{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}ul:not(.browser-default){padding-left:0;list-style-type:none}ul:not(.browser-default) li{list-style-type:none}a{color:#039be5;text-decoration:none;-webkit-tap-highlight-color:transparent}.valign-wrapper,#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-next,#headbands-page #headband-slider .slider-container .slider .slider-overlay,.info-badge{display:flex;align-items:center}.clearfix{clear:both}.z-depth-0{box-shadow:none !important}.z-depth-1,.card-panel,.card,.toast,.btn,.btn-large,.btn-floating,.dropdown-content,.collapsible,.side-nav,#main-account .card.product:hover,.sortbar,.artist-profile .header .img-container{box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2)}.z-depth-1-half,.btn:hover,.btn-large:hover,.btn-floating:hover{box-shadow:0 3px 3px 0 rgba(0,0,0,0.14),0 1px 7px 0 rgba(0,0,0,0.12),0 3px 1px -1px rgba(0,0,0,0.2)}.z-depth-2,#help-section #help-page .question figure img,.card-wrap.artist .card:hover,.card.product:hover{box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.3)}.z-depth-3,#help-search-form .autocomplete-content.dropdown-content,.trip-block.black{box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.3)}.z-depth-4,.modal{box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.3)}.z-depth-5{box-shadow:0 16px 24px 2px rgba(0,0,0,0.14),0 6px 30px 5px rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.3)}.hoverable{transition:box-shadow .25s;box-shadow:0}.hoverable:hover{transition:box-shadow .25s;box-shadow:0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}.divider{height:1px;overflow:hidden;background-color:#e0e0e0}blockquote{margin:20px 0;padding-left:1.5rem;border-left:5px solid #f600be}i{line-height:inherit}i.left,#headbands-page #headband-slider .slider-container .slider .slider-btns i.slider-btn-prev{float:left;margin-right:15px}i.right,#headbands-page #headband-slider .slider-container .slider .slider-btns i.slider-btn-next{float:right;margin-left:15px}i.tiny{font-size:1rem}i.small{font-size:2rem}i.medium{font-size:4rem}i.large{font-size:6rem}img.responsive-img,video.responsive-video{max-width:100%;height:auto}.pagination li{display:inline-block;border-radius:2px;text-align:center;vertical-align:top;height:30px}.pagination li a{color:#444;display:inline-block;font-size:1.2rem;padding:0 10px;line-height:30px}.pagination li.active a{color:#fff}.pagination li.active{background-color:#f600be}.pagination li.disabled a{cursor:default;color:#999}.pagination li i{font-size:2rem}.pagination li.pages ul li{display:inline-block;float:none}@media only screen and (max-width: 992px){.pagination{width:100%}.pagination li.prev,.pagination li.next{width:10%}.pagination li.pages{width:80%;overflow:hidden;white-space:nowrap}}.breadcrumb{font-size:18px;color:rgba(255,255,255,0.7)}.breadcrumb i,.breadcrumb [class^="mdi-"],.breadcrumb [class*="mdi-"],.breadcrumb i.material-icons{display:inline-block;float:left;font-size:24px}.breadcrumb:before{content:'\E5CC';color:rgba(255,255,255,0.7);vertical-align:top;display:inline-block;font-family:'Material Icons';font-weight:normal;font-style:normal;font-size:25px;margin:0 10px 0 8px;-webkit-font-smoothing:antialiased}.breadcrumb:first-child:before{display:none}.breadcrumb:last-child{color:#fff}.parallax-container{position:relative;overflow:hidden;height:500px}.parallax{position:absolute;top:0;left:0;right:0;bottom:0;z-index:-1}.parallax img{display:none;position:absolute;left:50%;bottom:0;min-width:100%;min-height:100%;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);transform:translateX(-50%)}.pin-top,.pin-bottom{position:relative}.pinned{position:fixed !important}ul.staggered-list li{opacity:0}.fade-in{opacity:0;transform-origin:0 50%}@media only screen and (max-width: 600px){.hide-on-small-only,.hide-on-small-and-down{display:none !important}}@media only screen and (max-width: 992px){.hide-on-med-and-down{display:none !important}}@media only screen and (min-width: 601px){.hide-on-med-and-up{display:none !important}}@media only screen and (min-width: 600px) and (max-width: 992px){.hide-on-med-only{display:none !important}}@media only screen and (min-width: 993px){.hide-on-large-only{display:none !important}}@media only screen and (min-width: 993px){.show-on-large{display:block !important}}@media only screen and (min-width: 600px) and (max-width: 992px){.show-on-medium{display:block !important}}@media only screen and (max-width: 600px){.show-on-small{display:block !important}}@media only screen and (min-width: 601px){.show-on-medium-and-up{display:block !important}}@media only screen and (max-width: 992px){.show-on-medium-and-down{display:block !important}}@media only screen and (max-width: 600px){.center-on-small-only{text-align:center}}.page-footer{padding-top:20px;background-color:#f600be}.page-footer .footer-copyright{overflow:hidden;min-height:50px;display:flex;align-items:center;padding:10px 0px;color:rgba(255,255,255,0.8);background-color:rgba(51,51,51,0.08)}table,th,td{border:none}table{width:100%;display:table}table.bordered>thead>tr,table.bordered>tbody>tr{border-bottom:1px solid #d0d0d0}table.striped>tbody>tr:nth-child(odd){background-color:#f2f2f2}table.striped>tbody>tr>td{border-radius:0}table.highlight>tbody>tr{transition:background-color .25s ease}table.highlight>tbody>tr:hover{background-color:#f2f2f2}table.centered thead tr th,table.centered tbody tr td{text-align:center}thead{border-bottom:1px solid #d0d0d0}td,th{padding:15px 5px;display:table-cell;text-align:left;vertical-align:middle;border-radius:2px}@media only screen and (max-width: 992px){table.responsive-table{width:100%;border-collapse:collapse;border-spacing:0;display:block;position:relative}table.responsive-table td:empty:before{content:'\00a0'}table.responsive-table th,table.responsive-table td{margin:0;vertical-align:top}table.responsive-table th{text-align:left}table.responsive-table thead{display:block;float:left}table.responsive-table thead tr{display:block;padding:0 10px 0 0}table.responsive-table thead tr th::before{content:"\00a0"}table.responsive-table tbody{display:block;width:auto;position:relative;overflow-x:auto;white-space:nowrap}table.responsive-table tbody tr{display:inline-block;vertical-align:top}table.responsive-table th{display:block;text-align:right}table.responsive-table td{display:block;min-height:1.25em;text-align:left}table.responsive-table tr{padding:0 10px}table.responsive-table thead{border:0;border-right:1px solid #d0d0d0}table.responsive-table.bordered th{border-bottom:0;border-left:0}table.responsive-table.bordered td{border-left:0;border-right:0;border-bottom:0}table.responsive-table.bordered tr{border:0}table.responsive-table.bordered tbody tr{border-right:1px solid #d0d0d0}}.collection{margin:.5rem 0 1rem 0;border:1px solid #e0e0e0;border-radius:2px;overflow:hidden;position:relative}.collection .collection-item{background-color:#fff;line-height:1.5rem;padding:10px 20px;margin:0;border-bottom:1px solid #e0e0e0}.collection .collection-item.avatar{min-height:84px;padding-left:72px;position:relative}.collection .collection-item.avatar .circle{position:absolute;width:42px;height:42px;overflow:hidden;left:15px;display:inline-block;vertical-align:middle}.collection .collection-item.avatar i.circle{font-size:18px;line-height:42px;color:#fff;background-color:#999;text-align:center}.collection .collection-item.avatar .title{font-size:16px}.collection .collection-item.avatar p{margin:0}.collection .collection-item.avatar .secondary-content{position:absolute;top:16px;right:16px}.collection .collection-item:last-child{border-bottom:none}.collection .collection-item.active{background-color:#1e88e5;color:#fff}.collection .collection-item.active .secondary-content{color:#fff}.collection a.collection-item,.collection button.collection-item{display:block;transition:.25s;color:#1e88e5}.collection a.collection-item:not(.active):hover,.collection button.collection-item:not(.active):hover{background-color:#ddd}.collection.with-header .collection-header{background-color:#fff;border-bottom:1px solid #e0e0e0;padding:10px 20px}.collection.with-header .collection-item{padding-left:30px}.collection.with-header .collection-item.avatar{padding-left:72px}.secondary-content{float:right;color:#1e88e5}.collapsible .collection{margin:0;border:none}.video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.video-container iframe,.video-container object,.video-container embed{position:absolute;top:0;left:0;width:100%;height:100%}.progress{position:relative;height:4px;display:block;width:100%;background-color:#d5e9fa;border-radius:2px;margin:.5rem 0 1rem 0;overflow:hidden}.progress .determinate{position:absolute;top:0;left:0;bottom:0;background-color:#1e88e5;transition:width .3s linear}.progress .indeterminate{background-color:#1e88e5}.progress .indeterminate:before{content:'';position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left, right;animation:indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite}.progress .indeterminate:after{content:'';position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left, right;animation:indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;animation-delay:1.15s}@keyframes indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}.hide{display:none !important}.left-align{text-align:left}.right-align{text-align:right}.center,.center-align{text-align:center}.left,#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-prev{float:left !important}.right,#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-next{float:right !important}.no-select,input[type=range],input[type=range]+.thumb{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.circle{border-radius:50%}.center-block{display:block;margin-left:auto;margin-right:auto}.truncate{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.no-padding{padding:0 !important}span.badge{min-width:3rem;padding:0 6px;margin-left:14px;text-align:center;font-size:1rem;line-height:22px;height:22px;color:#757575;float:right;box-sizing:border-box}span.badge.new{font-weight:300;font-size:0.8rem;color:#fff;background-color:#1e88e5;border-radius:2px}span.badge.new:after{content:" new"}span.badge[data-badge-caption]::after{content:" " attr(data-badge-caption)}nav ul a span.badge{display:inline-block;float:none;margin-left:4px;line-height:22px;height:22px}.collection-item span.badge{margin-top:calc(.75rem - 11px)}.collapsible span.badge{margin-top:calc(1.5rem - 11px)}.side-nav span.badge{margin-top:calc(24px - 11px)}.material-icons{text-rendering:optimizeLegibility;font-feature-settings:'liga'}.container{margin:0 auto;max-width:1280px;width:90%}@media only screen and (min-width: 601px){.container{width:85%}}@media only screen and (min-width: 993px){.container{width:70%}}.container .row{margin-left:-.75rem;margin-right:-.75rem}.section{padding-top:1rem;padding-bottom:1rem}.section.no-pad{padding:0}.section.no-pad-bot{padding-bottom:0}.section.no-pad-top{padding-top:0}.row{margin-left:auto;margin-right:auto;margin-bottom:20px}.row:after{content:"";display:table;clear:both}.row .col,.row .card-wrap{float:left;box-sizing:border-box;padding:0 .75rem;min-height:1px}.row .col[class*="push-"],.row .card-wrap[class*="push-"],.row .col[class*="pull-"],.row .card-wrap[class*="pull-"]{position:relative}.row .col.s1,.row .s1.card-wrap{width:8.33333%;margin-left:auto;left:auto;right:auto}.row .col.s2,.row .s2.card-wrap{width:16.66667%;margin-left:auto;left:auto;right:auto}.row .col.s3,.row .s3.card-wrap{width:25%;margin-left:auto;left:auto;right:auto}.row .col.s4,.row .s4.card-wrap{width:33.33333%;margin-left:auto;left:auto;right:auto}.row .col.s5,.row .s5.card-wrap{width:41.66667%;margin-left:auto;left:auto;right:auto}.row .col.s6,.row .s6.card-wrap{width:50%;margin-left:auto;left:auto;right:auto}.row .col.s7,.row .s7.card-wrap{width:58.33333%;margin-left:auto;left:auto;right:auto}.row .col.s8,.row .s8.card-wrap{width:66.66667%;margin-left:auto;left:auto;right:auto}.row .col.s9,.row .s9.card-wrap{width:75%;margin-left:auto;left:auto;right:auto}.row .col.s10,.row .s10.card-wrap{width:83.33333%;margin-left:auto;left:auto;right:auto}.row .col.s11,.row .s11.card-wrap{width:91.66667%;margin-left:auto;left:auto;right:auto}.row .col.s12,.row .s12.card-wrap{width:100%;margin-left:auto;left:auto;right:auto}.row .col.offset-s1,.row .offset-s1.card-wrap{margin-left:8.33333%}.row .col.pull-s1,.row .pull-s1.card-wrap{right:8.33333%}.row .col.push-s1,.row .push-s1.card-wrap{left:8.33333%}.row .col.offset-s2,.row .offset-s2.card-wrap{margin-left:16.66667%}.row .col.pull-s2,.row .pull-s2.card-wrap{right:16.66667%}.row .col.push-s2,.row .push-s2.card-wrap{left:16.66667%}.row .col.offset-s3,.row .offset-s3.card-wrap{margin-left:25%}.row .col.pull-s3,.row .pull-s3.card-wrap{right:25%}.row .col.push-s3,.row .push-s3.card-wrap{left:25%}.row .col.offset-s4,.row .offset-s4.card-wrap{margin-left:33.33333%}.row .col.pull-s4,.row .pull-s4.card-wrap{right:33.33333%}.row .col.push-s4,.row .push-s4.card-wrap{left:33.33333%}.row .col.offset-s5,.row .offset-s5.card-wrap{margin-left:41.66667%}.row .col.pull-s5,.row .pull-s5.card-wrap{right:41.66667%}.row .col.push-s5,.row .push-s5.card-wrap{left:41.66667%}.row .col.offset-s6,.row .offset-s6.card-wrap{margin-left:50%}.row .col.pull-s6,.row .pull-s6.card-wrap{right:50%}.row .col.push-s6,.row .push-s6.card-wrap{left:50%}.row .col.offset-s7,.row .offset-s7.card-wrap{margin-left:58.33333%}.row .col.pull-s7,.row .pull-s7.card-wrap{right:58.33333%}.row .col.push-s7,.row .push-s7.card-wrap{left:58.33333%}.row .col.offset-s8,.row .offset-s8.card-wrap{margin-left:66.66667%}.row .col.pull-s8,.row .pull-s8.card-wrap{right:66.66667%}.row .col.push-s8,.row .push-s8.card-wrap{left:66.66667%}.row .col.offset-s9,.row .offset-s9.card-wrap{margin-left:75%}.row .col.pull-s9,.row .pull-s9.card-wrap{right:75%}.row .col.push-s9,.row .push-s9.card-wrap{left:75%}.row .col.offset-s10,.row .offset-s10.card-wrap{margin-left:83.33333%}.row .col.pull-s10,.row .pull-s10.card-wrap{right:83.33333%}.row .col.push-s10,.row .push-s10.card-wrap{left:83.33333%}.row .col.offset-s11,.row .offset-s11.card-wrap{margin-left:91.66667%}.row .col.pull-s11,.row .pull-s11.card-wrap{right:91.66667%}.row .col.push-s11,.row .push-s11.card-wrap{left:91.66667%}.row .col.offset-s12,.row .offset-s12.card-wrap{margin-left:100%}.row .col.pull-s12,.row .pull-s12.card-wrap{right:100%}.row .col.push-s12,.row .push-s12.card-wrap{left:100%}@media only screen and (min-width: 601px){.row .col.m1,.row .m1.card-wrap{width:8.33333%;margin-left:auto;left:auto;right:auto}.row .col.m2,.row .m2.card-wrap{width:16.66667%;margin-left:auto;left:auto;right:auto}.row .col.m3,.row .m3.card-wrap{width:25%;margin-left:auto;left:auto;right:auto}.row .col.m4,.row .m4.card-wrap{width:33.33333%;margin-left:auto;left:auto;right:auto}.row .col.m5,.row .m5.card-wrap{width:41.66667%;margin-left:auto;left:auto;right:auto}.row .col.m6,.row .m6.card-wrap{width:50%;margin-left:auto;left:auto;right:auto}.row .col.m7,.row .m7.card-wrap{width:58.33333%;margin-left:auto;left:auto;right:auto}.row .col.m8,.row .m8.card-wrap{width:66.66667%;margin-left:auto;left:auto;right:auto}.row .col.m9,.row .m9.card-wrap{width:75%;margin-left:auto;left:auto;right:auto}.row .col.m10,.row .m10.card-wrap{width:83.33333%;margin-left:auto;left:auto;right:auto}.row .col.m11,.row .m11.card-wrap{width:91.66667%;margin-left:auto;left:auto;right:auto}.row .col.m12,.row .m12.card-wrap{width:100%;margin-left:auto;left:auto;right:auto}.row .col.offset-m1,.row .offset-m1.card-wrap{margin-left:8.33333%}.row .col.pull-m1,.row .pull-m1.card-wrap{right:8.33333%}.row .col.push-m1,.row .push-m1.card-wrap{left:8.33333%}.row .col.offset-m2,.row .offset-m2.card-wrap{margin-left:16.66667%}.row .col.pull-m2,.row .pull-m2.card-wrap{right:16.66667%}.row .col.push-m2,.row .push-m2.card-wrap{left:16.66667%}.row .col.offset-m3,.row .offset-m3.card-wrap{margin-left:25%}.row .col.pull-m3,.row .pull-m3.card-wrap{right:25%}.row .col.push-m3,.row .push-m3.card-wrap{left:25%}.row .col.offset-m4,.row .offset-m4.card-wrap{margin-left:33.33333%}.row .col.pull-m4,.row .pull-m4.card-wrap{right:33.33333%}.row .col.push-m4,.row .push-m4.card-wrap{left:33.33333%}.row .col.offset-m5,.row .offset-m5.card-wrap{margin-left:41.66667%}.row .col.pull-m5,.row .pull-m5.card-wrap{right:41.66667%}.row .col.push-m5,.row .push-m5.card-wrap{left:41.66667%}.row .col.offset-m6,.row .offset-m6.card-wrap{margin-left:50%}.row .col.pull-m6,.row .pull-m6.card-wrap{right:50%}.row .col.push-m6,.row .push-m6.card-wrap{left:50%}.row .col.offset-m7,.row .offset-m7.card-wrap{margin-left:58.33333%}.row .col.pull-m7,.row .pull-m7.card-wrap{right:58.33333%}.row .col.push-m7,.row .push-m7.card-wrap{left:58.33333%}.row .col.offset-m8,.row .offset-m8.card-wrap{margin-left:66.66667%}.row .col.pull-m8,.row .pull-m8.card-wrap{right:66.66667%}.row .col.push-m8,.row .push-m8.card-wrap{left:66.66667%}.row .col.offset-m9,.row .offset-m9.card-wrap{margin-left:75%}.row .col.pull-m9,.row .pull-m9.card-wrap{right:75%}.row .col.push-m9,.row .push-m9.card-wrap{left:75%}.row .col.offset-m10,.row .offset-m10.card-wrap{margin-left:83.33333%}.row .col.pull-m10,.row .pull-m10.card-wrap{right:83.33333%}.row .col.push-m10,.row .push-m10.card-wrap{left:83.33333%}.row .col.offset-m11,.row .offset-m11.card-wrap{margin-left:91.66667%}.row .col.pull-m11,.row .pull-m11.card-wrap{right:91.66667%}.row .col.push-m11,.row .push-m11.card-wrap{left:91.66667%}.row .col.offset-m12,.row .offset-m12.card-wrap{margin-left:100%}.row .col.pull-m12,.row .pull-m12.card-wrap{right:100%}.row .col.push-m12,.row .push-m12.card-wrap{left:100%}}@media only screen and (min-width: 993px){.row .col.l1,.row .l1.card-wrap{width:8.33333%;margin-left:auto;left:auto;right:auto}.row .col.l2,.row .l2.card-wrap{width:16.66667%;margin-left:auto;left:auto;right:auto}.row .col.l3,.row .l3.card-wrap{width:25%;margin-left:auto;left:auto;right:auto}.row .col.l4,.row .l4.card-wrap{width:33.33333%;margin-left:auto;left:auto;right:auto}.row .col.l5,.row .l5.card-wrap{width:41.66667%;margin-left:auto;left:auto;right:auto}.row .col.l6,.row .l6.card-wrap{width:50%;margin-left:auto;left:auto;right:auto}.row .col.l7,.row .l7.card-wrap{width:58.33333%;margin-left:auto;left:auto;right:auto}.row .col.l8,.row .l8.card-wrap{width:66.66667%;margin-left:auto;left:auto;right:auto}.row .col.l9,.row .l9.card-wrap{width:75%;margin-left:auto;left:auto;right:auto}.row .col.l10,.row .l10.card-wrap{width:83.33333%;margin-left:auto;left:auto;right:auto}.row .col.l11,.row .l11.card-wrap{width:91.66667%;margin-left:auto;left:auto;right:auto}.row .col.l12,.row .l12.card-wrap{width:100%;margin-left:auto;left:auto;right:auto}.row .col.offset-l1,.row .offset-l1.card-wrap{margin-left:8.33333%}.row .col.pull-l1,.row .pull-l1.card-wrap{right:8.33333%}.row .col.push-l1,.row .push-l1.card-wrap{left:8.33333%}.row .col.offset-l2,.row .offset-l2.card-wrap{margin-left:16.66667%}.row .col.pull-l2,.row .pull-l2.card-wrap{right:16.66667%}.row .col.push-l2,.row .push-l2.card-wrap{left:16.66667%}.row .col.offset-l3,.row .offset-l3.card-wrap{margin-left:25%}.row .col.pull-l3,.row .pull-l3.card-wrap{right:25%}.row .col.push-l3,.row .push-l3.card-wrap{left:25%}.row .col.offset-l4,.row .offset-l4.card-wrap{margin-left:33.33333%}.row .col.pull-l4,.row .pull-l4.card-wrap{right:33.33333%}.row .col.push-l4,.row .push-l4.card-wrap{left:33.33333%}.row .col.offset-l5,.row .offset-l5.card-wrap{margin-left:41.66667%}.row .col.pull-l5,.row .pull-l5.card-wrap{right:41.66667%}.row .col.push-l5,.row .push-l5.card-wrap{left:41.66667%}.row .col.offset-l6,.row .offset-l6.card-wrap{margin-left:50%}.row .col.pull-l6,.row .pull-l6.card-wrap{right:50%}.row .col.push-l6,.row .push-l6.card-wrap{left:50%}.row .col.offset-l7,.row .offset-l7.card-wrap{margin-left:58.33333%}.row .col.pull-l7,.row .pull-l7.card-wrap{right:58.33333%}.row .col.push-l7,.row .push-l7.card-wrap{left:58.33333%}.row .col.offset-l8,.row .offset-l8.card-wrap{margin-left:66.66667%}.row .col.pull-l8,.row .pull-l8.card-wrap{right:66.66667%}.row .col.push-l8,.row .push-l8.card-wrap{left:66.66667%}.row .col.offset-l9,.row .offset-l9.card-wrap{margin-left:75%}.row .col.pull-l9,.row .pull-l9.card-wrap{right:75%}.row .col.push-l9,.row .push-l9.card-wrap{left:75%}.row .col.offset-l10,.row .offset-l10.card-wrap{margin-left:83.33333%}.row .col.pull-l10,.row .pull-l10.card-wrap{right:83.33333%}.row .col.push-l10,.row .push-l10.card-wrap{left:83.33333%}.row .col.offset-l11,.row .offset-l11.card-wrap{margin-left:91.66667%}.row .col.pull-l11,.row .pull-l11.card-wrap{right:91.66667%}.row .col.push-l11,.row .push-l11.card-wrap{left:91.66667%}.row .col.offset-l12,.row .offset-l12.card-wrap{margin-left:100%}.row .col.pull-l12,.row .pull-l12.card-wrap{right:100%}.row .col.push-l12,.row .push-l12.card-wrap{left:100%}}@media only screen and (min-width: 1201px){.row .col.xl1,.row .xl1.card-wrap{width:8.33333%;margin-left:auto;left:auto;right:auto}.row .col.xl2,.row .xl2.card-wrap{width:16.66667%;margin-left:auto;left:auto;right:auto}.row .col.xl3,.row .xl3.card-wrap{width:25%;margin-left:auto;left:auto;right:auto}.row .col.xl4,.row .xl4.card-wrap{width:33.33333%;margin-left:auto;left:auto;right:auto}.row .col.xl5,.row .xl5.card-wrap{width:41.66667%;margin-left:auto;left:auto;right:auto}.row .col.xl6,.row .xl6.card-wrap{width:50%;margin-left:auto;left:auto;right:auto}.row .col.xl7,.row .xl7.card-wrap{width:58.33333%;margin-left:auto;left:auto;right:auto}.row .col.xl8,.row .xl8.card-wrap{width:66.66667%;margin-left:auto;left:auto;right:auto}.row .col.xl9,.row .xl9.card-wrap{width:75%;margin-left:auto;left:auto;right:auto}.row .col.xl10,.row .xl10.card-wrap{width:83.33333%;margin-left:auto;left:auto;right:auto}.row .col.xl11,.row .xl11.card-wrap{width:91.66667%;margin-left:auto;left:auto;right:auto}.row .col.xl12,.row .xl12.card-wrap{width:100%;margin-left:auto;left:auto;right:auto}.row .col.offset-xl1,.row .offset-xl1.card-wrap{margin-left:8.33333%}.row .col.pull-xl1,.row .pull-xl1.card-wrap{right:8.33333%}.row .col.push-xl1,.row .push-xl1.card-wrap{left:8.33333%}.row .col.offset-xl2,.row .offset-xl2.card-wrap{margin-left:16.66667%}.row .col.pull-xl2,.row .pull-xl2.card-wrap{right:16.66667%}.row .col.push-xl2,.row .push-xl2.card-wrap{left:16.66667%}.row .col.offset-xl3,.row .offset-xl3.card-wrap{margin-left:25%}.row .col.pull-xl3,.row .pull-xl3.card-wrap{right:25%}.row .col.push-xl3,.row .push-xl3.card-wrap{left:25%}.row .col.offset-xl4,.row .offset-xl4.card-wrap{margin-left:33.33333%}.row .col.pull-xl4,.row .pull-xl4.card-wrap{right:33.33333%}.row .col.push-xl4,.row .push-xl4.card-wrap{left:33.33333%}.row .col.offset-xl5,.row .offset-xl5.card-wrap{margin-left:41.66667%}.row .col.pull-xl5,.row .pull-xl5.card-wrap{right:41.66667%}.row .col.push-xl5,.row .push-xl5.card-wrap{left:41.66667%}.row .col.offset-xl6,.row .offset-xl6.card-wrap{margin-left:50%}.row .col.pull-xl6,.row .pull-xl6.card-wrap{right:50%}.row .col.push-xl6,.row .push-xl6.card-wrap{left:50%}.row .col.offset-xl7,.row .offset-xl7.card-wrap{margin-left:58.33333%}.row .col.pull-xl7,.row .pull-xl7.card-wrap{right:58.33333%}.row .col.push-xl7,.row .push-xl7.card-wrap{left:58.33333%}.row .col.offset-xl8,.row .offset-xl8.card-wrap{margin-left:66.66667%}.row .col.pull-xl8,.row .pull-xl8.card-wrap{right:66.66667%}.row .col.push-xl8,.row .push-xl8.card-wrap{left:66.66667%}.row .col.offset-xl9,.row .offset-xl9.card-wrap{margin-left:75%}.row .col.pull-xl9,.row .pull-xl9.card-wrap{right:75%}.row .col.push-xl9,.row .push-xl9.card-wrap{left:75%}.row .col.offset-xl10,.row .offset-xl10.card-wrap{margin-left:83.33333%}.row .col.pull-xl10,.row .pull-xl10.card-wrap{right:83.33333%}.row .col.push-xl10,.row .push-xl10.card-wrap{left:83.33333%}.row .col.offset-xl11,.row .offset-xl11.card-wrap{margin-left:91.66667%}.row .col.pull-xl11,.row .pull-xl11.card-wrap{right:91.66667%}.row .col.push-xl11,.row .push-xl11.card-wrap{left:91.66667%}.row .col.offset-xl12,.row .offset-xl12.card-wrap{margin-left:100%}.row .col.pull-xl12,.row .pull-xl12.card-wrap{right:100%}.row .col.push-xl12,.row .push-xl12.card-wrap{left:100%}}@font-face{font-family:"Roboto";src:local(Roboto Thin),url(https://static.artofwhere.net/fonts/Roboto-Thin-06ca73da1f5188a4c679.woff2) format("woff2"),url(https://static.artofwhere.net/fonts/Roboto-Thin-7bf9050517b14eb2acfd.woff) format("woff");font-weight:100}@font-face{font-family:"Roboto";src:local(Roboto Light),url(https://static.artofwhere.net/fonts/Roboto-Light-7d1febe76014e661e3f2.woff2) format("woff2"),url(https://static.artofwhere.net/fonts/Roboto-Light-dd9e8e47c13bd958253a.woff) format("woff");font-weight:300}@font-face{font-family:"Roboto";src:local(Roboto Regular),url(https://static.artofwhere.net/fonts/Roboto-Regular-e9a9d280f48fac104245.woff2) format("woff2"),url(https://static.artofwhere.net/fonts/Roboto-Regular-5e1aec00d3a032511dde.woff) format("woff");font-weight:400}@font-face{font-family:"Roboto";src:local(Roboto Medium),url(https://static.artofwhere.net/fonts/Roboto-Medium-c90d94fb3f94e426c31e.woff2) format("woff2"),url(https://static.artofwhere.net/fonts/Roboto-Medium-e2d3fd034896d1bc0fc5.woff) format("woff");font-weight:500}@font-face{font-family:"Roboto";src:local(Roboto Bold),url(https://static.artofwhere.net/fonts/Roboto-Bold-8b6957a1ce4f6e9236f9.woff2) format("woff2"),url(https://static.artofwhere.net/fonts/Roboto-Bold-9f4933e9b9559f8615f3.woff) format("woff");font-weight:700}a{text-decoration:none}html{line-height:1.5;font-family:"Roboto", sans-serif;font-weight:normal;color:rgba(0,0,0,0.87)}@media only screen and (min-width: 0){html{font-size:14px}}@media only screen and (min-width: 992px){html{font-size:14.5px}}@media only screen and (min-width: 1200px){html{font-size:15px}}h1,.h1_wrap .h1_group .breadcrumbs,h2,h3,h4,h5,h6{font-weight:400;line-height:1.1}h1 a,.h1_wrap .h1_group .breadcrumbs a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:inherit}h1,.h1_wrap .h1_group .breadcrumbs{font-size:4.2rem;line-height:110%;margin:2.1rem 0 1.68rem 0}h2{font-size:3.56rem;line-height:110%;margin:1.78rem 0 1.424rem 0}h3{font-size:2.92rem;line-height:110%;margin:1.46rem 0 1.168rem 0}h4{font-size:2.28rem;line-height:110%;margin:1.14rem 0 .912rem 0}h5{font-size:1.64rem;line-height:110%;margin:.82rem 0 .656rem 0}h6{font-size:1rem;line-height:110%;margin:.5rem 0 .4rem 0}em{font-style:italic}strong{font-weight:500}small{font-size:75%}.light,.page-footer .footer-copyright{font-weight:300}.thin{font-weight:200}.flow-text,.centered-page .important-text{font-weight:300}@media only screen and (min-width: 360px){.flow-text,.centered-page .important-text{font-size:1.2rem}}@media only screen and (min-width: 390px){.flow-text,.centered-page .important-text{font-size:1.224rem}}@media only screen and (min-width: 420px){.flow-text,.centered-page .important-text{font-size:1.248rem}}@media only screen and (min-width: 450px){.flow-text,.centered-page .important-text{font-size:1.272rem}}@media only screen and (min-width: 480px){.flow-text,.centered-page .important-text{font-size:1.296rem}}@media only screen and (min-width: 510px){.flow-text,.centered-page .important-text{font-size:1.32rem}}@media only screen and (min-width: 540px){.flow-text,.centered-page .important-text{font-size:1.344rem}}@media only screen and (min-width: 570px){.flow-text,.centered-page .important-text{font-size:1.368rem}}@media only screen and (min-width: 600px){.flow-text,.centered-page .important-text{font-size:1.392rem}}@media only screen and (min-width: 630px){.flow-text,.centered-page .important-text{font-size:1.416rem}}@media only screen and (min-width: 660px){.flow-text,.centered-page .important-text{font-size:1.44rem}}@media only screen and (min-width: 690px){.flow-text,.centered-page .important-text{font-size:1.464rem}}@media only screen and (min-width: 720px){.flow-text,.centered-page .important-text{font-size:1.488rem}}@media only screen and (min-width: 750px){.flow-text,.centered-page .important-text{font-size:1.512rem}}@media only screen and (min-width: 780px){.flow-text,.centered-page .important-text{font-size:1.536rem}}@media only screen and (min-width: 810px){.flow-text,.centered-page .important-text{font-size:1.56rem}}@media only screen and (min-width: 840px){.flow-text,.centered-page .important-text{font-size:1.584rem}}@media only screen and (min-width: 870px){.flow-text,.centered-page .important-text{font-size:1.608rem}}@media only screen and (min-width: 900px){.flow-text,.centered-page .important-text{font-size:1.632rem}}@media only screen and (min-width: 930px){.flow-text,.centered-page .important-text{font-size:1.656rem}}@media only screen and (min-width: 960px){.flow-text,.centered-page .important-text{font-size:1.68rem}}@media only screen and (max-width: 360px){.flow-text,.centered-page .important-text{font-size:1.2rem}}.scale-transition{transition:transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important}.scale-transition.scale-out{transform:scale(0);transition:transform .2s !important}.scale-transition.scale-in{transform:scale(1)}.card-panel{transition:box-shadow .25s;padding:24px;margin:.5rem 0 1rem 0;border-radius:2px;background-color:#fff}.card{position:relative;margin:.5rem 0 1rem 0;background-color:#fff;transition:box-shadow .25s;border-radius:2px}.card .card-title{font-size:24px;font-weight:300}.card .card-title.activator{cursor:pointer}.card.small,.card.medium,.card.large{position:relative}.card.small .card-image,.card.medium .card-image,.card.large .card-image{max-height:60%;overflow:hidden}.card.small .card-image+.card-content,.card.medium .card-image+.card-content,.card.large .card-image+.card-content{max-height:40%}.card.small .card-content,.card.medium .card-content,.card.large .card-content{max-height:100%;overflow:hidden}.card.small .card-action,.card.medium .card-action,.card.large .card-action{position:absolute;bottom:0;left:0;right:0}.card.small{height:300px}.card.medium{height:400px}.card.large{height:500px}.card.horizontal{display:flex}.card.horizontal.small .card-image,.card.horizontal.medium .card-image,.card.horizontal.large .card-image{height:100%;max-height:none;overflow:visible}.card.horizontal.small .card-image img,.card.horizontal.medium .card-image img,.card.horizontal.large .card-image img{height:100%}.card.horizontal .card-image{max-width:50%}.card.horizontal .card-image img{border-radius:2px 0 0 2px;max-width:100%;width:auto}.card.horizontal .card-stacked{display:flex;flex-direction:column;flex:1;position:relative}.card.horizontal .card-stacked .card-content{flex-grow:1}.card.sticky-action .card-action{z-index:2}.card.sticky-action .card-reveal{z-index:1;padding-bottom:64px}.card .card-image{position:relative}.card .card-image img{display:block;border-radius:2px 2px 0 0;position:relative;left:0;right:0;top:0;bottom:0;width:100%}.card .card-image .card-title{color:#fff;position:absolute;bottom:0;left:0;max-width:100%;padding:24px}.card .card-content{padding:24px;border-radius:0 0 2px 2px}.card .card-content p{margin:0;color:inherit}.card .card-content .card-title{display:block;line-height:32px;margin-bottom:8px}.card .card-content .card-title i{line-height:32px}.card .card-action{position:relative;background-color:inherit;border-top:1px solid rgba(160,160,160,0.2);padding:16px 24px}.card .card-action:last-child{border-radius:0 0 2px 2px}.card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating){color:#ffab40;margin-right:24px;transition:color .3s ease;text-transform:uppercase}.card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating):hover{color:#ffd8a6}.card .card-reveal{padding:24px;position:absolute;background-color:#fff;width:100%;overflow-y:auto;left:0;top:100%;height:100%;z-index:3;display:none}.card .card-reveal .card-title{cursor:pointer;display:block}#toast-container{display:block;position:fixed;z-index:10000}@media only screen and (max-width: 600px){#toast-container{min-width:100%;bottom:0%}}@media only screen and (min-width: 601px) and (max-width: 992px){#toast-container{left:5%;bottom:7%;max-width:90%}}@media only screen and (min-width: 993px){#toast-container{top:10%;right:7%;max-width:86%}}.toast{border-radius:2px;top:35px;width:auto;clear:both;margin-top:10px;position:relative;max-width:100%;height:auto;min-height:48px;line-height:1.5em;word-break:break-all;background-color:#323232;padding:10px 25px;font-size:1.1rem;font-weight:300;color:#fff;display:flex;align-items:center;justify-content:space-between}.toast .btn,.toast .btn-large,.toast .btn-flat{margin:0;margin-left:3rem}.toast.rounded{border-radius:24px}@media only screen and (max-width: 600px){.toast{width:100%;border-radius:0}}@media only screen and (min-width: 601px) and (max-width: 992px){.toast{float:left}}@media only screen and (min-width: 993px){.toast{float:right}}.tabs,.static-tabs{position:relative;overflow-x:auto;overflow-y:hidden;height:48px;width:100%;background-color:#fff;margin:0 auto;white-space:nowrap}.tabs.tabs-transparent,.tabs-transparent.static-tabs{background-color:transparent}.tabs.tabs-transparent .tab a,.tabs-transparent.static-tabs .tab a,.tabs.tabs-transparent .tab.disabled a,.tabs-transparent.static-tabs .tab.disabled a,.tabs.tabs-transparent .tab.disabled a:hover,.tabs-transparent.static-tabs .tab.disabled a:hover{color:rgba(255,255,255,0.7)}.tabs.tabs-transparent .tab a:hover,.tabs-transparent.static-tabs .tab a:hover,.tabs.tabs-transparent .tab a.active,.tabs-transparent.static-tabs .tab a.active{color:#fff}.tabs.tabs-transparent .indicator,.tabs-transparent.static-tabs .indicator{background-color:#fff}.tabs.tabs-fixed-width,.tabs-fixed-width.static-tabs{display:flex}.tabs.tabs-fixed-width .tab,.tabs-fixed-width.static-tabs .tab{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tabs .tab,.static-tabs .tab{display:inline-block;text-align:center;line-height:48px;height:48px;padding:0;margin:0;text-transform:uppercase}.tabs .tab a,.static-tabs .tab a{color:rgba(246,0,190,0.7);display:block;width:100%;height:100%;padding:0 24px;font-size:14px;text-overflow:ellipsis;overflow:hidden;transition:color .28s ease}.tabs .tab a:hover,.static-tabs .tab a:hover,.tabs .tab a.active,.static-tabs .tab a.active{background-color:transparent;color:#f600be}.tabs .tab.disabled a,.static-tabs .tab.disabled a,.tabs .tab.disabled a:hover,.static-tabs .tab.disabled a:hover{color:rgba(246,0,190,0.7);cursor:default}.tabs .indicator,.static-tabs .indicator{position:absolute;bottom:0;height:2px;background-color:#ff44d4;will-change:left, right}@media only screen and (max-width: 992px){.tabs,.static-tabs{display:flex}.tabs .tab,.static-tabs .tab{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tabs .tab a,.static-tabs .tab a{padding:0 12px}}.material-tooltip{padding:10px 8px;font-size:1rem;z-index:2000;background-color:transparent;border-radius:2px;color:#fff;min-height:36px;line-height:120%;opacity:0;position:absolute;text-align:center;max-width:calc(100% - 4px);overflow:hidden;left:0;top:0;pointer-events:none;visibility:hidden}.backdrop{position:absolute;opacity:0;height:7px;width:14px;border-radius:0 0 50% 50%;background-color:#323232;z-index:-1;transform-origin:50% 0%;visibility:hidden}.btn,.btn-large,.btn-flat{border:none;border-radius:2px;display:inline-block;height:36px;line-height:36px;padding:0 2rem;text-transform:uppercase;vertical-align:middle;-webkit-tap-highlight-color:transparent}.btn.disabled,.disabled.btn-large,.btn.main-blue.disabled,.main-blue.disabled.btn-large,.btn-floating.main-blue.disabled,.btn.main-pink.disabled,.main-pink.disabled.btn-large,.btn-floating.main-pink.disabled,.btn.main-grey.disabled,.main-grey.disabled.btn-large,.btn-flat.btn-flat-bg.main-blue.disabled,button.btn-flat-bg.main-blue.btn-flat[disabled],.btn-flat-bg.main-blue.secondary-content.disabled,.btn-flat.btn-flat-bg.main-pink.disabled,button.btn-flat-bg.main-pink.btn-flat[disabled],.btn-flat-bg.main-pink.secondary-content.disabled,.btn-flat.btn-flat-bg.main-grey.disabled,button.btn-flat-bg.main-grey.btn-flat[disabled],.btn-flat-bg.main-grey.secondary-content.disabled,.btn-flat.btn-flat-bg.primary-color.disabled,button.btn-flat-bg.primary-color.btn-flat[disabled],.btn-flat-bg.primary-color.secondary-content.disabled,.btn-flat.btn-flat-bg.secondary-color.disabled,button.btn-flat-bg.secondary-color.btn-flat[disabled],.btn-flat-bg.secondary-color.secondary-content.disabled,.btn-floating.disabled,.btn-large.disabled,.btn-flat.disabled,button.btn-flat[disabled],.secondary-content.disabled,.btn:disabled,.btn-large:disabled,.btn-floating:disabled,.btn-large:disabled,.btn-flat:disabled,.btn[disabled],.btn-large[disabled],.btn-floating[disabled],.btn-large[disabled],.btn-flat[disabled]{pointer-events:none;background-color:#DFDFDF !important;box-shadow:none;color:#9F9F9F !important;cursor:default}.btn.disabled:hover,.disabled.btn-large:hover,.btn-floating.main-blue.disabled:hover,.btn-floating.main-pink.disabled:hover,.btn-flat.btn-flat-bg.main-blue.disabled:hover,button.btn-flat-bg.main-blue.btn-flat:hover[disabled],.btn-flat-bg.main-blue.secondary-content.disabled:hover,.btn-flat.btn-flat-bg.main-pink.disabled:hover,button.btn-flat-bg.main-pink.btn-flat:hover[disabled],.btn-flat-bg.main-pink.secondary-content.disabled:hover,.btn-flat.btn-flat-bg.main-grey.disabled:hover,button.btn-flat-bg.main-grey.btn-flat:hover[disabled],.btn-flat-bg.main-grey.secondary-content.disabled:hover,.btn-flat.btn-flat-bg.primary-color.disabled:hover,button.btn-flat-bg.primary-color.btn-flat:hover[disabled],.btn-flat-bg.primary-color.secondary-content.disabled:hover,.btn-flat.btn-flat-bg.secondary-color.disabled:hover,button.btn-flat-bg.secondary-color.btn-flat:hover[disabled],.btn-flat-bg.secondary-color.secondary-content.disabled:hover,.btn-floating.disabled:hover,.btn-large.disabled:hover,.btn-flat.disabled:hover,button.btn-flat:hover[disabled],.secondary-content.disabled:hover,.btn:disabled:hover,.btn-large:disabled:hover,.btn-floating:disabled:hover,.btn-large:disabled:hover,.btn-flat:disabled:hover,.btn[disabled]:hover,.btn-large[disabled]:hover,.btn-floating[disabled]:hover,.btn-large[disabled]:hover,.btn-flat[disabled]:hover{background-color:#DFDFDF !important;color:#9F9F9F !important}.btn,.btn-large,.btn-floating,.btn-large,.btn-flat{font-size:1rem;outline:0}.btn i,.btn-large i,.btn-floating i,.btn-large i,.btn-flat i{font-size:1.3rem;line-height:inherit}.btn:focus,.btn-large:focus,.btn-floating:focus{background-color:#166dba}.btn,.btn-large{text-decoration:none;color:#fff;background-color:#1e88e5;text-align:center;letter-spacing:.5px;transition:.2s ease-out;cursor:pointer}.btn:hover,.btn-large:hover{background-color:#3594e8}.btn-floating{display:inline-block;color:#fff;position:relative;overflow:hidden;z-index:1;width:40px;height:40px;line-height:40px;padding:0;background-color:#1e88e5;border-radius:50%;transition:.3s;cursor:pointer;vertical-align:middle}.btn-floating:hover{background-color:#1e88e5}.btn-floating:before{border-radius:0}.btn-floating.btn-large{width:56px;height:56px}.btn-floating.btn-large.halfway-fab{bottom:-28px}.btn-floating.btn-large i{line-height:56px}.btn-floating.halfway-fab{position:absolute;right:24px;bottom:-20px}.btn-floating.halfway-fab.left,#headbands-page #headband-slider .slider-container .slider .slider-btns .btn-floating.halfway-fab.slider-btn-prev{right:auto;left:24px}.btn-floating i{width:inherit;display:inline-block;text-align:center;color:#fff;font-size:1.6rem;line-height:40px}button.btn-floating{border:none}.fixed-action-btn{position:fixed;right:23px;bottom:23px;padding-top:15px;margin-bottom:0;z-index:998}.fixed-action-btn.active ul{visibility:visible}.fixed-action-btn.horizontal{padding:0 0 0 15px}.fixed-action-btn.horizontal ul{text-align:right;right:64px;top:50%;transform:translateY(-50%);height:100%;left:auto;width:500px}.fixed-action-btn.horizontal ul li{display:inline-block;margin:15px 15px 0 0}.fixed-action-btn.toolbar{padding:0;height:56px}.fixed-action-btn.toolbar.active>a i{opacity:0}.fixed-action-btn.toolbar ul{display:flex;top:0;bottom:0}.fixed-action-btn.toolbar ul li{flex:1;display:inline-block;margin:0;height:100%;transition:none}.fixed-action-btn.toolbar ul li a{display:block;overflow:hidden;position:relative;width:100%;height:100%;background-color:transparent;box-shadow:none;color:#fff;line-height:56px;z-index:1}.fixed-action-btn.toolbar ul li a i{line-height:inherit}.fixed-action-btn ul{left:0;right:0;text-align:center;position:absolute;bottom:64px;margin:0;visibility:hidden}.fixed-action-btn ul li{margin-bottom:15px}.fixed-action-btn ul a.btn-floating{opacity:0}.fixed-action-btn .fab-backdrop{position:absolute;top:0;left:0;z-index:-1;width:40px;height:40px;background-color:#1e88e5;border-radius:50%;transform:scale(0)}.btn-flat{box-shadow:none;background-color:transparent;color:#343434;cursor:pointer;transition:background-color .2s}.btn-flat:focus,.btn-flat:active{background-color:transparent}.btn-flat:focus,.btn-flat:hover{background-color:rgba(0,0,0,0.1);box-shadow:none}.btn-flat:active{background-color:rgba(0,0,0,0.2)}.btn-flat.disabled,button.btn-flat[disabled],.secondary-content.disabled{background-color:transparent !important;color:#b3b3b3 !important;cursor:default}.btn-large{height:54px;line-height:54px}.btn-large i{font-size:1.6rem}.btn-block{display:block}.dropdown-content{background-color:#fff;margin:0;display:none;min-width:100px;max-height:650px;overflow-y:auto;opacity:0;position:absolute;z-index:999;will-change:width, height}.dropdown-content li{clear:both;color:rgba(0,0,0,0.87);cursor:pointer;min-height:50px;line-height:1.5rem;width:100%;text-align:left;text-transform:none}.dropdown-content li:hover,.dropdown-content li.active,.dropdown-content li.selected{background-color:#eee}.dropdown-content li.active.selected{background-color:#e1e1e1}.dropdown-content li.divider{min-height:0;height:1px}.dropdown-content li>a,.dropdown-content li>span{font-size:16px;color:#1e88e5;display:block;line-height:22px;padding:14px 16px}.dropdown-content li>span>label{top:1px;left:0;height:18px}.dropdown-content li>a>i{height:inherit;line-height:inherit;float:left;margin:0 24px 0 0;width:24px}.input-field.col .dropdown-content [type="checkbox"]+label,.input-field.card-wrap .dropdown-content [type="checkbox"]+label{top:1px;left:0;height:18px}/*!
 * Waves v0.6.0
 * http://fian.my.id/Waves
 *
 * Copyright 2014 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE
 */.waves-effect{position:relative;cursor:pointer;display:inline-block;overflow:hidden;user-select:none;-webkit-tap-highlight-color:transparent;vertical-align:middle;z-index:1;transition:.3s ease-out}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:20px;height:20px;margin-top:-10px;margin-left:-10px;opacity:0;background:rgba(0,0,0,0.2);transition:all 0.7s ease-out;transition-property:transform, opacity;transform:scale(0);pointer-events:none}.waves-effect.waves-light .waves-ripple{background-color:rgba(255,255,255,0.45)}.waves-effect.waves-red .waves-ripple{background-color:rgba(244,67,54,0.7)}.waves-effect.waves-yellow .waves-ripple{background-color:rgba(255,235,59,0.7)}.waves-effect.waves-orange .waves-ripple{background-color:rgba(255,152,0,0.7)}.waves-effect.waves-purple .waves-ripple{background-color:rgba(156,39,176,0.7)}.waves-effect.waves-green .waves-ripple{background-color:rgba(76,175,80,0.7)}.waves-effect.waves-teal .waves-ripple{background-color:rgba(0,150,136,0.7)}.waves-effect input[type="button"],.waves-effect input[type="reset"],.waves-effect input[type="submit"]{border:0;font-style:normal;font-size:inherit;text-transform:inherit;background:none}.waves-effect img{position:relative;z-index:-1}.waves-notransition{transition:none !important}.waves-circle{transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle, white 100%, black 100%)}.waves-input-wrapper{border-radius:0.2em;vertical-align:bottom}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-circle{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%;-webkit-mask-image:none}.waves-block{display:block}.waves-effect .waves-ripple{z-index:-1}.modal{display:none;position:fixed;left:0;right:0;background-color:#fafafa;padding:0;max-height:70%;width:55%;margin:auto;overflow-y:auto;border-radius:2px;will-change:top, opacity}@media only screen and (max-width: 992px){.modal{width:80%}}.modal h1,.modal .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .modal .breadcrumbs,.modal h2,.modal h3,.modal h4{margin-top:0}.modal .modal-content{padding:24px}.modal .modal-close{cursor:pointer}.modal .modal-footer{border-radius:0 0 2px 2px;background-color:#fafafa;padding:4px 6px;height:56px;width:100%}.modal .modal-footer .btn,.modal .modal-footer .btn-large,.modal .modal-footer .btn-flat{float:right;margin:6px 0}.modal-overlay{position:fixed;z-index:999;top:-100px;left:0;bottom:0;right:0;height:125%;width:100%;background:#000;display:none;will-change:opacity}.modal.modal-fixed-footer{padding:0;height:70%}.modal.modal-fixed-footer .modal-content{position:absolute;height:calc(100% - 56px);max-height:100%;width:100%;overflow-y:auto}.modal.modal-fixed-footer .modal-footer{border-top:1px solid rgba(0,0,0,0.1);position:absolute;bottom:0}.modal.bottom-sheet{top:auto;bottom:-100%;margin:0;width:100%;max-height:45%;border-radius:0;will-change:bottom, opacity}.collapsible{border-top:1px solid #ddd;border-right:1px solid #ddd;border-left:1px solid #ddd;margin:.5rem 0 1rem 0}.collapsible-header{display:block;cursor:pointer;min-height:3rem;line-height:3rem;padding:0 1rem;background-color:#fff;border-bottom:1px solid #ddd}.collapsible-header i{width:2rem;font-size:1.6rem;line-height:3rem;display:block;float:left;text-align:center;margin-right:1rem}.collapsible-body{display:none;border-bottom:1px solid #ddd;box-sizing:border-box;padding:2rem}.side-nav .collapsible,.side-nav.fixed .collapsible{border:none;box-shadow:none}.side-nav .collapsible li,.side-nav.fixed .collapsible li{padding:0}.side-nav .collapsible-header,.side-nav.fixed .collapsible-header{background-color:transparent;border:none;line-height:inherit;height:inherit;padding:0 16px}.side-nav .collapsible-header:hover,.side-nav.fixed .collapsible-header:hover{background-color:rgba(0,0,0,0.05)}.side-nav .collapsible-header i,.side-nav.fixed .collapsible-header i{line-height:inherit}.side-nav .collapsible-body,.side-nav.fixed .collapsible-body{border:0;background-color:#fff}.side-nav .collapsible-body li a,.side-nav.fixed .collapsible-body li a{padding:0 23.5px 0 31px}.collapsible.popout{border:none;box-shadow:none}.collapsible.popout>li{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);margin:0 24px;transition:margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94)}.collapsible.popout>li.active{box-shadow:0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);margin:16px 0}.chip{display:inline-block;height:32px;font-size:13px;font-weight:500;color:rgba(0,0,0,0.6);line-height:32px;padding:0 12px;border-radius:16px;background-color:#e4e4e4;margin-bottom:5px;margin-right:5px}.chip>img{float:left;margin:0 8px 0 -12px;height:32px;width:32px;border-radius:50%}.chip .close{cursor:pointer;float:right;font-size:16px;line-height:32px;padding-left:8px}.chips{border:none;border-bottom:1px solid #9e9e9e;box-shadow:none;margin:0 0 20px 0;min-height:45px;outline:none;transition:all .3s}.chips.focus{border-bottom:1px solid #26a69a;box-shadow:0 1px 0 0 #26a69a}.chips:hover{cursor:text}.chips .chip.selected{background-color:#26a69a;color:#fff}.chips .input{background:none;border:0;color:rgba(0,0,0,0.6);display:inline-block;font-size:1rem;height:3rem;line-height:32px;outline:0;margin:0;padding:0 !important;width:120px !important}.chips .input:focus{border:0 !important;box-shadow:none !important}.chips .autocomplete-content{margin-top:0}.prefix ~ .chips{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.chips:empty ~ label{font-size:0.8rem;transform:translateY(-140%)}.materialboxed,.materialboxed-autowidth{display:block;cursor:zoom-in;position:relative;transition:opacity .4s;-webkit-backface-visibility:hidden}.materialboxed:hover:not(.active),.materialboxed-autowidth:hover:not(.active){opacity:.8}.materialboxed.active,.active.materialboxed-autowidth{cursor:zoom-out}#materialbox-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#292929;z-index:1000;will-change:opacity}.materialbox-caption{position:fixed;display:none;color:#fff;line-height:50px;bottom:0;left:0;width:100%;text-align:center;padding:0% 15%;height:50px;z-index:1000;-webkit-font-smoothing:antialiased}select:focus{outline:1px solid #f5fafe}button:focus:not(.MuiButtonBase-root):not(.MuiLink-root){background-color:#3092e7;outline:none}label:not(.MuiFormControlLabel-root):not(.MuiFormLabel-root){color:#9e9e9e;font-size:.8rem}::input-placeholder{color:#d1d1d1}:placeholder{color:#d1d1d1}::placeholder{color:#d1d1d1}:input-placeholder{color:#d1d1d1}input:not([type]),input[type=text]:not(.MuiInputBase-input),input[type=password]:not(.MuiInputBase-input),input[type=email]:not(.MuiInputBase-input),input[type=url]:not(.MuiInputBase-input),input[type=time]:not(.MuiInputBase-input),input[type=date]:not(.MuiInputBase-input),input[type=datetime]:not(.MuiInputBase-input),input[type=datetime-local]:not(.MuiInputBase-input),input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput),input[type=number]:not(.MuiInputBase-input),input[type=search]:not(.MuiInputBase-input),textarea.materialize-textarea{background-color:transparent;border:none;border-bottom:1px solid #9e9e9e;border-radius:0;box-shadow:none;box-sizing:content-box;font-size:1rem;height:3rem;margin:0 0 20px 0;outline:none;padding:0;transition:all 0.3s;width:100%}input:not([type]):disabled,input:not([type])[readonly='readonly'],input[type=text]:not(.MuiInputBase-input):disabled,input[type=text]:not(.MuiInputBase-input)[readonly='readonly'],input[type=password]:not(.MuiInputBase-input):disabled,input[type=password]:not(.MuiInputBase-input)[readonly='readonly'],input[type=email]:not(.MuiInputBase-input):disabled,input[type=email]:not(.MuiInputBase-input)[readonly='readonly'],input[type=url]:not(.MuiInputBase-input):disabled,input[type=url]:not(.MuiInputBase-input)[readonly='readonly'],input[type=time]:not(.MuiInputBase-input):disabled,input[type=time]:not(.MuiInputBase-input)[readonly='readonly'],input[type=date]:not(.MuiInputBase-input):disabled,input[type=date]:not(.MuiInputBase-input)[readonly='readonly'],input[type=datetime]:not(.MuiInputBase-input):disabled,input[type=datetime]:not(.MuiInputBase-input)[readonly='readonly'],input[type=datetime-local]:not(.MuiInputBase-input):disabled,input[type=datetime-local]:not(.MuiInputBase-input)[readonly='readonly'],input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):disabled,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput)[readonly='readonly'],input[type=number]:not(.MuiInputBase-input):disabled,input[type=number]:not(.MuiInputBase-input)[readonly='readonly'],input[type=search]:not(.MuiInputBase-input):disabled,input[type=search]:not(.MuiInputBase-input)[readonly='readonly'],textarea.materialize-textarea:disabled,textarea.materialize-textarea[readonly='readonly']{border-bottom:1px dotted rgba(0,0,0,0.26);color:rgba(0,0,0,0.26)}input:not([type]):disabled+label,input:not([type])[readonly='readonly']+label,input[type=text]:not(.MuiInputBase-input):disabled+label,input[type=text]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=password]:not(.MuiInputBase-input):disabled+label,input[type=password]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=email]:not(.MuiInputBase-input):disabled+label,input[type=email]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=url]:not(.MuiInputBase-input):disabled+label,input[type=url]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=time]:not(.MuiInputBase-input):disabled+label,input[type=time]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=date]:not(.MuiInputBase-input):disabled+label,input[type=date]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=datetime]:not(.MuiInputBase-input):disabled+label,input[type=datetime]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=datetime-local]:not(.MuiInputBase-input):disabled+label,input[type=datetime-local]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):disabled+label,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput)[readonly='readonly']+label,input[type=number]:not(.MuiInputBase-input):disabled+label,input[type=number]:not(.MuiInputBase-input)[readonly='readonly']+label,input[type=search]:not(.MuiInputBase-input):disabled+label,input[type=search]:not(.MuiInputBase-input)[readonly='readonly']+label,textarea.materialize-textarea:disabled+label,textarea.materialize-textarea[readonly='readonly']+label{color:rgba(0,0,0,0.26)}input:not([type]):focus:not([readonly]),input[type=text]:not(.MuiInputBase-input):focus:not([readonly]),input[type=password]:not(.MuiInputBase-input):focus:not([readonly]),input[type=email]:not(.MuiInputBase-input):focus:not([readonly]),input[type=url]:not(.MuiInputBase-input):focus:not([readonly]),input[type=time]:not(.MuiInputBase-input):focus:not([readonly]),input[type=date]:not(.MuiInputBase-input):focus:not([readonly]),input[type=datetime]:not(.MuiInputBase-input):focus:not([readonly]),input[type=datetime-local]:not(.MuiInputBase-input):focus:not([readonly]),input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):focus:not([readonly]),input[type=number]:not(.MuiInputBase-input):focus:not([readonly]),input[type=search]:not(.MuiInputBase-input):focus:not([readonly]),textarea.materialize-textarea:focus:not([readonly]){border-bottom:1px solid #1e88e5;box-shadow:0 1px 0 0 #1e88e5}input:not([type]):focus:not([readonly])+label,input[type=text]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=password]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=email]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=url]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=time]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=date]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=datetime]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=datetime-local]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):focus:not([readonly])+label,input[type=number]:not(.MuiInputBase-input):focus:not([readonly])+label,input[type=search]:not(.MuiInputBase-input):focus:not([readonly])+label,textarea.materialize-textarea:focus:not([readonly])+label{color:#1e88e5}input:not([type]).valid,input:not([type]):focus.valid,input[type=text]:not(.MuiInputBase-input).valid,input[type=text]:not(.MuiInputBase-input):focus.valid,input[type=password]:not(.MuiInputBase-input).valid,input[type=password]:not(.MuiInputBase-input):focus.valid,input[type=email]:not(.MuiInputBase-input).valid,input[type=email]:not(.MuiInputBase-input):focus.valid,input[type=url]:not(.MuiInputBase-input).valid,input[type=url]:not(.MuiInputBase-input):focus.valid,input[type=time]:not(.MuiInputBase-input).valid,input[type=time]:not(.MuiInputBase-input):focus.valid,input[type=date]:not(.MuiInputBase-input).valid,input[type=date]:not(.MuiInputBase-input):focus.valid,input[type=datetime]:not(.MuiInputBase-input).valid,input[type=datetime]:not(.MuiInputBase-input):focus.valid,input[type=datetime-local]:not(.MuiInputBase-input).valid,input[type=datetime-local]:not(.MuiInputBase-input):focus.valid,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput).valid,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):focus.valid,input[type=number]:not(.MuiInputBase-input).valid,input[type=number]:not(.MuiInputBase-input):focus.valid,input[type=search]:not(.MuiInputBase-input).valid,input[type=search]:not(.MuiInputBase-input):focus.valid,textarea.materialize-textarea.valid,textarea.materialize-textarea:focus.valid{border-bottom:1px solid #4caf50;box-shadow:0 1px 0 0 #4caf50}input:not([type]).valid+label::after,input:not([type]):focus.valid+label::after,input[type=text]:not(.MuiInputBase-input).valid+label::after,input[type=text]:not(.MuiInputBase-input):focus.valid+label::after,input[type=password]:not(.MuiInputBase-input).valid+label::after,input[type=password]:not(.MuiInputBase-input):focus.valid+label::after,input[type=email]:not(.MuiInputBase-input).valid+label::after,input[type=email]:not(.MuiInputBase-input):focus.valid+label::after,input[type=url]:not(.MuiInputBase-input).valid+label::after,input[type=url]:not(.MuiInputBase-input):focus.valid+label::after,input[type=time]:not(.MuiInputBase-input).valid+label::after,input[type=time]:not(.MuiInputBase-input):focus.valid+label::after,input[type=date]:not(.MuiInputBase-input).valid+label::after,input[type=date]:not(.MuiInputBase-input):focus.valid+label::after,input[type=datetime]:not(.MuiInputBase-input).valid+label::after,input[type=datetime]:not(.MuiInputBase-input):focus.valid+label::after,input[type=datetime-local]:not(.MuiInputBase-input).valid+label::after,input[type=datetime-local]:not(.MuiInputBase-input):focus.valid+label::after,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput).valid+label::after,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):focus.valid+label::after,input[type=number]:not(.MuiInputBase-input).valid+label::after,input[type=number]:not(.MuiInputBase-input):focus.valid+label::after,input[type=search]:not(.MuiInputBase-input).valid+label::after,input[type=search]:not(.MuiInputBase-input):focus.valid+label::after,textarea.materialize-textarea.valid+label::after,textarea.materialize-textarea:focus.valid+label::after{color:#4caf50;content:attr(data-success);opacity:1}input:not([type]).invalid,input:not([type]):focus.invalid,input[type=text]:not(.MuiInputBase-input).invalid,input[type=text]:not(.MuiInputBase-input):focus.invalid,input[type=password]:not(.MuiInputBase-input).invalid,input[type=password]:not(.MuiInputBase-input):focus.invalid,input[type=email]:not(.MuiInputBase-input).invalid,input[type=email]:not(.MuiInputBase-input):focus.invalid,input[type=url]:not(.MuiInputBase-input).invalid,input[type=url]:not(.MuiInputBase-input):focus.invalid,input[type=time]:not(.MuiInputBase-input).invalid,input[type=time]:not(.MuiInputBase-input):focus.invalid,input[type=date]:not(.MuiInputBase-input).invalid,input[type=date]:not(.MuiInputBase-input):focus.invalid,input[type=datetime]:not(.MuiInputBase-input).invalid,input[type=datetime]:not(.MuiInputBase-input):focus.invalid,input[type=datetime-local]:not(.MuiInputBase-input).invalid,input[type=datetime-local]:not(.MuiInputBase-input):focus.invalid,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput).invalid,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):focus.invalid,input[type=number]:not(.MuiInputBase-input).invalid,input[type=number]:not(.MuiInputBase-input):focus.invalid,input[type=search]:not(.MuiInputBase-input).invalid,input[type=search]:not(.MuiInputBase-input):focus.invalid,textarea.materialize-textarea.invalid,textarea.materialize-textarea:focus.invalid{border-bottom:1px solid #f44336;box-shadow:0 1px 0 0 #f44336}input:not([type]).invalid+label::after,input:not([type]):focus.invalid+label::after,input[type=text]:not(.MuiInputBase-input).invalid+label::after,input[type=text]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=password]:not(.MuiInputBase-input).invalid+label::after,input[type=password]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=email]:not(.MuiInputBase-input).invalid+label::after,input[type=email]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=url]:not(.MuiInputBase-input).invalid+label::after,input[type=url]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=time]:not(.MuiInputBase-input).invalid+label::after,input[type=time]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=date]:not(.MuiInputBase-input).invalid+label::after,input[type=date]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=datetime]:not(.MuiInputBase-input).invalid+label::after,input[type=datetime]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=datetime-local]:not(.MuiInputBase-input).invalid+label::after,input[type=datetime-local]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput).invalid+label::after,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput):focus.invalid+label::after,input[type=number]:not(.MuiInputBase-input).invalid+label::after,input[type=number]:not(.MuiInputBase-input):focus.invalid+label::after,input[type=search]:not(.MuiInputBase-input).invalid+label::after,input[type=search]:not(.MuiInputBase-input):focus.invalid+label::after,textarea.materialize-textarea.invalid+label::after,textarea.materialize-textarea:focus.invalid+label::after{color:#f44336;content:attr(data-error);opacity:1}input:not([type]).validate+label,input[type=text]:not(.MuiInputBase-input).validate+label,input[type=password]:not(.MuiInputBase-input).validate+label,input[type=email]:not(.MuiInputBase-input).validate+label,input[type=url]:not(.MuiInputBase-input).validate+label,input[type=time]:not(.MuiInputBase-input).validate+label,input[type=date]:not(.MuiInputBase-input).validate+label,input[type=datetime]:not(.MuiInputBase-input).validate+label,input[type=datetime-local]:not(.MuiInputBase-input).validate+label,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput).validate+label,input[type=number]:not(.MuiInputBase-input).validate+label,input[type=search]:not(.MuiInputBase-input).validate+label,textarea.materialize-textarea.validate+label{pointer-events:none;width:100%}input:not([type])+label::after,input[type=text]:not(.MuiInputBase-input)+label::after,input[type=password]:not(.MuiInputBase-input)+label::after,input[type=email]:not(.MuiInputBase-input)+label::after,input[type=url]:not(.MuiInputBase-input)+label::after,input[type=time]:not(.MuiInputBase-input)+label::after,input[type=date]:not(.MuiInputBase-input)+label::after,input[type=datetime]:not(.MuiInputBase-input)+label::after,input[type=datetime-local]:not(.MuiInputBase-input)+label::after,input[type=tel]:not(.MuiInputBase-input):not(.PhoneInputInput)+label::after,input[type=number]:not(.MuiInputBase-input)+label::after,input[type=search]:not(.MuiInputBase-input)+label::after,textarea.materialize-textarea+label::after{content:'';display:block;opacity:0;position:absolute;top:60px;transition:.2s opacity ease-out, .2s color ease-out}.input-field{margin-top:1rem;position:relative}.input-field.inline{display:inline-block;margin-left:5px;vertical-align:middle}.input-field.inline input,.input-field.inline .select-dropdown{margin-bottom:1rem}.input-field.col label,.input-field.card-wrap label{left:.75rem}.input-field.col .prefix ~ label,.input-field.card-wrap .prefix ~ label,.input-field.col .prefix ~ .validate ~ label,.input-field.card-wrap .prefix ~ .validate ~ label{width:calc(100% - 3rem - 1.5rem)}.input-field label{color:#9e9e9e;cursor:text;font-size:1rem;left:0;position:absolute;text-align:initial;top:0.8rem;transition:.2s ease-out}.input-field label:not(.label-icon).active{font-size:.8rem;transform:translateY(-140%)}.input-field .prefix{font-size:2rem;position:absolute;transition:color .2s;width:3rem}.input-field .prefix.active{color:#1e88e5}.input-field .prefix ~ input,.input-field .prefix ~ textarea,.input-field .prefix ~ label,.input-field .prefix ~ .validate ~ label,.input-field .prefix ~ .autocomplete-content{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.input-field .prefix ~ label{margin-left:3rem}@media only screen and (max-width: 992px){.input-field .prefix ~ input{width:86%;width:calc(100% - 3rem)}}@media only screen and (max-width: 600px){.input-field .prefix ~ input{width:80%;width:calc(100% - 3rem)}}.input-field input[type=search]{display:block;line-height:inherit;padding-left:4rem;width:calc(100% - 4rem)}.input-field input[type=search]:focus{background-color:#fff;border:0;box-shadow:none;color:#444}.input-field input[type=search]:focus+label i,.input-field input[type=search]:focus ~ .mdi-navigation-close,.input-field input[type=search]:focus ~ .material-icons{color:#444}.input-field input[type=search]+label{left:1rem}.input-field input[type=search] ~ .mdi-navigation-close,.input-field input[type=search] ~ .material-icons{color:transparent;cursor:pointer;font-size:2rem;position:absolute;right:1rem;top:0;transition:.3s color}textarea{background-color:transparent;height:3rem;width:100%}textarea.materialize-textarea{min-height:3rem;overflow-y:hidden;padding:.8rem 0 1.6rem;resize:none}.hiddendiv{display:none;overflow-wrap:break-word;padding-top:1.2rem;position:absolute;top:0;white-space:pre-wrap;word-wrap:break-word}.autocomplete-content{display:block;margin-top:-20px;opacity:1;position:static}.autocomplete-content li .highlight{color:#444}.autocomplete-content li img{height:40px;margin:5px 15px;width:40px}[type='radio']:not(:checked),[type='radio']:checked{left:-9999px;opacity:0;position:absolute}[type='radio']:not(:checked)+label,[type='radio']:checked+label{cursor:pointer;display:inline-block;font-size:1rem;height:25px;line-height:25px;padding-left:35px;position:relative;transition:.28s ease;user-select:none;user-select:none}[type='radio']+label::before,[type='radio']+label::after{content:'';height:16px;left:0;margin:4px;position:absolute;top:0;transition:.28s ease;width:16px;z-index:0}[type='radio']:not(:checked)+label::before,[type='radio']:not(:checked)+label::after,[type='radio']:checked+label::before,[type='radio']:checked+label::after,[type='radio'].with-gap:checked+label::before,[type='radio'].with-gap:checked+label::after{border-radius:50%}[type='radio']:not(:checked)+label::before,[type='radio']:not(:checked)+label::after{border:2px solid #5a5a5a}[type='radio']:not(:checked)+label::after{transform:scale(0)}[type='radio']:checked+label::before{border:2px solid transparent}[type='radio']:checked+label::after,[type='radio'].with-gap:checked+label::before,[type='radio'].with-gap:checked+label::after{border:2px solid #1e88e5}[type='radio']:checked+label::after,[type='radio'].with-gap:checked+label::after{background-color:#1e88e5}[type='radio']:checked+label::after{transform:scale(1.02)}[type='radio'].with-gap:checked+label::after{transform:scale(0.5)}[type='radio'].tabbed:focus+label::before{box-shadow:0 0 0 10px rgba(0,0,0,0.1)}[type='radio'].with-gap:disabled:checked+label::before{border:2px solid rgba(0,0,0,0.26)}[type='radio'].with-gap:disabled:checked+label::after{background-color:rgba(0,0,0,0.26);border:none}[type='radio']:disabled:not(:checked)+label::before,[type='radio']:disabled:checked+label::before{background-color:transparent;border-color:rgba(0,0,0,0.26)}[type='radio']:disabled+label{color:rgba(0,0,0,0.26)}[type='radio']:disabled:not(:checked)+label::before{border-color:rgba(0,0,0,0.26)}[type='radio']:disabled:checked+label::after{background-color:rgba(0,0,0,0.26);border-color:#BDBDBD}form p:not(.MuiFormHelperText-root):not(.MuiTypography-root){margin-bottom:10px;text-align:left}form p:last-child:not(.MuiFormHelperText-root):not(.MuiTypography-root){margin-bottom:0}[type='checkbox']:not(:checked),[type='checkbox']:checked{left:-9999px;opacity:0;position:absolute}[type='checkbox']+label{cursor:pointer;display:inline-block;font-size:1rem;height:25px;line-height:25px;padding-left:35px;position:relative;user-select:none;user-select:none;user-select:none;user-select:none}[type='checkbox']+label::before,[type='checkbox']:not(.filled-in)+label::after{border:2px solid #5a5a5a;border-radius:1px;content:'';height:18px;left:0;margin-top:2px;position:absolute;top:0;transition:.2s;width:18px;z-index:0}[type='checkbox']:not(.filled-in)+label::after{border:0;transform:scale(0)}[type='checkbox']:not(:checked):disabled+label::before{background-color:rgba(0,0,0,0.26);border:none}[type='checkbox'].tabbed:focus+label::after{background-color:rgba(0,0,0,0.1);border:0;border-radius:50%;box-shadow:0 0 0 10px rgba(0,0,0,0.1);transform:scale(1)}[type='checkbox']:checked+label::before{backface-visibility:hidden;border-bottom:2px solid #1e88e5;border-left:2px solid transparent;border-right:2px solid #1e88e5;border-top:2px solid transparent;height:22px;left:-5px;top:-4px;transform:rotate(40deg);transform-origin:100% 100%;width:12px}[type='checkbox']:checked:disabled+label::before{border-bottom:2px solid rgba(0,0,0,0.26);border-right:2px solid rgba(0,0,0,0.26)}[type='checkbox']:indeterminate+label::before{backface-visibility:hidden;border-bottom:none;border-left:none;border-right:2px solid #1e88e5;border-top:none;height:22px;left:-12px;top:-11px;transform:rotate(90deg);transform-origin:100% 100%;width:10px}[type='checkbox']:indeterminate:disabled+label::before{background-color:transparent;border-right:2px solid rgba(0,0,0,0.26)}[type='checkbox'].filled-in+label::after{border-radius:2px}[type='checkbox'].filled-in+label::before,[type='checkbox'].filled-in+label::after{content:'';left:0;position:absolute;transition:border .25s, background-color .25s, width .2s .1s, height .2s .1s, top .2s .1s, left .2s .1s;z-index:1}[type='checkbox'].filled-in:not(:checked)+label::before{border:3px solid transparent;height:0;left:6px;top:10px;transform:rotateZ(37deg);transform:rotateZ(37deg);transform-origin:20% 40%;transform-origin:100% 100%;width:0}[type='checkbox'].filled-in:not(:checked)+label::after{background-color:transparent;border:2px solid #5a5a5a;height:20px;top:0;width:20px;z-index:0}[type='checkbox'].filled-in:checked+label::before{border-bottom:2px solid #fff;border-left:2px solid transparent;border-right:2px solid #fff;border-top:2px solid transparent;height:13px;left:1px;top:0;transform:rotateZ(37deg);transform:rotateZ(37deg);transform-origin:100% 100%;transform-origin:100% 100%;width:8px}[type='checkbox'].filled-in:checked+label::after{background-color:#1e88e5;border:2px solid #1e88e5;height:20px;top:0;width:20px;z-index:0}[type='checkbox'].filled-in.tabbed:focus+label::after{background-color:rgba(0,0,0,0.1);border-color:#5a5a5a;border-radius:2px}[type='checkbox'].filled-in.tabbed:checked:focus+label::after{background-color:#1e88e5;border-color:#1e88e5;border-radius:2px}[type='checkbox'].filled-in:disabled:not(:checked)+label::before{background-color:transparent;border:2px solid transparent}[type='checkbox'].filled-in:disabled:not(:checked)+label::after{background-color:#BDBDBD;border-color:transparent}[type='checkbox'].filled-in:disabled:checked+label::before{background-color:transparent}[type='checkbox'].filled-in:disabled:checked+label::after{background-color:#BDBDBD;border-color:#BDBDBD}.switch,.switch *{user-select:none;user-select:none;user-select:none;user-select:none}.switch label{cursor:pointer}.switch label input[type=checkbox]{height:0;opacity:0;width:0}.switch label input[type=checkbox]:checked+.lever{background-color:#a0c3e3}.switch label input[type=checkbox]:checked+.lever::after{background-color:#1e88e5;left:24px}.switch label .lever{background-color:#818181;border-radius:15px;content:'';display:inline-block;height:15px;margin:0 16px;margin-right:10px;position:relative;transition:background 0.3s ease;vertical-align:middle;width:40px}.switch label .lever::after{background-color:#F1F1F1;border-radius:21px;box-shadow:0 1px 3px 1px rgba(0,0,0,0.4);content:'';display:inline-block;height:21px;left:-5px;position:absolute;top:-3px;transition:left 0.3s ease, background .3s ease, box-shadow 0.1s ease;width:21px}input[type=checkbox]:checked:not(:disabled) ~ .lever:active::after,input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::after{box-shadow:0 1px 3px 1px rgba(0,0,0,0.4),0 0 0 15px rgba(30,136,229,0.1)}input[type=checkbox]:not(:disabled) ~ .lever:active::after,input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::after{box-shadow:0 1px 3px 1px rgba(0,0,0,0.4),0 0 0 15px rgba(0,0,0,0.08)}.switch input[type=checkbox][disabled]+.lever{cursor:default}.switch label input[type=checkbox][disabled]+.lever::after,.switch label input[type=checkbox][disabled]:checked+.lever::after{background-color:#BDBDBD}select{display:none}select.browser-default{display:block}select{background-color:rgba(255,255,255,0.9);border:1px solid #f2f2f2;border-radius:2px;height:3rem;padding:5px;width:100%}.select-label{position:absolute}.select-wrapper{position:relative}.select-wrapper input.select-dropdown{background-color:transparent;border:none;border-bottom:1px solid #9e9e9e;cursor:pointer;display:block;font-size:1rem;height:3rem;line-height:3rem;margin:0 0 20px 0;outline:none;padding:0;position:relative;width:100%}.select-wrapper span.caret{bottom:0;color:initial;font-size:10px;height:10px;line-height:10px;margin:auto 0;position:absolute;right:0;top:0}.select-wrapper span.caret.disabled{color:rgba(0,0,0,0.26)}.select-wrapper+label{font-size:.8rem;position:absolute;top:-14px}select:disabled{color:rgba(0,0,0,0.3)}.select-wrapper input.select-dropdown:disabled{border-bottom:1px solid rgba(0,0,0,0.3);color:rgba(0,0,0,0.3);cursor:default;user-select:none;user-select:none;user-select:none}.select-wrapper i{color:rgba(0,0,0,0.3)}.select-dropdown li.disabled,.select-dropdown li.disabled>span,.select-dropdown li.optgroup{background-color:transparent;color:rgba(0,0,0,0.3)}.prefix ~ .select-wrapper{margin-left:3rem;width:92%;width:calc(100% - 3rem)}.prefix ~ label{margin-left:3rem}.select-dropdown li img{float:right;height:40px;margin:5px 15px;width:40px}.select-dropdown li.optgroup{border-top:1px solid #eee}.select-dropdown li.optgroup.selected>span{color:rgba(0,0,0,0.7)}.select-dropdown li.optgroup>span{color:rgba(0,0,0,0.4)}.select-dropdown li.optgroup ~ li.optgroup-option{padding-left:1rem}.file-field{position:relative}.file-field .file-path-wrapper{overflow:hidden;padding-left:10px}.file-field input.file-path{width:100%}.file-field .btn,.file-field .btn-large{float:left;height:3rem;line-height:3rem}.file-field span{cursor:pointer}.file-field input[type=file]{bottom:0;cursor:pointer;filter:alpha(opacity=0);font-size:20px;left:0;margin:0;opacity:0;padding:0;position:absolute;right:0;top:0;width:100%}.range-field{position:relative}input[type=range],input[type=range]+.thumb{cursor:pointer}input[type=range]{background-color:transparent;border:none;margin:15px 0;outline:none;padding:0;position:relative;width:100%}input[type=range]:focus{outline:none}input[type=range]+.thumb{background-color:#1e88e5;border:none;border-radius:50%;height:0;left:0;margin-left:7px;position:absolute;top:10px;transform:rotate(-45deg);transform-origin:50% 50%;width:0}input[type=range]+.thumb .value{color:#1e88e5;display:block;font-size:0;text-align:center;transform:rotate(45deg);width:30px}input[type=range]+.thumb.active{border-radius:50% 50% 50% 0}input[type=range]+.thumb.active .value{color:#fff;font-size:10px;margin-left:-1px;margin-top:8px}input[type=range]{appearance:none}input[type=range]::-webkit-slider-runnable-track{background:#c2c0c2;border:none;height:3px}input[type=range]::-webkit-slider-thumb{appearance:none;background-color:#1e88e5;border:none;border-radius:50%;height:14px;margin:-5px 0 0;transform-origin:50% 50%;transition:.3s;width:14px}input[type=range]:focus::-webkit-slider-runnable-track{background:#ccc}input[type=range]{border:1px solid white}input[type=range]::-moz-range-track{background:#ddd;border:none;height:3px}input[type=range]::-moz-range-thumb{background:#1e88e5;border:none;border-radius:50%;height:14px;margin-top:-5px;width:14px}input[type=range]:-moz-focusring{outline:1px solid #fff;outline-offset:-1px}input[type=range]:focus::-moz-range-track{background:#ccc}input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:6px 0;color:transparent;height:3px}input[type=range]::-ms-fill-lower{background:#777}input[type=range]::-ms-fill-upper{background:#ddd}input[type=range]::-ms-thumb{background:#1e88e5;border:none;border-radius:50%;height:14px;width:14px}input[type=range]:focus::-ms-fill-lower{background:#888}input[type=range]:focus::-ms-fill-upper{background:#ccc}.table-of-contents.fixed{position:fixed}.table-of-contents li{padding:2px 0}.table-of-contents a{display:inline-block;font-weight:300;color:#757575;padding-left:20px;height:1.5rem;line-height:1.5rem;letter-spacing:.4;display:inline-block}.table-of-contents a:hover{color:#a8a8a8;padding-left:19px;border-left:1px solid #f600be}.table-of-contents a.active{font-weight:500;padding-left:18px;border-left:2px solid #f600be}.side-nav{position:fixed;width:300px;left:0;top:0;margin:0;transform:translateX(-100%);height:100%;height:calc(100% + 60px);height:-moz-calc(100%);padding-bottom:60px;background-color:#fff;z-index:999;overflow-y:auto;will-change:transform;backface-visibility:hidden;transform:translateX(-105%)}.side-nav.right-aligned{right:0;transform:translateX(105%);left:auto;transform:translateX(100%)}.side-nav .collapsible{margin:0}.side-nav li{float:none;line-height:48px}.side-nav li.active{background-color:rgba(0,0,0,0.05)}.side-nav li>a{color:rgba(0,0,0,0.87);display:block;font-size:14px;font-weight:500;height:48px;line-height:48px;padding:0 32px}.side-nav li>a:hover{background-color:rgba(0,0,0,0.05)}.side-nav li>a.btn,.side-nav li>a.btn-large,.side-nav li>a.btn-large,.side-nav li>a.btn-flat,.side-nav li>a.btn-floating{margin:10px 15px}.side-nav li>a.btn,.side-nav li>a.btn-large,.side-nav li>a.btn-large,.side-nav li>a.btn-floating{color:#fff}.side-nav li>a.btn-flat{color:#343434}.side-nav li>a.btn:hover,.side-nav li>a.btn-large:hover,.side-nav li>a.btn-large:hover{background-color:#3594e8}.side-nav li>a.btn-floating:hover{background-color:#1e88e5}.side-nav li>a>i,.side-nav li>a>[class^="mdi-"],.side-nav li>a li>a>[class*="mdi-"],.side-nav li>a>i.material-icons{float:left;height:48px;line-height:48px;margin:0 32px 0 0;width:24px;color:rgba(0,0,0,0.54)}.side-nav .divider{margin:8px 0 0 0}.side-nav .subheader{cursor:initial;pointer-events:none;color:rgba(0,0,0,0.54);font-size:14px;font-weight:500;line-height:48px}.side-nav .subheader:hover{background-color:transparent}.side-nav .userView{position:relative;padding:32px 32px 0;margin-bottom:8px}.side-nav .userView>a{height:auto;padding:0}.side-nav .userView>a:hover{background-color:transparent}.side-nav .userView .background{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.side-nav .userView .circle,.side-nav .userView .name,.side-nav .userView .email{display:block}.side-nav .userView .circle{height:64px;width:64px}.side-nav .userView .name,.side-nav .userView .email{font-size:14px;line-height:24px}.side-nav .userView .name{margin-top:16px;font-weight:500}.side-nav .userView .email{padding-bottom:16px;font-weight:400}.drag-target{height:100%;width:10px;position:fixed;top:0;z-index:998}.side-nav.fixed{left:0;transform:translateX(0);position:fixed}.side-nav.fixed.right-aligned{right:0;left:auto}@media only screen and (max-width: 992px){.side-nav.fixed{transform:translateX(-105%)}.side-nav.fixed.right-aligned{transform:translateX(105%)}.side-nav a{padding:0 16px}.side-nav .userView{padding:16px 16px 0}}.side-nav .collapsible-body>ul:not(.collapsible)>li.active,.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active{background-color:#f600be}.side-nav .collapsible-body>ul:not(.collapsible)>li.active a,.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active a{color:#fff}.side-nav .collapsible-body{padding:0}#sidenav-overlay{position:fixed;top:0;left:0;right:0;height:120vh;background-color:rgba(0,0,0,0.5);z-index:997;will-change:opacity}.preloader-wrapper{display:inline-block;position:relative;width:50px;height:50px}.preloader-wrapper.small{width:36px;height:36px}.preloader-wrapper.big{width:64px;height:64px}.preloader-wrapper.active{-webkit-animation:container-rotate 1568ms linear infinite;animation:container-rotate 1568ms linear infinite}@-webkit-keyframes container-rotate{to{-webkit-transform:rotate(360deg)}}@keyframes container-rotate{to{transform:rotate(360deg)}}.spinner-layer{position:absolute;width:100%;height:100%;opacity:0;border-color:#1e88e5}.spinner-blue,.spinner-blue-only{border-color:#4285f4}.spinner-red,.spinner-red-only{border-color:#db4437}.spinner-yellow,.spinner-yellow-only{border-color:#f4b400}.spinner-green,.spinner-green-only{border-color:#0f9d58}.active .spinner-layer.spinner-blue{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.active .spinner-layer.spinner-red{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.active .spinner-layer.spinner-yellow{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.active .spinner-layer.spinner-green{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.active .spinner-layer,.active .spinner-layer.spinner-blue-only,.active .spinner-layer.spinner-red-only,.active .spinner-layer.spinner-yellow-only,.active .spinner-layer.spinner-green-only{opacity:1;-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}@-webkit-keyframes fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg)}}@keyframes fill-unfill-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}to{transform:rotate(1080deg)}}@-webkit-keyframes blue-fade-in-out{from{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}100%{opacity:1}}@keyframes blue-fade-in-out{from{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}100%{opacity:1}}@-webkit-keyframes red-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@keyframes red-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@-webkit-keyframes yellow-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@keyframes yellow-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@-webkit-keyframes green-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}100%{opacity:0}}@keyframes green-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}100%{opacity:0}}.gap-patch{position:absolute;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.gap-patch .circle{width:1000%;left:-450%}.circle-clipper{display:inline-block;position:relative;width:50%;height:100%;overflow:hidden;border-color:inherit}.circle-clipper .circle{width:200%;height:100%;border-width:3px;border-style:solid;border-color:inherit;border-bottom-color:transparent !important;border-radius:50%;-webkit-animation:none;animation:none;position:absolute;top:0;right:0;bottom:0}.circle-clipper.left .circle,#headbands-page #headband-slider .slider-container .slider .slider-btns .circle-clipper.slider-btn-prev .circle{left:0;border-right-color:transparent !important;-webkit-transform:rotate(129deg);transform:rotate(129deg)}.circle-clipper.right .circle,#headbands-page #headband-slider .slider-container .slider .slider-btns .circle-clipper.slider-btn-next .circle{left:-100%;border-left-color:transparent !important;-webkit-transform:rotate(-129deg);transform:rotate(-129deg)}.active .circle-clipper.left .circle,.active #headbands-page #headband-slider .slider-container .slider .slider-btns .circle-clipper.slider-btn-prev .circle,#headbands-page #headband-slider .slider-container .slider .slider-btns .active .circle-clipper.slider-btn-prev .circle{-webkit-animation:left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;animation:left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.active .circle-clipper.right .circle,.active #headbands-page #headband-slider .slider-container .slider .slider-btns .circle-clipper.slider-btn-next .circle,#headbands-page #headband-slider .slider-container .slider .slider-btns .active .circle-clipper.slider-btn-next .circle{-webkit-animation:right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;animation:right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}@-webkit-keyframes left-spin{from{-webkit-transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg)}}@keyframes left-spin{from{transform:rotate(130deg)}50%{transform:rotate(-5deg)}to{transform:rotate(130deg)}}@-webkit-keyframes right-spin{from{-webkit-transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg)}}@keyframes right-spin{from{transform:rotate(-130deg)}50%{transform:rotate(5deg)}to{transform:rotate(-130deg)}}#spinnerContainer.cooldown{-webkit-animation:container-rotate 1568ms linear infinite,fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);animation:container-rotate 1568ms linear infinite,fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1)}@-webkit-keyframes fade-out{from{opacity:1}to{opacity:0}}@keyframes fade-out{from{opacity:1}to{opacity:0}}.slider{position:relative;height:400px;width:100%}.slider.fullscreen{height:100%;width:100%;position:absolute;top:0;left:0;right:0;bottom:0}.slider.fullscreen ul.slides{height:100%}.slider.fullscreen ul.indicators{z-index:2;bottom:30px}.slider .slides{background-color:#9e9e9e;margin:0;height:400px}.slider .slides li{opacity:0;position:absolute;top:0;left:0;z-index:1;width:100%;height:inherit;overflow:hidden}.slider .slides li img{height:100%;width:100%;background-size:cover;background-position:center}.slider .slides li .caption{color:#fff;position:absolute;top:15%;left:15%;width:70%;opacity:0}.slider .slides li .caption p{color:#e0e0e0}.slider .slides li.active{z-index:2}.slider .indicators{position:absolute;text-align:center;left:0;right:0;bottom:0;margin:0}.slider .indicators .indicator-item{display:inline-block;position:relative;cursor:pointer;height:16px;width:16px;margin:0 12px;background-color:#e0e0e0;transition:background-color .3s;border-radius:50%}.slider .indicators .indicator-item.active{background-color:#4CAF50}.carousel{overflow:hidden;position:relative;width:100%;height:400px;perspective:500px;transform-style:preserve-3d;transform-origin:0% 50%}.carousel.carousel-slider{top:0;left:0;height:0}.carousel.carousel-slider .carousel-fixed-item{position:absolute;left:0;right:0;bottom:20px;z-index:1}.carousel.carousel-slider .carousel-fixed-item.with-indicators{bottom:68px}.carousel.carousel-slider .carousel-item{width:100%;height:100%;min-height:400px;position:absolute;top:0;left:0}.carousel.carousel-slider .carousel-item h2{font-size:24px;font-weight:500;line-height:32px}.carousel.carousel-slider .carousel-item p{font-size:15px}.carousel .carousel-item{display:none;width:200px;height:200px;position:absolute;top:0;left:0}.carousel .carousel-item>img{width:100%}.carousel .indicators{position:absolute;text-align:center;left:0;right:0;bottom:0;margin:0}.carousel .indicators .indicator-item{display:inline-block;position:relative;cursor:pointer;height:8px;width:8px;margin:24px 4px;background-color:rgba(255,255,255,0.5);transition:background-color .3s;border-radius:50%}.carousel .indicators .indicator-item.active{background-color:#fff}.carousel.scrolling .carousel-item .materialboxed,.carousel.scrolling .carousel-item .materialboxed-autowidth,.carousel .carousel-item:not(.active) .materialboxed,.carousel .carousel-item:not(.active) .materialboxed-autowidth{pointer-events:none}.tap-target-wrapper{width:800px;height:800px;position:fixed;z-index:1000;visibility:hidden;transition:visibility 0s .3s}.tap-target-wrapper.open{visibility:visible;transition:visibility 0s}.tap-target-wrapper.open .tap-target{transform:scale(1);opacity:.95;transition:transform 0.3s cubic-bezier(0.42, 0, 0.58, 1),opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1)}.tap-target-wrapper.open .tap-target-wave::before{transform:scale(1)}.tap-target-wrapper.open .tap-target-wave::after{visibility:visible;animation:pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;transition:opacity .3s, transform .3s, visibility 0s 1s}.tap-target{position:absolute;font-size:1rem;border-radius:50%;background-color:#f600be;box-shadow:0 20px 20px 0 rgba(0,0,0,0.14),0 10px 50px 0 rgba(0,0,0,0.12),0 30px 10px -20px rgba(0,0,0,0.2);width:100%;height:100%;opacity:0;transform:scale(0);transition:transform 0.3s cubic-bezier(0.42, 0, 0.58, 1),opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1)}.tap-target-content{position:relative;display:table-cell}.tap-target-wave{position:absolute;border-radius:50%;z-index:10001}.tap-target-wave::before,.tap-target-wave::after{content:'';display:block;position:absolute;width:100%;height:100%;border-radius:50%;background-color:#ffffff}.tap-target-wave::before{transform:scale(0);transition:transform .3s}.tap-target-wave::after{visibility:hidden;transition:opacity .3s, transform .3s, visibility 0s;z-index:-1}.tap-target-origin{top:50%;left:50%;transform:translate(-50%, -50%);z-index:10002;position:absolute !important}.tap-target-origin:not(.btn):not(.btn-large),.tap-target-origin:not(.btn):not(.btn-large):hover{background:none}@media only screen and (max-width: 600px){.tap-target,.tap-target-wrapper{width:600px;height:600px}}.pulse{overflow:initial;position:relative}.pulse::before{content:'';display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-color:inherit;border-radius:inherit;transition:opacity .3s, transform .3s;animation:pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;z-index:-1}@keyframes pulse-animation{0%{opacity:1;transform:scale(1)}50%{opacity:0;transform:scale(1.5)}100%{opacity:0;transform:scale(1.5)}}.picker{font-size:16px;text-align:left;line-height:1.2;color:#000000;position:absolute;z-index:10000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.picker__input{cursor:default}.picker__input.picker__input--active{border-color:#0089ec}.picker__holder{width:100%;overflow-y:auto;-webkit-overflow-scrolling:touch}/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */.picker__holder,.picker__frame{bottom:0;left:0;right:0;top:100%}.picker__holder{position:fixed;-webkit-transition:background 0.15s ease-out, top 0s 0.15s;-moz-transition:background 0.15s ease-out, top 0s 0.15s;transition:background 0.15s ease-out, top 0s 0.15s;-webkit-backface-visibility:hidden}.picker__frame{position:absolute;margin:0 auto;min-width:256px;width:300px;max-height:350px;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-moz-opacity:0;opacity:0;-webkit-transition:all 0.15s ease-out;-moz-transition:all 0.15s ease-out;transition:all 0.15s ease-out}@media (min-height: 28.875em){.picker__frame{overflow:visible;top:auto;bottom:-100%;max-height:80%}}@media (min-height: 40.125em){.picker__frame{margin-bottom:7.5%}}.picker__wrap{display:table;width:100%;height:100%}@media (min-height: 28.875em){.picker__wrap{display:block}}.picker__box{background:#ffffff;display:table-cell;vertical-align:middle}@media (min-height: 28.875em){.picker__box{display:block;border:1px solid #777777;border-top-color:#898989;border-bottom-width:0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;-webkit-box-shadow:0 12px 36px 16px rgba(0,0,0,0.24);-moz-box-shadow:0 12px 36px 16px rgba(0,0,0,0.24);box-shadow:0 12px 36px 16px rgba(0,0,0,0.24)}}.picker--opened .picker__holder{top:0;background:transparent;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";zoom:1;background:rgba(0,0,0,0.32);-webkit-transition:background 0.15s ease-out;-moz-transition:background 0.15s ease-out;transition:background 0.15s ease-out}.picker--opened .picker__frame{top:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);-moz-opacity:1;opacity:1}@media (min-height: 35.875em){.picker--opened .picker__frame{top:10%;bottom:auto}}.picker__input.picker__input--active{border-color:#E3F2FD}.picker__frame{margin:0 auto;max-width:325px}@media (min-height: 38.875em){.picker--opened .picker__frame{top:10%;bottom:auto}}.picker__box{padding:0 1em}.picker__header{text-align:center;position:relative;margin-top:.75em}.picker__month,.picker__year{display:inline-block;margin-left:.25em;margin-right:.25em}.picker__select--month,.picker__select--year{height:2em;padding:0;margin-left:.25em;margin-right:.25em}.picker__select--month.browser-default{display:inline;background-color:#FFFFFF;width:40%}.picker__select--year.browser-default{display:inline;background-color:#FFFFFF;width:26%}.picker__select--month:focus,.picker__select--year:focus{border-color:rgba(0,0,0,0.05)}.picker__nav--prev,.picker__nav--next{position:absolute;padding:.5em 1.25em;width:1em;height:1em;box-sizing:content-box;top:-0.25em}.picker__nav--prev{left:-1em;padding-right:1.25em}.picker__nav--next{right:-1em;padding-left:1.25em}.picker__nav--disabled,.picker__nav--disabled:hover,.picker__nav--disabled:before,.picker__nav--disabled:before:hover{cursor:default;background:none;border-right-color:#f5f5f5;border-left-color:#f5f5f5}.picker__table{text-align:center;border-collapse:collapse;border-spacing:0;table-layout:fixed;font-size:1rem;width:100%;margin-top:.75em;margin-bottom:.5em}.picker__table th,.picker__table td{text-align:center}.picker__table td{margin:0;padding:0}.picker__weekday{width:14.285714286%;font-size:.75em;padding-bottom:.25em;color:#999999;font-weight:500}@media (min-height: 33.875em){.picker__weekday{padding-bottom:.5em}}.picker__day--today{position:relative;color:#595959;letter-spacing:-.3;padding:.75rem 0;font-weight:400;border:1px solid transparent}.picker__day--disabled:before{border-top-color:#aaaaaa}.picker__day--infocus:hover{cursor:pointer;color:#000;font-weight:500}.picker__day--outfocus{display:none;padding:.75rem 0;color:#fff}.picker__day--outfocus:hover{cursor:pointer;color:#dddddd;font-weight:500}.picker__day--highlighted:hover,.picker--focused .picker__day--highlighted{cursor:pointer}.picker__day--selected,.picker__day--selected:hover,.picker--focused .picker__day--selected{border-radius:50%;transform:scale(0.75);background:#0089ec;color:#ffffff}.picker__day--disabled,.picker__day--disabled:hover,.picker--focused .picker__day--disabled{background:#f5f5f5;border-color:#f5f5f5;color:#dddddd;cursor:default}.picker__day--highlighted.picker__day--disabled,.picker__day--highlighted.picker__day--disabled:hover{background:#bbbbbb}.picker__footer{text-align:center;display:flex;align-items:center;justify-content:space-between}.picker__button--today,.picker__button--clear,.picker__button--close{border:1px solid #ffffff;background:#ffffff;font-size:.8em;padding:.66em 0;font-weight:bold;width:33%;display:inline-block;vertical-align:bottom}.picker__button--today:hover,.picker__button--clear:hover,.picker__button--close:hover{cursor:pointer;color:#000000;background:#b1dcfb;border-bottom-color:#b1dcfb}.picker__button--today:focus,.picker__button--clear:focus,.picker__button--close:focus{background:#b1dcfb;border-color:rgba(0,0,0,0.05);outline:none}.picker__button--today:before,.picker__button--clear:before,.picker__button--close:before{position:relative;display:inline-block;height:0}.picker__button--today:before,.picker__button--clear:before{content:" ";margin-right:.45em}.picker__button--today:before{top:-0.05em;width:0;border-top:0.66em solid #0059bc;border-left:.66em solid transparent}.picker__button--clear:before{top:-0.25em;width:.66em;border-top:3px solid #ee2200}.picker__button--close:before{content:"\D7";top:-0.1em;vertical-align:top;font-size:1.1em;margin-right:.35em;color:#777777}.picker__button--today[disabled],.picker__button--today[disabled]:hover{background:#f5f5f5;border-color:#f5f5f5;color:#dddddd;cursor:default}.picker__button--today[disabled]:before{border-top-color:#aaaaaa}.picker__box{border-radius:2px;overflow:hidden}.picker__date-display{text-align:center;background-color:#1e88e5;color:#fff;padding-bottom:15px;font-weight:300}.picker__nav--prev:hover,.picker__nav--next:hover{cursor:pointer;color:#000000;background:#c3dcf2}.picker__weekday-display{background-color:#1775c8;padding:10px;font-weight:200;letter-spacing:.5;font-size:1rem;margin-bottom:15px}.picker__month-display{text-transform:uppercase;font-size:2rem}.picker__day-display{font-size:4.5rem;font-weight:400}.picker__year-display{font-size:1.8rem;color:rgba(255,255,255,0.4)}.picker__box{padding:0}.picker__calendar-container{padding:0 1rem}.picker__calendar-container thead{border:none}.picker__table{margin-top:0;margin-bottom:.5em}.picker__day--infocus{color:#595959;letter-spacing:-.3;padding:.75rem 0;font-weight:400;border:1px solid transparent}.picker__day.picker__day--today{color:#1e88e5}.picker__day.picker__day--today.picker__day--selected{color:#fff}.picker__weekday{font-size:.9rem}.picker__day--selected,.picker__day--selected:hover,.picker--focused .picker__day--selected{border-radius:50%;transform:scale(0.9);background-color:#1e88e5;color:#ffffff}.picker__day--selected.picker__day--outfocus,.picker__day--selected:hover.picker__day--outfocus,.picker--focused .picker__day--selected.picker__day--outfocus{background-color:#c3dcf2}.picker__footer{text-align:right;padding:5px 10px}.picker__close,.picker__today{font-size:1.1rem;padding:0 1rem;color:#1e88e5}.picker__nav--prev:before,.picker__nav--next:before{content:" ";border-top:.5em solid transparent;border-bottom:.5em solid transparent;border-right:0.75em solid #676767;width:0;height:0;display:block;margin:0 auto}.picker__nav--next:before{border-right:0;border-left:0.75em solid #676767}button.picker__today:focus,button.picker__clear:focus,button.picker__close:focus{background-color:#c3dcf2}.picker__list{list-style:none;padding:0.75em 0 4.2em;margin:0}.picker__list-item{border-bottom:1px solid #dddddd;border-top:1px solid #dddddd;margin-bottom:-1px;position:relative;background:#ffffff;padding:.75em 1.25em}@media (min-height: 46.75em){.picker__list-item{padding:.5em 1em}}.picker__list-item:hover{cursor:pointer;color:#000000;background:#b1dcfb;border-color:#0089ec;z-index:10}.picker__list-item--highlighted{border-color:#0089ec;z-index:10}.picker__list-item--highlighted:hover,.picker--focused .picker__list-item--highlighted{cursor:pointer;color:#000000;background:#b1dcfb}.picker__list-item--selected,.picker__list-item--selected:hover,.picker--focused .picker__list-item--selected{background:#0089ec;color:#ffffff;z-index:10}.picker__list-item--disabled,.picker__list-item--disabled:hover,.picker--focused .picker__list-item--disabled{background:#f5f5f5;border-color:#f5f5f5;color:#dddddd;cursor:default;border-color:#dddddd;z-index:auto}.picker--time .picker__button--clear{display:block;width:80%;margin:1em auto 0;padding:1em 1.25em;background:none;border:0;font-weight:500;font-size:.67em;text-align:center;text-transform:uppercase;color:#666}.picker--time .picker__button--clear:hover,.picker--time .picker__button--clear:focus{color:#000000;background:#b1dcfb;background:#ee2200;border-color:#ee2200;cursor:pointer;color:#ffffff;outline:none}.picker--time .picker__button--clear:before{top:-0.25em;color:#666;font-size:1.25em;font-weight:bold}.picker--time .picker__button--clear:hover:before,.picker--time .picker__button--clear:focus:before{color:#ffffff}.picker--time .picker__frame{min-width:256px;max-width:320px}.picker--time .picker__box{font-size:1em;background:#f2f2f2;padding:0}@media (min-height: 40.125em){.picker--time .picker__box{margin-bottom:5em}}.z-depth-1,.card-panel,.card,.toast,.btn,.btn-large,.btn-floating,.dropdown-content,.collapsible,.side-nav,#main-account .card.product:hover,.sortbar,.artist-profile .header .img-container{box-shadow:0 2px 4px rgba(0,0,0,0.1)}.z-depth-2,#help-section #help-page .question figure img,.card-wrap.artist .card:hover,.card.product:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,0.16),0 2px 8px 0 rgba(0,0,0,0.12)}@media only screen and (min-width: 1700px){.row .col.xxl1,.row .xxl1.card-wrap,.row .xxl1.card-wrap{left:auto;margin-left:auto;right:auto;width:8.3333333333%}.row .col.xxl2,.row .xxl2.card-wrap,.row .xxl2.card-wrap{left:auto;margin-left:auto;right:auto;width:16.6666666667%}.row .col.xxl3,.row .xxl3.card-wrap,.row .xxl3.card-wrap{left:auto;margin-left:auto;right:auto;width:25%}.row .col.xxl4,.row .xxl4.card-wrap,.row .xxl4.card-wrap{left:auto;margin-left:auto;right:auto;width:33.3333333333%}.row .col.xxl5,.row .xxl5.card-wrap,.row .xxl5.card-wrap{left:auto;margin-left:auto;right:auto;width:41.6666666667%}.row .col.xxl6,.row .xxl6.card-wrap,.row .xxl6.card-wrap{left:auto;margin-left:auto;right:auto;width:50%}.row .col.xxl7,.row .xxl7.card-wrap,.row .xxl7.card-wrap{left:auto;margin-left:auto;right:auto;width:58.3333333333%}.row .col.xxl8,.row .xxl8.card-wrap,.row .xxl8.card-wrap{left:auto;margin-left:auto;right:auto;width:66.6666666667%}.row .col.xxl9,.row .xxl9.card-wrap,.row .xxl9.card-wrap{left:auto;margin-left:auto;right:auto;width:75%}.row .col.xxl10,.row .xxl10.card-wrap,.row .xxl10.card-wrap{left:auto;margin-left:auto;right:auto;width:83.3333333333%}.row .col.xxl11,.row .xxl11.card-wrap,.row .xxl11.card-wrap{left:auto;margin-left:auto;right:auto;width:91.6666666667%}.row .col.xxl12,.row .xxl12.card-wrap,.row .xxl12.card-wrap{left:auto;margin-left:auto;right:auto;width:100%}}@font-face{font-family:'aow-icons';font-style:normal;font-weight:normal;src:url(https://static.artofwhere.net/fonts/aow-icons-0e4e46debbc2ed5f3abd.eot);src:url(https://static.artofwhere.net/fonts/aow-icons-0e4e46debbc2ed5f3abd.eot#iefix) format("embedded-opentype"),url(https://static.artofwhere.net/fonts/aow-icons-ce2015ddd49544afb2db.woff) format("woff"),url(https://static.artofwhere.net/fonts/aow-icons-7f0892bf28c9cb8c2412.ttf) format("truetype"),url(https://static.artofwhere.net/img2/font/aow-icons/aow-icons-9cb3bc212b850450e0ae.svg#aow-icons) format("svg")}[class^='icon-']::before,[class*=' icon-']::before{display:inline-block;font-family:'aow-icons';-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-variant:normal;font-weight:normal;line-height:1em;margin-left:0.2em;margin-right:0.2em;speak:none;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.icon-facebook-squared::before{content:'\66'}.icon-gplus::before{content:'\e800'}.icon-twitter-squared::before{content:'\e801'}.icon-gplus-squared::before{content:'\e802'}.icon-pinterest-circled::before{content:'\e803'}.icon-tumblr-squared::before{content:'\e804'}.icon-twitter::before{content:'\e805'}.icon-pinterest::before{content:'\e806'}.icon-facebook::before{content:'\e807'}.icon-paypal::before{content:'\e808'}.icon-tumblr::before{content:'\e809'}.icon-deviantart::before{content:'\e80a'}.icon-credit-card::before{content:'\e80b'}.icon-instagram::before{content:'\e80c'}.icon-heart::before{content:'\e80d'}@font-face{font-family:'aow-products';font-style:normal;font-weight:normal;src:url(https://static.artofwhere.net/fonts/aow-products-fafe008e18e91de11ae1.eot);src:url(https://static.artofwhere.net/fonts/aow-products-fafe008e18e91de11ae1.eot#iefix) format("embedded-opentype"),url(https://static.artofwhere.net/fonts/aow-products-0e5003f7ee1d46f54b31.ttf) format("truetype"),url(https://static.artofwhere.net/fonts/aow-products-c47bd9b27f539a9f51ac.woff) format("woff"),url(https://static.artofwhere.net/img2/font/aow-products/aow-products-3537180e206763ce0211.svg#aow-products) format("svg")}i[class^='icon-product']::before{font-family:'aow-products';-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-variant:normal;font-weight:normal;line-height:1;speak:none;text-transform:none}.icon-product-beanie-right::before{content:'\e800'}.icon-product-beanie-left::before{content:'\e801'}.icon-product-beanie-front::before{content:'\e802'}.icon-product-beanie-back::before{content:'\e803'}.icon-product-leggings-back::before{content:'\e900'}.icon-product-leggings-front::before{content:'\e901'}.icon-product-leggings-left::before{content:'\e902'}.icon-product-leggings-right::before{content:'\e903'}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInUpBig{0%{opacity:0;transform:translateY(2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;transform:translateY(-2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRightBig{0%{opacity:0;transform:translateX(2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translateX(-2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes bounceIn{0%{opacity:0;transform:scale(0.3)}50%{opacity:1;transform:scale(1.05)}70%{transform:scale(0.9)}100%{transform:scale(1)}}@keyframes bounceInDown{0%{opacity:0;transform:translateY(-2000px)}60%{opacity:1;transform:translateY(30px)}80%{transform:translateY(-10px)}100%{transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;transform:translateY(2000px)}60%{opacity:1;transform:translateY(-30px)}80%{transform:translateY(10px)}100%{transform:translateY(0)}}@keyframes bounceInRight{0%{opacity:0;transform:translateX(2000px)}60%{opacity:1;transform:translateX(-30px)}80%{transform:translateX(10px)}100%{transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;transform:translateX(-2000px)}60%{opacity:1;transform:translateX(30px)}80%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes flash{0%{opacity:1}25%{opacity:0}50%{opacity:1}75%{opacity:0}100%{opacity:1}}@keyframes bounce{0%{transform:translateY(0)}20%{transform:translateY(0)}40%{transform:translateY(-30px)}50%{transform:translateY(0)}60%{transform:translateY(-15px)}80%{transform:translateY(0)}100%{transform:translateY(0)}}@keyframes shake{0%{transform:translateX(0)}10%{transform:translateX(-10px)}20%{transform:translateX(10px)}30%{transform:translateX(-10px)}40%{transform:translateX(10px)}50%{transform:translateX(-10px)}60%{transform:translateX(10px)}70%{transform:translateX(-10px)}80%{transform:translateX(10px)}90%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes rotateInDownLeft{0%{opacity:0;transform:rotate(-90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpLeft{0%{opacity:0;transform:rotate(90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpRight{0%{opacity:0;transform:rotate(-90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateInDownRight{0%{opacity:0;transform:rotate(90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateIn{0%{opacity:0;transform:rotate(-200deg);transform-origin:center center}100%{opacity:1;transform:rotate(0);transform-origin:center center}}@keyframes tada{0%{transform:scale(1)}10%{transform:scale(0.9) rotate(-3deg)}20%{transform:scale(0.9) rotate(-3deg)}30%{transform:scale(1.1) rotate(3deg)}40%{transform:scale(1.1) rotate(-3deg)}50%{transform:scale(1.1) rotate(3deg)}60%{transform:scale(1.1) rotate(-3deg)}70%{transform:scale(1.1) rotate(3deg)}80%{transform:scale(1.1) rotate(-3deg)}90%{transform:scale(1.1) rotate(3deg)}100%{transform:scale(1) rotate(0)}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInUpBig{0%{opacity:0;transform:translateY(2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;transform:translateY(-2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRightBig{0%{opacity:0;transform:translateX(2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translateX(-2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes bounceIn{0%{opacity:0;transform:scale(0.3)}50%{opacity:1;transform:scale(1.05)}70%{transform:scale(0.9)}100%{transform:scale(1)}}@keyframes bounceInDown{0%{opacity:0;transform:translateY(-2000px)}60%{opacity:1;transform:translateY(30px)}80%{transform:translateY(-10px)}100%{transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;transform:translateY(2000px)}60%{opacity:1;transform:translateY(-30px)}80%{transform:translateY(10px)}100%{transform:translateY(0)}}@keyframes bounceInRight{0%{opacity:0;transform:translateX(2000px)}60%{opacity:1;transform:translateX(-30px)}80%{transform:translateX(10px)}100%{transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;transform:translateX(-2000px)}60%{opacity:1;transform:translateX(30px)}80%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes flash{0%{opacity:1}25%{opacity:0}50%{opacity:1}75%{opacity:0}100%{opacity:1}}@keyframes bounce{0%{transform:translateY(0)}20%{transform:translateY(0)}40%{transform:translateY(-30px)}50%{transform:translateY(0)}60%{transform:translateY(-15px)}80%{transform:translateY(0)}100%{transform:translateY(0)}}@keyframes shake{0%{transform:translateX(0)}10%{transform:translateX(-10px)}20%{transform:translateX(10px)}30%{transform:translateX(-10px)}40%{transform:translateX(10px)}50%{transform:translateX(-10px)}60%{transform:translateX(10px)}70%{transform:translateX(-10px)}80%{transform:translateX(10px)}90%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes rotateInDownLeft{0%{opacity:0;transform:rotate(-90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpLeft{0%{opacity:0;transform:rotate(90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpRight{0%{opacity:0;transform:rotate(-90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateInDownRight{0%{opacity:0;transform:rotate(90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateIn{0%{opacity:0;transform:rotate(-200deg);transform-origin:center center}100%{opacity:1;transform:rotate(0);transform-origin:center center}}@keyframes tada{0%{transform:scale(1)}10%{transform:scale(0.9) rotate(-3deg)}20%{transform:scale(0.9) rotate(-3deg)}30%{transform:scale(1.1) rotate(3deg)}40%{transform:scale(1.1) rotate(-3deg)}50%{transform:scale(1.1) rotate(3deg)}60%{transform:scale(1.1) rotate(-3deg)}70%{transform:scale(1.1) rotate(3deg)}80%{transform:scale(1.1) rotate(-3deg)}90%{transform:scale(1.1) rotate(3deg)}100%{transform:scale(1) rotate(0)}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInUpBig{0%{opacity:0;transform:translateY(2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;transform:translateY(-2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRightBig{0%{opacity:0;transform:translateX(2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translateX(-2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes bounceIn{0%{opacity:0;transform:scale(0.3)}50%{opacity:1;transform:scale(1.05)}70%{transform:scale(0.9)}100%{transform:scale(1)}}@keyframes bounceInDown{0%{opacity:0;transform:translateY(-2000px)}60%{opacity:1;transform:translateY(30px)}80%{transform:translateY(-10px)}100%{transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;transform:translateY(2000px)}60%{opacity:1;transform:translateY(-30px)}80%{transform:translateY(10px)}100%{transform:translateY(0)}}@keyframes bounceInRight{0%{opacity:0;transform:translateX(2000px)}60%{opacity:1;transform:translateX(-30px)}80%{transform:translateX(10px)}100%{transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;transform:translateX(-2000px)}60%{opacity:1;transform:translateX(30px)}80%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes flash{0%{opacity:1}25%{opacity:0}50%{opacity:1}75%{opacity:0}100%{opacity:1}}@keyframes bounce{0%{transform:translateY(0)}20%{transform:translateY(0)}40%{transform:translateY(-30px)}50%{transform:translateY(0)}60%{transform:translateY(-15px)}80%{transform:translateY(0)}100%{transform:translateY(0)}}@keyframes shake{0%{transform:translateX(0)}10%{transform:translateX(-10px)}20%{transform:translateX(10px)}30%{transform:translateX(-10px)}40%{transform:translateX(10px)}50%{transform:translateX(-10px)}60%{transform:translateX(10px)}70%{transform:translateX(-10px)}80%{transform:translateX(10px)}90%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes rotateInDownLeft{0%{opacity:0;transform:rotate(-90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpLeft{0%{opacity:0;transform:rotate(90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpRight{0%{opacity:0;transform:rotate(-90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateInDownRight{0%{opacity:0;transform:rotate(90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateIn{0%{opacity:0;transform:rotate(-200deg);transform-origin:center center}100%{opacity:1;transform:rotate(0);transform-origin:center center}}@keyframes tada{0%{transform:scale(1)}10%{transform:scale(0.9) rotate(-3deg)}20%{transform:scale(0.9) rotate(-3deg)}30%{transform:scale(1.1) rotate(3deg)}40%{transform:scale(1.1) rotate(-3deg)}50%{transform:scale(1.1) rotate(3deg)}60%{transform:scale(1.1) rotate(-3deg)}70%{transform:scale(1.1) rotate(3deg)}80%{transform:scale(1.1) rotate(-3deg)}90%{transform:scale(1.1) rotate(3deg)}100%{transform:scale(1) rotate(0)}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInUpBig{0%{opacity:0;transform:translateY(2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;transform:translateY(-2000px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInRightBig{0%{opacity:0;transform:translateX(2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translateX(-2000px)}100%{opacity:1;transform:translateX(0)}}@keyframes bounceIn{0%{opacity:0;transform:scale(0.3)}50%{opacity:1;transform:scale(1.05)}70%{transform:scale(0.9)}100%{transform:scale(1)}}@keyframes bounceInDown{0%{opacity:0;transform:translateY(-2000px)}60%{opacity:1;transform:translateY(30px)}80%{transform:translateY(-10px)}100%{transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;transform:translateY(2000px)}60%{opacity:1;transform:translateY(-30px)}80%{transform:translateY(10px)}100%{transform:translateY(0)}}@keyframes bounceInRight{0%{opacity:0;transform:translateX(2000px)}60%{opacity:1;transform:translateX(-30px)}80%{transform:translateX(10px)}100%{transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;transform:translateX(-2000px)}60%{opacity:1;transform:translateX(30px)}80%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes flash{0%{opacity:1}25%{opacity:0}50%{opacity:1}75%{opacity:0}100%{opacity:1}}@keyframes bounce{0%{transform:translateY(0)}20%{transform:translateY(0)}40%{transform:translateY(-30px)}50%{transform:translateY(0)}60%{transform:translateY(-15px)}80%{transform:translateY(0)}100%{transform:translateY(0)}}@keyframes shake{0%{transform:translateX(0)}10%{transform:translateX(-10px)}20%{transform:translateX(10px)}30%{transform:translateX(-10px)}40%{transform:translateX(10px)}50%{transform:translateX(-10px)}60%{transform:translateX(10px)}70%{transform:translateX(-10px)}80%{transform:translateX(10px)}90%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes rotateInDownLeft{0%{opacity:0;transform:rotate(-90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpLeft{0%{opacity:0;transform:rotate(90deg);transform-origin:left bottom}100%{opacity:1;transform:rotate(0);transform-origin:left bottom}}@keyframes rotateInUpRight{0%{opacity:0;transform:rotate(-90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateInDownRight{0%{opacity:0;transform:rotate(90deg);transform-origin:right bottom}100%{opacity:1;transform:rotate(0);transform-origin:right bottom}}@keyframes rotateIn{0%{opacity:0;transform:rotate(-200deg);transform-origin:center center}100%{opacity:1;transform:rotate(0);transform-origin:center center}}@keyframes tada{0%{transform:scale(1)}10%{transform:scale(0.9) rotate(-3deg)}20%{transform:scale(0.9) rotate(-3deg)}30%{transform:scale(1.1) rotate(3deg)}40%{transform:scale(1.1) rotate(-3deg)}50%{transform:scale(1.1) rotate(3deg)}60%{transform:scale(1.1) rotate(-3deg)}70%{transform:scale(1.1) rotate(3deg)}80%{transform:scale(1.1) rotate(-3deg)}90%{transform:scale(1.1) rotate(3deg)}100%{transform:scale(1) rotate(0)}}.trip-block{border-radius:3px;display:none;min-width:100px;padding:8px;position:absolute;text-align:center}.trip-block::before{border:solid transparent;content:' ';height:0;position:absolute;width:0}.trip-block.n::before,.trip-block.s::before{border-width:8px;left:50%;margin-left:-8px}.trip-block.e::before,.trip-block.w::before{border-width:8px;margin-top:-8px;top:50%}.trip-block.n::before{top:100%}.trip-block.s::before{bottom:100%}.trip-block.e::before{right:100%}.trip-block.w::before{left:100%}.trip-block.screen-ne,.trip-block.screen-se,.trip-block.screen-sw,.trip-block.screen-nw,.trip-block.screen-center{position:fixed}.trip-block.animated.flash{animation:flash 0.5s 0s ease both;animation:flash 0.5s 0s ease both;animation:flash 0.5s 0s ease both}.trip-block.animated.bounce{animation:bounce 0.5s 0s ease both;animation:bounce 0.5s 0s ease both;animation:bounce 0.5s 0s ease both}.trip-block.animated.shake{animation:shake 0.5s 0s ease both;animation:shake 0.5s 0s ease both;animation:shake 0.5s 0s ease both}.trip-block.animated.tada{animation:tada 0.5s 0s ease both;animation:tada 0.5s 0s ease both;animation:tada 0.5s 0s ease both}.trip-block.animated.fadeIn{animation:fadeIn 0.5s 0s ease both;animation:fadeIn 0.5s 0s ease both;animation:fadeIn 0.5s 0s ease both}.trip-block.animated.fadeInUp{animation:fadeInUp 0.5s 0s ease both;animation:fadeInUp 0.5s 0s ease both;animation:fadeInUp 0.5s 0s ease both}.trip-block.animated.fadeInDown{animation:fadeInDown 0.5s 0s ease both;animation:fadeInDown 0.5s 0s ease both;animation:fadeInDown 0.5s 0s ease both}.trip-block.animated.fadeInLeft{animation:fadeInLeft 0.5s 0s ease both;animation:fadeInLeft 0.5s 0s ease both;animation:fadeInLeft 0.5s 0s ease both}.trip-block.animated.fadeInRight{animation:fadeInRight 0.5s 0s ease both;animation:fadeInRight 0.5s 0s ease both;animation:fadeInRight 0.5s 0s ease both}.trip-block.animated.fadeInUpBig{animation:fadeInUpBig 0.5s 0s ease both;animation:fadeInUpBig 0.5s 0s ease both;animation:fadeInUpBig 0.5s 0s ease both}.trip-block.animated.fadeInDownBig{animation:fadeInDownBig 0.5s 0s ease both;animation:fadeInDownBig 0.5s 0s ease both;animation:fadeInDownBig 0.5s 0s ease both}.trip-block.animated.fadeInLeftBig{animation:fadeInLeftBig 0.5s 0s ease both;animation:fadeInLeftBig 0.5s 0s ease both;animation:fadeInLeftBig 0.5s 0s ease both}.trip-block.animated.fadeInRightBig{animation:fadeInRightBig 0.5s 0s ease both;animation:fadeInRightBig 0.5s 0s ease both;animation:fadeInRightBig 0.5s 0s ease both}.trip-block.animated.bounceIn{animation:bounceIn 0.5s 0s ease both;animation:bounceIn 0.5s 0s ease both;animation:bounceIn 0.5s 0s ease both}.trip-block.animated.bounceInDown{animation:bounceInDown 0.5s 0s ease both;animation:bounceInDown 0.5s 0s ease both;animation:bounceInDown 0.5s 0s ease both}.trip-block.animated.bounceInUp{animation:bounceInUp 0.5s 0s ease both;animation:bounceInUp 0.5s 0s ease both;animation:bounceInUp 0.5s 0s ease both}.trip-block.animated.bounceInLeft{animation:bounceInLeft 0.5s 0s ease both;animation:bounceInLeft 0.5s 0s ease both;animation:bounceInLeft 0.5s 0s ease both}.trip-block.animated.bounceInRight{animation:bounceInRight 0.5s 0s ease both;animation:bounceInRight 0.5s 0s ease both;animation:bounceInRight 0.5s 0s ease both}.trip-block.animated.rotateIn{animation:rotateIn 0.5s 0s ease both;animation:rotateIn 0.5s 0s ease both;animation:rotateIn 0.5s 0s ease both}.trip-block.animated.rotateInDownLeft{animation:rotateInDownLeft 0.5s 0s ease both;animation:rotateInDownLeft 0.5s 0s ease both;animation:rotateInDownLeft 0.5s 0s ease both}.trip-block.animated.rotateInDownRight{animation:rotateInDownRight 0.5s 0s ease both;animation:rotateInDownRight 0.5s 0s ease both;animation:rotateInDownRight 0.5s 0s ease both}.trip-block.animated.rotateInUpLeft{animation:rotateInUpLeft 0.5s 0s ease both;animation:rotateInUpLeft 0.5s 0s ease both;animation:rotateInUpLeft 0.5s 0s ease both}.trip-block.animated.rotateInUpRight{animation:rotateInUpRight 0.5s 0s ease both;animation:rotateInUpRight 0.5s 0s ease both;animation:rotateInUpRight 0.5s 0s ease both}.trip-close{float:right;font-size:80%;margin-top:-5px}.trip-close:hover{text-decoration:none}.trip-content{clear:right}.trip-progress-bar{background-color:#444;height:1px;width:0}.trip-overlay{background:black;display:none;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);height:100%;left:0;opacity:0.7;position:fixed;top:0;width:100%}.trip-prev,.trip-next{padding:5px 10px}.trip-exposed{background:white}.trip-block.black{background:#333;box-shadow:rgba(0,0,0,0.2) 0 2px 4px 0;box-shadow:rgba(0,0,0,0.2) 0 2px 4px 0;box-shadow:rgba(0,0,0,0.2) 0 2px 4px 0;color:#ddd}.trip-block.black .trip-close{color:#ddd}.trip-block.black .trip-close:hover{color:#fff}.trip-block.black.n::before{border-top-color:#333}.trip-block.black.s::before{border-bottom-color:#333}.trip-block.black.e::before{border-right-color:#333}.trip-block.black.w::before{border-left-color:#333}.trip-block.white{background:#fff;color:#333}.trip-block.white .trip-close{color:#333}.trip-block.white .trip-close:hover{color:#000}.trip-block.white.n::before{border-top-color:#fff}.trip-block.white.s::before{border-bottom-color:#fff}.trip-block.white.e::before{border-right-color:#fff}.trip-block.white.w::before{border-left-color:#fff}.trip-overlay.yeti{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=20);opacity:0.2}.trip-block.yeti{background:#008cba;box-shadow:rgba(0,0,0,0.39) 0 2px 2px 0;box-shadow:rgba(0,0,0,0.39) 0 2px 2px 0;box-shadow:rgba(0,0,0,0.39) 0 2px 2px 0;color:#fff;padding:0}.trip-block.yeti.n::before{border-top-color:#008cba;margin-top:-1px}.trip-block.yeti.s::before{border-bottom-color:#006687}.trip-block.yeti.e::before{border-right-color:#008cba}.trip-block.yeti.w::before{border-left-color:#008cba}.trip-block.yeti .trip-header{background:#006687;border-radius:3px 3px 0 0;font-size:18px;margin:0;padding:5px;position:relative}.trip-block.yeti .trip-content{font-size:12px;max-width:450px;padding:15px}.trip-block.yeti .trip-close{color:#fff;font-size:16px;margin:3px 8px 0 0;right:0;top:0}.trip-block.yeti .trip-close:hover{color:#000}.trip-block.yeti .trip-progress-wrapper .trip-prev,.trip-block.yeti .trip-progress-wrapper .trip-next{color:#fff;font-size:12px}.trip-block.yeti .trip-progress-wrapper .trip-prev:hover,.trip-block.yeti .trip-progress-wrapper .trip-next:hover{background:#006687}.trip-block.yeti .trip-progress-wrapper .trip-next{border-radius:0 0 5px;float:right}.trip-block.yeti .trip-progress-wrapper .trip-prev{border-radius:0 0 0 5px;display:none;float:left}.trip-overlay.dark{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=20);opacity:0.2}.trip-block.dark{background:#333;box-shadow:rgba(0,0,0,0.39) 0 2px 2px 0;box-shadow:rgba(0,0,0,0.39) 0 2px 2px 0;box-shadow:rgba(0,0,0,0.39) 0 2px 2px 0;color:#fff;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=92);opacity:0.92;padding:0}.trip-block.dark.n::before{border-top-color:#333;margin-top:-1px}.trip-block.dark.s::before{border-bottom-color:#555}.trip-block.dark.e::before{border-right-color:#333}.trip-block.dark.w::before{border-left-color:#333}.trip-block.dark .trip-header{background:#555;border-radius:3px 3px 0 0;font-size:16px;margin:0;padding:5px;position:relative}.trip-block.dark .trip-content{font-size:12px;max-width:450px;padding:1em}.trip-block.dark .trip-close{color:#fff;font-size:16px;margin:3px 8px 0 0;right:0;top:0}.trip-block.dark .trip-close:hover{color:#000}.trip-block.dark .trip-progress-wrapper .trip-prev,.trip-block.dark .trip-progress-wrapper .trip-next{color:#fff;font-size:12px}.trip-block.dark .trip-progress-wrapper .trip-prev:hover,.trip-block.dark .trip-progress-wrapper .trip-next:hover{background:#666}.trip-block.dark .trip-progress-wrapper .trip-next{border-radius:0 0 5px;float:right}.trip-block.dark .trip-progress-wrapper .trip-prev{border-radius:0 0 0 5px;display:none;float:left}.trip-block.dark .trip-progress-wrapper .trip-progress-bar{background:green}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, white 50%, #eee 100%);background-image:-o-linear-gradient(top, white 50%, #eee 100%);background-image:linear-gradient(to bottom, white 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, white 0%, #eee 50%);background-image:-o-linear-gradient(top, white 0%, #eee 50%);background-image:linear-gradient(to bottom, white 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, white 100%);background-image:-o-linear-gradient(top, #eee 50%, white 100%);background-image:linear-gradient(to bottom, #eee 50%, white 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:white;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:white}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}@use 'sass:math';@keyframes marching-ants{0%{background-position:0 0, 0 100%, 0 0, 100% 0}100%{background-position:20px 0,-20px 100%,0 -20px,100% 20px}}:root{--rc-drag-handle-size: 12px;--rc-drag-handle-mobile-size: 24px;--rc-drag-handle-bg-colour: rgba(0, 0, 0, 0.2);--rc-drag-bar-size: 6px;--rc-border-color: rgba(255, 255, 255, 0.7);--rc-focus-color: #0088ff}.ReactCrop{position:relative;display:inline-block;cursor:crosshair;max-width:100%}.ReactCrop *,.ReactCrop *::before,.ReactCrop *::after{box-sizing:border-box}.ReactCrop--disabled,.ReactCrop--locked{cursor:inherit}.ReactCrop__child-wrapper{overflow:hidden;max-height:inherit}.ReactCrop__child-wrapper>img,.ReactCrop__child-wrapper>video{display:block;max-width:100%;max-height:inherit}.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper>img,.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper>video{touch-action:none}.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__crop-selection{touch-action:none}.ReactCrop__crop-mask{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.ReactCrop__crop-selection{position:absolute;top:0;left:0;transform:translate3d(0, 0, 0);cursor:move}.ReactCrop--disabled .ReactCrop__crop-selection{cursor:inherit}.ReactCrop--circular-crop .ReactCrop__crop-selection{border-radius:50%}.ReactCrop--circular-crop .ReactCrop__crop-selection::after{pointer-events:none;content:'';position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;border:1px solid var(--rc-border-color);opacity:0.3}.ReactCrop--no-animate .ReactCrop__crop-selection{outline:1px dashed white}.ReactCrop__crop-selection {animation:marching-ants 1s;background-image:linear-gradient(to right, #fff 50%, #444 50%),linear-gradient(to right, #fff 50%, #444 50%),linear-gradient(to bottom, #fff 50%, #444 50%),linear-gradient(to bottom, #fff 50%, #444 50%);background-size:10px 1px,10px 1px,1px 10px,1px 10px;background-position:0 0, 0 100%, 0 0, 100% 0;background-repeat:repeat-x, repeat-x, repeat-y, repeat-y;color:#fff;animation-play-state:running;animation-timing-function:linear;animation-iteration-count:infinite}.ReactCrop__crop-selection:focus{outline:2px solid var(--rc-focus-color);outline-offset:-1px}.ReactCrop--invisible-crop .ReactCrop__crop-mask,.ReactCrop--invisible-crop .ReactCrop__crop-selection{display:none}.ReactCrop__rule-of-thirds-vt::before,.ReactCrop__rule-of-thirds-vt::after,.ReactCrop__rule-of-thirds-hz::before,.ReactCrop__rule-of-thirds-hz::after{content:'';display:block;position:absolute;background-color:rgba(255,255,255,0.4)}.ReactCrop__rule-of-thirds-vt::before,.ReactCrop__rule-of-thirds-vt::after{width:1px;height:100%}.ReactCrop__rule-of-thirds-vt::before{left:33.3333%;left:calc(100% / 3)}.ReactCrop__rule-of-thirds-vt::after{left:66.6666%;left:calc(100% / 3 * 2)}.ReactCrop__rule-of-thirds-hz::before,.ReactCrop__rule-of-thirds-hz::after{width:100%;height:1px}.ReactCrop__rule-of-thirds-hz::before{top:33.3333%;top:calc(100% / 3)}.ReactCrop__rule-of-thirds-hz::after{top:66.6666%;top:calc(100% / 3 * 2)}.ReactCrop__drag-handle{position:absolute;width:var(--rc-drag-handle-size);height:var(--rc-drag-handle-size);background-color:var(--rc-drag-handle-bg-colour);border:1px solid var(--rc-border-color)}.ReactCrop__drag-handle:focus{background:var(--rc-focus-color)}.ReactCrop .ord-nw{top:0;left:0;transform:translate(-50%, -50%);cursor:nw-resize}.ReactCrop .ord-n{top:0;left:50%;transform:translate(-50%, -50%);cursor:n-resize}.ReactCrop .ord-ne{top:0;right:0;transform:translate(50%, -50%);cursor:ne-resize}.ReactCrop .ord-e{top:50%;right:0;transform:translate(50%, -50%);cursor:e-resize}.ReactCrop .ord-se{bottom:0;right:0;transform:translate(50%, 50%);cursor:se-resize}.ReactCrop .ord-s{bottom:0;left:50%;transform:translate(-50%, 50%);cursor:s-resize}.ReactCrop .ord-sw{bottom:0;left:0;transform:translate(-50%, 50%);cursor:sw-resize}.ReactCrop .ord-w{top:50%;left:0;transform:translate(-50%, -50%);cursor:w-resize}.ReactCrop__disabled .ReactCrop__drag-handle{cursor:inherit}.ReactCrop__drag-bar{position:absolute}.ReactCrop__drag-bar.ord-n{top:0;left:0;width:100%;height:var(--rc-drag-bar-size);transform:translateY(-50%)}.ReactCrop__drag-bar.ord-e{right:0;top:0;width:var(--rc-drag-bar-size);height:100%;transform:translateX(50%)}.ReactCrop__drag-bar.ord-s{bottom:0;left:0;width:100%;height:var(--rc-drag-bar-size);transform:translateY(50%)}.ReactCrop__drag-bar.ord-w{top:0;left:0;width:var(--rc-drag-bar-size);height:100%;transform:translateX(-50%)}.ReactCrop--new-crop .ReactCrop__drag-bar,.ReactCrop--new-crop .ReactCrop__drag-handle,.ReactCrop--fixed-aspect .ReactCrop__drag-bar{display:none}.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-n,.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-e,.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-s,.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-w{display:none}@media (pointer: coarse){.ReactCrop .ord-n,.ReactCrop .ord-e,.ReactCrop .ord-s,.ReactCrop .ord-w{display:none}.ReactCrop__drag-handle{width:var(--rc-drag-handle-mobile-size);height:var(--rc-drag-handle-mobile-size)}}.no-pointer-events{pointer-events:none}::selection{background-color:#f600be;color:#fff}.material-icons{font-feature-settings:'liga' 1;text-rendering:optimizeLegibility}.material-icons.md-18{font-size:18px}.material-icons.md-24{font-size:24px}.material-icons.md-36{font-size:36px}.material-icons.md-48{font-size:48px}.material-icons.md-dark{color:rgba(0,0,0,0.54)}.material-icons.md-dark.md-inactive{color:rgba(0,0,0,0.26)}.material-icons.md-light{color:#fff}.material-icons.md-light.md-inactive{color:rgba(255,255,255,0.3)}.main-blue-text{color:#1e88e5}.main-pink-text{color:#f600be}.main-yellow-text{color:#ffeb01}.btn.main-blue,.main-blue.btn-large,.btn-floating.main-blue{background:#1e88e5}.btn.main-pink,.main-pink.btn-large,.btn-floating.main-pink{background:#f600be}.btn.main-grey,.main-grey.btn-large{background:#323232}.btn-flat{padding:0 1rem}.btn-flat.icon-btn{padding:0}.btn-flat.icon-btn i{font-size:1.8rem}.btn-flat.hover-blue:hover,.btn-flat.hover-blue.active{color:#1e88e5}.btn-flat.btn-floating{box-shadow:none}.btn-flat.main-blue{color:#1e88e5}.btn-flat.main-pink{color:#f600be}.btn-flat.main-grey{color:#323232}.btn-flat.main-red{color:#f44336}.btn-flat.btn-flat-bg{background-color:#1e88e5;color:#fff}.btn-flat.btn-flat-bg.main-blue{background-color:#1e88e5;color:#fff}.btn-flat.btn-flat-bg.main-blue:hover{background-color:#2196f3}.btn-flat.btn-flat-bg.main-pink{background-color:#f600be;color:#fff}.btn-flat.btn-flat-bg.main-pink:hover{background-color:#e91e63}.btn-flat.btn-flat-bg.main-grey{background-color:#323232;color:#fff}.btn-flat.btn-flat-bg.main-grey:hover{background-color:#555}.btn .preloader-wrapper,.btn-large .preloader-wrapper,.btn-flat .preloader-wrapper{display:block;width:24px;height:24px}.btn .preloader-wrapper .spinner-layer,.btn-large .preloader-wrapper .spinner-layer,.btn-flat .preloader-wrapper .spinner-layer{border-color:#dedede}.modal-footer .btn-flat .preloader-wrapper{display:inline-block;vertical-align:middle;margin-left:12px;width:20px;height:20px}.btn.disabled .spinner-layer,.disabled.btn-large .spinner-layer,.btn-floating.main-blue.disabled .spinner-layer,.btn-floating.main-pink.disabled .spinner-layer,.btn-flat.btn-flat-bg.main-blue.disabled .spinner-layer,button.btn-flat-bg.main-blue.btn-flat[disabled] .spinner-layer,.btn-flat-bg.main-blue.secondary-content.disabled .spinner-layer,.btn-flat.btn-flat-bg.main-pink.disabled .spinner-layer,button.btn-flat-bg.main-pink.btn-flat[disabled] .spinner-layer,.btn-flat-bg.main-pink.secondary-content.disabled .spinner-layer,.btn-flat.btn-flat-bg.main-grey.disabled .spinner-layer,button.btn-flat-bg.main-grey.btn-flat[disabled] .spinner-layer,.btn-flat-bg.main-grey.secondary-content.disabled .spinner-layer,.btn-flat.btn-flat-bg.primary-color.disabled .spinner-layer,button.btn-flat-bg.primary-color.btn-flat[disabled] .spinner-layer,.btn-flat-bg.primary-color.secondary-content.disabled .spinner-layer,.btn-flat.btn-flat-bg.secondary-color.disabled .spinner-layer,button.btn-flat-bg.secondary-color.btn-flat[disabled] .spinner-layer,.btn-flat-bg.secondary-color.secondary-content.disabled .spinner-layer,.btn-flat.disabled .spinner-layer,button.btn-flat[disabled] .spinner-layer,.secondary-content.disabled .spinner-layer{border-color:#9f9f9f}button.btn-flat:focus{background-color:transparent}@media only screen and (max-width: 992px){.btn.btn-large,.btn-large,.btn-flat.btn-large{padding:0 1rem;height:42px;line-height:42px}}@media only screen and (max-width: 600px){.btn.btn-large,.btn-large,.btn-flat.btn-large{padding:0 1rem;height:36px;line-height:36px}}.btn-floating.btn-large{padding:0}.btn-floating.btn-large i{transition:.3s}.btn-floating.btn-large.loading{width:61px;height:61px;margin-left:-2.75px;margin-top:-2.75px}.btn-floating.btn-large.loading i{margin-top:3px}.btn-floating.btn-large.disabled i{color:#9f9f9f}.btn-floating.btn-large .preloader-wrapper{position:absolute;top:0;left:0;width:61px;height:61px}.btn:hover,.btn-large:hover,.btn-flat:hover,.btn-floating:hover{text-decoration:none}.hgroup-btn h2{float:left;margin:0}.hgroup-btn .btn,.hgroup-btn .btn-large{float:right;height:26px;line-height:26px;font-size:12px;padding:0 1rem;margin-top:.2rem}.small-btn{height:26px;line-height:26px;font-size:12px;padding:0 .5rem}.small-btn.waves-circle{width:32px;height:32px;margin:-3px 0;line-height:32px;padding:0}.small-btn i{font-size:1.1rem}.small-btn i.left,.small-btn #headbands-page #headband-slider .slider-container .slider .slider-btns i.slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .small-btn i.slider-btn-prev{margin-right:.4rem}.small-btn i.right,.small-btn #headbands-page #headband-slider .slider-container .slider .slider-btns i.slider-btn-next,#headbands-page #headband-slider .slider-container .slider .slider-btns .small-btn i.slider-btn-next{margin-left:.4rem}.btn.tight-btn,.tight-btn.btn-large{padding:0 1rem}.btn.btn-facebook,.btn-facebook.btn-large{background:#3b5999}.btn.btn-twitter,.btn-twitter.btn-large{background:#5ea9dd}.waves-effect.waves-mainpink .waves-ripple{background-color:rgba(236,1,140,0.65)}.waves-effect.waves-mainblue .waves-ripple{background-color:rgba(4,175,239,0.65)}.waves-effect.waves-maingrey .waves-ripple{background-color:rgba(50,50,50,0.65)}.btn.primary-color,.primary-color.btn-large,.btn-flat.btn-flat-bg.primary-color{background-color:#f600be;color:#fff}.btn.secondary-color,.secondary-color.btn-large,.btn-flat.btn-flat-bg.secondary-color{background-color:#1e88e5;color:#fff}.btn-flat.primary-color{color:#f600be}.btn-flat.secondary-color{color:#1e88e5}.fixed-action-btn .btn-floating{box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.3);font-size:0}.fixed-action-btn .btn-floating:hover{box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.3)}.fixed-action-btn .btn-floating img{vertical-align:middle}.secondary-content{position:relative}.secondary-content .preloader-wrapper{position:absolute;left:-5px;top:-5px;width:34px;height:34px}.less-em,.collection.order .collection-item .unit-price{color:#999;font-size:0.9em;font-style:italic;line-height:normal}.clr{clear:both}.clr-right{clear:right}.clr-left{clear:left}.gray-italic,.collection.order .collection-item .add-shipping-address{color:gray;font-style:italic}h1,.h1_wrap .h1_group .breadcrumbs{font-family:"Roboto Slab", serif;font-size:2.6rem;line-height:normal;margin-top:0;color:#323232}h2{font-family:"Roboto Slab", serif;font-size:1.4rem;font-weight:500;line-height:normal;margin-top:1rem;margin-bottom:.5rem}h3{font-size:1.4rem;font-weight:500;line-height:normal;margin:1rem 0 .5rem}h4{font-size:1.1rem;font-weight:500;line-height:normal;margin-bottom:.4rem}h5{font-size:1rem;font-weight:500;line-height:normal}h6{font-size:1rem;font-weight:500;line-height:normal}a:hover{text-decoration:underline}a:hover.no-text-decoration{text-decoration:none}a[target='_blank'] i.open-in-new{font-size:inherit;line-height:inherit;vertical-align:top}.cart-title{margin-top:2rem}.cart-back-btn{margin-bottom:1rem;margin-top:1.5rem}.collapsible{background:#fff}.collapsible-header{height:auto;line-height:inherit;padding-bottom:0.8rem;padding-top:0.8rem}.collapsible-body{padding:0 2rem}.collapsible-body p{margin:1rem 0;padding:0}html{font-family:'Poppins', 'Roboto', sans-serif;font-size:15px;scroll-behavior:smooth}@media only screen and (max-width: 899px){html{font-size:12px}}body{background-color:#f4f4f4;display:flex;flex-direction:column;min-height:100vh;overflow:auto !important;padding-right:0 !important}body.hide-overflow{overflow:hidden !important}img[data-src],img[data-srcset]{display:block;min-height:1px}.container{width:100%;padding:0 .75rem}@media only screen and (min-width: 601px){.container{width:100%;padding:0 1.5rem}}@media only screen and (min-width: 993px){.container{width:100%}}.container.medium{max-width:760px}.col img,.card-wrap img,.col video,.card-wrap video{max-width:100%;height:auto;vertical-align:top}.col img.materialboxed.active,.card-wrap img.materialboxed.active,.col img.active.materialboxed-autowidth,.card-wrap img.active.materialboxed-autowidth,.col video.materialboxed.active,.card-wrap video.materialboxed.active,.col video.active.materialboxed-autowidth,.card-wrap video.active.materialboxed-autowidth{max-width:none}.row.no-margin{margin-bottom:0}@media only screen and (max-width: 899px){.row{margin-bottom:10px}}#promo-bar{background:#00aced;color:#fff;padding:0.5rem 1rem;position:relative;text-align:center;text-transform:uppercase;z-index:10}#header{height:3.5rem;line-height:3.5rem;max-width:1520px;z-index:990}#header #nav-desktop{margin:0}#nav-mobile{background-color:rgba(0,0,0,0.9);height:100%;overflow-y:hidden;padding-top:54px;width:100%;z-index:999}@media only screen and (min-width: 899px){#nav-mobile{display:none}}#nav-mobile #main-nav>ul>li>.collapsible{background:#000}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header{background-color:transparent;color:#fff;font-size:1.5rem;height:5rem;margin:0;padding:0;text-align:center;text-transform:uppercase}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.main{line-height:5rem}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.sub-menu{border-right:0.1px solid rgba(0,0,0,0.4);border-top:0.1px solid rgba(0,0,0,0.4);font-size:10px;padding-top:1rem}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.sub-menu span{display:block;margin-top:-1.75rem}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.sub-menu span:nth-child(odd){margin-top:-2rem}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.sub-menu.store span{margin-left:-0.5rem;margin-top:-2.25rem}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.sub-menu img{margin-top:-0.25rem}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.sub-menu i{display:inline-block;float:none;font-size:2.3rem;height:20px;line-height:0;margin-right:0;padding-top:0.75rem;width:initial}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.sub-menu i.store{font-size:3rem}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-header.last-sub{border-right:none}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-body{background:transparent;display:block;height:calc(100% - 234px);left:0;overflow-y:auto;padding:0 0 1rem;position:absolute;top:174px;width:100%}#nav-mobile #main-nav>ul>li>.collapsible>li>.collapsible-body .collapsible{background-color:transparent}#nav-mobile #main-nav>ul>li>.collapsible li>.collapsible-header:nth-last{border-right:none}#nav-mobile #main-nav>ul>li>.collapsible>.main-pink>.collapsible-header.active{background-color:#f600be}#nav-mobile #main-nav>ul>li>.collapsible>.main-grey>.collapsible-header.active{background-color:#9e9e9e}#nav-mobile #main-nav .main-grey>.collapsible-body{padding-top:0.5rem !important}#nav-mobile #main-nav .main-grey>.collapsible-body>.collapsible>li{height:4rem;line-height:2rem;padding:1rem 0}#nav-mobile #main-nav .main-grey>.collapsible-body>.collapsible>li.active{background-color:rgba(255,255,255,0.6)}#nav-mobile #main-nav .main-grey>.collapsible-body>.collapsible>li a{color:#fff;font-size:16px;line-height:1.5rem;padding:0 1.5rem}#nav-mobile #main-nav .main-grey>.collapsible-body>.collapsible>li a .new-badge{background-color:#9e9e9e;color:#fff;font-size:12px}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-header{color:#f600be}#nav-mobile #main-nav .main-pink .collapsible-body .new-badge{background-color:#f600be}#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-header{color:#1e88e5}#nav-mobile #main-nav .main-blue .collapsible-body .new-badge{background-color:#1e88e5}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-header,#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-header{border-bottom:1px solid #333;font-size:15px;font-weight:bold;line-height:4rem;padding-left:1.5rem;text-transform:uppercase;width:100%}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-header i,#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-header i{margin-top:-4rem;position:absolute;right:0}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-body,#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-body{background-color:transparent}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-body li,#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-body li{border-bottom:1px solid #333;line-height:4rem}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-body li.active,#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-body li.active{background-color:rgba(255,255,255,0.2)}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-body li a,#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-body li a{color:#fff;font-size:15px;font-weight:normal;padding-left:2.5rem}#nav-mobile #main-nav .main-pink .collapsible-body .collapsible-body li a .new-badge,#nav-mobile #main-nav .main-blue .collapsible-body .collapsible-body li a .new-badge{color:#fff;font-size:12px}#nav-mobile #main-nav .main-pink .collapsible-body #artist-link a,#nav-mobile #main-nav .main-blue .collapsible-body #artist-link a{display:inline-block;padding:0 1rem}#nav-mobile .collapsible-body{padding:0}#nav-mobile .collapsible-body li.active{background:transparent}#nav-mobile .collapsible-body li.active a{color:#9e9e9e}#nav-mobile li{color:#9e9e9e;line-height:3rem;-webkit-tap-highlight-color:rgba(0,0,0,0)}#nav-mobile li a{color:#fff;height:auto;line-height:inherit}#nav-mobile .top-links{background-color:#eee}#nav-mobile .top-links a{display:inline-block;margin:0;text-rendering:optimizeLegibility}#nav-mobile .top-links a i.material-icons{font-size:1.1rem;height:auto;line-height:inherit}#nav-mobile .footer-wrap{position:relative}#nav-mobile #side-nav-footer{background-color:#000;bottom:0;margin-bottom:0;position:fixed;width:100%}#nav-mobile #side-nav-footer .login-link a{color:#fff}#nav-mobile #side-nav-footer>.collapsible-header{font-size:14px !important;line-height:5rem}#nav-mobile #side-nav-footer #account-body{background-color:rgba(0,0,0,0.7);bottom:57px;height:calc(100% - 237px);left:0;overflow-y:auto;padding-top:0.5rem !important;position:fixed;width:100%}#nav-mobile #side-nav-footer #account-body .collapsible{background-color:transparent}#nav-mobile #side-nav-footer #account-body .collapsible .collapsible-header{color:#ec018c;display:inline-block;font-size:15px;font-weight:bold;height:3rem;line-height:1rem;padding-bottom:1rem;padding-left:2.5rem;padding-top:1.5rem;text-transform:uppercase}#nav-mobile #side-nav-footer #account-body .collapsible .collapsible-header i{float:right}#nav-mobile #side-nav-footer #account-body .collapsible .collapsible-body{background-color:transparent}#nav-mobile #side-nav-footer #account-body .collapsible .collapsible-body li{height:4rem;line-height:2rem;padding:1rem 0;padding-left:1rem}#nav-mobile #side-nav-footer #account-body .collapsible .collapsible-body li.active{background-color:rgba(255,255,255,0.6)}#nav-mobile #side-nav-footer #account-body .collapsible .collapsible-body li a{color:#fff;font-size:1.3rem;font-weight:500;padding-left:2.75rem}#nav-mobile #side-nav-footer .dashboard-link{border-radius:0;color:#fff;font-size:14px;font-weight:400;line-height:5rem;margin:0;padding:0;text-align:center}#nav-mobile #side-nav-footer .login-link{height:5rem;line-height:5rem;padding:0}#nav-mobile #side-nav-footer .login-link a{border-radius:0;font-size:14px;margin:0;padding:0;text-align:center;width:100%}#footer #footer-content{background:#080707;margin:0 auto;padding-top:2rem;position:relative;z-index:1}#footer #footer-content .h4{text-transform:uppercase}#footer #footer-content ul{margin:.5rem 0 1rem}#footer #footer-content .footer-list a{color:#fff;font-size:.9rem;line-height:1.75rem;text-decoration:none}#footer #footer-content .copy-socials{padding:1rem 0}#footer #footer-content .info-pages{line-height:45px}#footer #footer-content .info-pages a{border-left:1px solid rgba(0,0,0,0.1);color:#323232;padding:0 1rem;text-transform:uppercase}#footer #footer-content .info-pages a:first-child{border-left:0;padding-left:0}@media only screen and (max-width: 600px){#footer #footer-content .info-pages{text-align:center}}#footer #footer-content .social-pages{line-height:45px;text-align:right}@media only screen and (max-width: 600px){#footer #footer-content .social-pages{text-align:center}}#footer #footer-content .social-pages a{display:inline-block;line-height:30px;vertical-align:middle;width:38px}#footer #footer-content .social-pages a .icon{font-size:30px;vertical-align:middle}#footer #footer-content .social-pages a .icon.icon-facebook-squared{color:#3b5998}#footer #footer-content .social-pages a .icon.icon-twitter-squared{color:#4099ff}#footer #footer-content .social-pages a .icon.icon-instagram{color:#3f729b}#footer #footer-content .social-pages a .icon.icon-pinterest-circled{color:#c92228}#footer #footer-content .social-pages a .icon.icon-gplus-squared{color:#dd4b39}#footer .copyright{color:#fff;font-size:12px}@media only screen and (max-width: 600px){#footer .copyright{text-align:center}}#footer .copyright a{color:#fff;text-decoration:underline}#main{background-color:#f0f0f0;flex:1 0 auto}#main.react-page{display:flex;flex-direction:column}.img-title{min-height:300px;position:relative}.img-title h1,.img-title .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .img-title .breadcrumbs{bottom:16px;color:#fff;font-weight:200;left:40px;margin:0;position:absolute;text-shadow:0 5px 5px rgba(0,0,0,0.5);width:100%}.img-title img{display:block;height:auto;max-width:100%}@media only screen and (max-width: 1000px){.img-title img{left:50%;margin-left:-500px;max-height:300px;max-width:none;position:absolute}}@media only screen and (max-width: 1000px) and (max-width: 600px){.img-title img{margin-left:-600px}}.img-title.full{margin-bottom:1rem;margin-top:-122px;overflow:hidden}@media only screen and (max-width: 899px){.img-title.full{margin-top:-58px}}.img-title.full .underlay-wrap{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.img-title.full .container-wrap{background:rgba(0,0,0,0.6);bottom:0;left:0;padding:0.5rem 0;pointer-events:auto;position:absolute;width:100%;z-index:2}.img-title.full .container-wrap .container{height:100%;position:relative}.img-title.full h1,.img-title.full .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .img-title.full .breadcrumbs{bottom:0;left:0;position:static;width:auto}.img-title.full .btn,.img-title.full .btn-large{margin-left:0.5rem}.img-title.full .btn:first-child,.img-title.full .btn-large:first-child{margin-left:0}.img-title.full .row{line-height:52px}#homepage{margin:0 auto}#homepage .btn-create{font-family:'Bebas Neue';height:4rem;margin-top:15px;padding:0.7rem 2.5rem 0.3rem}@media (min-width: 993px){#homepage .btn-create{font-size:33px}}@media (max-width: 992px){#homepage .btn-create{font-size:24px;margin-left:15px;margin-top:0;padding:0.5rem 2.5rem}}#homepage .home-section-2020{margin-bottom:0;overflow:hidden;padding:6rem 1.5rem}@media only screen and (max-width: 899px){#homepage .home-section-2020{padding:3rem 1.5rem}}#homepage .home-section-2020 .title{display:block;font-family:'Bebas Neue';font-size:3rem;font-weight:500;line-height:3rem;margin-bottom:2rem;text-align:center;text-transform:uppercase}#homepage .home-section-2020 .detail-block{margin-bottom:0;text-decoration:none}#homepage .home-section-2020 .detail-block img{height:4rem;width:4rem}#homepage .home-section-2020 .detail-block h3{color:#333;font-size:13px;margin:0}@media only screen and (max-width: 600px){#homepage .home-section-2020 .detail-block h3{font-size:11px}}#homepage .home-section-2020 .link-btn{background:white;border:2px solid #333;border-radius:2rem;color:#333;font-size:12px;height:32px;line-height:30px;margin-bottom:1rem;margin-left:1rem;padding:0 1.5rem}#homepage .home-section-2020 .link-btn img{height:auto;margin:0 0 2px 0.5rem;vertical-align:middle;width:25px;z-index:1}#homepage .full-page-panel.home-section-2020 .detail-block{margin-bottom:3rem;padding:0 2rem}#homepage .full-page-panel.home-section-2020 .detail-block img{margin-bottom:.75rem}#homepage .grey.aow-lighten{background:#f0f0f0 !important}#homepage .summary-section .detail-block{margin-bottom:0 !important}@media only screen and (max-width: 1000px){#homepage .summary-section .detail-block{min-height:11rem}}#homepage .dropshipping-section .detail-block img{height:10rem;width:auto}#homepage .products-section{background:#fff url(https://static.artofwhere.net/img2/img/pages/home/design-2020/products-bg-f0c8b7c5948a1265957e.svg) !important}@media only screen and (max-width: 992px){#homepage .products-section>.container>.row>.col:nth-child(9),#homepage .products-section>.container>.row>.card-wrap:nth-child(9){display:none}}#homepage .products-section p{font-size:1.2rem;margin:0 auto;max-width:711px;text-align:center}#homepage .products-section .product-btn{bottom:1.5rem;left:50%;position:absolute;transform:translateX(-50%);transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}#homepage .products-section .all-products-btn{background:#333;color:#fff;font-size:14px;height:42px}#homepage .integrations-section{padding:4rem 0}#homepage .integrations-section .container .detail-block{margin-bottom:1rem}#homepage .integrations-section .container .detail-block .img-wrap{background:#fff;border-radius:50%;height:113px;margin:0 auto;width:113px}#homepage .integrations-section .container .detail-block .img-wrap img{height:100%;vertical-align:middle;width:auto}#homepage .integrations-section .container .detail-block h3{margin-top:.75rem}#homepage .customers-section{background:#fff url(https://static.artofwhere.net/img2/img/pages/home/design-2020/customers-bg-f1643302beadefc8ea6a.svg) !important;background-repeat:no-repeat;background-size:cover !important}#homepage .customers-section .carousel-wrapper{height:18rem}@media only screen and (max-width: 992px){#homepage .customers-section .carousel-wrapper{height:34rem}}@media only screen and (max-width: 600px){#homepage .customers-section .carousel-wrapper{height:calc(100vh - 38vw)}}#homepage .customers-section .carousel-wrapper .carousel{height:100%}#homepage .customers-section p{letter-spacing:2px}#homepage .customers-section .text-wrap{padding-left:2rem}@media only screen and (max-width: 600px){#homepage .customers-section .text-wrap{padding-left:0}}#homepage .customers-section img{border-radius:50%;margin-bottom:3rem;max-height:260px}#homepage .canada-section{background-image:url(https://static.artofwhere.net/img2/img/pages/home/design-2020/madeincanada-38230a42391dbc22a60a.jpg);background-size:cover;padding:7rem 0 !important;z-index:1}#homepage .canada-section .card{border-radius:30px;padding:2rem}#homepage .canada-section .card p{margin-top:17px !important}#homepage .subscribe-section .bg-images{position:relative}#homepage .subscribe-section .bg-images .bg-img{background-repeat:no-repeat;background-size:100%;position:absolute;width:1200px}#homepage .subscribe-section .bg-images .bg-img.lines-1{background-image:url(https://static.artofwhere.net/img2/img/pages/home/design-2020/bg_lines-fd8d59aaf93437e5f564.png);height:743px;right:-60rem;top:-38rem}#homepage .subscribe-section .bg-images .bg-img.lines-2{background-image:url(https://static.artofwhere.net/img2/img/pages/home/design-2020/bg_lines_2-3436bbfe8068be37748c.png);bottom:-40rem;height:802px;left:-60rem}@media only screen and (max-width: 760px){#homepage .subscribe-section .bg-images .bg-img.lines-1{right:-80rem;top:-50rem}#homepage .subscribe-section .bg-images .bg-img.lines-2{bottom:-50rem;left:-85rem}}#homepage .subscribe-section .bg-images .content{position:relative;z-index:1}#homepage .subscribe-section form label{color:#333;display:block;font-size:10px;font-weight:700;line-height:26px;text-transform:uppercase}#homepage .subscribe-section form input{background-color:#fff;border:1px solid #a6a6a6;box-sizing:border-box;color:#4d4d4d;display:block;height:45px;margin-bottom:10px;padding-left:1rem;text-align:left;width:300px}#homepage .carousel-wrapper{height:60vh;overflow:hidden;position:relative}#homepage .carousel-wrapper .carousel-item{display:block;opacity:0;transition:left 1000ms ease-in-out, opacity 500ms;width:100%;will-change:left, opacity}@media only screen and (max-width: 1200px){#homepage .carousel-wrapper .carousel-item{width:100%}}#homepage .carousel-wrapper .carousel-item ul li{margin-bottom:0.5rem;text-align:left}#homepage .carousel-wrapper .carousel-item ul li img{margin-right:0.5rem;width:22px}#homepage .carousel-wrapper .carousel-item ul li .thunder-icon{width:14px}#homepage .carousel-slider{height:100%;position:relative}#homepage .carousel-slider .carousel-item .new-badge{background:#ea008a;border-radius:4px;color:white;float:left;font-weight:500;letter-spacing:2px;margin-bottom:0.5rem;margin-left:0}#homepage .carousel-slider .carousel-item .col,#homepage .carousel-slider .carousel-item .card-wrap{position:absolute;top:200px}#homepage .carousel-slider .carousel-item p{clear:both;display:inline;float:left;font-family:'Roboto Slab';font-size:24px;margin:0;position:initial;width:auto}#homepage .carousel-slider .carousel-item p.flow-text,#homepage .carousel-slider .carousel-item .centered-page p.important-text,.centered-page #homepage .carousel-slider .carousel-item p.important-text{background-color:transparent;font-size:48px;font-weight:600;line-height:42px;padding:8px;text-transform:uppercase}#homepage .carousel-slider .carousel-item p:nth-of-type(2){padding-top:0}#hero-banner{background-image:none;background-size:cover;padding:0}#hero-banner .carousel.standalone .carousel-item{opacity:1}#hero-banner .carousel-wrapper{max-height:800px;min-height:640px}#hero-banner #overlay{background-color:rgba(0,0,0,0.45);bottom:0;min-height:100%;position:absolute;width:100%;z-index:5}@media only screen and (max-width: 375px){#hero-banner #overlay{bottom:2rem}}@media only screen and (max-width: 375px){#hero-banner{margin-bottom:-2rem;padding-bottom:2rem}}#hero-banner video{display:block;width:100%}@media only screen and (max-width: 1350px){#hero-banner video{margin-top:0;min-height:100%;top:0}}@media only screen and (max-width: 1230px){#hero-banner video{min-height:650px;object-fit:fill}}@media only screen and (max-width: 1000px){#hero-banner video{min-height:550px}}@media only screen and (max-width: 899px){#hero-banner video{width:150%}}#hero-banner .flow-text-wrap{bottom:30%;left:50%;margin:0;max-width:960px;position:absolute;width:80%}#hero-banner .flow-text,#hero-banner .centered-page .important-text,.centered-page #hero-banner .important-text{font-family:'Bebas Neue';font-size:2rem;font-weight:100;left:-50%;margin:1rem auto;position:relative;text-shadow:0 0 60px rgba(255,255,255,0.2);top:0;z-index:10}@media only screen and (max-width: 992px){#hero-banner .flow-text,#hero-banner .centered-page .important-text,.centered-page #hero-banner .important-text{font-size:1.2rem}}@media only screen and (max-width: 1150px){#hero-banner{min-height:600px}}@keyframes opacity{0%{opacity:0}100%{opacity:1}}body.body-loaded #big-wow-banner h1,body.body-loaded #big-wow-banner .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group body.body-loaded #big-wow-banner .breadcrumbs{opacity:1}body.body-loaded #big-wow-banner h1 .t-blue,body.body-loaded #big-wow-banner .h1_wrap .h1_group .breadcrumbs .t-blue,.h1_wrap .h1_group body.body-loaded #big-wow-banner .breadcrumbs .t-blue{opacity:1}body.body-loaded #big-wow-banner h1 .t-pink,body.body-loaded #big-wow-banner .h1_wrap .h1_group .breadcrumbs .t-pink,.h1_wrap .h1_group body.body-loaded #big-wow-banner .breadcrumbs .t-pink{opacity:1}body.body-loaded #big-wow-banner p{opacity:1}body.body-loaded #big-wow-banner .main-big-wow-banner{opacity:1}body.body-loaded #big-wow-banner .main-big-wow-banner .big-wow-content .btn-create{opacity:1}#big-wow-banner .main-big-wow-banner{background-color:#fff;background-image:url(https://static.artofwhere.net/img2/img/pages/home/_product-banners/placemats-banner/banner-desktop-ede8e8fe2e361d92be4e.png);background-position:center right;background-repeat:no-repeat;background-size:50%;opacity:0;transition:opacity 1000ms}@media (max-width: 1500px){#big-wow-banner .main-big-wow-banner{background-image:url(https://static.artofwhere.net/img2/img/pages/home/_product-banners/placemats-banner/banner-desktop-ede8e8fe2e361d92be4e.png);background-position:center right;background-size:50%}}@media (max-height: 1080px){#big-wow-banner .main-big-wow-banner{background-size:45%}}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner{background-image:url(https://static.artofwhere.net/img2/img/pages/home/_product-banners/placemats-banner/banner-mobile-6084d30280c0d6d0d83e.png);background-position:bottom right;background-size:75%}}@media (max-width: 500px){#big-wow-banner .main-big-wow-banner{background-size:95%}}#big-wow-banner .main-big-wow-banner .big-wow-content,#big-wow-banner .main-big-wow-banner .big-wow-image{align-items:center;display:flex}@media (min-width: 993px){#big-wow-banner .main-big-wow-banner .big-wow-content,#big-wow-banner .main-big-wow-banner .big-wow-image{height:75vh;min-height:500px}}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner .big-wow-content,#big-wow-banner .main-big-wow-banner .big-wow-image{float:none}}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner .big-wow-wrapper{margin-bottom:260px;margin-top:80px}}@media (max-height: 700px){#big-wow-banner .main-big-wow-banner .big-wow-wrapper{margin-top:40px}}#big-wow-banner .main-big-wow-banner .big-wow-wrapper ul{list-style:disc;list-style-type:disc;padding-left:20px}#big-wow-banner .main-big-wow-banner .big-wow-wrapper ul li{font-family:'Poppins';font-size:18px;font-weight:500;line-height:1.2;list-style:disc;list-style-type:disc;margin-bottom:15px;position:relative}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner .big-wow-wrapper ul li{font-size:16px}}#big-wow-banner .main-big-wow-banner .big-wow-content .btn-create{font-family:'Bebas Neue';font-size:33px;height:4rem;margin-top:30px;opacity:0;padding:0.7rem 2.5rem 0.3rem 1.5rem;transition:opacity 1000ms 1050ms}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner .big-wow-content .btn-create{font-size:28px}}@media (max-width: 600px){#big-wow-banner .main-big-wow-banner .big-wow-content .btn-create{margin-left:5px;margin-right:5px;margin-top:15px}}@media (min-width: 993px){#big-wow-banner .main-big-wow-banner .big-wow-content{float:left}}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner .big-wow-content{padding:0 2rem;position:relative;z-index:1}}#big-wow-banner .main-big-wow-banner .big-wow-image{justify-content:center}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner .big-wow-image{margin-top:2rem;padding:0 0 4rem}}#big-wow-banner .main-big-wow-banner .big-wow-image img{max-width:800px;opacity:0;transform:scale(0.7);transition:transform 1000ms, opacity 1000ms;width:80%}#big-wow-banner .main-big-wow-banner .big-wow-image img.loaded{opacity:1;transform:scale(1)}@media (max-width: 992px){#big-wow-banner .main-big-wow-banner .big-wow-image img{max-width:350px;width:80%}}@media (max-height: 1250px){#big-wow-banner .main-big-wow-banner .big-wow-image img{width:70%}}@media (max-height: 1075px){#big-wow-banner .main-big-wow-banner .big-wow-image img{width:60%}}@media (max-height: 920px){#big-wow-banner .main-big-wow-banner .big-wow-image img{width:50%}}#big-wow-banner .main-big-wow-banner h1,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs{font-family:'Bebas Neue';font-family:'Bebas Neue';font-size:80px;line-height:0.85;margin-bottom:0;opacity:0;transition:opacity 1000ms 0ms}#big-wow-banner .main-big-wow-banner h1 img,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs img,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs img{display:inline-block;opacity:0;transition:opacity 1000ms 700ms;width:60px}#big-wow-banner .main-big-wow-banner h1 img.loaded,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs img.loaded,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs img.loaded{opacity:1}@media (max-width: 1200px){#big-wow-banner .main-big-wow-banner h1,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs{font-size:70px}}@media (max-width: 992px), (max-height: 700px){#big-wow-banner .main-big-wow-banner h1,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs{font-size:60px}#big-wow-banner .main-big-wow-banner h1 img,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs img,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs img{width:45px}}#big-wow-banner .main-big-wow-banner h1 .t-blue,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs .t-blue,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs .t-blue{color:#00aced;opacity:0;transition:opacity 1000ms 700ms}#big-wow-banner .main-big-wow-banner h1 .t-pink,#big-wow-banner .main-big-wow-banner .h1_wrap .h1_group .breadcrumbs .t-pink,.h1_wrap .h1_group #big-wow-banner .main-big-wow-banner .breadcrumbs .t-pink{color:#ea008a;opacity:0;transition:opacity 1000ms 350ms}#big-wow-banner .main-big-wow-banner p{font-size:18px;margin-bottom:15px;margin-top:0;max-width:450px;opacity:0;transition:opacity 1000ms 700ms}#big-wow-banner .main-big-wow-banner p strong{font-weight:600}#big-wow-banner .content-big-wow{background-color:#000;background-image:url(https://static.artofwhere.net/img2/img/pages/home/vl-tote-big-banner/vl-products-feature-2-54986db4125f4b6e1832.jpg);background-position:center right;background-repeat:no-repeat;background-size:70%;padding:10rem 0 12rem;position:relative}@media (max-width: 992px){#big-wow-banner .content-big-wow{background-position:bottom right;background-size:100%;padding:12rem 0 28rem}}@media (max-width: 600px){#big-wow-banner .content-big-wow{background-size:100%}}#big-wow-banner .content-big-wow>.row{position:relative;z-index:2}#big-wow-banner .content-big-wow::before{background-image:url(https://static.artofwhere.net/img2/img/pages/home/vl-tote-big-banner/content-big-wow-deco-431c905b98a25d253cdb.svg);background-repeat:no-repeat;background-size:contain;bottom:-30px;content:'';display:block;left:-110px;margin:auto;position:absolute;top:-30px;width:450px;z-index:1}@media (max-width: 992px){#big-wow-banner .content-big-wow::before{background-image:url(https://static.artofwhere.net/img2/img/pages/home/vl-tote-big-banner/content-big-wow-deco-tablet-3e6a880ed932ca57edf4.svg);background-position:top;bottom:auto;height:300px;left:-1px;right:0;top:-40px;width:auto}}@media (max-width: 600px){#big-wow-banner .content-big-wow::before{background-image:url(https://static.artofwhere.net/img2/img/pages/home/vl-tote-big-banner/content-big-wow-deco-mobile2-4987409688562806c052.svg)}}#big-wow-banner .content-big-wow ul{list-style-type:disc}#big-wow-banner .content-big-wow ul li{font-family:'Poppins';font-size:28px;line-height:1.2;margin-bottom:30px;max-width:480px;padding-left:80px;position:relative}@media (max-width: 992px){#big-wow-banner .content-big-wow ul li{font-size:24px}}#big-wow-banner .content-big-wow ul li::before{background-image:url(https://static.artofwhere.net/img2/img/pages/home/vl-tote-big-banner/check-02bc29b793b50fa1084c.svg);background-repeat:no-repeat;background-size:contain;bottom:0;content:'';display:block;height:47px;left:0;margin:auto;position:absolute;top:0;width:47px}@media (max-width: 992px){#big-wow-banner .content-big-wow ul li::before{height:37px;left:20px;width:37px}}#big-wow-banner .content-big-wow .btn-create{font-family:'Bebas Neue';height:4rem;margin-bottom:20px;margin-left:80px;padding:0.7rem 2.5rem 0.3rem}@media (min-width: 993px){#big-wow-banner .content-big-wow .btn-create{font-size:33px}}@media (max-width: 992px){#big-wow-banner .content-big-wow .btn-create{font-size:24px;margin-left:15px;padding:0.5rem 2.5rem}}#sale-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/_sales/home-decor-sale/summer-sale/banner-desktop-fdc18c422549e9b87e0c.png);background-position-y:70%}@media only screen and (max-width: 992px){#sale-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/_sales/home-decor-sale/summer-sale/banner-mobile-fe9448415b16130cb78b.png);background-position-y:50%}}#scoop-bralette-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/_product-banners/scoop-bralette-banner/banner-960c8b9658c38dd8bec0.jpg);background-position-y:70%}@media only screen and (max-width: 992px){#scoop-bralette-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/_product-banners/scoop-bralette-banner/banner_mobile-b6f32b8b7771d6d96ab2.jpg);background-position-y:50%}}#yoga-set-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/_product-banners/yoga-set-banner/banner-7852549c48666ff94ad0.jpg);background-position-y:70%}@media only screen and (max-width: 992px){#yoga-set-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/_product-banners/yoga-set-banner/banner_mobile-f6fbb547c7dbc4cdf06e.jpg);background-position-y:50%}}#perri-purple-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/perri-purple-banner/banner-5c9b72206a122dcfad3e.jpg);background-position-y:70%}@media only screen and (max-width: 992px){#perri-purple-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/perri-purple-banner/banner_mobile-0af2e36f8c041b4e88d5.jpg);background-position-y:50%}}#prepare-products-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/prepare-products-banner/banner-cd337d74aff505ca2229.jpg);background-position-y:70%}@media only screen and (max-width: 992px){#prepare-products-banner:not(#elevate):not(#elevate){background-image:url(https://static.artofwhere.net/img2/img/pages/home/prepare-products-banner/banner_mobile-a2e66818e5708acc3a42.jpg);background-position-y:50%}}#prepare-production-video-banner:not(#elevate):not(#elevate){background-position-y:70%}@media only screen and (max-width: 992px){#prepare-production-video-banner:not(#elevate):not(#elevate){background-position-y:50%}}@media only screen and (min-width: 993px){#prepare-production-video-banner:not(#elevate):not(#elevate) .prepare-production-video-info{height:100%;justify-content:center;top:0}}#prepare-production-video-banner:not(#elevate):not(#elevate) .prepare-production-video-info ul{margin:5px 20px}#prepare-production-video-banner:not(#elevate):not(#elevate) .prepare-production-video-info ul li{color:#fff;font-size:16px;font-weight:500;list-style-type:disc}@media only screen and (min-width: 993px){#prepare-production-video-banner:not(#elevate):not(#elevate) .prepare-production-video-info.push-l7{left:44%}}@media only screen and (max-width: 1160px){#prepare-production-video-banner:not(#elevate):not(#elevate) .prepare-production-video-info.push-l7{height:76%}}@media only screen and (max-width: 992px){#prepare-production-video-banner:not(#elevate):not(#elevate) .prepare-production-video-info.push-l7{height:unset;top:150px}}#prepare-production-video-banner:not(#elevate):not(#elevate) .schedule{font-size:16px;font-weight:500;margin-bottom:12px}#prepare-production-video-banner:not(#elevate):not(#elevate) .new-badge{text-align:left}@media only screen and (max-width: 600px){#prepare-production-video-banner:not(#elevate):not(#elevate) .new-badge{font-size:2rem;line-height:2rem}}#prepare-production-video-banner:not(#elevate):not(#elevate) .flow-text,#prepare-production-video-banner:not(#elevate):not(#elevate) .centered-page .important-text,.centered-page #prepare-production-video-banner:not(#elevate):not(#elevate) .important-text{color:#fff;font-size:36px;font-weight:500;letter-spacing:unset;text-align:left}@media only screen and (max-width: 600px){#prepare-production-video-banner:not(#elevate):not(#elevate) .flow-text,#prepare-production-video-banner:not(#elevate):not(#elevate) .centered-page .important-text,.centered-page #prepare-production-video-banner:not(#elevate):not(#elevate) .important-text{font-size:2.5rem;line-height:3rem}}@media only screen and (max-width: 600px){#prepare-production-video-banner:not(#elevate):not(#elevate) .flow-text::after,#prepare-production-video-banner:not(#elevate):not(#elevate) .centered-page .important-text::after,.centered-page #prepare-production-video-banner:not(#elevate):not(#elevate) .important-text::after{height:5px;margin-bottom:6px;margin-left:-2px;margin-top:-12px}}@media (min-width: 992px){.all-around-sale-banner{align-items:center;background-color:#fff;display:flex;flex-direction:row}}@media (max-width: 991px){.all-around-sale-banner{display:flex;flex-direction:column-reverse}}@media (min-width: 992px){.all-around-sale-banner .all-around-sale-img{margin-right:60px;width:50%}}@media (max-width: 991px){.all-around-sale-banner .all-around-sale-img{max-width:500px}}.all-around-sale-banner .all-around-sale-img img{width:100%}@media (min-width: 992px){.all-around-sale-banner .all-around-sale-content{max-width:500px}}@media (max-width: 991px){.all-around-sale-banner .all-around-sale-content{max-width:500px;padding-left:30px;padding-right:30px;padding-top:30px}}.all-around-sale-banner .all-around-sale-content h2{color:#f600bc;font-size:50px;font-weight:500;line-height:1;margin-bottom:10px}.all-around-sale-banner .all-around-sale-content p{font-size:18px;margin-top:0}.all-around-sale-banner .all-around-sale-content p strong{font-weight:600}.product-banner:not(#elevate):not(#elevate){background-position-x:57%;background-size:cover}.product-banner:not(#elevate):not(#elevate) .white-overlay{background:white;bottom:-15%;height:63%;left:-15%;position:absolute;transform:rotate(8deg);width:130%;z-index:-1}@media (max-width: 450px){.product-banner:not(#elevate):not(#elevate) .white-overlay{height:72%}}.product-banner:not(#elevate):not(#elevate) .schedule{font-size:16px;font-weight:500;margin-bottom:12px}.product-banner:not(#elevate):not(#elevate) .new-badge{background:none;color:#ea008a;font-family:'Rottersand';font-size:36px;margin-bottom:0;margin-bottom:8px;padding:0;text-align:left;text-transform:none}@media only screen and (max-width: 600px){.product-banner:not(#elevate):not(#elevate) .new-badge{font-size:2rem;line-height:2rem}}.product-banner:not(#elevate):not(#elevate) .flow-text,.product-banner:not(#elevate):not(#elevate) .centered-page .important-text,.centered-page .product-banner:not(#elevate):not(#elevate) .important-text{background:none;font-family:'Bebas Neue';font-size:45px;font-weight:500;letter-spacing:unset;line-height:50px;padding:0;text-align:left}@media only screen and (max-width: 600px){.product-banner:not(#elevate):not(#elevate) .flow-text,.product-banner:not(#elevate):not(#elevate) .centered-page .important-text,.centered-page .product-banner:not(#elevate):not(#elevate) .important-text{font-size:2.5rem;line-height:3rem}}.product-banner:not(#elevate):not(#elevate) .flow-text::after,.product-banner:not(#elevate):not(#elevate) .centered-page .important-text::after,.centered-page .product-banner:not(#elevate):not(#elevate) .important-text::after{background:#ffd6ef;content:'';display:block;height:8px;margin-bottom:6px;margin-left:-2px;margin-top:-14px;width:95%}@media only screen and (max-width: 600px){.product-banner:not(#elevate):not(#elevate) .flow-text::after,.product-banner:not(#elevate):not(#elevate) .centered-page .important-text::after,.centered-page .product-banner:not(#elevate):not(#elevate) .important-text::after{height:5px;margin-bottom:6px;margin-left:-2px;margin-top:-12px}}.product-banner:not(#elevate):not(#elevate)>.col,.product-banner:not(#elevate):not(#elevate)>.card-wrap{align-items:flex-start;display:flex;flex-direction:column}@media only screen and (min-width: 993px){.product-banner:not(#elevate):not(#elevate) .banner-info{height:100%;justify-content:center;top:0}}.product-banner:not(#elevate):not(#elevate) .banner-info ul{margin:5px 20px}.product-banner:not(#elevate):not(#elevate) .banner-info ul li{font-size:16px;font-weight:500;list-style-type:disc}@media only screen and (min-width: 1150px), (max-width: 993px){.product-banner:not(#elevate):not(#elevate) .banner-info ul br{display:none}}@media only screen and (min-width: 993px) and (max-width: 1020px){.product-banner:not(#elevate):not(#elevate) .banner-info.push-l7{left:56%}}@media only screen and (max-width: 992px){.product-banner:not(#elevate):not(#elevate){background-position-y:10%}.product-banner:not(#elevate):not(#elevate)>.col,.product-banner:not(#elevate):not(#elevate)>.card-wrap{bottom:1rem;padding-left:4rem;top:unset}}@media only screen and (max-width: 400px){.product-banner:not(#elevate):not(#elevate)>.col,.product-banner:not(#elevate):not(#elevate)>.card-wrap{padding-left:2rem}.product-banner:not(#elevate):not(#elevate) .flow-text,.product-banner:not(#elevate):not(#elevate) .centered-page .important-text,.centered-page .product-banner:not(#elevate):not(#elevate) .important-text{font-size:36px;line-height:3.5rem}}#boxing-day-new-banner:not(#elevate):not(#elevate) .banner-info{bottom:0}@media only screen and (max-width: 390px){#boxing-day-new-banner:not(#elevate):not(#elevate) .flow-text,#boxing-day-new-banner:not(#elevate):not(#elevate) .centered-page .important-text,.centered-page #boxing-day-new-banner:not(#elevate):not(#elevate) .important-text{font-size:30px;line-height:3rem}}.privacy-policy-page,.terms-of-service-page{background-image:url(https://static.artofwhere.net/img2/img/pages/info/background-option3-4fbf95f2f87fa1f3e2b3.svg);background-position:center}.privacy-policy-page .container,.terms-of-service-page .container{max-width:990px}.privacy-policy-page .container .panel,.privacy-policy-page .container .order-note,.terms-of-service-page .container .panel,.terms-of-service-page .container .order-note{border-radius:30px;padding:1rem 3rem}.privacy-policy-page .container .panel h2,.privacy-policy-page .container .order-note h2,.terms-of-service-page .container .panel h2,.terms-of-service-page .container .order-note h2{margin-top:4rem}.privacy-policy-page .container .panel h3,.privacy-policy-page .container .order-note h3,.terms-of-service-page .container .panel h3,.terms-of-service-page .container .order-note h3{font-size:1.4rem;margin-bottom:0;margin-top:2rem}.privacy-policy-page .container .panel ol,.privacy-policy-page .container .order-note ol,.privacy-policy-page .container .panel ul,.privacy-policy-page .container .order-note ul,.terms-of-service-page .container .panel ol,.terms-of-service-page .container .order-note ol,.terms-of-service-page .container .panel ul,.terms-of-service-page .container .order-note ul{padding-left:30px}.modal.social-app{max-width:740px;width:100%}.modal.social-app .modal-content{padding:16px 16px 0}.modal.social-app .modal-content>p{margin:0 0 0.5rem}#social-app{height:500px;margin:0 -16px;position:relative}#social-app section{height:500px;left:0;position:absolute;top:0;width:740px}#social-app section aside{background:#eee;height:500px;overflow:hidden;position:absolute;right:0;top:0;width:180px}#social-app section aside>div{background:#eee;display:none;height:100%;left:0;padding:15px;position:absolute;top:0;width:100%}#social-app section aside h2{background:#ccc;color:#000;font-size:16px;line-height:28px;margin:-15px -15px 5px;padding:7px 15px;white-space:nowrap}#social-app section aside footer{background:#ccc;bottom:0;left:0;padding:7px 15px;position:absolute;width:100%}#social-app section aside footer .btn:first-child,#social-app section aside footer .btn-large:first-child{margin-top:0}#social-app .pager{height:10px;margin-top:7px;position:relative}#social-app .pager>div{background:#eee;border:1px solid black;border-radius:5px;float:left;height:8px;margin-left:13px;position:relative;width:8px;z-index:2}#social-app .pager>div.past{background:#000}#social-app .pager>div.active{background:#1e88e5}#social-app .pager>div.line{background:#000;border:0;height:2px;margin:0 2%;position:absolute;top:4px;width:96%;z-index:1}#social-app .pager>div:first-child{margin-left:0}#social-app section aside textarea{background:#fff;border:none;border-bottom:1px solid #555;border-top:1px solid #999;display:block;height:50px;margin:0;margin:5px -15px;padding:0;padding:2px 15px;resize:none;width:180px}#social-app #theProduct{display:none;height:500px;overflow:hidden;position:relative;user-select:none;user-select:none;user-select:none;user-select:none;user-select:none;width:560px}#social-app #theProduct img{cursor:default;height:auto;left:0;pointer-events:none;position:absolute;top:0;width:auto}#social-app #theProduct #theBackground{height:500px;width:560px}#social-app #theProduct img#theLogo{display:none;left:10px;top:10px}#social-app ul.scroller{background:#fff;display:block;list-style:none;margin:0 -15px;overflow:auto;padding:0}#social-app ul.scroller li{background:#fff;border-bottom:1px solid #ccc;cursor:pointer;display:block;height:30px;line-height:30px;margin:0;overflow:hidden;padding:0}#social-app ul.scroller li.upload{height:auto;line-height:normal;padding:0.5rem}#social-app ul.scroller li.upload p{margin:0 0 0.5rem}#social-app ul.scroller li.active{background:#1e88e5;color:#fff}#social-app ul.scroller li img{float:left;height:30px;margin:0 6px 0 0;width:34px}#social-app ul.scroller li .btn-flat{float:right;height:42px;line-height:42px;margin-right:-6px;margin-top:-6px;padding:0;text-align:center;width:42px}#social-app ul.scroller li p{margin:0;margin-right:24px;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap}#social-app div.dropdown{background:#fff;border-bottom:1px solid #ccc;cursor:pointer;height:30px;height:auto;margin:0 -15px;max-height:28px;min-height:28px;padding:0 15px;position:relative}#social-app div.dropdown>p{float:left;font-weight:bold;line-height:28px;margin:0;padding:0 4px 0 0}#social-app div.dropdown>span{float:right;font-size:12px;line-height:28px}#social-app div.dropdown i{margin-left:4px;vertical-align:middle}#social-app div.dropdown.active ul.dropdown{display:block;height:auto;max-height:163px;overflow:auto;z-index:999}#social-app ul.dropdown{background:#eee;display:block;left:0;list-style:none;margin:0;max-height:0;overflow:hidden;padding:0;position:absolute;top:28px;transition:max-height 0.2s linear;width:180px;z-index:999}#social-app ul.dropdown li{background:#eee;border-bottom:1px solid #ccc;cursor:pointer;display:block;height:20px;line-height:20px;margin:0;padding:0 15px}#social-app ul.dropdown li.active{display:block}#social-app ul.dropdown li p{margin:0;padding:0;text-overflow:ellipsis;white-space:nowrap}#social-app ul.dropdown li.active,#social-app ul.dropdown:hover li.active:hover{background:#1e88e5;color:#fff}#social-app ul.dropdown:hover li:hover{background:#1e88e5;color:#fff}#social-app p{margin:10px 0;padding:0}#social-app p.small{font-size:11px}#social-app p.moreinfos{line-height:15px;margin:8px 0}#social-app p.title{font-size:15px;font-weight:bold;margin:0 -15px;padding:0 15px}#social-app .moving{border:2px dashed rgba(0,0,0,0.5);cursor:move;margin:-2px 0 0 -2px}#social-app #theProduct img.moving{cursor:move;pointer-events:inherit}#social-app .colorblock{background:#333;float:left;height:100%;margin-right:8px;width:20px}#social-app #resizer{background:url(https://static.artofwhere.net/img2/img/social-app/resize-e0649e90493d8fcae768.png);cursor:pointer;cursor:crosshair;height:28px;left:0;margin:-14px 0 0 -14px;position:absolute;top:0;width:28px;z-index:999999999}#social-app input.file{width:120px}#social-app .progress{background:#fff;display:none;float:left;height:30px;margin:-5px -15px -5px -10px;position:relative;width:146px}#social-app .progress>div{background:#1e88e5;height:100%;left:0;min-width:3%;position:absolute;top:0;width:0%}#social-app .bigletter{color:#ccc;font-size:300px;height:480px;line-height:480px;margin:10px 8px;padding:0;text-align:center;width:544px}#social-app .smallink{float:right;font-size:12px;font-weight:normal;line-height:28px}#social-app img.loader{display:block;height:32px;margin:80px auto 0;width:32px}#social-app .share-btn{margin-bottom:0.5rem}#social-app .range-field{margin:0}#listPreviews{margin:0;width:560px}#listPreviews .card{cursor:pointer}#main-account{background:#fff;background:linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 50%, #fff 50%, #fff 100%);display:flex;justify-content:center}@media (max-width: 760px){#main-account{display:block}}#main-account aside{background-color:#f3f3f3}@media (max-width: 760px){#main-account aside{display:none}}#main-account aside .nav{background-color:#f3f3f3;border-radius:2px;color:inherit;height:100%;padding:50px 0 20px;width:300px}#main-account aside .nav .section:first-child{padding-top:0}#main-account aside .nav li{float:none;line-height:2.8rem}#main-account aside .nav li.waves-effect{display:block}#main-account aside .nav li.active{background-color:rgba(0,0,0,0.1)}#main-account aside .nav li a,#main-account aside .nav li span{color:inherit;cursor:pointer;display:block;font-size:1rem;padding:0 30px;text-decoration:none;transition:background-color 0.3s}#main-account aside .nav li a:hover,#main-account aside .nav li span:hover{background-color:rgba(0,0,0,0.1);text-decoration:none}#main-account aside .nav h3{font-size:1.3rem;line-height:normal;margin-bottom:0.6rem;margin-top:0;padding:0 30px}#main-account aside .nav .section{padding-bottom:0.5rem}#main-account .mainPage{background:#fff;flex-grow:1;max-width:1400px;min-width:0;padding:40px 30px 20px}@media (max-width: 760px){#main-account .mainPage{padding:40px 15px 20px}}#main-account .mainPage .main-page-content{max-width:1400px;position:relative}#main-account button a.suppress{color:#343434;display:inline-block;padding-left:5%;width:2em}#main-account button.no-hover{pointer-events:none}#main-account button.no-hover:hover{all:default}#main-account .collection .chip{margin-top:9px;position:absolute;right:4em;vertical-align:top}#main-account .collection .chip i{margin-left:-5px;margin-right:4px;margin-top:4px;vertical-align:inherit}#main-account .h1-group-small{color:#333;font-size:28px;font-weight:300;line-height:3rem;margin-bottom:0.5rem}#main-account .h1-group-small .breadcrumbs{display:inline-block;line-height:2.8rem;vertical-align:top}#main-account .h1-group-small .breadcrumbs a{border-right:1px solid #999;color:inherit;display:inline-block;font-size:1.2rem;line-height:1.2rem;margin-right:0.75rem;padding-right:0.75rem;vertical-align:middle}#main-account .h1-group-small h1,#main-account .h1-group-small .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #main-account .h1-group-small .breadcrumbs{color:inherit;display:inline-block;font-family:inherit;font-size:inherit;font-weight:400;line-height:normal;margin:0}#main-account .info-badge{background-color:#ddd;color:inherit;margin-bottom:1rem}#main-account .info-badge.white-style{background-color:#fff;color:#999}#main-account .card.product:hover{transform:none}@media only screen and (max-width: 600px){#main-account .card.product:hover{transform:none}}#main-account .card.product.with-btn .card-title{padding-right:1rem}#main-account #integrations-connect .card .card-image{padding:2rem}#main-account #integrations-connect .card .card-image img{margin:auto;max-width:110px}#main-account #integrations-connect .card .card-content{background:#ededed;padding:0.75rem}#main-account #integrations-connect .card .card-content h3{margin-top:0}#main-account #integrations-connect .card .card-content h4{margin-top:0.75rem}#main-account #integrations-connect .bigcartel .card-image img{max-width:125px}#main-account .nav ul{margin:0}#main-account .nav li>a>i.material-icons,#main-account .nav li>span>i.material-icons{font-size:24px;height:auto;line-height:inherit;margin-right:1rem;width:auto}#main-account .nav li>a>.icon{background:transparent center center no-repeat;background-size:contain;display:inline-block;height:24px;margin-right:1rem;vertical-align:middle;width:24px}#main-account .nav li>a>.icon.icon-shopify{background-image:url(https://static.artofwhere.net/img2/img/account/shopify-icon-c798a0cf7f0ef0e46b8c.svg);margin-top:-2px}#main-account .nav li>a>.icon.icon-bigcartel{background-image:url(https://static.artofwhere.net/img2/img/account/bigcartel-icon-8be724ebbb4dc43483b8.svg)}#main-account .nav li>a>.icon.icon-etsy{background-image:url(https://static.artofwhere.net/img2/img/account/etsy-icon-43620f6427fffbf91d4a.svg);height:18px;margin-top:-2px}#main-account .nav li>a>.icon.icon-woocommerce{background-image:url(https://static.artofwhere.net/img2/img/account/woocommerce-icon-57484f9e431f36480e0c.svg)}#main-account .nav li>a>.icon.icon-bigcommerce{background-image:url(https://static.artofwhere.net/img2/img/account/bigcommerce-icon-072fbe715dc66847f20d.svg)}#main-account .nav li>a>.icon.icon-squarespace{background-image:url(https://static.artofwhere.net/img2/img/account/squarespace-icon-4d9b276d152371ebd8ab.svg)}#main-account label[for='digitize_auto_pay']{height:3em}#main-account .main-action-btn{position:absolute;right:0.75rem;top:0.25rem}@media only screen and (max-width: 992px){#main-account .main-action-btn{margin:0 0 1rem;position:static;right:0;top:0}}#main-account .main-action-btn.btn-floating{bottom:4%;position:fixed;right:6%;z-index:900}#main-account .main-action-btn.btn-floating i{font-size:2.6rem}#main-account nav.MuiPagination-root{background-color:transparent;box-shadow:none;height:auto}.sortbar{background-color:#fff;height:3rem;line-height:3rem;margin-bottom:0.75rem}.sortbar .input-field{margin:0}.sortbar .input-field .select-wrapper{padding:0 1rem;transition:background-color 0.3s ease;width:10rem;will-change:background-color}.sortbar .input-field .select-wrapper .caret{right:1rem;top:0}.sortbar .input-field .select-wrapper:hover{background-color:rgba(0,0,0,0.1)}.sortbar .input-field label{height:100%;top:0;transform:none}.sortbar .input-field label i{line-height:inherit}.sortbar .input-field label:not(.label-icon).active{transform:none}.sortbar .input-field input{border:0;margin:0}.sortbar .input-field input[type='search']{padding-left:3rem}.sortbar .input-field input[type='search']+label{left:1.5rem}.sortbar .btn-flat{border-radius:0;float:right;height:3rem;line-height:3rem;text-align:center;width:3rem}.sortbar .btn-flat:hover{background-color:rgba(0,0,0,0.1)}.sortbar .btn-flat.active{color:#1e88e5}.card .card-image img.sync-thumbnail{border:3px solid #fff;bottom:0.5rem;left:auto;position:absolute;right:0.5rem;top:auto;width:40%}#mass-uploader .hiddenFileInput{left:-100%;opacity:0;position:absolute;top:-100%}#mass-uploader form p{margin-left:1rem}#mass-uploader .collection-header{padding:0 20px}#mass-uploader .collection-header .row{margin-bottom:0.75rem}#mass-uploader .collection-header p{margin-bottom:0.4rem;text-align:right}#mass-uploader .collection-item{display:inline-block;width:100%}#mass-uploader .collection-item>i{margin-right:5%}#mass-uploader .collection-item .progress-container{position:relative}#mass-uploader .collection-item .checkbox-container{margin-top:4px;position:relative;text-align:center}#mass-uploader .collection-item .checkbox-container label{height:20px;padding:0 20px 0 0}#mass-uploader .collection-item .progress{border-radius:2px 0 0 2px;display:inline-block;margin:0;width:60%}#mass-uploader .collection-item .progress div{transition:background 0.3s}#mass-uploader .collection-item .secondary-progress{border-radius:0 2px 2px 0;right:0;width:40%}#mass-uploader .collection-item .progress>div{background-color:green}#mass-uploader .collection-item .stepname{margin:0}#mass-uploader .collection-item .material-icons{color:green}#mass-uploader .collection-item span{display:inline-block;max-width:75%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#mass-uploader .collection-item .row span{vertical-align:text-top}#mass-uploader #agreement{color:#9e9e9e;font-size:0.8rem;text-align:center}#mass-uploader button .preloader-wrapper{float:left;margin-left:-1rem;margin-right:1rem;margin-top:1rem}#mass-result .btn-flat{margin-top:1rem}.product-expiration-page .product .card-content{padding-bottom:0 !important;padding-left:0.75rem !important;padding-right:0.75rem !important}.product-expiration-page .product .card-content .row{margin-top:0.5rem}.product-expiration-page .product .card-content .row .col,.product-expiration-page .product .card-content .row .card-wrap{height:auto;line-height:3rem;overflow:hidden;padding:0;transition:width 0.25s}.product-expiration-page .product .card-content .row .col:nth-child(2),.product-expiration-page .product .card-content .row .card-wrap:nth-child(2){float:right}.product-expiration-page .product .card-content .row .col a,.product-expiration-page .product .card-content .row .card-wrap a{border-radius:0;font-size:0.75rem;height:48px;line-height:48px;padding:0 0.5rem;width:100%}.product-expiration-page .product .card-content .row .col a i,.product-expiration-page .product .card-content .row .card-wrap a i{margin-right:0.4rem}.product-expiration-page .product .card-content .row .col a span:nth-child(3),.product-expiration-page .product .card-content .row .card-wrap a span:nth-child(3){display:none}.product-expiration-page .product .card-content .row .col a.disabled span:nth-child(2),.product-expiration-page .product .card-content .row .card-wrap a.disabled span:nth-child(2){display:none}.product-expiration-page .product .card-content .row .col a.disabled span:nth-child(3),.product-expiration-page .product .card-content .row .card-wrap a.disabled span:nth-child(3){display:inline}#listCreditcards .credit-card .card-image{padding:24px 24px 18px}#listCreditcards .credit-card .card-image img{height:36px;width:auto}#listCreditcards .credit-card .card-content{margin-top:-24px;padding-top:0}#listCreditcards .credit-card .delete-btn{bottom:18px;position:absolute;right:15px;top:auto}.bullet-icon{background:rgba(255,255,255,0.3);border-radius:50%;height:148px;line-height:148px;margin:3rem auto 1.5rem;width:148px}.bullet-icon img{display:inline-block;vertical-align:middle}@media only screen and (max-width: 600px){.bullet-icon{height:120px;line-height:120px;width:120px}}.big-separator{background:#1e88e5;height:6px;margin:1.5rem 0;width:66px}.centered-page .full-page-panel{background:#fff;padding:3rem 0;position:relative;width:100%}.centered-page .full-page-panel.img-bg{background-position:center;background-size:100%}@media only screen and (max-width: 1260px){.centered-page .full-page-panel.img-bg{background-size:auto 100%}}.centered-page .full-page-panel.img-bg .flow-text,.centered-page .full-page-panel.img-bg .important-text{color:#fff}.centered-page .full-page-panel.img-bg.header{margin-top:-122px;padding-bottom:8rem;padding-top:180px}.centered-page .full-page-panel.img-bg.header h1,.centered-page .full-page-panel.img-bg.header .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .centered-page .full-page-panel.img-bg.header .breadcrumbs{color:#fff;font-size:4rem}@media only screen and (max-width: 1280px){.centered-page .full-page-panel.img-bg.header{background-size:auto 100%}}.centered-page .full-page-panel .flow-text-wrap p.pricing{margin-top:0.75rem !important}.centered-page .full-page-panel.main-blue{background:#1e88e5}.centered-page .full-page-panel.main-grey{background-color:#323232}.centered-page .full-page-panel.main-grey h2{color:#fff}.centered-page .full-page-panel.main-grey .flow-text,.centered-page .full-page-panel.main-grey .important-text{color:#ccc}.centered-page .full-page-panel.light-grey{background-color:#f3f3f3}.centered-page .full-page-panel.light-grey .flow-text,.centered-page .full-page-panel.light-grey .important-text{color:#777}.centered-page .full-page-panel h2{font-size:2.5rem}.centered-page .full-page-panel p.small-text{color:#999;margin-bottom:0;margin-top:0}@media only screen and (max-width: 992px){.centered-page .full-page-panel p{width:100%}}.centered-page .full-page-panel .card-panel h4{margin-bottom:0.5rem;margin-top:0}.centered-page .full-page-panel .card .card-title{font-size:1.5rem;font-weight:500}.centered-page .full-page-panel .card .card-image-centered{height:320px;margin-top:2rem;max-width:80%}.centered-page .full-page-panel .card p{margin-top:0.5rem}.centered-page .full-page-panel .card .no-title p{margin-top:0}.centered-page .full-page-panel .card .left-img{float:left;margin:0 1rem 0 0;width:50%}@media only screen and (max-width: 992px){.centered-page .full-page-panel .card .left-img{float:none;margin:0 0 1rem;width:100%}}.centered-page .full-page-panel .floating-image{max-height:410px;max-width:50%;position:absolute;right:0;top:3rem;width:auto}@media only screen and (max-width: 1280px){.centered-page .full-page-panel .floating-image{top:9rem}}@media only screen and (max-width: 600px){.centered-page .full-page-panel .floating-image{left:auto;max-height:none;max-width:none;position:relative;right:-10px;top:0;width:100%}}.centered-page .full-page-panel .floating-image.bottom{left:48%;max-height:620px;max-width:46%}@media only screen and (max-width: 600px){.centered-page .full-page-panel .floating-image.bottom{left:auto;max-height:none;max-width:none;right:0}}@media only screen and (max-width: 600px){.centered-page .full-page-panel .compare{padding:0.75rem}}.centered-page .full-page-panel #printers .row{line-height:normal}.centered-page .bullet-list{padding-left:15px;text-align:left}.centered-page .bullet-list li{color:#666;font-size:0.8rem;line-height:1.8rem;list-style-type:disc}.centered-page .bullet-list li span{color:rgba(0,0,0,0.87);font-size:1rem}.centered-page .important-text{border-left:4px solid #1e88e5;font-weight:200;padding-left:1rem}.centered-page .light-text{font-weight:200}.centered-page .light-text strong{font-weight:400}.centered-page .static-text{font-size:1.1rem}.centered-page .btn-see-pricing{background:transparent;border:1px solid #fff;border-radius:4px;color:#fff;font-family:Roboto, sans-serif;font-size:1rem;line-height:1.7rem;padding:0 0.5rem}.centered-page .btn-see-pricing:hover{background-color:rgba(255,255,255,0.25)}.centered-page .pricing-modal{top:25% !important}.centered-page .pricing-modal .modal-content{padding:0}.centered-page .pricing-modal .modal-content .header .tabs,.centered-page .pricing-modal .modal-content .header .static-tabs{height:auto}.centered-page .pricing-modal .modal-content .header .tabs .tab,.centered-page .pricing-modal .modal-content .header .static-tabs .tab,.centered-page .pricing-modal .modal-content .header .tabs a,.centered-page .pricing-modal .modal-content .header .static-tabs a{height:auto}.centered-page .pricing-modal .modal-content .tabs,.centered-page .pricing-modal .modal-content .static-tabs{border-bottom:1px solid #ccc}.centered-page .pricing-modal .modal-content .tabs .indicator,.centered-page .pricing-modal .modal-content .static-tabs .indicator{display:none}.centered-page .pricing-modal .modal-content .tabs .tab a.active,.centered-page .pricing-modal .modal-content .static-tabs .tab a.active{background-color:#fff;border-left:1px solid #dabdbd;border-right:1px solid #dabdbd}.centered-page .pricing-modal .modal-content .section{padding:0}.centered-page .pricing-modal .modal-content .wholesale-note{font-size:0.75rem;padding:0 5px}.sizing-guide{margin:auto;max-width:700px}.sizing-guide.top-only .card-content .row .col:last-child,.sizing-guide.top-only .card-content .row .card-wrap:last-child{height:262px}.sizing-guide .card-content{padding:0}.sizing-guide .card-content .row .col:first-child,.sizing-guide .card-content .row .card-wrap:first-child{padding-bottom:0.8rem;padding-top:0.8rem}.sizing-guide .card-content .row .col:last-child,.sizing-guide .card-content .row .card-wrap:last-child{border-left:1px solid #d0d0d0;color:#202020;padding-left:0}@media only screen and (max-width: 600px){.sizing-guide .card-content .row .col:last-child,.sizing-guide .card-content .row .card-wrap:last-child{border:0;height:auto;padding-left:0.75rem}}.sizing-guide .card-content .row .col:last-child table thead tr th,.sizing-guide .card-content .row .card-wrap:last-child table thead tr th{padding-left:0;padding-right:0;width:16%}.sizing-guide .card-content .row .col:last-child table thead tr th:first-child,.sizing-guide .card-content .row .card-wrap:last-child table thead tr th:first-child{width:20%}.sizing-guide .card-content .row .col:last-child table thead tr th p,.sizing-guide .card-content .row .card-wrap:last-child table thead tr th p{border-right:1px solid #f2f2f2}.sizing-guide .card-content .row .col:last-child table thead tr th p:first-child,.sizing-guide .card-content .row .card-wrap:last-child table thead tr th p:first-child{font-size:1.2rem}.sizing-guide .card-content .row .col:last-child table thead tr th p:last-child,.sizing-guide .card-content .row .card-wrap:last-child table thead tr th p:last-child{color:#9d9d9d;font-size:0.9rem;font-weight:400}.sizing-guide .card-content .row .col:last-child table thead tr th:last-child p,.sizing-guide .card-content .row .card-wrap:last-child table thead tr th:last-child p{border:none}.sizing-guide .card-content .row .col:last-child table tbody tr td,.sizing-guide .card-content .row .card-wrap:last-child table tbody tr td{width:16%}.sizing-guide .card-content .row .col:last-child table tbody tr td:first-child,.sizing-guide .card-content .row .card-wrap:last-child table tbody tr td:first-child{padding-left:1.5rem;text-align:left;width:20%}.sizing-guide .card-content .row .col:last-child>p,.sizing-guide .card-content .row .card-wrap:last-child>p{font-size:0.8rem;line-height:2.5;padding-left:2rem;padding-top:1.5rem}.product-page-v3.centered-page .fixed-page-title{background-color:#fff;box-shadow:0 4px 50px rgba(0,0,0,0.1);height:60px;left:0;line-height:60px;margin-bottom:120px;margin-top:0;position:sticky;text-align:left;top:60px;width:100%;z-index:21}.product-page-v3.centered-page .fixed-page-title .btn-2020-pink,.product-page-v3.centered-page .fixed-page-title .btn-2020-pink-big{display:none}@media only screen and (max-width: 899px){.product-page-v3.centered-page .fixed-page-title{margin-bottom:0;margin-top:0}}.product-page-v3.centered-page .fixed-page-title .title{color:#444;font-family:'Bebas Neue', serif;font-size:2rem;font-weight:500;margin:0}@media only screen and (max-width: 600px){.product-page-v3.centered-page .fixed-page-title .title{font-size:1.1rem}}.product-page-v3.centered-page .full-page-panel{padding:3rem 0}.product-page-v3.centered-page .full-page-panel.img-bg.header{height:900px;min-height:600px;padding-bottom:0}.product-page-v3.centered-page .full-page-panel.img-bg.header h1,.product-page-v3.centered-page .full-page-panel.img-bg.header .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v3.centered-page .full-page-panel.img-bg.header .breadcrumbs{font-size:2.5rem;font-weight:600}.product-page-v3.centered-page .full-page-panel.img-bg.header p{font-size:1.5rem}@media only screen and (max-width: 600px){.product-page-v3.centered-page .full-page-panel.img-bg.header p{font-size:1rem}}@media only screen and (max-width: 992px){.product-page-v3.centered-page .full-page-panel.img-bg.header{height:750px}}@media only screen and (max-width: 600px){.product-page-v3.centered-page .full-page-panel.img-bg.header{height:600px}}.product-page-v3.centered-page .full-page-panel h2{font-size:2.4rem;font-weight:600;margin:0 0 2rem}@media only screen and (max-width: 600px){.product-page-v3.centered-page .full-page-panel h2{padding:0 0.5rem}}.product-page-v3.centered-page .full-page-panel h2+.flow-text,.product-page-v3.centered-page .full-page-panel h2+.important-text{margin:-1.5rem auto 2rem;max-width:960px}.product-page-v3.centered-page .full-page-panel ul{margin:0}@media only screen and (max-width: 600px){.product-page-v3.centered-page .full-page-panel{padding:2rem 0}}.product-page-v3.centered-page .full-page-panel.list-layout{padding-bottom:0}.product-page-v3.centered-page .full-page-panel.header .flow-text,.product-page-v3.centered-page .full-page-panel.header .important-text{font-weight:400}.product-page-v3.centered-page .full-page-panel.section-details .staggered-list li{max-width:100%}.product-page-v3.centered-page .full-page-panel.section-details .staggered-list li p{font-size:0.95rem}.product-page-v3.centered-page .full-page-panel.section-ways-to-wear .staggered-list li{max-width:100%}.product-page-v3.centered-page .full-page-panel.section-ways-to-wear .staggered-list li p{font-size:0.95rem}.product-page-v3.centered-page .full-page-panel.section-care-instructions .detail-block img{margin-bottom:1rem}.product-page-v3.centered-page .full-page-panel.section-care-instructions .detail-block p{font-size:1rem}.product-page-v3.centered-page .full-page-panel .flow-text-bg{background:linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);background:linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);bottom:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);height:40%;left:0;overflow:hidden;position:absolute;right:0;width:100%}.product-page-v3.centered-page .full-page-panel .flow-text-wrap{bottom:3rem;left:50%;margin:0;max-width:960px;position:absolute;width:100%}@media only screen and (max-width: 600px){.product-page-v3.centered-page .full-page-panel .flow-text-wrap{bottom:1rem}}.product-page-v3.centered-page .full-page-panel .flow-text-wrap p{left:-50%;margin:0;padding:0 1rem;position:relative;text-align:center}.product-page-v3.centered-page .full-page-panel .bottom-title .flow-text-bg{height:60%}@media only screen and (max-width: 992px){.product-page-v3.centered-page .full-page-panel .bottom-title .flow-text-bg{height:70%}}.product-page-v3.centered-page .full-page-panel .bottom-title h1,.product-page-v3.centered-page .full-page-panel .bottom-title .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v3.centered-page .full-page-panel .bottom-title .breadcrumbs{left:-50%;padding:0 1rem;position:relative}.product-page-v3.centered-page .full-page-panel .hero-image-wrap{height:100%;overflow:hidden;position:relative;top:0;width:100%}.product-page-v3.centered-page .detail-block{margin-bottom:3rem;padding:0 2rem}@media only screen and (max-width: 600px){.product-page-v3.centered-page .detail-block{margin-bottom:2rem}}.product-page-v3.centered-page .detail-block img{margin-bottom:1.5rem}.product-page-v3.centered-page .detail-block .img-wrap{height:200px;line-height:200px;margin-bottom:1.5rem;position:relative}.product-page-v3.centered-page .detail-block .img-wrap img{margin-bottom:0;vertical-align:bottom}.product-page-v3.centered-page .detail-block .img-wrap .animated{bottom:0;display:none;left:50%;margin-left:-100px;position:absolute}.product-page-v3.centered-page .detail-block .img-wrap:hover .animated{display:inline-block}@media only screen and (max-width: 600px){.product-page-v3.centered-page .detail-block .img-wrap{height:auto;line-height:normal}}.product-page-v3.centered-page .detail-block h4{font-size:1.2rem;margin:0}.product-page-v3.centered-page .detail-block p{font-size:1.1rem;font-weight:300;margin:0}.product-page-v3.centered-page .detail-block p.or{font-size:1.5rem;font-weight:600;margin:1.5rem auto}.product-page-v3.centered-page .detail-block a{color:#fff}.product-page-v3.centered-page .detail-block a:hover{text-decoration:none}.product-page-v3.centered-page .detail-block .learn-more{font-size:1.1rem;font-weight:300;text-decoration:underline}.product-page-v3.centered-page .detail-block .learn-more:hover{text-decoration:underline}.product-page-v3.centered-page .detail-block.vertical-block{margin-bottom:2rem;max-width:420px;min-height:60px}.product-page-v3.centered-page .detail-block.vertical-block img{float:left;margin-bottom:2rem;margin-right:1.5rem}.product-page-v3.centered-page .detail-block.vertical-block .text-wrap{margin-left:calc(60px + 1.5rem)}.product-page-v3.centered-page .detail-block.vertical-block h4{font-size:1.1rem}.product-page-v3.centered-page .detail-block.vertical-block p{font-size:1rem}.product-page-v3.centered-page .detail-block.vertical-block a{text-decoration:underline}.product-page-v3.centered-page .detail-block.tight-block{padding:0}.product-page-v3.centered-page .circle-block img{max-width:300px;width:100%}@media only screen and (max-width: 600px){.product-page-v3.centered-page .circle-block img{max-width:200px}}.product-page-v3.centered-page .size-block-section{font-size:0}.product-page-v3.centered-page .size-block-section .size-block{display:inline-block;float:none;font-size:1rem;margin-top:2rem;vertical-align:bottom}.product-page-v3.centered-page .size-block-section h4{font-size:1.3rem;margin:0.5rem 0 0}.product-page-v3.centered-page .section-ways-to-wear img{max-width:300px;width:100%}@media only screen and (max-width: 600px){.product-page-v3.centered-page .section-ways-to-wear img{max-width:200px}}.product-page-v3.centered-page .section-pair-it-with .img-wrap{height:320px;line-height:320px}@media only screen and (max-width: 600px){.product-page-v3.centered-page .section-pair-it-with .img-wrap{height:auto;line-height:normal}}.product-page-v3.centered-page .section-pair-it-with img{max-height:320px;max-width:100%}@media only screen and (max-width: 600px){.product-page-v3.centered-page .section-pair-it-with img{max-height:none;width:300px}}.product-page-v3.centered-page .section-pair-it-with h4{font-size:1.4rem}.product-page-v3.centered-page .section-pair-it-with .detail-block p{font-size:1.2rem}.product-page-v3.centered-page .section-sell img{max-width:200px}@media only screen and (max-width: 600px){.product-page-v3.centered-page .section-sell p{margin:auto;max-width:250px}}@media only screen and (max-width: 992px){.product-page-v3.centered-page .section-sell .block-or{line-height:250px}}@media only screen and (max-width: 600px){.product-page-v3.centered-page .section-sell .block-or{line-height:normal}}@media only screen and (min-width: 993px){.product-page-v3.centered-page .section-sell .block-two .img-wrap{height:auto;line-height:normal}}@keyframes heartbeat{0.00%{transform:scale(1)}6.25%{transform:scale(1)}8.75%{transform:scale(0.9)}11.25%{transform:scale(1.1)}13.75%{transform:scale(0.9)}16.25%{transform:scale(1.1)}18.75%{transform:scale(1)}25.00%{transform:scale(1)}100%{transform:scale(1)}}@keyframes tada{0%{transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}1.25%,2.5%{transform:scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);transform:scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)}3.75%,6.25%,8.75%,11.25%{transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)}5%,7.5%,10%{transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)}12.5%,100%{transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}.bg-vector{opacity:0.2;position:absolute}.heartbeat-animation{animation:heartbeat 8s infinite}.heartbeat-animation.heartbeat-1{animation-delay:1s}.heartbeat-animation.heartbeat-2{animation-delay:4s}.heartbeat-animation.heartbeat-3{animation-delay:6.5s}.tada-animation{animation:tada 8s infinite}.tada-animation.tada-1{animation-delay:0s}.tada-animation.tada-2{animation-delay:3s}.tada-animation.tada-3{animation-delay:6s}@keyframes zoomIn{from{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}100%{opacity:1;transform:none}}.zoom-in-animation{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}.zoom-in-animation.animated{animation-duration:0.5s;animation-fill-mode:both;animation-name:zoomIn}@media only screen and (min-width: 601px){.section-ways-to-wear .detail-block.zoom-in-animation:nth-child(2){animation-delay:0.1s}.section-ways-to-wear .detail-block.zoom-in-animation:nth-child(4){animation-delay:0.1s}}@media only screen and (min-width: 993px){.section-ways-to-wear .detail-block.zoom-in-animation:nth-child(2){animation-delay:0.1s}.section-ways-to-wear .detail-block.zoom-in-animation:nth-child(3){animation-delay:0.2s}.section-ways-to-wear .detail-block.zoom-in-animation:nth-child(4){animation-delay:0.3s}}.orderfulfillment-page.centered-page .full-page-panel{background-repeat:no-repeat;background-size:cover}.orderfulfillment-page.centered-page .full-page-panel h1,.orderfulfillment-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .orderfulfillment-page.centered-page .full-page-panel .breadcrumbs{font-size:3.6rem;font-weight:bold}.orderfulfillment-page.centered-page #page-banner{background-color:#616161;padding:3rem 0}.orderfulfillment-page.centered-page #page-banner .container{max-width:75rem}.orderfulfillment-page.centered-page #page-banner .title p{font-size:1.2rem}.orderfulfillment-page.centered-page #page-banner .followers-love{margin-bottom:2rem}.orderfulfillment-page.centered-page #page-banner .img{margin-top:5rem}.orderfulfillment-page.centered-page #page-banner .img p{font-size:1.75rem;font-weight:bold;margin-top:0}.orderfulfillment-page.centered-page #page-banner .img p span{color:#ec407a !important}.orderfulfillment-page.centered-page #page-banner .img div:nth-child(1) .img-wrap img{min-width:80%}.orderfulfillment-page.centered-page #separator{background-color:#757575;padding:0}.orderfulfillment-page.centered-page #separator .arrow{border-top:20px solid #616161;margin:auto}.orderfulfillment-page.centered-page #sell-directly{background-color:#757575;padding:5.33333rem 0}.orderfulfillment-page.centered-page #sell-directly p{font-size:1.75rem;font-weight:bold}.orderfulfillment-page.centered-page #aow-lifecycle{background-color:#039be5;padding:5.33333rem 0}@media only screen and (max-width: 930px){.orderfulfillment-page.centered-page #aow-lifecycle .img-wrap img{max-width:100%}}.orderfulfillment-page.centered-page #available-products{background-color:#ffecb3}.orderfulfillment-page.centered-page #aow-workshop{background-image:url(https://static.artofwhere.net/img2/img/pages/drop-ship/main-page/workshop-0bd23fac3752d4eb569d.jpg);background-position:center;background-repeat:no-repeat;padding:2rem 0}.orderfulfillment-page.centered-page #aow-workshop .flow-text-bg{background:linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);margin:-2rem 0;padding:5.33333rem 0}.orderfulfillment-page.centered-page #aow-workshop .flow-text-bg h1,.orderfulfillment-page.centered-page #aow-workshop .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .orderfulfillment-page.centered-page #aow-workshop .flow-text-bg .breadcrumbs{margin-bottom:0}.orderfulfillment-page.centered-page #aow-rockit{background-color:#424242;padding-bottom:5.33333rem;padding-top:1rem}.orderfulfillment-page.centered-page #aow-rockit .container{max-width:70rem}.orderfulfillment-page.centered-page #get-started{background-color:#2196f3;padding:5.33333rem 0}.orderfulfillment-page.centered-page #get-started h1,.orderfulfillment-page.centered-page #get-started .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .orderfulfillment-page.centered-page #get-started .breadcrumbs{margin-bottom:0}.orderfulfillment-page.centered-page #get-started p{margin-top:0}.orderfulfillment-page.centered-page #get-started .get-started{margin-top:1rem;position:relative}.orderfulfillment-page.centered-page #get-started .get-started a{margin-left:-140px;margin-top:2.2rem}@media only screen and (max-width: 760px){.orderfulfillment-page.centered-page #get-started .get-started a{margin-left:-124px;margin-top:0;position:absolute;top:30%}}@media only screen and (max-width: 342px){.orderfulfillment-page.centered-page #get-started .get-started a{margin-left:-50px}}.drop-ship-page .all-in-one{background-color:#424242;font-family:'Roboto';padding:5.33333rem 0}.drop-ship-page .all-in-one .container{max-width:75rem}.drop-ship-page .all-in-one p{margin-top:0;max-width:70%}.drop-ship-page .all-in-one i{font-size:4em;vertical-align:middle}.drop-ship-page .all-in-one .bullet-icon{background-color:transparent;height:100px;margin-top:0;width:100px}.drop-ship-page .all-in-one .bullet-icon img{padding-top:2rem;position:absolute}.drop-ship-page .available-products{padding:5.33333rem 0}.drop-ship-page .available-products .bullet-icon{background:transparent;margin-bottom:2.5rem;margin-top:0}.drop-ship-page .available-products h4{margin-bottom:0}.drop-ship-page .available-products p{margin-top:0}@media only screen and (max-width: 370px){.drop-ship-page .available-products p br:last-child{display:block !important}}.drop-ship-page .aow-integration{padding:5.33333rem 0}.drop-ship-page .aow-integration h1,.drop-ship-page .aow-integration .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .drop-ship-page .aow-integration .breadcrumbs{margin-bottom:0}.drop-ship-page .aow-integration .sell-img{padding-bottom:1rem;padding-top:1rem}.drop-ship-page .aow-integration .sell-img img{width:25rem}.drop-ship-page .aow-integration .sell-img p{margin-bottom:0}.drop-ship-page .integrations a{background-color:#cfd8dc;box-shadow:0 2px 1px rgba(33,33,33,0.6);height:auto;margin:0.5rem}.drop-ship-page .integrations a img{display:block;width:250px}.drop-ship-page .branding-options{font-family:'Roboto';padding:5.33333rem 0}.drop-ship-page .branding-options .bullet-icon{background:transparent;min-width:210px}.drop-ship-page .branding-options h5{font-size:1.3rem;margin-bottom:0;margin-top:0}.drop-ship-page .branding-options p{margin:auto;margin-top:0;max-width:70%}.drop-ship-page #comparison-chart{font-family:'Roboto'}.drop-ship-page #comparison-chart h1,.drop-ship-page #comparison-chart .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .drop-ship-page #comparison-chart .breadcrumbs{color:#fff}@media only screen and (max-width: 600px){.drop-ship-page #comparison-chart{background:#e6e6e6}.drop-ship-page #comparison-chart h1,.drop-ship-page #comparison-chart .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .drop-ship-page #comparison-chart .breadcrumbs{color:#333}}.drop-ship-page #comparison-chart table{margin:3rem auto;max-width:1000px}.drop-ship-page #comparison-chart table h5{font-weight:bold;margin:0}.drop-ship-page #comparison-chart table tr{border-bottom:1px solid #d0d0d0}.drop-ship-page #comparison-chart table th,.drop-ship-page #comparison-chart table td{border-right:1px solid #d0d0d0}.drop-ship-page #comparison-chart table th,.drop-ship-page #comparison-chart table td{padding:1.25rem;position:relative;text-align:center;width:11rem}.drop-ship-page #comparison-chart table td.cost{text-align:left;width:13rem}.drop-ship-page #comparison-chart table td i{vertical-align:middle}.drop-ship-page #comparison-chart table td a{font-size:12px;font-weight:bold}.drop-ship-page #comparison-chart table td .mark{font-size:2.75rem}.drop-ship-page #comparison-chart table td .info{font-size:18px;margin-left:0.5rem}.drop-ship-page #comparison-chart table td .info.big{margin-top:1rem;vertical-align:top}.drop-ship-page #comparison-chart table td .lightning{display:inline-block}.drop-ship-page #comparison-chart table .integration-img{height:5rem;margin-bottom:0.5rem;width:5rem}.drop-ship-page #comparison-chart table .integration-img.etsy{height:2.75rem;width:5.5rem}.drop-ship-page #comparison-chart #mobile-comparison{margin-top:-3rem}.drop-ship-page #comparison-chart #mobile-comparison .arrows{margin:0 auto;max-width:400px;padding:0 2rem;position:relative;top:7.75rem}.drop-ship-page #comparison-chart #mobile-comparison .arrows .arrow{background:#d4d4d4;border-radius:50%;cursor:pointer;height:36px;position:relative;user-select:none;width:36px;z-index:1}.drop-ship-page #comparison-chart #mobile-comparison .arrows .arrow i{font-size:30px;margin-top:0.2rem}.drop-ship-page #comparison-chart #mobile-comparison #comparison-list{border:1px solid #d0d0d0;border-radius:5px;height:776px;overflow:hidden;padding:1rem 0;position:relative;width:100%}.drop-ship-page #comparison-chart #mobile-comparison .integration-store{display:none;position:absolute;transition:all 0.15s ease-in-out;width:100%}.drop-ship-page #comparison-chart #mobile-comparison .integration-store.active{display:block}.drop-ship-page #comparison-chart #mobile-comparison .integration-store h3{font-size:1.6rem;font-weight:bold}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .learn{display:block;font-weight:bold;margin-bottom:0.75rem}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .integration-img{height:7rem;width:7rem}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .integration-img.etsy{height:4.75rem;width:8.5rem}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .title{background:#333;color:#fff;font-size:1.25rem;margin:0;padding:1rem 0}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .details{padding:2.5rem 0}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .details p{font-size:1.3rem;font-weight:bold;margin:0}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .details p:nth-child(2){margin-top:1rem}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .details .mark{font-size:2.75rem}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .details .info{font-size:18px;margin-left:0.5rem}.drop-ship-page #comparison-chart #mobile-comparison .integration-store .details .info.big{margin-top:1rem;vertical-align:top}.drop-ship-page #packaging{background-color:#e6e6e6}.drop-ship-page #packaging .tabs,.drop-ship-page #packaging .static-tabs{border-bottom:none}@media only screen and (max-width: 600px){.orderfulfillment-page.centered-page #aow-workshop p,.orderfulfillment-page.centered-page #aow-rockit p,.orderfulfillment-page.centered-page #get-started p{font-size:1.4rem}.drop-ship-page h1,.drop-ship-page .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .drop-ship-page .breadcrumbs{line-height:45px}.drop-ship-page .all-in-one .bullet-icon{margin-bottom:0;max-width:5.167rem;position:relative}.drop-ship-page .all-in-one .bullet-icon img{bottom:0;padding-bottom:0.5rem}.drop-ship-page .all-in-one .options-details{text-align:center}.drop-ship-page .all-in-one h3{font-size:2rem;margin-top:0}.drop-ship-page .all-in-one p{font-size:1.4rem;margin:auto}.drop-ship-page .available-products .subtitle{font-size:1.4rem}.drop-ship-page .available-products .bullet-icon{height:auto;margin-bottom:0;min-height:170px;position:relative}.drop-ship-page .available-products .bullet-icon img{bottom:0;left:0;position:absolute}.drop-ship-page .available-products .product{margin-bottom:1.5rem}.drop-ship-page .available-products h4{font-size:1.5rem;margin-top:0.5rem}.drop-ship-page .available-products .products:nth-child(2) .product:nth-child(1) img{margin-left:1rem;max-width:75%}.drop-ship-page .available-products .products:nth-child(2) .product:nth-child(3) img{margin-left:2.5rem;max-width:56%}.drop-ship-page .available-products .products:nth-child(3) .product:nth-child(1) img,.drop-ship-page .available-products .products:nth-child(3) .product:nth-child(3) img{margin-left:2.3rem;max-width:55%}.drop-ship-page .available-products .products:nth-child(3) .product:nth-child(1) h4{letter-spacing:-0.5px}.drop-ship-page .aow-integration p,.drop-ship-page .packaging p{font-size:1.4rem}.drop-ship-page .branding-options .bullet-icon{height:auto;margin-bottom:0;max-width:190px}.drop-ship-page .branding-options h5{font-size:2rem}.drop-ship-page .branding-options p{font-size:1.4rem}}.production-and-shipping-page.centered-page{overflow:hidden}.production-and-shipping-page.centered-page #section-turnaround-time-v2{padding:0 2rem 2rem}.production-and-shipping-page.centered-page #section-turnaround-time-v2 h2{margin:2rem 0}.production-and-shipping-page.centered-page #section-turnaround-time-v2 .container{max-width:900px}.production-and-shipping-page.centered-page #section-turnaround-time-v2 .container>.info-badge{margin-bottom:1rem;margin-top:-1rem}.production-and-shipping-page.centered-page #product_estimates .collapsible{background:rgba(0,0,0,0);border:none;box-shadow:none;margin-bottom:0.5rem}.production-and-shipping-page.centered-page #product_estimates .collapsible:first-of-type{margin-top:0}.production-and-shipping-page.centered-page #product_estimates .collapsible-empty{cursor:default;pointer-events:none}.production-and-shipping-page.centered-page #product_estimates .collapsible-header{margin-bottom:2px;padding:0}.production-and-shipping-page.centered-page #product_estimates .collapsible-header.active i::after{transform:rotate(90deg) translateY(-2px)}.production-and-shipping-page.centered-page #product_estimates .collapsible-header i{background:rgba(0,0,0,0.1);color:rgba(0,0,0,0);float:right !important;font-size:2rem;height:4rem;line-height:4rem;margin:0;padding:0 1rem;width:auto}.production-and-shipping-page.centered-page #product_estimates .collapsible-header i::after{color:black;content:'\203A';font-family:monospace;position:absolute;right:0;top:0;transform:translateY(-1px);transition:transform 100ms;width:4rem}.production-and-shipping-page.centered-page #product_estimates .collapsible-header h3{float:left;line-height:4rem;margin:0 0 0 1rem;text-transform:uppercase}.production-and-shipping-page.centered-page #product_estimates .collapsible-header>span{float:right;line-height:1.5rem;margin:0 1rem 0 0.5rem;text-align:right;text-transform:initial}.production-and-shipping-page.centered-page #product_estimates .collapsible-header>span:first-of-type{margin-top:0.5rem}.production-and-shipping-page.centered-page #product_estimates .collapsible-header>span .extra{color:#a6a6a6;font-style:italic;font-weight:400}.production-and-shipping-page.centered-page #product_estimates .collapsible-body{background:#fff;padding:0.5rem 1rem}.production-and-shipping-page.centered-page #product_estimates .collapsible-body li{font-weight:500;height:2.5rem;line-height:2.5rem}.production-and-shipping-page.centered-page #product_estimates .collapsible-body .product_header{color:#a6a6a6;font-style:italic;font-weight:400}.production-and-shipping-page.centered-page #product_estimates .collapsible-body .production_time{float:right}.production-and-shipping-page.centered-page .full-page-panel{background-repeat:no-repeat;background-size:cover}.production-and-shipping-page.centered-page .full-page-panel h1,.production-and-shipping-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .production-and-shipping-page.centered-page .full-page-panel .breadcrumbs{text-shadow:1px 1.732px 1px rgba(0,0,0,0.11)}.production-and-shipping-page.centered-page .full-page-panel h2{font-family:'Roboto', serif;font-size:36px;font-weight:bold;margin-bottom:2rem}.production-and-shipping-page.centered-page .full-page-panel h3{font-size:21px;font-weight:bold;margin-top:2rem}.production-and-shipping-page.centered-page .full-page-panel p:not(.flow-text){font-size:15px;line-height:26px;margin:0}.production-and-shipping-page.centered-page .full-page-panel .table-warning{color:#f600be}.production-and-shipping-page.centered-page .full-page-panel .table-warning i{vertical-align:bottom}.production-and-shipping-page.centered-page .full-page-panel .table-notice{float:left;font-style:italic}.production-and-shipping-page.centered-page .full-page-panel sub.table-notice{margin-top:1.5rem}.production-and-shipping-page.centered-page .full-page-panel p.table-notice{margin-bottom:1rem}.production-and-shipping-page.centered-page .full-page-panel .section-emphasis{border-left:4px solid #f600be;font-size:25px;line-height:36px;margin:3rem 0;padding-left:1rem}.production-and-shipping-page.centered-page .full-page-panel .section-footer{background:rgba(255,255,255,0.5);margin-top:5rem;padding:3rem 0}.production-and-shipping-page.centered-page .full-page-panel .section-footer p{font-size:25px;line-height:36px}.production-and-shipping-page.centered-page .full-page-panel#section-header{background-image:url(https://static.artofwhere.net/img2/img/pages/production-and-shipping/production-and-shipping-back1-2e74e65b49090073b80c.jpg);padding-bottom:8rem;padding-top:16rem}.production-and-shipping-page.centered-page .full-page-panel#section-cutoff-dates table thead>tr{background-color:#f06292;color:#fff}.production-and-shipping-page.centered-page .full-page-panel#section-cutoff-dates table thead>tr th{border-radius:0;vertical-align:text-bottom}.production-and-shipping-page.centered-page .full-page-panel#section-cutoff-dates table tbody{font-weight:bold}.production-and-shipping-page.centered-page .full-page-panel#section-cutoff-dates table tbody tr>td:nth-child(1){color:#f06292}.production-and-shipping-page.centered-page .full-page-panel#section-cutoff-dates .container{max-width:900px}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time{padding:2rem 0}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time h2{margin-bottom:1rem}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .pink-text,.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time label{margin-bottom:2rem}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .container{max-width:900px}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .row>.col:first-of-type,.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .row>.card-wrap:first-of-type{font-weight:500;text-align:left}@media only screen and (min-width: 601px){.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .row>.col:first-of-type,.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .row>.card-wrap:first-of-type{text-align:right}}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time-help{font-weight:500;text-align:left}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time{color:white}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time span{display:flex;flex-flow:column;float:left;justify-content:space-around;line-height:1.1rem;min-height:3rem;padding:0 1rem}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time span:nth-of-type(1){background:#1e88e5;text-align:right}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time span:nth-of-type(2){background:#f600be;max-width:30%;text-align:left}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='1']:not(#not) span:nth-of-type(1){width:6.6%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='2']:not(#not) span:nth-of-type(1){width:13.3%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='3']:not(#not) span:nth-of-type(1){width:20%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='4']:not(#not) span:nth-of-type(1){width:26.6%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='5']:not(#not) span:nth-of-type(1){width:33.3%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='6']:not(#not) span:nth-of-type(1){width:40%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='7']:not(#not) span:nth-of-type(1){width:46.6%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='8']:not(#not) span:nth-of-type(1){width:53.3%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='9']:not(#not) span:nth-of-type(1){width:60%}.production-and-shipping-page.centered-page .full-page-panel#section-turnaround-time .production-time[data-production-days='10']:not(#not) span:nth-of-type(1){width:66.6%}.production-and-shipping-page.centered-page .full-page-panel#section-rush{background-image:url(https://static.artofwhere.net/img2/img/pages/production-and-shipping/christmas-3f896766de6f24da2109.jpg);background-size:cover;padding:4rem 0;text-shadow:0 1px 10px rgba(0,0,0,0.5)}@media only screen and (max-width: 992px){.production-and-shipping-page.centered-page .full-page-panel#section-rush{padding:4rem 0}}@media only screen and (max-width: 600px){.production-and-shipping-page.centered-page .full-page-panel#section-rush{padding:2rem 0}}.production-and-shipping-page.centered-page .full-page-panel#section-transit table td{text-align:center}.production-and-shipping-page.centered-page .full-page-panel#section-transit table td.td-country{background:#f2f2f2;border:1px solid #d0d0d0}.production-and-shipping-page.centered-page .full-page-panel#section-transit p{margin-top:2rem}.production-and-shipping-page.centered-page .full-page-panel#section-shipping{background:#f3f3f3;padding-bottom:0}.production-and-shipping-page.centered-page .full-page-panel#section-shipping .col,.production-and-shipping-page.centered-page .full-page-panel#section-shipping .card-wrap{padding:0 1.5rem}.production-and-shipping-page.centered-page .full-page-panel#section-shipping .col,.production-and-shipping-page.centered-page .full-page-panel#section-shipping .card-wrap,.production-and-shipping-page.centered-page .full-page-panel#section-shipping p{text-align:left}.production-and-shipping-page.centered-page .full-page-panel#section-shipping .row:nth-of-type(2){margin-top:2rem}.production-and-shipping-page.centered-page .full-page-panel#section-shipping img{float:left;width:4rem}.production-and-shipping-page.centered-page .full-page-panel#section-shipping .section-shipping_entry>div{margin-bottom:3rem;padding-left:6rem}.production-and-shipping-page.centered-page .full-page-panel#section-shipping .section-shipping_entry>div h3{margin:0}.production-and-shipping-page.centered-page .full-page-panel#section-prices{background:#f3f3f3;padding-bottom:6rem}.production-and-shipping-page.centered-page .full-page-panel#section-prices .container{max-width:800px}.production-and-shipping-page.centered-page .full-page-panel#section-prices .container>p{font-size:12px;text-align:left}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .container{margin:0;max-width:100%;padding:0}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .row{margin:0}.production-and-shipping-page.centered-page .full-page-panel#section-timeline h2{margin:0 auto;max-width:510px}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps{margin:2rem 0 0;padding:0}@media only screen and (max-width: 760px){.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps{margin-top:3rem;padding:0 0.75rem}}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps #timeline-steps-list{height:166px;margin:0;position:relative}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps #timeline-steps-list li p{margin:0}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps #timeline-steps-list .timeline-step{opacity:0;position:absolute;top:0;transition:all 0.15s ease-in-out;width:100%}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps #timeline-steps-list .timeline-step.active{opacity:1}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps .arrows{bottom:8.75rem;margin:0 auto;max-width:340px;position:relative}@media only screen and (max-width: 760px){.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps .arrows{bottom:9.75rem}}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps .arrows .arrow{background:#fff;border-radius:50%;cursor:pointer;height:36px;user-select:none;width:36px}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps .arrows .arrow i{font-size:30px;margin-top:0.2rem}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps #timeline-img{height:50px;margin:2.75rem 0 0;position:relative}.production-and-shipping-page.centered-page .full-page-panel#section-timeline .timeline-steps #timeline-img img{height:50px;left:50%;margin-left:-25px;max-width:none;position:absolute;transition:all 0.25s ease-in-out}.etsy-page.centered-page .full-page-panel{background-repeat:no-repeat;background-size:cover}.etsy-page.centered-page .full-page-panel h1,.etsy-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .etsy-page.centered-page .full-page-panel .breadcrumbs{font-family:'Bebas Neue';font-size:3.6rem;font-weight:bold}.etsy-page.centered-page #shortcut{background-color:#fce3d3;padding:0.75rem 0}.etsy-page.centered-page #shortcut .container{padding:0 1.5rem}.etsy-page.centered-page #shortcut #info-list{margin:0}.etsy-page.centered-page #shortcut #info-list li{display:inline;padding:0 0.5rem}.etsy-page.centered-page #shortcut #info-list li a{color:rgba(0,0,0,0.87)}.etsy-page.centered-page #shortcut #info-list #get-started a{color:#fff}.etsy-page.centered-page #shortcut .dropdown-button i{font-size:1.5rem}.etsy-page.centered-page #shortcut #dropdown-etsy{margin-top:-0.75rem}.etsy-page.centered-page #shortcut #dropdown-etsy a{color:rgba(0,0,0,0.87);font-size:1rem;text-decoration:none}.etsy-page.centered-page #page-banner{background-color:#f27224;padding:8rem 0}.etsy-page.centered-page #page-banner .left-img{bottom:0;left:0;opacity:1;width:390px}.etsy-page.centered-page #page-banner .right-img{opacity:1;right:0;top:0%;width:315px}.etsy-page.centered-page #aow-approved{padding-bottom:2rem;padding-top:0.5rem}.etsy-page.centered-page #aow-approved .container{max-width:60rem}.etsy-page.centered-page #aow-approved p{font-size:1.75rem;font-weight:300}.etsy-page.centered-page #etsy-allow{background-color:#fafafa;padding-bottom:1rem;padding-top:0.5rem}.etsy-page.centered-page #etsy-allow .container{max-width:60rem}.etsy-page.centered-page #etsy-allow img{margin-top:-4rem}.etsy-page.centered-page #etsy-allow p{font-size:1.2rem;font-style:italic;font-weight:300}.etsy-page.centered-page #etsy-allow p .orange-text{font-weight:500}.etsy-page.centered-page #etsy-allow p .orange-text span{text-decoration:underline}.etsy-page.centered-page #etsy-links{padding-bottom:2rem;padding-top:1rem}.etsy-page.centered-page #etsy-links .container{max-width:60rem}.etsy-page.centered-page #etsy-links p{font-size:1.2rem;font-weight:300}.etsy-page.centered-page #available-products{background-color:#fff}.etsy-page.centered-page #overview{padding:0}.etsy-page.centered-page #overview .slider-btns{height:100%;position:absolute;top:0;width:100%;z-index:2}.etsy-page.centered-page #overview .slider,.etsy-page.centered-page #overview .slides{height:800px !important}@media only screen and (max-width: 600px){.etsy-page.centered-page #overview .slider,.etsy-page.centered-page #overview .slides{height:400px !important}}.etsy-page.centered-page #overview .slider-btn-next,.etsy-page.centered-page #overview .slider-btn-prev{align-items:center;cursor:pointer;display:flex;height:100%;width:50%}.etsy-page.centered-page #overview .slider-btn-next i,.etsy-page.centered-page #overview .slider-btn-prev i{font-size:3rem;position:absolute}.etsy-page.centered-page #overview .slider-btn-prev{float:left !important}.etsy-page.centered-page #overview .slider-btn-prev i{left:2rem}.etsy-page.centered-page #overview .slider-btn-next{float:right !important}.etsy-page.centered-page #overview .slider-btn-next i{right:2rem}.etsy-page.centered-page #integration{background-color:#ffe082}.etsy-page.centered-page #packaging p{margin-bottom:3rem}.etsy-page.centered-page #packaging .packaging-video .material-icons{background-color:#ff9800;border-radius:50%;color:#f5f7fa;cursor:pointer;font-size:3rem;left:47%;line-height:5rem;position:absolute;top:60%;width:5rem;z-index:3}@media only screen and (max-width: 600px){.etsy-page.centered-page #packaging .packaging-video .material-icons{left:45%;top:68%}}@media only screen and (max-width: 480px){.etsy-page.centered-page #packaging .packaging-video .material-icons{top:71%}}@media only screen and (max-width: 420px){.etsy-page.centered-page #packaging .packaging-video .material-icons{top:74%}}@media only screen and (max-width: 400px){.etsy-page.centered-page #packaging .packaging-video .material-icons{top:75%}}@media only screen and (max-width: 362px){.etsy-page.centered-page #packaging .packaging-video .material-icons{left:42%;top:76%}}@media only screen and (max-width: 332px){.etsy-page.centered-page #packaging .packaging-video .material-icons{top:78%}}@media only screen and (max-width: 600px){.etsy-page.centered-page #packaging video{max-width:300px}}.etsy-page.centered-page #packaging ul{background-color:transparent;overflow-x:hidden}.etsy-page.centered-page #packaging li>a{color:inherit;padding:0;text-transform:none}.etsy-page.centered-page #packaging .indicator{background-color:#ff9800}.etsy-page.centered-page #information .container{padding:0 1.5rem}.etsy-page.centered-page #information .tabs,.etsy-page.centered-page #information .static-tabs{border:0;height:auto;overflow:hidden}.etsy-page.centered-page #information .tabs .row,.etsy-page.centered-page #information .static-tabs .row{width:100%}.etsy-page.centered-page #information .tab{margin-bottom:1.5rem}.etsy-page.centered-page #information li>a{background-color:#e0e0e0;border-radius:2px;color:inherit;font-size:1rem;font-weight:500;max-width:34rem;padding:0;padding-left:0.75rem;text-align:left;text-transform:none}.etsy-page.centered-page #information li>a.active{background-color:#ff9800 !important;color:#fff}.etsy-page.centered-page #information .indicator{display:none}.etsy-page.centered-page #information .tab-content span{height:0.25rem;position:absolute;width:20rem}.etsy-page.centered-page #information .tab-content h2{margin-bottom:-0.5rem;margin-top:1.5rem}.etsy-page.centered-page #information .tab-content p{font-size:1.2rem;font-weight:300}@media only screen and (max-width: 760px){.etsy-page.centered-page #information{padding-bottom:0}.etsy-page.centered-page #information #info-etsy{display:none}.etsy-page.centered-page #information #info-etsy-collapsible{display:block !important}.etsy-page.centered-page #information #info-etsy-collapsible .collapsible-header{font-size:1.3rem;line-height:30px}.etsy-page.centered-page #information #info-etsy-collapsible .collapsible-header.active{background-color:#ff9800 !important;color:#fff}.etsy-page.centered-page #information #info-etsy-collapsible .collapsible-body p{font-size:1.2rem}}@media only screen and (max-width: 600px){.etsy-page.centered-page #page-banner #aow-etsy-vertical{max-width:70% !important}.etsy-page.centered-page #page-banner .left-img{max-width:70%}.etsy-page.centered-page #page-banner .right-img{max-width:55%}.etsy-page.centered-page #overview .carousel img{min-height:100%}.etsy-page.centered-page #packaging{font-size:1.4rem}}.shopify-page.centered-page .full-page-panel,.bigcartel-page.centered-page .full-page-panel,.woocommerce-page.centered-page .full-page-panel,.bigcommerce-page.centered-page .full-page-panel,.squarespace-page.centered-page .full-page-panel{background-repeat:no-repeat;background-size:cover}.shopify-page.centered-page .full-page-panel h1,.shopify-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .shopify-page.centered-page .full-page-panel .breadcrumbs,.bigcartel-page.centered-page .full-page-panel h1,.bigcartel-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .bigcartel-page.centered-page .full-page-panel .breadcrumbs,.woocommerce-page.centered-page .full-page-panel h1,.woocommerce-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .woocommerce-page.centered-page .full-page-panel .breadcrumbs,.bigcommerce-page.centered-page .full-page-panel h1,.bigcommerce-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .bigcommerce-page.centered-page .full-page-panel .breadcrumbs,.squarespace-page.centered-page .full-page-panel h1,.squarespace-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .squarespace-page.centered-page .full-page-panel .breadcrumbs{font-family:'Bebas Neue';font-size:3.6rem;font-weight:bold}.shopify-page.centered-page #shortcut,.bigcartel-page.centered-page #shortcut,.woocommerce-page.centered-page #shortcut,.bigcommerce-page.centered-page #shortcut,.squarespace-page.centered-page #shortcut{background-color:rgba(252,227,211,0.5);padding:0.75rem 0;z-index:9}.shopify-page.centered-page #shortcut .container,.bigcartel-page.centered-page #shortcut .container,.woocommerce-page.centered-page #shortcut .container,.bigcommerce-page.centered-page #shortcut .container,.squarespace-page.centered-page #shortcut .container{padding:0 1.5rem}.shopify-page.centered-page #shortcut #info-list,.bigcartel-page.centered-page #shortcut #info-list,.woocommerce-page.centered-page #shortcut #info-list,.bigcommerce-page.centered-page #shortcut #info-list,.squarespace-page.centered-page #shortcut #info-list{margin:0}.shopify-page.centered-page #shortcut #info-list li,.bigcartel-page.centered-page #shortcut #info-list li,.woocommerce-page.centered-page #shortcut #info-list li,.bigcommerce-page.centered-page #shortcut #info-list li,.squarespace-page.centered-page #shortcut #info-list li{display:inline;padding:0 0.5rem}.shopify-page.centered-page #shortcut #info-list li a,.bigcartel-page.centered-page #shortcut #info-list li a,.woocommerce-page.centered-page #shortcut #info-list li a,.bigcommerce-page.centered-page #shortcut #info-list li a,.squarespace-page.centered-page #shortcut #info-list li a{color:rgba(0,0,0,0.87)}.shopify-page.centered-page #shortcut #info-list #get-started a,.bigcartel-page.centered-page #shortcut #info-list #get-started a,.woocommerce-page.centered-page #shortcut #info-list #get-started a,.bigcommerce-page.centered-page #shortcut #info-list #get-started a,.squarespace-page.centered-page #shortcut #info-list #get-started a{color:#fff}.shopify-page.centered-page #shortcut .dropdown-button i,.bigcartel-page.centered-page #shortcut .dropdown-button i,.woocommerce-page.centered-page #shortcut .dropdown-button i,.bigcommerce-page.centered-page #shortcut .dropdown-button i,.squarespace-page.centered-page #shortcut .dropdown-button i{font-size:1.5rem}.shopify-page.centered-page #shortcut #dropdown-etsy,.bigcartel-page.centered-page #shortcut #dropdown-etsy,.woocommerce-page.centered-page #shortcut #dropdown-etsy,.bigcommerce-page.centered-page #shortcut #dropdown-etsy,.squarespace-page.centered-page #shortcut #dropdown-etsy{margin-top:-0.75rem}.shopify-page.centered-page #shortcut #dropdown-etsy a,.bigcartel-page.centered-page #shortcut #dropdown-etsy a,.woocommerce-page.centered-page #shortcut #dropdown-etsy a,.bigcommerce-page.centered-page #shortcut #dropdown-etsy a,.squarespace-page.centered-page #shortcut #dropdown-etsy a{color:rgba(0,0,0,0.87);font-size:1rem;text-decoration:none}.shopify-page.centered-page #page-banner,.bigcartel-page.centered-page #page-banner,.woocommerce-page.centered-page #page-banner,.bigcommerce-page.centered-page #page-banner,.squarespace-page.centered-page #page-banner{background:url(https://static.artofwhere.net/img2/img/pages/drop-ship/shopify/workshop-05506d3eda31c75f82a8.jpg) center center no-repeat;background-size:cover;height:100%;margin-top:-11rem;padding:19rem 0 8rem;width:100%}.shopify-page.centered-page #integration-txt,.bigcartel-page.centered-page #integration-txt,.woocommerce-page.centered-page #integration-txt,.bigcommerce-page.centered-page #integration-txt,.squarespace-page.centered-page #integration-txt{padding-bottom:2rem;padding-top:2rem}.shopify-page.centered-page #integration-txt .container,.bigcartel-page.centered-page #integration-txt .container,.woocommerce-page.centered-page #integration-txt .container,.bigcommerce-page.centered-page #integration-txt .container,.squarespace-page.centered-page #integration-txt .container{max-width:60rem}.shopify-page.centered-page #integration-txt p,.bigcartel-page.centered-page #integration-txt p,.woocommerce-page.centered-page #integration-txt p,.bigcommerce-page.centered-page #integration-txt p,.squarespace-page.centered-page #integration-txt p{font-size:1.2rem;line-height:2.2rem}.shopify-page.centered-page #integration,.bigcartel-page.centered-page #integration,.woocommerce-page.centered-page #integration,.bigcommerce-page.centered-page #integration,.squarespace-page.centered-page #integration{background-color:#ffe082}.shopify-page.centered-page #packaging p,.bigcartel-page.centered-page #packaging p,.woocommerce-page.centered-page #packaging p,.bigcommerce-page.centered-page #packaging p,.squarespace-page.centered-page #packaging p{margin-bottom:3rem}.shopify-page.centered-page #packaging .packaging-video .material-icons,.bigcartel-page.centered-page #packaging .packaging-video .material-icons,.woocommerce-page.centered-page #packaging .packaging-video .material-icons,.bigcommerce-page.centered-page #packaging .packaging-video .material-icons,.squarespace-page.centered-page #packaging .packaging-video .material-icons{background-color:#ff9800;border-radius:50%;color:#f5f7fa;cursor:pointer;font-size:3rem;left:47%;line-height:5rem;position:absolute;top:55%;width:5rem;z-index:3}@media only screen and (max-width: 600px){.shopify-page.centered-page #packaging .packaging-video .material-icons,.bigcartel-page.centered-page #packaging .packaging-video .material-icons,.woocommerce-page.centered-page #packaging .packaging-video .material-icons,.bigcommerce-page.centered-page #packaging .packaging-video .material-icons,.squarespace-page.centered-page #packaging .packaging-video .material-icons{left:44%;top:53%}}@media only screen and (max-width: 480px){.shopify-page.centered-page #packaging .packaging-video .material-icons,.bigcartel-page.centered-page #packaging .packaging-video .material-icons,.woocommerce-page.centered-page #packaging .packaging-video .material-icons,.bigcommerce-page.centered-page #packaging .packaging-video .material-icons,.squarespace-page.centered-page #packaging .packaging-video .material-icons{top:58%}}@media only screen and (max-width: 420px){.shopify-page.centered-page #packaging .packaging-video .material-icons,.bigcartel-page.centered-page #packaging .packaging-video .material-icons,.woocommerce-page.centered-page #packaging .packaging-video .material-icons,.bigcommerce-page.centered-page #packaging .packaging-video .material-icons,.squarespace-page.centered-page #packaging .packaging-video .material-icons{top:60%}}@media only screen and (max-width: 400px){.shopify-page.centered-page #packaging .packaging-video .material-icons,.bigcartel-page.centered-page #packaging .packaging-video .material-icons,.woocommerce-page.centered-page #packaging .packaging-video .material-icons,.bigcommerce-page.centered-page #packaging .packaging-video .material-icons,.squarespace-page.centered-page #packaging .packaging-video .material-icons{top:61%}}@media only screen and (max-width: 362px){.shopify-page.centered-page #packaging .packaging-video .material-icons,.bigcartel-page.centered-page #packaging .packaging-video .material-icons,.woocommerce-page.centered-page #packaging .packaging-video .material-icons,.bigcommerce-page.centered-page #packaging .packaging-video .material-icons,.squarespace-page.centered-page #packaging .packaging-video .material-icons{left:39%;top:61%}}@media only screen and (max-width: 332px){.shopify-page.centered-page #packaging .packaging-video .material-icons,.bigcartel-page.centered-page #packaging .packaging-video .material-icons,.woocommerce-page.centered-page #packaging .packaging-video .material-icons,.bigcommerce-page.centered-page #packaging .packaging-video .material-icons,.squarespace-page.centered-page #packaging .packaging-video .material-icons{top:62%}}@media only screen and (max-width: 600px){.shopify-page.centered-page #packaging video,.bigcartel-page.centered-page #packaging video,.woocommerce-page.centered-page #packaging video,.bigcommerce-page.centered-page #packaging video,.squarespace-page.centered-page #packaging video{max-width:300px}}.shopify-page.centered-page #packaging ul,.bigcartel-page.centered-page #packaging ul,.woocommerce-page.centered-page #packaging ul,.bigcommerce-page.centered-page #packaging ul,.squarespace-page.centered-page #packaging ul{background-color:transparent;overflow-x:hidden}.shopify-page.centered-page #packaging li>a,.bigcartel-page.centered-page #packaging li>a,.woocommerce-page.centered-page #packaging li>a,.bigcommerce-page.centered-page #packaging li>a,.squarespace-page.centered-page #packaging li>a{color:inherit;padding:0;text-transform:none}.shopify-page.centered-page #packaging .indicator,.bigcartel-page.centered-page #packaging .indicator,.woocommerce-page.centered-page #packaging .indicator,.bigcommerce-page.centered-page #packaging .indicator,.squarespace-page.centered-page #packaging .indicator{background-color:#ff9800}.shopify-page.centered-page #packaging .packaging-subtext p,.bigcartel-page.centered-page #packaging .packaging-subtext p,.woocommerce-page.centered-page #packaging .packaging-subtext p,.bigcommerce-page.centered-page #packaging .packaging-subtext p,.squarespace-page.centered-page #packaging .packaging-subtext p{margin-bottom:0;margin-top:2rem}@media only screen and (max-width: 460px){.shopify-page.centered-page #packaging .packaging-subtext p br,.bigcartel-page.centered-page #packaging .packaging-subtext p br,.woocommerce-page.centered-page #packaging .packaging-subtext p br,.bigcommerce-page.centered-page #packaging .packaging-subtext p br,.squarespace-page.centered-page #packaging .packaging-subtext p br{display:none}}.bigcartel-page.centered-page #page-banner{background:url(https://static.artofwhere.net/img2/img/pages/drop-ship/bigcartel/workshop-a5240df4787a7ca289df.jpg) center center no-repeat;background-size:cover}.woocommerce-page.centered-page #page-banner{background:url(https://static.artofwhere.net/img2/img/pages/drop-ship/woocommerce/workshop-b52bdd948c74683847bb.jpg) center center no-repeat;background-size:cover}.bigcommerce-page.centered-page #page-banner{background:url(https://static.artofwhere.net/img2/img/pages/drop-ship/bigcommerce/workshop-4029a9424514c1d98825.jpg) center center no-repeat;background-size:cover}.squarespace-page.centered-page #page-banner{background:url(https://static.artofwhere.net/img2/img/pages/drop-ship/squarespace/squarespace-background-8f7a266a51a24ea1f7c1.jpg) center center no-repeat;background-size:cover}.wholesale-page.centered-page .full-page-panel{background-repeat:no-repeat;background-size:cover}.wholesale-page.centered-page .full-page-panel h1,.wholesale-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .wholesale-page.centered-page .full-page-panel .breadcrumbs{font-family:'Roboto', sans-serif;font-weight:bold}.wholesale-page.centered-page .full-page-panel p{font-family:'Roboto', sans-serif;font-size:1.2rem}.wholesale-page.centered-page .full-page-panel .learn-more{color:inherit;font-size:1.2rem;text-decoration:underline}.wholesale-page.centered-page .full-page-panel.section-banner{background-image:url(https://static.artofwhere.net/img2/img/pages/wholesale/header-2160f8b6ca359e84c12d.jpg);padding-bottom:15rem;padding-top:30rem;position:relative}@media only screen and (max-width: 600px){.wholesale-page.centered-page .full-page-panel.section-banner{padding-bottom:15rem;padding-top:18rem}}.wholesale-page.centered-page .full-page-panel.section-banner .container{max-width:450px;padding:0;position:inherit;z-index:1}.wholesale-page.centered-page .full-page-panel.section-banner .container p{background-color:rgba(0,0,0,0.8);font-size:1.4rem;font-weight:400;padding:0.5rem 0}@media only screen and (max-width: 600px){.wholesale-page.centered-page .full-page-panel.section-banner .container p{margin:auto;max-width:80%;padding:0.5rem 1rem}}.wholesale-page.centered-page .full-page-panel.section-banner .layer{background-color:rgba(33,33,33,0.4);height:100%;left:0;position:absolute;top:0;width:100%}.wholesale-page.centered-page .full-page-panel.section-info{padding-bottom:2rem;padding-top:2rem}.wholesale-page.centered-page .full-page-panel.section-info .container{max-width:780px}.wholesale-page.centered-page .full-page-panel.section-info .container p{padding:0 2rem}.wholesale-page.centered-page .full-page-panel.section-cup-of-tea{background-image:url(https://static.artofwhere.net/img2/img/pages/wholesale/cup-of-tea-ff5055994207edbb6a79.jpg);min-height:40rem;padding-bottom:1rem;padding-top:20rem;position:relative}@media only screen and (max-width: 600px){.wholesale-page.centered-page .full-page-panel.section-cup-of-tea{padding-top:14rem}}.wholesale-page.centered-page .full-page-panel.section-cup-of-tea .container{position:inherit;z-index:1}.wholesale-page.centered-page .full-page-panel.section-cup-of-tea .container h1,.wholesale-page.centered-page .full-page-panel.section-cup-of-tea .container .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .wholesale-page.centered-page .full-page-panel.section-cup-of-tea .container .breadcrumbs{font-size:3.5rem}.wholesale-page.centered-page .full-page-panel.section-cup-of-tea .layer{background-color:rgba(33,33,33,0.2);height:100%;left:0;position:absolute;top:0;width:100%}.wholesale-page.centered-page .full-page-panel.section-benefits .detail-block img{max-width:160px}.wholesale-page.centered-page .full-page-panel.section-benefits .detail-block p{margin:auto;max-width:350px}.wholesale-page.centered-page .full-page-panel.section-branding img{max-width:450px}@media only screen and (max-width: 600px){.wholesale-page.centered-page .full-page-panel.section-branding img{max-width:290px}}@media only screen and (min-width: 600px){.wholesale-page.centered-page .full-page-panel.section-branding p{margin:auto;max-width:600px}}@media only screen and (max-width: 600px){.wholesale-page.centered-page .full-page-panel.section-dropship .img-wrap img{max-width:400px}}@media only screen and (max-width: 450px){.wholesale-page.centered-page .full-page-panel.section-dropship .img-wrap img{max-width:290px}}.wholesale-page.centered-page .full-page-panel.section-dropship p{font-size:1.5rem}.wholesale-page.centered-page .full-page-panel.section-dropship p strong{font-weight:bold}.leggings-page.centered-page .full-page-panel{background-repeat:no-repeat;background-size:cover}.leggings-page.centered-page .full-page-panel:nth-child(1){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-1-4234f4315811e7a2efd7.jpg);padding-bottom:8rem;padding-top:190px}.leggings-page.centered-page .full-page-panel:nth-child(1) .container p{margin:1rem auto 2rem;max-width:1100px}.leggings-page.centered-page .full-page-panel:nth-child(1) .container a{margin-top:3px}.leggings-page.centered-page .full-page-panel:nth-child(2){background-color:#f3f3f3;padding:0}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row{margin-bottom:0;position:relative}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:first-child,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:first-child{float:right}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:first-child img,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:first-child img{height:100%;position:absolute;right:0%}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:last-child,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:last-child{padding-bottom:4rem;padding-top:4rem}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:last-child h2,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:last-child h2{margin-bottom:3rem;position:relative;z-index:1}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:last-child p,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:last-child p{font-weight:300;position:relative;z-index:1}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:last-child .card,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:last-child .card{margin-top:2rem}.leggings-page.centered-page .full-page-panel:nth-child(3){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-3-b0539f18017124e4f3b3.jpg);padding-bottom:1rem;padding-top:3rem}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(1) h2{text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(1) p span{border-right:1px solid #8b948d;display:inline-block;font-weight:200;line-height:0.7;padding:0 0.7rem 0 0.2rem;text-shadow:1px 1.732px 1px rgba(0,0,0,0.22);vertical-align:top}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(1) p span:last-child{border-right:none}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card{margin:0 auto;max-width:706px}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content{padding:0}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:first-child,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:first-child{padding-top:0.8rem}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child{border-left:1px solid #d0d0d0;color:#202020;padding-left:0}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table thead tr th,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table thead tr th{padding-left:0;padding-right:0;width:16%}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table thead tr th:first-child,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table thead tr th:first-child{width:20%}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table thead tr th p,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table thead tr th p{border-right:1px solid #f2f2f2}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table thead tr th p:first-child,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table thead tr th p:first-child{font-size:1.2rem}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table thead tr th p:last-child,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table thead tr th p:last-child{color:#9d9d9d;font-size:0.9rem;font-weight:400}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table thead tr th:last-child p,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table thead tr th:last-child p{border:none}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table tbody tr td,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table tbody tr td{width:16%}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child table tbody tr td:first-child,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child table tbody tr td:first-child{padding-left:1.5rem;text-align:left;width:20%}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child>p,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child>p{font-size:0.8rem;line-height:2.5;padding-left:1.5rem}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2)>p{text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2)>p.static-text{font-size:0.95rem;font-weight:300;margin-top:0.6rem}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2)>p.flow-text,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2)>p.important-text{font-family:'Bebas Neue';margin-top:3rem}.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2)>p.flow-text a,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2)>p.important-text a{border-bottom:1px dashed;font-weight:400;text-decoration:none}.leggings-page.centered-page .full-page-panel:nth-child(4){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-4-06eb04da61dc89625b86.jpg);padding-bottom:5rem;padding-top:5rem}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .tabs,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .static-tabs{background:none;border:none;display:block;height:auto;margin:auto;max-width:600px}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .tabs li,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .static-tabs li{margin-bottom:4px;width:48%}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .tabs li a,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .static-tabs li a{color:#9d9d9d;font-family:'Bebas Neue';font-size:2.3em;text-transform:none}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .tabs li a.active,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .static-tabs li a.active{color:#fff}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .indicator{background:none;border-bottom:1px dashed #fff;width:50%}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2){margin-top:4rem}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row{margin:0}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .card-wrap{margin-bottom:0.8rem;position:relative}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .col .bg-text,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .col .bg-text,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .card-wrap .bg-text,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .card-wrap .bg-text{bottom:0;color:rgba(255,255,255,0.1);display:block;font-family:'Bebas Neue';font-size:10rem;left:25px;line-height:1;margin:auto;position:absolute;top:0}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .col .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .col .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .card-wrap .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .card-wrap .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .col .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .col .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .card-wrap .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .card-wrap .card-wrap{background:rgba(255,255,255,0.1);min-height:155px;padding:0.5rem 1rem 0 2rem}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .col .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .col .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .card-wrap .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .card-wrap .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .col .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .col .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.col .row .card-wrap .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #leggings-details.card-wrap .row .card-wrap .card-wrap p{font-size:1rem;font-weight:200}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row{margin:0}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .card-wrap{margin-bottom:0.8rem;position:relative}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .col .bg-text,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .col .bg-text,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .card-wrap .bg-text,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .card-wrap .bg-text{bottom:0;color:rgba(255,255,255,0.1);display:block;font-family:'Bebas Neue';font-size:8rem;left:25px;line-height:1;margin:auto;position:absolute;top:0}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .col .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .col .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .card-wrap .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .card-wrap .col,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .col .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .col .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .card-wrap .card-wrap,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .card-wrap .card-wrap{background:rgba(255,255,255,0.1);min-height:125px;padding:0.5rem 1rem 0 2rem}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .col .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .col .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .card-wrap .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .card-wrap .col p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .col .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .col .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.col .row .card-wrap .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2) #capris-details.card-wrap .row .card-wrap .card-wrap p{font-size:1rem;font-weight:200}.leggings-page.centered-page .full-page-panel:nth-child(5){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-5-8687807ae767dfbd1496.jpg);padding-bottom:5rem;padding-top:4rem}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(1) h2{margin:0}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(1) p{margin:0.5rem 0 0}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2){margin-top:3rem}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m7.l7 p.important-text,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m7.l7.card-wrap p.important-text{margin-top:3rem;padding-right:2rem;text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap{padding-top:1rem}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card{background-color:rgba(255,255,255,0.1)}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card .card-content .no-margin h3,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card .card-content .no-margin h3{display:inline-block;font-family:'Bebas Neue', serif;font-size:2em;font-weight:300;margin-bottom:2rem;position:relative;text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card .card-content .no-margin h3 span,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card .card-content .no-margin h3 span{position:relative;z-index:1}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card .card-content .no-margin h3::after,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card .card-content .no-margin h3::after{background:#ec018c;content:'';height:3rem;position:absolute;right:0;width:7.5rem}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card .card-content .no-margin p,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card .card-content .no-margin p{line-height:1;margin-bottom:2rem;text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card .card-content .no-margin a,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card .card-content .no-margin a{text-decoration:none}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card .card-content .no-margin a img,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card .card-content .no-margin a img{margin-right:1rem;max-width:100%;vertical-align:middle}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .col.s12.m4.l4 .card .card-content .no-margin a span,.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(2) .row .s12.m4.l4.card-wrap .card .card-content .no-margin a span{border-bottom:1px dashed;display:inline-block;font-family:'Bebas Neue', serif;line-height:1.2;text-shadow:1px 1.732px 1px rgba(0,0,0,0.22);vertical-align:middle}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(3){margin-top:17rem;max-width:855px}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(3) p{color:#202020;font-weight:400;margin:0}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(3) p span{color:#fff;display:inline-block;padding:0.5rem 1rem 1.5rem}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(3) p span:nth-child(1){background:#ec018c}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(3) p span:nth-child(2){background:#04afef}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(3) p:last-child{background:#fcee23;display:inline-block;margin-top:-1rem;padding:0.5rem 1.5rem}.leggings-page.centered-page .full-page-panel:nth-child(7){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-6-19ffa203f1ce23309fe2.jpg);padding-bottom:7.5rem;padding-top:7.5rem}.leggings-page.centered-page .full-page-panel:nth-child(7) .container .card{margin:0 auto;max-width:800px;padding:3rem 3rem 4rem}.leggings-page.centered-page .full-page-panel:nth-child(7) .container .card .card-content{padding:0}.leggings-page.centered-page .full-page-panel:nth-child(7) .container .card .card-content h2{line-height:1.1;margin:0 0 2.5rem}.leggings-page.centered-page .full-page-panel:nth-child(7) .container .card .card-content p{margin:0 auto;max-width:650px}.leggings-page.centered-page .full-page-panel:nth-child(8){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-7-12242ba725a82254379a.jpg);padding-bottom:5rem;padding-top:5rem}.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .col.s12.m7.l7 p,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .s12.m7.l7.card-wrap p{margin:2rem 0}.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .col.s12.m7.l7 blockquote,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .s12.m7.l7.card-wrap blockquote{color:#2d2d2d;max-width:565px}.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .col.s12.m10.l10 .card,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .s12.m10.l10.card-wrap .card{padding:1rem}.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .col.s12.m10.l10 .card .card-content .row .col img,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .s12.m10.l10.card-wrap .card .card-content .row .col img,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .col.s12.m10.l10 .card .card-content .row .card-wrap img,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .s12.m10.l10.card-wrap .card .card-content .row .card-wrap img{margin:0 2rem 0 0;width:auto}.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .col.s12.m10.l10 .card .card-content .row .col p,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .s12.m10.l10.card-wrap .card .card-content .row .col p,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .col.s12.m10.l10 .card .card-content .row .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(8) .container .row .s12.m10.l10.card-wrap .card .card-content .row .card-wrap p{font-weight:300}.leggings-page.centered-page .full-page-panel:nth-child(9){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-8-2de02cd3f94f4d068a84.jpg);padding-bottom:6rem;padding-top:6rem}.leggings-page.centered-page .full-page-panel:nth-child(9) .container .row{margin:0 auto;max-width:710px;padding:0}.leggings-page.centered-page .full-page-panel:nth-child(6){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-9-e79070151d0e68498c32.jpg);padding-bottom:6rem;padding-top:6rem}.leggings-page.centered-page .full-page-panel:nth-child(6) .container .row .flow-text,.leggings-page.centered-page .full-page-panel:nth-child(6) .container .row .important-text{color:#000}.leggings-page.centered-page .full-page-panel:nth-child(6) .container .row p{color:#202020;margin:0 0 4rem}.leggings-page.centered-page .full-page-panel:nth-child(6) .container .row a{font-size:2rem;height:75px;line-height:75px;padding:0 2.3rem;text-transform:none}@media only screen and (max-width: 1130px){.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:first-child img,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:first-child img{bottom:0;height:85%;margin:auto;top:0}}@media only screen and (max-width: 991px){.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:first-child,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:first-child{float:none;text-align:center}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:first-child img,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:first-child img{height:auto;max-width:100%;position:static}.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .col:last-child,.leggings-page.centered-page .full-page-panel:nth-child(2) .container .row .card-wrap:last-child{padding-top:0}}@media only screen and (max-width: 600px){.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .col:last-child,.leggings-page.centered-page .full-page-panel:nth-child(3) .container:nth-child(2) .card .card-content .row .card-wrap:last-child{border:none;padding-left:0.75rem}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .tabs,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .static-tabs{background:none;border:none;display:block;height:auto;margin:auto;max-width:600px}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .tabs li,.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .static-tabs li{width:100%}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(1) .row .indicator{display:none}.leggings-page.centered-page .full-page-panel:nth-child(4) .container:nth-child(2){margin-top:4rem;width:90%}.leggings-page.centered-page .full-page-panel:nth-child(5){background-image:url(https://static.artofwhere.net/img2/img/pages/leggings/leggings-sector-5-8687807ae767dfbd1496.jpg);padding-bottom:5rem;padding-top:4rem}.leggings-page.centered-page .full-page-panel:nth-child(5) .container:nth-child(3) p:last-child{margin-top:0;text-align:center}.leggings-page.centered-page .full-page-panel:nth-child(7) .container .row .col.s12.m10.l10 .card,.leggings-page.centered-page .full-page-panel:nth-child(7) .container .row .s12.m10.l10.card-wrap .card{padding:0}.leggings-page.centered-page .full-page-panel:nth-child(7) .container .row .col.s12.m10.l10 .card .card-content .row .col p,.leggings-page.centered-page .full-page-panel:nth-child(7) .container .row .s12.m10.l10.card-wrap .card .card-content .row .col p,.leggings-page.centered-page .full-page-panel:nth-child(7) .container .row .col.s12.m10.l10 .card .card-content .row .card-wrap p,.leggings-page.centered-page .full-page-panel:nth-child(7) .container .row .s12.m10.l10.card-wrap .card .card-content .row .card-wrap p{padding-top:1rem}}#page-shorts #bg-vector-1{right:10%;top:50%}@media only screen and (max-width: 992px){#page-shorts #bg-vector-1{right:2%;top:52%}}@media only screen and (max-width: 600px){#page-shorts #bg-vector-1{display:none}}#page-shorts #bg-vector-2{left:12.5%;top:40%}@media only screen and (max-width: 992px){#page-shorts #bg-vector-2{left:3%;top:36%}}@media only screen and (max-width: 600px){#page-shorts #bg-vector-2{left:10%;top:50%}}#page-shorts #bg-vector-3{right:20%;top:10%}@media only screen and (max-width: 992px){#page-shorts #bg-vector-3{right:16%;top:8%}}@media only screen and (max-width: 600px){#page-shorts #bg-vector-3{right:5%;top:10%}}#page-shorts #bg-vector-4{left:30%;top:60%}@media only screen and (max-width: 992px){#page-shorts #bg-vector-4{left:19%;top:62%}}@media only screen and (max-width: 600px){#page-shorts #bg-vector-4{display:none}}#page-shorts #bg-vector-5{right:30%;top:40%}@media only screen and (max-width: 992px){#page-shorts #bg-vector-5{right:23%;top:38%}}@media only screen and (max-width: 600px){#page-shorts #bg-vector-5{right:5%;top:65%}}#page-shorts #bg-vector-6{left:40%;top:20%}@media only screen and (max-width: 992px){#page-shorts #bg-vector-6{left:25%;top:23%}}@media only screen and (max-width: 600px){#page-shorts #bg-vector-6{left:5%;top:10%}}#page-shorts .hero-image-wrap{height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-shorts .hero-image{bottom:-160px;left:50%;margin-left:-180px;max-width:360px;position:absolute}@media only screen and (max-width: 600px){#page-shorts .hero-image{bottom:-40px;margin-left:-120px;max-width:240px}}#page-day-totes .header-background{background:top center;background-size:cover;height:100%;opacity:0.2;position:absolute;top:0;width:100%}#page-day-totes .hero-image-wrap{height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-day-totes .hero-image{bottom:-160px;left:50%;margin-left:-125px;max-width:250px;position:absolute}@media only screen and (max-width: 600px){#page-day-totes .hero-image{bottom:-140px;margin-left:-90px;max-width:180px}}#page-day-totes .full-page-panel .flow-text-bg{height:60%}@media only screen and (max-width: 992px){#page-day-totes .full-page-panel .flow-text-bg{height:80%}}@media only screen and (max-width: 600px){#page-day-totes .full-page-panel .flow-text-bg{height:100%}}#page-day-totes .section-custom-options .detail-block .img-wrap{height:360px;line-height:360px}@media only screen and (max-width: 992px){#page-day-totes .section-custom-options .detail-block .img-wrap{height:auto;line-height:normal}}#page-baby-leggings .accent-bg{background-color:#f5989d;color:#424242}#page-baby-leggings .img-bg{background-color:#f5989d;background-position:52% 90%;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 600px){#page-baby-leggings .img-bg{max-height:660px}}#page-baby-leggings .img-bg .burger-img{left:15%;top:13%;transform:rotate(-13deg);width:315px}@media only screen and (max-width: 600px){#page-baby-leggings .img-bg .burger-img{left:0%;max-width:100px;top:17%}}#page-baby-leggings .img-bg .fries-img{left:24%;top:60%;transform:rotate(-60deg);width:100px}@media only screen and (max-width: 600px){#page-baby-leggings .img-bg .fries-img{left:28%;max-width:40px;top:41%}}#page-baby-leggings .img-bg .tomatoe-img{right:18%;top:60%;transform:rotate(-15deg);width:125px}@media only screen and (max-width: 600px){#page-baby-leggings .img-bg .tomatoe-img{max-width:55px;right:0%;top:32%}}#page-baby-leggings .img-bg .frie1-img{right:21%;top:12%;transform:rotate(25deg);width:375px}@media only screen and (max-width: 600px){#page-baby-leggings .img-bg .frie1-img{display:none}}#page-baby-leggings .img-bg .frie2-img{right:16%;top:20%;transform:rotate(52deg);width:375px}@media only screen and (max-width: 600px){#page-baby-leggings .img-bg .frie2-img{display:none}}#page-baby-leggings .img-bg .hero-image-wrap{height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-baby-leggings .img-bg .hero-image-wrap img{margin-left:-300px;max-width:650px;position:absolute;top:0}@media only screen and (max-width: 600px){#page-baby-leggings .img-bg .hero-image-wrap img{margin-left:-142px;max-width:280px;top:60px}}#page-baby-leggings .certificate{background-color:#594b4b}#page-baby-leggings .certificate #heart{left:50%;margin-left:-250px;opacity:0.07;position:absolute;top:2rem;width:500px}#page-baby-leggings .certificate #report-link{color:#fff;text-decoration:underline}#page-baby-leggings .certificate .certificate-text img{margin-bottom:2rem;max-width:150px}#page-baby-leggings .certificate .certificate-text h2{margin-bottom:0}#page-baby-leggings .certificate .certificate-text p{font-size:1.1rem;font-weight:300;margin-bottom:0}#page-baby-leggings .certificate .mom-baby img{height:560px;margin:-3rem 0;max-width:none}#page-youth-leggings .accent-bg{background-color:#bd8cbf;color:#333}@media only screen and (max-width: 340px){#page-youth-leggings .fixed-page-title .title{letter-spacing:-1px}}#page-youth-leggings .img-bg{background-color:#bd8cbf;background-position:52% 90%;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 600px){#page-youth-leggings .img-bg{max-height:660px}}#page-youth-leggings .img-bg .hero-image-wrap{height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-youth-leggings .img-bg .hero-image-wrap img{bottom:15%;margin-left:-990px;max-width:2000px;position:absolute}@media only screen and (max-width: 600px){#page-youth-leggings .img-bg .hero-image-wrap img{bottom:32%;margin-left:-415px;max-width:800px}}@media only screen and (max-width: 600px){#page-youth-leggings .sizes-guide img{width:70%}}.about-us-page.centered-page .full-page-panel{background-repeat:no-repeat;background-size:cover}.about-us-page.centered-page .full-page-panel#about-us-page-header{background-image:url(https://static.artofwhere.net/img2/img/pages/about-us/about-us-sector-1-bg-24cba4156a3f8333c806.jpg);background-size:cover;padding-bottom:0;padding-top:17rem}.about-us-page.centered-page .full-page-panel#about-us-page-header .container h1,.about-us-page.centered-page .full-page-panel#about-us-page-header .container .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .about-us-page.centered-page .full-page-panel#about-us-page-header .container .breadcrumbs{margin:0;padding-bottom:15rem;text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.about-us-page.centered-page .full-page-panel#about-us-page-header .no-margin{background:rgba(255,255,255,0.4);padding:2rem 0 2.5rem}.about-us-page.centered-page .full-page-panel#about-us-page-header .no-margin h2{margin-bottom:2rem;margin-top:0}.about-us-page.centered-page .full-page-panel#about-us-page-header .no-margin p{font-size:1.5rem;font-weight:300;margin:0 auto;padding:0 1rem}.about-us-page.centered-page .full-page-panel#why-local{background-image:url(https://static.artofwhere.net/img2/img/pages/about-us/about-us-sector-2-bg-02e0cc4c47eabcf479c6.jpg);padding-bottom:1rem}.about-us-page.centered-page .full-page-panel#why-local .container:nth-child(1) p{font-weight:300;margin:0 auto;max-width:720px}.about-us-page.centered-page .full-page-panel#why-local .container:nth-child(2){margin-top:3rem}.about-us-page.centered-page .full-page-panel#why-local .container:nth-child(2) .row .col h3,.about-us-page.centered-page .full-page-panel#why-local .container:nth-child(2) .row .card-wrap h3{text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.about-us-page.centered-page .full-page-panel#why-local .container:nth-child(2) .row .col p,.about-us-page.centered-page .full-page-panel#why-local .container:nth-child(2) .row .card-wrap p{text-shadow:1px 1.732px 1px rgba(0,0,0,0.22)}.about-us-page.centered-page .full-page-panel#our-work-space{background-image:url(https://static.artofwhere.net/img2/img/pages/about-us/about-us-sector-3-bg-f3da65749b4e0a04aa9b.jpg);padding:9rem 0}.about-us-page.centered-page .full-page-panel#our-work-space .container .card{margin:0 auto;max-width:715px;padding:1rem 0 2rem}.about-us-page.centered-page .full-page-panel#our-work-space .container .card .card-content .row .col h2,.about-us-page.centered-page .full-page-panel#our-work-space .container .card .card-content .row .card-wrap h2{margin-bottom:2rem}.about-us-page.centered-page .full-page-panel#our-work-space .container .card .card-content .row .col p,.about-us-page.centered-page .full-page-panel#our-work-space .container .card .card-content .row .card-wrap p{font-weight:300;line-height:1.8;margin:0 auto;max-width:645px}.fabric-page.centered-page .full-page-panel#fabric-page-header{background-image:none;overflow:hidden;padding-bottom:10%;padding-top:13%;position:relative}@media only screen and (max-width: 992px){.fabric-page.centered-page .full-page-panel#fabric-page-header{padding-bottom:70px;padding-top:140px}}.fabric-page.centered-page .full-page-panel#fabric-page-header video,.fabric-page.centered-page .full-page-panel#fabric-page-header .img-bg{left:0;margin-top:-470px;position:absolute;top:50%;width:100%;z-index:3}@media only screen and (max-width: 1360px){.fabric-page.centered-page .full-page-panel#fabric-page-header video,.fabric-page.centered-page .full-page-panel#fabric-page-header .img-bg{margin-top:0;top:0}}@media only screen and (max-width: 960px){.fabric-page.centered-page .full-page-panel#fabric-page-header video,.fabric-page.centered-page .full-page-panel#fabric-page-header .img-bg{left:50%;margin-left:-480px;max-width:none;width:960px}}.fabric-page.centered-page .full-page-panel#fabric-page-header>*{position:relative;z-index:4}.fabric-page.centered-page .full-page-panel#fabric-page-header p{margin-top:0}.fabric-page.centered-page .full-page-panel#fabrics{background-color:#f4f4f4}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont{border-bottom:1px solid #acacac;margin-bottom:1rem}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont:last-child{margin-bottom:0}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont>h2{font-size:2rem;margin:0;margin-bottom:2rem}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item{border-bottom:1px solid #efeff1;margin:20px 0}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item:last-child{border-bottom:none}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row{position:relative}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(1) img,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(1) img{max-width:49%;width:100%}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2),.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2){padding-bottom:2rem}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) .putitle h2,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) .putitle h2{font-size:2rem;margin:0}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) .putitle h2 strong,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) .putitle h2 strong{font-weight:600;margin-left:1rem}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) .putitle p.static-text,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) .putitle p.static-text{font-weight:600;margin-top:0}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) table tfoot,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) table tfoot{display:none}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) table th,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) table th,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) table td,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) table td{padding:8px 3px;vertical-align:top}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) table th,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) table th{width:15%}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) p.showPopUp,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) p.showPopUp{bottom:0;color:#ec018c;cursor:pointer;font-family:'Bebas Neue', serif;margin:0;position:absolute;width:auto}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .col:nth-child(2) p.showPopUp:hover,.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item .row .card-wrap:nth-child(2) p.showPopUp:hover{text-decoration:underline}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont .item.new-fabric h2::after{background-color:#ec018c;border-radius:2px;box-sizing:border-box;color:#fff;content:'New !';font-size:0.8rem;font-weight:300;line-height:inherit;margin-left:1rem;min-width:3rem;padding:4px 6px;text-align:center;vertical-align:top}.fabric-page.centered-page .full-page-panel#fabrics .card .item-cont:last-child{border-bottom:none}.fabric-page.centered-page #popup{background:rgba(50,50,50,0.95);display:none;height:100%;left:0;overflow:auto;position:fixed;top:0;width:100%;z-index:999}.fabric-page.centered-page #popup #popup-cont{bottom:0;left:0;margin:auto;max-width:1140px;position:absolute;right:0;top:0;user-select:none;user-select:none;user-select:none}.fabric-page.centered-page #popup #popup-cont #close-btn-popup{color:#8d8d8d;cursor:pointer;font-family:Arial;font-size:3rem;line-height:1;margin:0;position:absolute;right:1rem;top:3rem;transition:0.3s;z-index:1}.fabric-page.centered-page #popup #popup-cont #close-btn-popup:hover{color:#fff;transition:0.3s}.fabric-page.centered-page #popup #popup-cont .item .content .col,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap{color:#fff;width:100%}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(1),.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(1){padding-top:10rem;text-align:center}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(1) img,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(1) img{display:inline-block;max-width:350px;width:49%}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(1) img:nth-child(2),.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(1) img:nth-child(2){margin-left:-3px}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) .putitle,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) .putitle{left:0;position:absolute;right:0;text-align:center;top:2rem}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) .putitle h2,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) .putitle h2{font-size:2rem}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) .putitle h2 strong,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) .putitle h2 strong{font-weight:600;margin-left:1rem}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) .putitle .static-text,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) .putitle .static-text{font-weight:600;margin-top:0}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) table,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) table{margin:2rem auto 0;max-width:710px}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) table th,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) table th,.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) table td,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) table td{padding:8px 3px;vertical-align:top}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) table th,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) table th{width:15%}.fabric-page.centered-page #popup #popup-cont .item .content .col:nth-child(2) .showPopUp,.fabric-page.centered-page #popup #popup-cont .item .content .card-wrap:nth-child(2) .showPopUp{display:none}.fabric-page.centered-page #popup #popup-cont #prev{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/popup-btns-6eea58925c4eb98da0fb.png);background-position:center left;background-repeat:no-repeat;cursor:pointer;display:block;height:100%;left:1rem;margin:0;position:absolute;top:0;width:15px}.fabric-page.centered-page #popup #popup-cont #next{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/popup-btns-6eea58925c4eb98da0fb.png);background-position:center right;background-repeat:no-repeat;cursor:pointer;display:block;height:100%;margin:0;position:absolute;right:1rem;top:0;width:15px}.fabric-page.centered-page #popup #myElement{display:none}#af-banner{background-color:#fff;background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/af-banner-bg-6d228129d0f911eadb56.svg),url(https://static.artofwhere.net/img2/img/pages/fabric/af-banner-bg2-5130c2a19e054a1539b2.svg);background-position:10% 100%, 116% 120%;background-repeat:no-repeat;background-size:40%, 40%;border-radius:10px;margin:1rem auto 3rem;max-width:560px;padding:1rem 2rem 1rem 11rem;position:relative}#af-banner img{height:16rem;left:-15rem;position:absolute;top:-5rem}#af-banner h3{font-family:'Roboto Slab';font-size:1.5rem;margin-bottom:0.25rem}#af-banner p{font-family:'Roboto Slab';margin-top:0}#af-banner p a{color:rgba(0,0,0,0.87);text-decoration:underline}@media only screen and (max-width: 991px){.fabric-page.centered-page .full-page-panel#fabrics .card .col:nth-child(2) .putitle h2 strong,.fabric-page.centered-page .full-page-panel#fabrics .card .card-wrap:nth-child(2) .putitle h2 strong{margin-left:0}.fabric-page.centered-page #popup #popup-cont .item .row .col:nth-child(2) .putitle h2 strong,.fabric-page.centered-page #popup #popup-cont .item .row .card-wrap:nth-child(2) .putitle h2 strong{margin-left:0}.fabric-page.centered-page #popup #popup-cont #prev{display:none}.fabric-page.centered-page #popup #popup-cont #next{display:none}.fabric-page.centered-page #popup #myElement{display:block;left:0;position:absolute;top:0;width:100%}}@media only screen and (max-width: 600px){.fabric-page.centered-page #fabrics .card .col:nth-child(1),.fabric-page.centered-page #fabrics .card .card-wrap:nth-child(1){text-align:center}.fabric-page.centered-page #fabrics .card .col:nth-child(2) .putitle,.fabric-page.centered-page #fabrics .card .card-wrap:nth-child(2) .putitle{margin:1rem 0}.fabric-page.centered-page #popup #popup-cont .item .col:nth-child(1),.fabric-page.centered-page #popup #popup-cont .item .card-wrap:nth-child(1){padding-top:11rem}.fabric-page.centered-page #popup #popup-cont .item .col:nth-child(2) .putitle,.fabric-page.centered-page #popup #popup-cont .item .card-wrap:nth-child(2) .putitle{top:3rem}.fabric-page.centered-page #popup #popup-cont #close-btn-popup{top:1rem}}.sample-packs-page #sample-packs-page-header{background-image:url(https://static.artofwhere.net/img2/img/pages/sample-packs/header-16b50ad9d4fc7069cb73.jpg);margin-top:0;padding:8rem 0}.sample-packs-page #sample-packs-page-header h1,.sample-packs-page #sample-packs-page-header .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .sample-packs-page #sample-packs-page-header .breadcrumbs,.sample-packs-page #sample-packs-page-header p{text-shadow:1px 1.732px 1px rgba(0,0,0,0.11)}.sample-packs-page #sample-packs-page-header p{margin-top:0}.sample-packs-page .info-badge{margin-top:2rem}.sample-packs-page #sample-packs-page-content{padding-top:0}.sample-packs-page #sample-packs-page-content .row .sample-packs-radios{margin-bottom:1rem;padding:1rem}.sample-packs-page .text-bg{background-color:rgba(53,53,53,0.8);color:#fff;margin-top:8rem;padding:3rem 0}.sample-packs-page .text-bg h2{font-size:1.4rem;font-weight:300;margin:0}.sample-packs-page .card{margin:2rem auto;max-width:1235px;padding:0}.sample-packs-page .card .card-action{text-align:right}#help-section .layout-title{font-weight:bold;margin-bottom:0;padding-top:1rem}@media only screen and (min-width: 760px){#help-section .layout-title{padding-top:3rem}}#help-section>.container>.row>p{font-size:1.25rem;margin:1rem auto 2rem;max-width:450px}#help-section .breadcrumbs{margin:1rem 0}#help-section .breadcrumbs a,#help-section .breadcrumbs span{font-size:1rem}#help-section .breadcrumbs a{color:#323232;text-decoration:underline}#help-section .breadcrumbs i{font-size:1.4rem;vertical-align:bottom}#help-section .question .card-content p{margin:1rem 0}#help-section .help-categories{margin-bottom:0;margin-top:3rem}#help-section .help-categories .cards-container a{color:#f600be;text-decoration:none}#help-section .help-categories .card{border-radius:2px;box-shadow:0 2px 4px 1px rgba(0,0,0,0.1);height:12rem;padding:0;transition:transform 0.1s, box-shadow 0.1s}@media only screen and (min-width: 1201px){#help-section .help-categories .card{height:11rem}}@media only screen and (max-width: 992px){#help-section .help-categories .card{height:auto;max-height:none;min-height:0}}#help-section .help-categories .card:hover{box-shadow:0 5px 25px 0 rgba(0,0,0,0.15);transform:translateY(-0.25rem)}#help-section .help-categories .card-image{border-bottom-left-radius:2px;border-top-left-radius:2px;padding:1.5rem 1rem}#help-section .help-categories .card-image img{max-height:195px;max-width:46px;min-width:46px;vertical-align:middle}@media only screen and (max-width: 992px){#help-section .help-categories .card-image img{max-height:none}}@media only screen and (max-width: 470px){#help-section .help-categories .card-image img{max-width:54px;min-width:54px}}#help-section .help-categories .card-content{padding:1rem}#help-section .help-categories .card-content .title{display:block;font-size:1.4rem;font-weight:bold;margin-bottom:0.5rem}#help-section .help-categories .card-content .description{color:#9e9e9e}#help-section .help-categories .card-action{border:0;padding-bottom:1rem}#help-section .help-categories .card-action a{color:#fff;font-size:14px;margin-right:0.5rem;text-transform:none}#help-section #help-page .question{margin-bottom:1.5rem}#help-section #help-page .question .card{box-shadow:0 2px 4px 1px rgba(0,0,0,0.1)}#help-section #help-page .question .card-content{padding:1.5rem}#help-section #help-page .question h1,#help-section #help-page .question .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #help-section #help-page .question .breadcrumbs{font-family:Roboto, sans-serif;font-weight:bold}#help-section #help-page .question h1.category-name,#help-section #help-page .question .h1_wrap .h1_group .category-name.breadcrumbs,.h1_wrap .h1_group #help-section #help-page .question .category-name.breadcrumbs{font-size:1.9rem;margin-bottom:2rem;margin-left:0.5rem}#help-section #help-page .question h1.page-title,#help-section #help-page .question .h1_wrap .h1_group .page-title.breadcrumbs,.h1_wrap .h1_group #help-section #help-page .question .page-title.breadcrumbs{font-size:1.8rem;margin:0 0 1rem}#help-section #help-page .question p{margin:1rem 0}#help-section #help-page .question mark{background:#eee;border-radius:2px;display:block;font-style:italic;margin:2rem 0;padding:1rem}#help-section #help-page .question figure{margin:0.5rem 0 0.75rem;max-width:100%;padding:1rem}#help-section #help-page .question .page-section{border-bottom:1.25px solid rgba(236,64,122,0.2)}#help-section #help-page .question .page-section:last-child{border-bottom:0}#help-section #help-page .bottom-section{border-top:1px solid rgba(0,0,0,0.15);margin-top:1rem;padding-top:1rem}#help-section .help-category-questions h3{font-size:1.2rem;font-weight:bold;margin:0.5rem 0 1rem}#help-section .help-category-questions .category-guides{margin-bottom:2rem}#help-section .help-category-questions .search-result,#help-section .help-category-questions .category-questions a,#help-section .help-category-questions .category-guides a{border-left:2px solid transparent;color:#616161;display:block;padding:0.5rem 1rem;text-decoration:none}#help-section .help-category-questions .search-result.active,#help-section .help-category-questions .category-questions a.active,#help-section .help-category-questions .category-guides a.active{border-color:#323232;color:#323232;font-weight:bold}#help-section .help-category-questions .search-result.subpage,#help-section .help-category-questions .category-questions a.subpage,#help-section .help-category-questions .category-guides a.subpage{font-size:14px;padding-left:2rem}#help-section .help-category-questions .search-result:hover,#help-section .help-category-questions .category-questions a:hover,#help-section .help-category-questions .category-guides a:hover{background-color:#eee}#help-search-form{text-align:center}#help-search-form.page{padding-bottom:2rem;padding-top:3rem}@media only screen and (max-width: 992px){#help-search-form.page{padding-top:1rem;text-align:center}}#help-search-form.page .layout-title{font-size:2.6rem;margin-top:1.25rem;padding:0 2.5rem 0 0}#help-search-form.page .layout-title a{color:inherit}@media only screen and (max-width: 992px){#help-search-form.page .layout-title{padding:0;text-align:center}}#help-search-form.page .input-field{margin-top:1.5rem}@media only screen and (max-width: 470px){#help-search-form{text-align:left}}#help-search-form .input-field{display:inline-block;margin:0;max-height:48px;max-width:35rem;width:100%}@media only screen and (max-width: 992px){#help-search-form .input-field{max-width:none}}#help-search-form .input-field [type=text]:focus:not([readonly])+label{color:#f600be}#help-search-form .input-field #help-search{background:#fff;border:1px solid transparent;border-bottom:0;border-radius:2px;box-sizing:border-box;height:48px;margin:0;padding-left:1rem;position:relative;vertical-align:top;width:100%}#help-search-form .input-field #help-search:active,#help-search-form .input-field #help-search:focus{border-color:#bbb;box-shadow:0 2px 4px 0 rgba(0,0,0,0.25)}#help-search-form .input-field label{left:auto;line-height:48px;margin:0 0.5rem;position:absolute;right:0;text-align:center;top:0;transform:none;width:36px}#help-search-form .input-field label i{color:#323232;font-size:1.75rem;vertical-align:middle}#help-search-form .autocomplete-content.dropdown-content{margin-top:0;min-width:100%;position:absolute}#help-search-form .autocomplete-content.dropdown-content li{border-top:1px solid #eee}#help-search-form .autocomplete-content.dropdown-content li:first-child{border-top:0}#help-search-form .autocomplete-content.dropdown-content li>span{color:#323232}#help-search-form .autocomplete-content.dropdown-content .highlight{color:#f600be}#help-search-form>button{height:42px;vertical-align:top}.guidelines-page.centered-page .full-page-panel{background-color:#f3f3f3;background-repeat:no-repeat;background-size:cover;padding:1rem 0 0}.guidelines-page.centered-page .full-page-panel h1,.guidelines-page.centered-page .full-page-panel .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .guidelines-page.centered-page .full-page-panel .breadcrumbs{text-shadow:1px 1.732px 1px rgba(0,0,0,0.11)}.guidelines-page.centered-page .full-page-panel h3{font-size:21px;font-weight:bold}.guidelines-page.centered-page .full-page-panel.header{background-image:url(https://static.artofwhere.net/img2/img/pages/design-guidelines/back-3e0d15c782201441d3e1.jpg);padding-bottom:3rem;padding-top:11rem}.guidelines-page.centered-page .full-page-panel#section-warning{background:#ffb300}.guidelines-page.centered-page .full-page-panel#section-warning .info-badge{padding:0}.guidelines-page.centered-page .full-page-panel#guidelines-data table{width:100.1%}.guidelines-page.centered-page .full-page-panel#guidelines-data table td,.guidelines-page.centered-page .full-page-panel#guidelines-data table th{padding:0.75rem 1rem}.guidelines-page.centered-page .full-page-panel#guidelines-data{background-image:url(https://static.artofwhere.net/img2/img/pages/design-guidelines/back2-60c23ccc57154151b663.jpg);padding-bottom:2rem;padding-top:3rem}.guidelines-page.centered-page .full-page-panel#guidelines-data table{margin-bottom:2em}.guidelines-page.centered-page .full-page-panel#guidelines-data table thead tr:nth-of-type(1) th{background:#1e88e5;color:white;font-size:1.5em;font-weight:300;text-align:center}.guidelines-page.centered-page .full-page-panel#guidelines-colour{background-image:url(https://static.artofwhere.net/img2/img/pages/design-guidelines/colour-46827ea9c3183ff67314.jpg);padding:3rem 0}.guidelines-page.centered-page .full-page-panel .container{max-width:1000px}.guidelines-page.centered-page .full-page-panel .table-notice{float:left;font-style:italic;text-align:left}.guidelines-page.centered-page .full-page-panel sub.table-notice{margin-top:1.5rem}.guidelines-page.centered-page .full-page-panel p.table-notice{margin-bottom:1rem}#headbands-page.centered-page .full-page-panel#headband-anatomy{background-image:url(https://static.artofwhere.net/img2/img/pages/headbands/anatomy-bg-f4475e7c760a5cbf4c2b.jpg);background-position:0% 0%}#headbands-page .header{background:url(https://static.artofwhere.net/img2/img/pages/headbands/header-bg-8d8927f2c1fcf20e7a2d.jpg);background-position:center center;background-size:cover;color:white;min-height:60rem}#headbands-page .header h1,#headbands-page .header .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #headbands-page .header .breadcrumbs{color:#ec018c}#headbands-page .header p.flow-text,#headbands-page .header .centered-page p.important-text,.centered-page #headbands-page .header p.important-text{text-shadow:1px 1px 3px rgba(0,0,0,0.4)}@media only screen and (max-width: 1850px){#headbands-page .header{margin-bottom:-6rem}}@media only screen and (max-width: 1750px){#headbands-page .header{margin-bottom:-9rem}}@media only screen and (max-width: 1650px){#headbands-page .header{margin-bottom:-12rem}}@media only screen and (max-width: 1550px){#headbands-page .header{margin-bottom:-15rem}}@media only screen and (max-width: 1430px){#headbands-page .header{margin-bottom:-19rem}}@media only screen and (max-width: 1280px){#headbands-page .header{margin-bottom:-18rem}}@media only screen and (max-width: 960px){#headbands-page .header{margin-bottom:-17rem}}#headbands-page .collection{border:none}#headbands-page .collection .collection-item{background:none;border:none;padding-left:0}#headbands-page #headband-anatomy h2{color:#04afef;margin-bottom:2rem}#headbands-page #headband-anatomy .important-text{margin:0}#headbands-page #headband-anatomy img{width:99%}#headbands-page #headband-slider{background:#f4f4f4}#headbands-page #headband-slider .slider-container{height:600px;padding:0}#headbands-page #headband-slider .slider-container .slider .slider-btns{height:100%;position:absolute;top:0;width:100%;z-index:2}#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-prev i{left:2rem}#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-next i{right:2rem}#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-next{cursor:pointer;height:100%;width:50%}#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-prev i,#headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-next i{font-size:3rem;position:absolute}#headbands-page #headband-slider .slider-container .slider .slider-overlay{padding:3rem;position:absolute;top:0;width:100%;z-index:2}#headbands-page #headband-slider .slider-container .slider .slider-overlay h2{font-size:2.5rem;margin:auto}#headbands-page #headband-care{background:url(https://static.artofwhere.net/img2/img/pages/headbands/care-bg-06eb04da61dc89625b86.jpg)}#page-notebooks .accent-bg{background-color:#81a3e8;color:#fff}#page-notebooks .img-bg{background-position:52% 90%;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 1300px){#page-notebooks .img-bg{max-height:700px}}@media only screen and (max-width: 900px){#page-notebooks .img-bg{max-height:600px}}#page-notebooks .img-bg .hero-image-wrap{background-image:url(https://static.artofwhere.net/img2/img/pages/products/notebooks/table-009c6424b2fb0b9dd838.jpg);background-position:50% 50%;background-repeat:no-repeat;background-size:cover;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-notebooks .img-bg .hero-image-wrap img{bottom:0;margin-left:-800px;position:absolute}@media only screen and (max-width: 1300px){#page-notebooks .img-bg .hero-image-wrap img{margin-left:-600px;max-width:1100px}}@media only screen and (max-width: 900px){#page-notebooks .img-bg .hero-image-wrap img{margin-left:-500px;max-width:900px}}@media only screen and (max-width: 700px){#page-notebooks .img-bg .hero-image-wrap img{margin-left:-380px;max-width:700px}}@media only screen and (max-width: 600px){#page-notebooks .img-bg .hero-image-wrap img{left:0;margin-left:0;max-width:550px}}@media only screen and (max-width: 400px){#page-notebooks .img-bg .hero-image-wrap img{max-width:400px}}#page-notebooks .img-bg .flow-text-bg h1,#page-notebooks .img-bg .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-notebooks .img-bg .flow-text-bg .breadcrumbs{margin-bottom:0}#page-notebooks .img-bg .flow-text-bg p{font-size:1.2rem}@media only screen and (max-width: 900px){#page-notebooks .img-bg .flow-text-bg p{font-size:1rem}}@media only screen and (max-width: 860px){#page-notebooks .section-details .notebook-img img{margin-left:1rem}}@media only screen and (max-width: 600px){#page-notebooks .section-details .notebook-img img{margin-left:3rem;max-width:290px}}@media only screen and (max-width: 390px){#page-notebooks .section-details .notebook-img img{max-width:250px}}@media only screen and (max-width: 350px){#page-notebooks .section-details .notebook-img img{max-width:220px}}#page-spiral-notebooks .accent-bg{background-color:#9bcb67;color:#fff}#page-spiral-notebooks .img-bg{background-position:52% 90%;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 1300px){#page-spiral-notebooks .img-bg{max-height:700px}}@media only screen and (max-width: 900px){#page-spiral-notebooks .img-bg{max-height:600px}}#page-spiral-notebooks .img-bg .hero-image-wrap{background-image:url(https://static.artofwhere.net/img2/img/pages/products/spiral-notebooks/banner-1-f03c75fb54c5eb07cfbe.jpg);background-position:50% 55%;background-repeat:no-repeat;background-size:cover;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-spiral-notebooks .img-bg .hero-image-wrap img{bottom:0;margin-left:-800px;position:absolute}@media only screen and (max-width: 1300px){#page-spiral-notebooks .img-bg .hero-image-wrap img{margin-left:-600px;max-width:1100px}}@media only screen and (max-width: 900px){#page-spiral-notebooks .img-bg .hero-image-wrap img{margin-left:-500px;max-width:900px}}@media only screen and (max-width: 700px){#page-spiral-notebooks .img-bg .hero-image-wrap img{margin-left:-380px;max-width:700px}}@media only screen and (max-width: 600px){#page-spiral-notebooks .img-bg .hero-image-wrap img{left:0;margin-left:0;max-width:550px}}@media only screen and (max-width: 400px){#page-spiral-notebooks .img-bg .hero-image-wrap img{max-width:400px}}#page-spiral-notebooks .img-bg .flow-text-bg h1,#page-spiral-notebooks .img-bg .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-spiral-notebooks .img-bg .flow-text-bg .breadcrumbs{margin-bottom:0}#page-spiral-notebooks .img-bg .flow-text-bg p{font-size:1.2rem}@media only screen and (max-width: 900px){#page-spiral-notebooks .img-bg .flow-text-bg p{font-size:1rem}}@media only screen and (max-width: 860px){#page-spiral-notebooks .section-details .notebook-img img{margin-left:1rem}}@media only screen and (max-width: 600px){#page-spiral-notebooks .section-details .notebook-img img{margin-left:3rem;max-width:290px}}@media only screen and (max-width: 390px){#page-spiral-notebooks .section-details .notebook-img img{max-width:250px}}@media only screen and (max-width: 350px){#page-spiral-notebooks .section-details .notebook-img img{max-width:220px}}#page-spiral-notebooks .section-paper .notebook-img img{width:100%}#page-spiral-notebooks .section-paper hr{background:#424242;border:none;display:inline-block;height:1px;margin:2em 25px;width:95%}@media only screen and (max-width: 885px){#page-spiral-notebooks .section-paper hr{width:85%}}@media only screen and (max-width: 450px){#page-spiral-notebooks .section-paper hr{width:79%}}#page-spiral-notebooks .section-paper .detail-block{max-width:none;text-align:left}#page-spiral-notebooks .section-paper .detail-block h4{font-weight:600}#page-spiral-notebooks .section-paper .detail-block p{font-weight:400}#page-origami-totes .header-background{background:top center;background-position:0;background-size:cover;height:100%;position:absolute;top:0;width:100%}@media only screen and (max-width: 600px){#page-origami-totes .header-background{background-position:20%}}#page-origami-totes .flow-text-bg{background:transparent}#page-origami-totes .flow-text-wrap{background:rgba(0,0,0,0.6);bottom:initial;left:initial;max-width:700px;padding:1.5rem 1rem;right:0}@media only screen and (max-width: 600px){#page-origami-totes .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem}}#page-origami-totes .flow-text-wrap h1,#page-origami-totes .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-origami-totes .flow-text-wrap .breadcrumbs,#page-origami-totes .flow-text-wrap p{left:0;margin:0;text-align:left}#page-origami-totes .flow-text-wrap p{font-family:'Roboto condensed', sans-serif;font-size:1.1rem}#page-origami-totes .full-page-panel .flow-text-bg{height:60%}@media only screen and (max-width: 992px){#page-origami-totes .full-page-panel .flow-text-bg{height:80%}}@media only screen and (max-width: 600px){#page-origami-totes .full-page-panel .flow-text-bg{height:100%}}#page-origami-totes .section-details{background-color:#242424}#page-origami-totes .section-details #main-image{margin-bottom:3rem;margin-left:-4%;max-height:350px}#page-origami-totes .section-sell{background-color:#ededed}#page-origami-totes .section-custom-options .detail-block .img-wrap{height:360px;line-height:360px}@media only screen and (max-width: 992px){#page-origami-totes .section-custom-options .detail-block .img-wrap{height:auto;line-height:normal}}#page-origami-totes .section-fold img{height:400px}@media only screen and (max-width: 600px){#page-origami-totes .section-fold img{height:200px}}#page-origami-totes .section-ways-to-wear{background-color:#ff404f}#page-peignoir .header-background{background:top center;background-position:0;background-size:cover;height:100%;position:absolute;top:0;width:100%}@media only screen and (max-width: 600px){#page-peignoir .header-background{background-position:20%}}#page-peignoir .flow-text-bg{background:transparent}#page-peignoir .flow-text-wrap{background:rgba(0,0,0,0.6);bottom:initial;left:initial;max-width:900px;padding:1.5rem 1rem;right:0}@media only screen and (max-width: 600px){#page-peignoir .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem}}#page-peignoir .flow-text-wrap h1,#page-peignoir .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-peignoir .flow-text-wrap .breadcrumbs,#page-peignoir .flow-text-wrap p{left:0;margin:0;text-align:left}#page-peignoir .flow-text-wrap p{font-family:'Roboto condensed', sans-serif;font-size:1.1rem}#page-peignoir .full-page-panel .flow-text-bg{height:35%}@media only screen and (max-width: 992px){#page-peignoir .full-page-panel .flow-text-bg{height:40%}}@media only screen and (max-width: 600px){#page-peignoir .full-page-panel .flow-text-bg{height:100%}}#page-peignoir .section-details{background-color:#242424}#page-peignoir .section-details #main-image{max-height:340px}#page-peignoir .section-sell{background-color:#ededed}#page-peignoir .section-custom-options .detail-block .img-wrap{height:360px;line-height:360px}@media only screen and (max-width: 992px){#page-peignoir .section-custom-options .detail-block .img-wrap{height:auto;line-height:normal}}#page-peignoir .section-custom-options #first p{margin-bottom:1rem}#page-peignoir .section-custom-options #first .colors img{padding:0 0.25rem}#page-peignoir .section-custom-options #second h4{margin-bottom:2rem}#page-peignoir .section-custom-options #second .detail-block{padding:0}#page-peignoir .section-fabrics .card{padding:2rem 3rem}#page-peignoir .section-fabrics .card .card-content{padding:1rem 0 0}#page-peignoir .section-fabrics .card .card-content .card-title{font-size:1.1rem;margin-bottom:1rem}#page-peignoir .section-fabrics .card .card-content li{font-size:14px;list-style-type:initial}#page-peignoir .section-sizing-guide .card{margin:auto;max-width:700px}#page-peignoir .section-sizing-guide .card .card-content{padding:0}#page-peignoir .section-sizing-guide #sizes{border-left:none;height:auto;padding:0 0.75rem}#page-peignoir .section-sizing-guide #sizes tr td.title{background-color:#f2f2f2;border-bottom:1px solid #d0d0d0;width:auto}#page-peignoir .section-sizing-guide #sizes .info-table{padding:0}#page-peignoir .section-sizing-guide p{font-size:14px}#page-peignoir .section-ways-to-wear p{font-size:16px;font-weight:initial}#page-peignoir .section-care-instructions h4{margin-bottom:2rem}@media only screen and (max-width: 600px){#page-stationery-cards .fixed-page-title .title{letter-spacing:-0.3px}}#page-stationery-cards .header-background{background:top center;background-position:0;background-size:cover;height:100%;position:absolute;top:0;width:100%}@media only screen and (max-width: 992px){#page-stationery-cards .header-background{background-position:50%}}#page-stationery-cards .flow-text-bg{background:transparent}#page-stationery-cards .flow-text-wrap{background:rgba(0,0,0,0.6);bottom:initial;left:0;max-width:700px;padding:1.5rem 1rem;right:initial}@media only screen and (max-width: 600px){#page-stationery-cards .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem}}#page-stationery-cards .flow-text-wrap h1,#page-stationery-cards .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-stationery-cards .flow-text-wrap .breadcrumbs,#page-stationery-cards .flow-text-wrap p{left:0;margin:0;text-align:left}#page-stationery-cards .flow-text-wrap p{font-family:'Roboto condensed', sans-serif;font-size:1.1rem}#page-stationery-cards .full-page-panel .flow-text-bg{height:30%}@media only screen and (max-width: 992px){#page-stationery-cards .full-page-panel .flow-text-bg{height:30%}}@media only screen and (max-width: 600px){#page-stationery-cards .full-page-panel .flow-text-bg{height:100%}}#page-stationery-cards .section-details{background-color:#242424}#page-stationery-cards .section-details #main-image{max-height:370px}@media only screen and (max-width: 600px){#page-stationery-cards .section-details #main-image{margin-bottom:2rem}}#page-stationery-cards .section-sell{background-color:#ededed}#page-beanies .img-bg{border-top:182px solid #ccc;margin-top:-312px;padding-top:182px;position:relative}#page-beanies .header-background{background:top center;background-position:50%;background-size:cover;height:100%;position:absolute;top:0;width:100%}@media only screen and (max-width: 1300px){#page-beanies .header-background{background-position:70%}}#page-beanies .flow-text-bg{background:transparent}#page-beanies .flow-text-wrap{background:rgba(0,0,0,0.7);bottom:initial;left:0;max-width:640px;padding:1.5rem 1rem;right:initial}@media only screen and (max-width: 600px){#page-beanies .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem}}#page-beanies .flow-text-wrap h1,#page-beanies .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-beanies .flow-text-wrap .breadcrumbs,#page-beanies .flow-text-wrap p{left:0;margin:0;text-align:left}#page-beanies .flow-text-wrap p{font-family:'Roboto condensed', sans-serif;font-size:1.25rem}#page-beanies .full-page-panel .flow-text-bg{height:50%}@media only screen and (max-width: 992px){#page-beanies .full-page-panel .flow-text-bg{height:40%}}@media only screen and (max-width: 600px){#page-beanies .full-page-panel .flow-text-bg{height:100%}}#page-beanies .section-details{background-color:#242424}#page-beanies .section-sell{background-color:#ededed}#page-beanies .section-custom-options .detail-block .img-wrap{height:360px;line-height:360px}@media only screen and (max-width: 992px){#page-beanies .section-custom-options .detail-block .img-wrap{height:auto;line-height:normal}}#page-beanies .section-custom-options p{margin-bottom:1rem}#page-beanies .section-custom-options .colors img{padding:0 0.25rem}#page-beanies .section-sizing-guide{background-color:#fde16a}#page-beanies .section-sizing-guide .card{margin:auto;max-width:500px}#page-beanies .section-sizing-guide .card .card-content{padding:0}#page-beanies .section-sizing-guide h5{font-size:1.5rem}#page-beanies .section-sizing-guide td{padding-left:1.5rem}#page-beanies .section-sizing-guide p{font-size:14px}#page-beanies .section-ways-to-wear{background-color:#abdbed}#page-beanies .section-ways-to-wear p{font-size:16px;font-weight:initial}#page-beanies .section-make-a-collection{background-color:#fde16a}@media only screen and (min-width: 601px){#page-beanies .section-make-a-collection .detail-block .img-wrap{height:430px}#page-beanies .section-make-a-collection .detail-block .img-wrap img{vertical-align:text-top}#page-beanies .section-make-a-collection .detail-block .img-wrap img#iphone{vertical-align:initial}}#page-beanies .section-care-instructions h4{margin-bottom:2rem}#page-zipper-carry-all .header{background-position:center;background-repeat:no-repeat;background-size:cover;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 600px){#page-zipper-carry-all .fixed-page-title .title{letter-spacing:-0.3px}}#page-zipper-carry-all .flow-text-wrap{left:0;max-width:700px;padding:1.5rem 1rem}@media only screen and (max-width: 600px){#page-zipper-carry-all .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem}}#page-zipper-carry-all .flow-text-wrap h1,#page-zipper-carry-all .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-zipper-carry-all .flow-text-wrap .breadcrumbs,#page-zipper-carry-all .flow-text-wrap p{left:0;margin:0;text-align:left}#page-zipper-carry-all .flow-text-wrap p{font-family:'Roboto condensed', sans-serif;font-size:1.1rem}@media only screen and (max-width: 600px){#page-zipper-carry-all .section-details .carry-all-img img{max-width:285px}}#page-zipper-carry-all .section-pair-it-with,#page-zipper-carry-all .section-care-instructions{background-color:#ff7043}#page-zipper-carry-all .section-pair-it-with .dimensions .img-wrap{height:150px;line-height:150px}#page-makeup-bag .header{background-position:center;background-repeat:no-repeat;background-size:cover;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 600px){#page-makeup-bag .fixed-page-title .title{letter-spacing:-0.3px}}#page-makeup-bag .flow-text-bg{height:30%}@media only screen and (max-width: 992px){#page-makeup-bag .flow-text-bg{height:50%}}#page-makeup-bag .flow-text-wrap{left:0;max-width:700px;padding:1.5rem 1rem}@media only screen and (max-width: 600px){#page-makeup-bag .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem}}#page-makeup-bag .flow-text-wrap h1,#page-makeup-bag .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-makeup-bag .flow-text-wrap .breadcrumbs,#page-makeup-bag .flow-text-wrap p{left:0;margin:0;text-align:left}#page-makeup-bag .flow-text-wrap p{font-family:'Roboto condensed', sans-serif;font-size:1.1rem}@media only screen and (max-width: 600px){#page-makeup-bag .section-details .makeup-bag-img img{max-width:295px}}#page-makeup-bag .section-custom-options,#page-makeup-bag .section-care-instructions{background-color:#f38eb0}#page-makeup-bag .section-custom-options .sizes .img-wrap{height:140px;line-height:140px}#page-pencil-cases .accent-bg{background-color:#b29cda;color:#fff}@media only screen and (max-width: 345px){#page-pencil-cases .fixed-page-title .title{letter-spacing:-1.7px}}#page-pencil-cases .img-bg{background-position:52% 90%;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 1300px){#page-pencil-cases .img-bg{max-height:700px}}@media only screen and (max-width: 900px){#page-pencil-cases .img-bg{max-height:600px}}#page-pencil-cases .img-bg .hero-image-wrap{background-image:url(https://static.artofwhere.net/img2/img/pages/products/pencil-cases/pencil-case-banner-db7b4a79d5ab81565177.jpg);background-position:50% 55%;background-repeat:no-repeat;background-size:cover;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-pencil-cases .img-bg .flow-text-bg{height:40%}#page-pencil-cases .img-bg .flow-text-bg .flow-text-wrap{left:0;max-width:850px;padding:1.5rem 1rem}#page-pencil-cases .img-bg .flow-text-bg .flow-text-wrap h1,#page-pencil-cases .img-bg .flow-text-bg .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-pencil-cases .img-bg .flow-text-bg .flow-text-wrap .breadcrumbs{left:0}#page-pencil-cases .img-bg .flow-text-bg .flow-text-wrap p{left:0;text-align:left}#page-pencil-cases .img-bg .flow-text-bg h1,#page-pencil-cases .img-bg .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-pencil-cases .img-bg .flow-text-bg .breadcrumbs{margin-bottom:0}#page-pencil-cases .img-bg .flow-text-bg p{font-size:1.2rem}@media only screen and (max-width: 900px){#page-pencil-cases .img-bg .flow-text-bg p{font-size:1rem}}#page-pencil-cases .section-details .notebook-img img{margin-bottom:2rem}@media only screen and (max-width: 480px){#page-pencil-cases .section-details .notebook-img img{max-width:300px}}@media only screen and (max-width: 350px){#page-pencil-cases .section-details .notebook-img img{max-width:280px}}#page-pencil-cases .section-size .sizes-img img{width:100%}#page-tote-bags .img-bg{background-position:52% 90%;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 1300px){#page-tote-bags .img-bg{max-height:700px}}@media only screen and (max-width: 900px){#page-tote-bags .img-bg{max-height:600px}}#page-tote-bags .img-bg .hero-image-wrap{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tote-bags/tote-bags-banner-3d19c60519b2c6abdd66.jpg);background-position:50% 55%;background-repeat:no-repeat;background-size:cover;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}#page-tote-bags .img-bg .flow-text-bg{height:40%}#page-tote-bags .img-bg .flow-text-bg .flow-text-wrap{left:0;max-width:850px;padding:1.5rem 1rem}#page-tote-bags .img-bg .flow-text-bg .flow-text-wrap h1,#page-tote-bags .img-bg .flow-text-bg .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-tote-bags .img-bg .flow-text-bg .flow-text-wrap .breadcrumbs{left:0;margin-bottom:0;text-align:left}#page-tote-bags .img-bg .flow-text-bg .flow-text-wrap p{font-size:1.2rem;left:0;text-align:left}@media only screen and (max-width: 900px){#page-tote-bags .img-bg .flow-text-bg .flow-text-wrap p{font-size:1rem}}#page-tote-bags .section-details .flat-img img{margin-bottom:3rem}#page-tote-bags .section-details h2{padding-left:2rem}#page-tote-bags .section-custom-options{background:#a1d4d3;color:#333}@media only screen and (max-width: 600px){#page-tote-bags .section-custom-options .detail-block:not(.size){margin-bottom:4rem}#page-tote-bags .section-custom-options .detail-block br{display:none}}#page-tote-bags .section-custom-options .detail-block .img-wrap{height:360px;line-height:360px}@media only screen and (max-width: 992px){#page-tote-bags .section-custom-options .detail-block .img-wrap{height:auto;line-height:normal}}#page-tote-bags .section-custom-options .detail-block .img-wrap.strap{margin:1.5rem 0 0}#page-tote-bags .section-custom-options .detail-block .img-wrap.strap img{max-width:100%;vertical-align:top}#page-tote-bags .section-custom-options .detail-block.size .img-wrap{max-height:230px}#page-tote-bags .section-custom-options .detail-block.size .img-wrap img{margin-left:-2rem;vertical-align:top}#page-tote-bags .section-care-instructions{background:#a1d4d3;color:#333}#page-tote-bags .section-care-instructions h3{font-size:1.75rem;font-weight:normal;margin:0 0 1.5rem}#page-not-found{position:relative}#page-not-found h1,#page-not-found .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-not-found .breadcrumbs{font-family:'Roboto condensed', sans-serif;font-size:5rem;font-weight:bold;margin:0;padding-top:3rem}@media only screen and (max-width: 600px){#page-not-found h1,#page-not-found .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-not-found .breadcrumbs{padding-top:1rem}}#page-not-found p{color:#757575;font-size:1.7rem;font-weight:bold;margin:0;padding-bottom:3rem}#page-not-found .ghost-img img{animation:ghost 3s infinite ease-in-out;animation-direction:alternate;cursor:pointer;position:relative;-webkit-tap-highlight-color:transparent;user-select:none}@media only screen and (max-width: 600px){#page-not-found .ghost-img img{max-height:300px}}@keyframes ghost{0%{top:0}50%{top:-20px}100%{top:0}}#page-not-found .back-btn{padding:3rem 0}@media only screen and (max-width: 600px){#page-not-found .back-btn{padding:2rem 0}}#page-not-found #fabric-img{bottom:10rem;height:auto;max-width:400px;position:absolute;right:0;width:35%}body{transition:filter 0.25s, background-color 0.25s}body.ghost{background-color:#111;filter:invert(1)}body.ghost #ghost-img{animation:tada 5s linear 1 normal}#page-acrylic-prints .img-bg{margin-top:-182px;padding-top:182px;position:relative}#page-acrylic-prints .header-background{background:top center;background-position:0;background-size:cover;height:100%;position:absolute;top:0;width:100%}#page-acrylic-prints .flow-text-bg{background:transparent}#page-acrylic-prints .flow-text-wrap{background:rgba(0,0,0,0.6);bottom:2rem;left:initial;max-width:500px;padding:1.5rem 1rem;right:2rem}@media only screen and (max-width: 600px){#page-acrylic-prints .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem;right:0}}#page-acrylic-prints .flow-text-wrap h1,#page-acrylic-prints .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-acrylic-prints .flow-text-wrap .breadcrumbs,#page-acrylic-prints .flow-text-wrap p{left:0;margin:0;text-align:left}#page-acrylic-prints .flow-text-wrap p{font-family:'Roboto condensed', sans-serif;font-size:1rem}#page-acrylic-prints .full-page-panel .flow-text-bg{height:30%}@media only screen and (max-width: 992px){#page-acrylic-prints .full-page-panel .flow-text-bg{height:30%}}@media only screen and (max-width: 600px){#page-acrylic-prints .full-page-panel .flow-text-bg{height:100%}}#page-acrylic-prints .section-details{background-color:#333}@media only screen and (max-width: 600px){#page-acrylic-prints .section-details #main-image{margin-bottom:2rem}}#page-acrylic-prints .section-details .staggered-list li p{max-width:380px}#page-acrylic-prints .section-how-we-build h2{font-size:3.2rem;margin:0 auto 3rem;max-width:850px}#page-acrylic-prints .section-how-we-build .detail-block img{max-width:250px}#page-acrylic-prints .section-how-we-build .detail-block p{font-size:0.94rem}#page-acrylic-prints #sizes h2{font-size:3.2rem}#page-acrylic-prints #sizes p{font-size:14px}#page-acrylic-prints #sizes table{margin:0 auto;max-width:600px}#page-acrylic-prints .section-branding-options h2{font-size:3.2rem;margin:0}#page-acrylic-prints .section-branding-options p{font-size:0.94rem;margin:0}#page-acrylic-prints .section-branding-options .img-wrap img{margin-top:2rem;max-width:650px}@media only screen and (max-width: 992px){#page-acrylic-prints .section-branding-options .img-wrap img{max-width:500px}}@media only screen and (max-width: 600px){#page-acrylic-prints .section-branding-options .img-wrap img{max-width:290px}}#page-wrap-skirts h1,#page-wrap-skirts .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-wrap-skirts .breadcrumbs,#page-wrap-skirts h2{font-family:'Roboto', sans-serif}#page-wrap-skirts .header{background-position:center;background-repeat:no-repeat;background-size:cover;margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 992px){#page-wrap-skirts .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/wrap-skirts/cover-2-20250bd1d227d1517b79.jpg);margin-top:-122px;padding-top:122px}}#page-wrap-skirts .header .slider{height:100% !important;position:absolute;top:0}#page-wrap-skirts .header .slider .slides{height:100% !important}#page-wrap-skirts .header .slider .indicators{bottom:2rem;z-index:25}#page-wrap-skirts .header .slider .indicators .indicator-item{height:10px;vertical-align:middle;width:10px}@media only screen and (max-width: 600px){#page-wrap-skirts .fixed-page-title .title{letter-spacing:-0.3px}}#page-wrap-skirts .slider-btns{bottom:2rem;left:2rem;max-width:300px;position:absolute;right:initial;z-index:30}#page-wrap-skirts .slider-btns span{background-color:#cbd9ee;border-radius:50%;cursor:pointer;display:inline-block;height:45px;width:45px}#page-wrap-skirts .slider-btns span.slider-btn-prev{margin-right:1.25rem}#page-wrap-skirts .slider-btns span i{font-size:3rem}#page-wrap-skirts .flow-text-bg{height:0;overflow:initial;z-index:20}#page-wrap-skirts .flow-text-wrap{background:rgba(0,0,0,0.6);bottom:2rem;left:initial;max-width:400px;padding:1.5rem 1rem;right:2rem}@media only screen and (max-width: 600px){#page-wrap-skirts .flow-text-wrap{bottom:0;padding:0.75rem 0.5rem;right:0}}#page-wrap-skirts .flow-text-wrap h1,#page-wrap-skirts .flow-text-wrap .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-wrap-skirts .flow-text-wrap .breadcrumbs,#page-wrap-skirts .flow-text-wrap p{left:0;margin:0;text-align:left}#page-wrap-skirts .flow-text-wrap p{font-size:0.95rem}#page-wrap-skirts .section-details,#page-wrap-skirts .section-dimensions,#page-wrap-skirts .section-care-instructions{background-color:#333}#page-wrap-skirts .section-wrap-skirt-text{background-color:#444;padding:1.5rem}#page-wrap-skirts .section-wrap-skirt-text h1,#page-wrap-skirts .section-wrap-skirt-text .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-wrap-skirts .section-wrap-skirt-text .breadcrumbs{color:#fff;font-weight:600;margin-bottom:0}#page-wrap-skirts .section-wrap-skirt-text p{margin-top:0}#page-wrap-skirts .section-details{padding:0}#page-wrap-skirts .section-details .carry-all-img img{margin-bottom:1.5rem;max-width:380px}@media only screen and (max-width: 600px){#page-wrap-skirts .section-details .carry-all-img img{max-width:285px}}#page-wrap-skirts .section-details .icon-text{padding:3rem 0 1rem}@media only screen and (max-width: 600px){#page-wrap-skirts .section-details .icon-text{padding:0}}#page-wrap-skirts .section-details .icon-text .detail-block{max-width:500px}#page-wrap-skirts .section-tie-up .detail-block{margin-bottom:0;text-align:center}#page-wrap-skirts .section-tie-up .detail-block img{display:inline-block;height:20em;max-width:none}#page-wrap-skirts .section-dimensions{padding:0 2rem}#page-wrap-skirts .section-dimensions .container{max-width:1000px}#page-wrap-skirts .section-dimensions .sizes-txt{padding:3rem 0}#page-wrap-skirts .section-dimensions .sizes-txt h2{margin-bottom:0}#page-wrap-skirts .section-dimensions .sizes-txt p{max-width:400px}#page-wrap-skirts .section-dimensions .waist-img{padding:0}#page-wrap-skirts .branding-options .container{max-width:800px}#page-wrap-skirts .branding-options .detail-block{margin-bottom:0}#page-wrap-skirts .branding-options .img-wrap{height:auto;margin-bottom:0}#page-wrap-skirts .section-care-instructions{padding:3rem 0 3rem 3rem}#page-wrap-skirts .section-care-instructions .container{max-width:800px}#page-wrap-skirts .section-care-instructions .container .col,#page-wrap-skirts .section-care-instructions .container .card-wrap{margin-top:1em}#page-wrap-skirts .section-care-instructions h4{margin:0 0 1.25rem}#page-wrap-skirts .section-care-instructions h4 i{margin-left:-2rem;margin-right:0.5rem;vertical-align:middle}#page-wrap-skirts .section-care-instructions li{font-size:0.95rem;list-style-type:disc;margin-left:1.15rem}.dtg-printing-page.centered-page{background-repeat:no-repeat;background-size:cover}.dtg-printing-page.centered-page h1,.dtg-printing-page.centered-page .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .dtg-printing-page.centered-page .breadcrumbs{font-family:'Roboto', sans-serif;font-size:5rem;font-weight:600}.dtg-printing-page.centered-page h3{font-size:21px;font-weight:bold}.dtg-printing-page.centered-page .container{max-width:900px}.dtg-printing-page.centered-page .container .row{margin-left:auto;margin-right:auto}.dtg-printing-page.centered-page .header{background-image:url(https://static.artofwhere.net/img2/img/pages/dtg-printing/banner-a3cbf509d402d1cf05dc.jpg);background-size:cover;padding-bottom:5rem;padding-top:25rem;position:relative}.dtg-printing-page.centered-page .header .container{position:inherit;z-index:1}.dtg-printing-page.centered-page .header .layer{background-color:rgba(33,33,33,0.4);height:100%;left:0;position:absolute;top:0;width:100%}.dtg-printing-page.centered-page .tabs,.dtg-printing-page.centered-page .static-tabs{background:transparent;border-bottom:0;padding:0}.dtg-printing-page.centered-page .tabs .tab,.dtg-printing-page.centered-page .static-tabs .tab{text-transform:none}.dtg-printing-page.centered-page .tabs .tab a,.dtg-printing-page.centered-page .static-tabs .tab a{color:#898989;font-size:1.18rem;font-weight:bold}.dtg-printing-page.centered-page .tabs .tab a.active,.dtg-printing-page.centered-page .static-tabs .tab a.active{color:#000}.dtg-printing-page.centered-page hr{margin:3rem 0 1rem}.dtg-printing-page.centered-page ul:not(.tabs):not(.static-tabs) li{list-style-type:disc;margin-left:4rem}.dtg-printing-page.centered-page .image{border-radius:2px;overflow:hidden;position:relative}.dtg-printing-page.centered-page .image.side{float:left;margin-bottom:1rem;width:50%}.dtg-printing-page.centered-page .image.side.full{height:auto}.dtg-printing-page.centered-page .image.side.left,.dtg-printing-page.centered-page #headbands-page #headband-slider .slider-container .slider .slider-btns .image.side.slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .dtg-printing-page.centered-page .image.side.slider-btn-prev{padding-right:1rem}.dtg-printing-page.centered-page .image.side.right,.dtg-printing-page.centered-page #headbands-page #headband-slider .slider-container .slider .slider-btns .image.side.slider-btn-next,#headbands-page #headband-slider .slider-container .slider .slider-btns .dtg-printing-page.centered-page .image.side.slider-btn-next{padding-left:1rem}.dtg-printing-page.centered-page .right+*,.dtg-printing-page.centered-page #headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-next+*,#headbands-page #headband-slider .slider-container .slider .slider-btns .dtg-printing-page.centered-page .slider-btn-next+*{clear:both}#page-snapback h1,#page-snapback .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-snapback .breadcrumbs,#page-snapback h2{font-family:'Roboto', sans-serif}#page-snapback .header{margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 992px){#page-snapback .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/snapbacks/snapback-banner-1-e34a5255c8892f0f5f18.jpg);background-position-x:-505px;background-repeat:no-repeat;background-size:cover;margin-top:-122px;padding-top:122px}}#page-snapback .header .slider{height:100% !important;position:absolute;top:0}#page-snapback .header .slider .slides{height:100% !important}#page-snapback .header .slider .slider-btns{bottom:2rem;left:initial;max-width:300px;position:absolute;right:2rem;z-index:30}#page-snapback .header .slider .slider-btns span{background-color:#cbd9ee;border-radius:50%;cursor:pointer;display:inline-block;height:45px;width:45px}#page-snapback .header .slider .slider-btns span.slider-btn-prev{margin-right:1.25rem}#page-snapback .header .slider .slider-btns span i{font-size:3rem}#page-snapback .header .slider .indicators{bottom:2rem;z-index:25}#page-snapback .header .slider .indicators .indicator-item{height:10px;vertical-align:middle;width:10px}#page-snapback .flow-text-bg{background:transparent;height:0;overflow:initial;z-index:20}#page-snapback .flow-text-bg .flow-text-wrap{background:rgba(0,0,0,0.7);bottom:2rem;left:2rem;max-width:380px;padding:1.5rem 1rem;right:initial}#page-snapback .flow-text-bg h1,#page-snapback .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-snapback .flow-text-bg .breadcrumbs,#page-snapback .flow-text-bg p{left:initial;text-align:initial}#page-snapback .flow-text-bg h1,#page-snapback .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-snapback .flow-text-bg .breadcrumbs{font-size:2.5rem;margin-bottom:0.5rem}#page-snapback .flow-text-bg p{font-family:'Roboto condensed', sans-serif;font-size:1rem}#page-snapback .flow-text-bg a{border-radius:0;height:50px;line-height:50px;width:50%}#page-snapback .section-snapback-text{background-color:#353535;padding:1.5rem}#page-snapback .section-snapback-text h1,#page-snapback .section-snapback-text .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group #page-snapback .section-snapback-text .breadcrumbs{color:#fff;font-weight:600;margin-bottom:0}#page-snapback .section-overview .container{max-width:800px}#page-snapback .section-overview .detail-block{margin-bottom:0}#page-snapback .section-overview .detail-block img{height:40px;margin-bottom:1.25rem;width:40px}#page-snapback .section-overview .detail-block h5{color:#333;font-size:13px;font-weight:500;margin:0}@media only screen and (max-width: 600px){#page-snapback .section-overview .detail-block h5{font-size:11px}}#page-snapback .section-overview .detail-block{text-decoration:none}#page-snapback .section-details{background-color:#333}#page-snapback .section-details #flat-img{margin-bottom:3rem;max-height:350px}#page-snapback .section-ways-to-wear .container{max-width:800px}#page-snapback .section-ways-to-wear .detail-block.vertical-block{margin-bottom:0.75rem}#page-snapback .section-ways-to-wear .detail-block.vertical-block h4,#page-snapback .section-ways-to-wear .detail-block.vertical-block p{font-size:15px}#page-snapback .section-ways-to-wear .detail-block.vertical-block h4{font-weight:600;margin-bottom:0.75rem}#page-snapback .section-ways-to-wear .detail-block.vertical-block p{color:#000;font-weight:400}#page-snapback .section-ways-to-wear .detail-block.vertical-block img{margin-bottom:1.5rem;margin-right:1rem}#page-snapback .section-info .container{max-width:800px}#page-snapback .section-info #info{border:1px solid #d2d2d2;border-radius:4px}#page-snapback .section-info #info #title{padding:0}#page-snapback .section-info #info .tabs,#page-snapback .section-info #info .static-tabs{border-bottom:1px solid #d2d2d2}#page-snapback .section-info #info .details{background-color:#fff;padding:1rem}#page-snapback .section-info #info .details ul{padding-left:1.1rem}#page-snapback .section-info #info .details ul li{list-style-type:disc}#page-snapback .section-info #info .details .dropship{border-bottom:1px solid #d2d2d2;padding-bottom:1rem}#page-snapback .section-info #info .details .calculator{color:#f386aa;font-weight:500;margin-bottom:0}#page-snapback .section-info #info .details table{max-width:350px}#page-snapback .section-info #info .details table thead tr th{padding:0.5rem 0}#page-snapback .section-info #info .details table tbody tr td{padding:1rem 0}#page-snapback .section-info #info .details table thead tr th:nth-child(1),#page-snapback .section-info #info .details table thead tr th:nth-child(2){font-weight:normal}#page-snapback .section-info #info .details table tbody tr td#profit{font-weight:bold}#page-snapback .section-info #info .details table tbody tr td input{border:0;color:#333;margin-bottom:0;width:3em}#page-snapback .section-info #info .details table tbody tr td input#retail-price{border:1px solid #d2d2d2;border-radius:3px;margin-left:0.5rem;padding:0 0.9rem}#page-snapback .section-info #info .details table tbody tr td input#profit-price{font-weight:bold}#page-snapback .section-info #info .details p.info{font-weight:500;margin:0}#page-snapback .section-info #info .details#branding .img-wrap img{max-height:300px}#page-snapback .section-info #info .details#colours .tabs,#page-snapback .section-info #info .details#colours .static-tabs{border:0;height:100%}#page-snapback .section-info #info .details#colours .tabs .indicator,#page-snapback .section-info #info .details#colours .static-tabs .indicator{display:none}#page-snapback .section-info #info .details#colours .tabs .tab,#page-snapback .section-info #info .details#colours .static-tabs .tab{margin-bottom:1.5rem}#page-snapback .section-info #info .details#colours .tabs .tab a,#page-snapback .section-info #info .details#colours .static-tabs .tab a{padding:2px 10px}#page-snapback .section-info #info .details#colours .tabs .tab a img,#page-snapback .section-info #info .details#colours .static-tabs .tab a img{filter:drop-shadow(0 0 2px #666);max-width:66px}#page-snapback .section-info #info .details#colours .tabs .tab a.active img,#page-snapback .section-info #info .details#colours .static-tabs .tab a.active img{opacity:0.4}#page-snapback .section-info #info .details#colours .tab-content h5{margin-bottom:0}#page-snapback .section-info #info .details#colours .tab-content p{margin:0}@media only screen and (max-width: 600px){#page-snapback .section-info #info .details#colours .tab-content p{margin-bottom:2rem}}#page-snapback .section-info #info .details#print .title{font-weight:500}#page-snapback .section-info #info .details#print button{bottom:0;position:absolute}#page-snapback .section-info .tabs a,#page-snapback .section-info .static-tabs a{color:#333;font-size:14px;text-transform:none}#page-snapback .section-compliance{padding:3rem 0}@media only screen and (max-width: 600px){#page-snapback .section-compliance{padding:2rem}}#page-snapback .section-compliance .container{max-width:800px}#page-snapback .section-compliance h4{margin-top:0}#page-snapback .section-compliance p{margin-bottom:0}#page-snapback .section-compliance h4 i{margin-left:-2.5rem;margin-right:1rem;vertical-align:middle}#page-snapback .section-care-instructions{padding:3rem 0}@media only screen and (max-width: 600px){#page-snapback .section-care-instructions{padding:2rem}}#page-snapback .section-care-instructions .container{max-width:800px}#page-snapback .section-care-instructions h4{margin-top:0}#page-snapback .section-care-instructions h4 i{margin-left:-2.5rem;margin-right:1rem;vertical-align:middle}#page-snapback .section-care-instructions ul{margin-top:0.85rem;padding-left:1.2rem}#page-snapback .section-care-instructions ul li{font-size:13.5px;list-style-type:disc}.product-page-v2019:not(#not) h1,.product-page-v2019:not(#not) .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v2019:not(#not) .breadcrumbs,.product-page-v2019:not(#not) h2{font-family:'Bebas Neue', sans-serif;font-size:3rem;font-weight:500;line-height:2.75rem;text-align:center}.product-page-v2019:not(#not) hr{border-color:#e7e7e9;border-style:solid}.product-page-v2019:not(#not) th,.product-page-v2019:not(#not) td{padding:15px 10px}.product-page-v2019:not(#not) .wholesale-note{padding:0 10px}.product-page-v2019:not(#not) img.vip{border:1px solid rgba(0,0,0,0.1);border-radius:2px}.product-page-v2019:not(#not) .fullcover{background:rgba(0,0,0,0.5);bottom:0;left:0;position:absolute;right:0;top:0}.product-page-v2019:not(#not) .tabs,.product-page-v2019:not(#not) .static-tabs{background-color:#000}.product-page-v2019:not(#not) .tabs .indicator,.product-page-v2019:not(#not) .static-tabs .indicator{display:none}.product-page-v2019:not(#not) .tabs a,.product-page-v2019:not(#not) .static-tabs a{color:#fff;font-size:0.95rem;text-transform:none}.product-page-v2019:not(#not) video{height:100%;object-fit:cover;width:100%}.product-page-v2019:not(#not) .header{margin-top:-182px;padding-top:182px;position:relative}@media only screen and (max-width: 992px){.product-page-v2019:not(#not) .header{background-position-x:center;background-repeat:no-repeat;background-size:cover;margin-top:-122px;padding-top:122px}}.product-page-v2019:not(#not) .header .slider{height:100% !important;position:absolute;top:0}.product-page-v2019:not(#not) .header .slider .slides{height:100% !important}.product-page-v2019:not(#not) .header .slider .slider-btns{bottom:3rem;left:initial;max-width:300px;position:absolute;right:3rem;z-index:30}.product-page-v2019:not(#not) .header .slider .slider-btns span{background-color:#fff;border-radius:50%;cursor:pointer;display:inline-block;height:3rem;width:3rem}.product-page-v2019:not(#not) .header .slider .slider-btns span.slider-btn-prev{margin-right:1.25rem}.product-page-v2019:not(#not) .header .slider .slider-btns span i{font-size:3rem}.product-page-v2019:not(#not) .header .slider .indicators{display:none}.product-page-v2019:not(#not) .flow-text-bg .flow-text-wrap,.product-page-v2019:not(#not) .section-product-text .flow-text-wrap{background:black;bottom:3rem;left:0;max-width:46rem;padding:1.5rem 1rem;right:initial}.product-page-v2019:not(#not) .flow-text-bg h1,.product-page-v2019:not(#not) .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v2019:not(#not) .flow-text-bg .breadcrumbs,.product-page-v2019:not(#not) .flow-text-bg p,.product-page-v2019:not(#not) .section-product-text h1,.product-page-v2019:not(#not) .section-product-text .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v2019:not(#not) .section-product-text .breadcrumbs,.product-page-v2019:not(#not) .section-product-text p{color:#fff;left:initial;text-align:initial}.product-page-v2019:not(#not) .flow-text-bg h1,.product-page-v2019:not(#not) .flow-text-bg .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v2019:not(#not) .flow-text-bg .breadcrumbs,.product-page-v2019:not(#not) .section-product-text h1,.product-page-v2019:not(#not) .section-product-text .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v2019:not(#not) .section-product-text .breadcrumbs{margin-bottom:0.5rem}.product-page-v2019:not(#not) .flow-text-bg p,.product-page-v2019:not(#not) .section-product-text p{font-size:1.2rem;font-weight:300;line-height:2rem}.product-page-v2019:not(#not) .flow-text-bg .btn,.product-page-v2019:not(#not) .flow-text-bg .btn-large,.product-page-v2019:not(#not) .section-product-text .btn,.product-page-v2019:not(#not) .section-product-text .btn-large{background:transparent;border:1px solid #fff;color:#fff;line-height:1.7rem}.product-page-v2019:not(#not) .flow-text-bg .btn:hover,.product-page-v2019:not(#not) .flow-text-bg .btn-large:hover,.product-page-v2019:not(#not) .section-product-text .btn:hover,.product-page-v2019:not(#not) .section-product-text .btn-large:hover{background-color:rgba(255,255,255,0.25)}.product-page-v2019:not(#not) .flow-text-bg{background:transparent;height:0;overflow:initial;z-index:10}.product-page-v2019:not(#not) .section-product-text{background-color:black;padding:1.5rem}.product-page-v2019:not(#not) .section-overview .detail-block{margin-bottom:0;text-decoration:none}.product-page-v2019:not(#not) .section-overview .detail-block img{height:3rem;width:3rem}.product-page-v2019:not(#not) .section-overview .detail-block h5{color:#333;font-size:13px;margin:0}@media only screen and (max-width: 600px){.product-page-v2019:not(#not) .section-overview .detail-block h5{font-size:11px}}.product-page-v2019:not(#not) .section-details{background-color:black;background-position:center;background-size:cover}.product-page-v2019:not(#not) .section-details #flat-img{margin-bottom:3rem;max-height:28rem}.product-page-v2019:not(#not) .section-details .detail-block{overflow:hidden}.product-page-v2019:not(#not) .section-details .detail-block p{font-size:1.2rem}.product-page-v2019:not(#not) .section-how-video{background:black;max-height:38rem;overflow:hidden;padding:0}.product-page-v2019:not(#not) .section-how-video video{display:block}.product-page-v2019:not(#not) .section-how-video h2{color:#fff;font-size:4rem;letter-spacing:0.1rem;margin-top:-2rem;position:absolute;text-align:center;text-transform:uppercase;top:50%;width:100%}.product-page-v2019:not(#not) .section-dropship{font-size:1.1rem}.product-page-v2019:not(#not) .section-dropship img{margin-left:-20%;max-width:none;width:116%}.product-page-v2019:not(#not) .section-dropship ul{padding-left:1.25em}.product-page-v2019:not(#not) .section-dropship ul li{list-style-type:disc;margin:0.5rem 0}.product-page-v2019:not(#not) .section-info .details,.product-page-v2019:not(#not) .section-specs .details{padding:3rem}.product-page-v2019:not(#not) .section-info .details{background-color:#fff}.product-page-v2019:not(#not) .section-info .details ul{padding-left:1.1rem}.product-page-v2019:not(#not) .section-info .details ul li{list-style-type:disc}.product-page-v2019:not(#not) .section-info .details .dropship{border-bottom:1px solid #d2d2d2;padding-bottom:1rem}.product-page-v2019:not(#not) .section-info .details .calculator{font-weight:500;margin-bottom:0}.product-page-v2019:not(#not) .section-info .details table:not(.clear){max-width:350px}.product-page-v2019:not(#not) .section-info .details table:not(.clear) thead tr th{padding:0.5rem 0}.product-page-v2019:not(#not) .section-info .details table:not(.clear) tbody tr td{padding:1rem 0}.product-page-v2019:not(#not) .section-info .details table:not(.clear) thead tr th:nth-child(1),.product-page-v2019:not(#not) .section-info .details table:not(.clear) thead tr th:nth-child(2){font-weight:normal}.product-page-v2019:not(#not) .section-info .details table:not(.clear) tbody tr td#profit{font-weight:bold}.product-page-v2019:not(#not) .section-info .details table:not(.clear) tbody tr td input{border:0;color:#333;margin-bottom:0;width:4rem}.product-page-v2019:not(#not) .section-info .details table:not(.clear) tbody tr td input#retail-price,.product-page-v2019:not(#not) .section-info .details table:not(.clear) tbody tr td input.retail-price{border:1px solid #d2d2d2;border-radius:3px;margin-left:0.5rem;padding:0 0.9rem}.product-page-v2019:not(#not) .section-info .details table:not(.clear) tbody tr td input#profit-price{font-weight:bold}.product-page-v2019:not(#not) .section-info .details p.info{font-weight:500;margin:0}.product-page-v2019:not(#not) .section-info .details#branding .img-wrap img{max-height:300px}.product-page-v2019:not(#not) .section-info .details#colors .tabs,.product-page-v2019:not(#not) .section-info .details#colors .static-tabs{border:0;height:100%}.product-page-v2019:not(#not) .section-info .details#colors .tabs .indicator,.product-page-v2019:not(#not) .section-info .details#colors .static-tabs .indicator{display:none}.product-page-v2019:not(#not) .section-info .details#colors .tabs .tab,.product-page-v2019:not(#not) .section-info .details#colors .static-tabs .tab{margin-bottom:1.5rem}.product-page-v2019:not(#not) .section-info .details#colors .tabs .tab a,.product-page-v2019:not(#not) .section-info .details#colors .static-tabs .tab a{padding:2px 10px}.product-page-v2019:not(#not) .section-info .details#colors .tabs .tab a img,.product-page-v2019:not(#not) .section-info .details#colors .static-tabs .tab a img{filter:drop-shadow(0 0 2px #666);max-width:66px}.product-page-v2019:not(#not) .section-info .details#colors .tabs .tab a.active img,.product-page-v2019:not(#not) .section-info .details#colors .static-tabs .tab a.active img{opacity:0.4}.product-page-v2019:not(#not) .section-info .details#colors .tab-content h5{margin-bottom:0}.product-page-v2019:not(#not) .section-info .details#colors .tab-content p{margin:0}@media only screen and (max-width: 600px){.product-page-v2019:not(#not) .section-info .details#colors .tab-content p{margin-bottom:2rem}}.product-page-v2019:not(#not) .section-info .details#print .title{font-weight:500}.product-page-v2019:not(#not) .section-info .details#print button{bottom:0;position:absolute}@media only screen and (max-width: 600px){.product-page-v2019:not(#not) .section-specs,.product-page-v2019:not(#not) .section-descriptions{padding-top:0}}.product-page-v2019:not(#not) .section-descriptions-header{background:black;background-position-x:left;background-repeat:no-repeat;background-size:cover}.product-page-v2019:not(#not) .section-descriptions-header h2,.product-page-v2019:not(#not) .section-descriptions-header p{color:#fff;text-align:left}.product-page-v2019:not(#not) .section-descriptions .details{padding:2rem}.product-page-v2019:not(#not) .section-descriptions .description-entry:nth-of-type(1){padding-right:3rem}@media only screen and (min-width: 601px){.product-page-v2019:not(#not) .section-descriptions .description-entry:nth-of-type(2){border-left:1px solid #e7e7e7;padding-left:3rem}}.product-page-v2019:not(#not) .section-extra{font-size:.9rem;font-weight:300;line-height:1.2rem;padding-top:0}.product-page-v2019:not(#not) .section-extra .text-on-vertical{margin-bottom:1.5rem;position:relative}.product-page-v2019:not(#not) .section-extra .text-on-vertical>div{background:rgba(0,0,0,0.5);bottom:0;color:white;left:0.75rem;padding:0 1rem;position:absolute;right:0.75rem}.product-page-v2019:not(#not) .section-compliance{padding-top:0}.product-page-v2019:not(#not) .section-compliance li{list-style-type:disc;margin-left:2rem}.product-page-v2019:not(#not) .sweatshirt-size-table{float:right}.product-page-v2019:not(#not) .sweatshirt-size-table thead tr th:nth-child(2):not(#not){font-weight:700}.product-page-v2019:not(#not) .section-lookingfor{padding:0 2rem 3rem}.product-page-v2019:not(#not) .section-lookingfor .lookingfor-container{background:black;border-radius:2rem;color:white;display:block;height:7rem;margin:auto;max-width:600px;overflow:hidden}.product-page-v2019:not(#not) .section-lookingfor .lookingfor-container .col,.product-page-v2019:not(#not) .section-lookingfor .lookingfor-container .card-wrap{padding:0}.product-page-v2019:not(#not) .section-lookingfor .lookingfor-container .col div,.product-page-v2019:not(#not) .section-lookingfor .lookingfor-container .card-wrap div{background-position:left center;background-size:cover;height:7rem;width:100%}.product-page-v2019:not(#not) .section-lookingfor .lookingfor-container strong{display:inline-block;margin-top:1rem;padding-left:2rem}.product-page-v2019:not(#not) .section-lookingfor .lookingfor-container span{display:inline-block;font-weight:200;padding-left:2rem}#page-shirts-men:not(#not) .tabs .active,#page-shirts-men:not(#not) .static-tabs .active{background-color:#29323b}@media only screen and (max-width: 992px){#page-shirts-men:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-men/banner_01-07124237a1f3b177d151.jpg)}}#page-shirts-men:not(#not) .section-info .details .calculator{color:#29323b}#page-shirts-men:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-men/details_header-a9b49e85977a01576ba2.jpg)}#page-shirts-men:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-men/descriptions_header-7ae147b26bfe5a38e159.jpg)}#page-shirts-unisex:not(#not) .tabs .active,#page-shirts-unisex:not(#not) .static-tabs .active{background-color:#f36523}@media only screen and (max-width: 992px){#page-shirts-unisex:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-unisex/banner_01-f05ddc947954d76f24f6.jpg)}}#page-shirts-unisex:not(#not) .section-info .details .calculator{color:#f36523}#page-shirts-unisex:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-unisex/details_header-b7d67511a52ba141ea48.jpg)}#page-shirts-unisex:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-unisex/descriptions_header-7b7bce3797d44540c4ad.jpg)}#page-milltex-shirts-unisex:not(#not) .tabs .active,#page-milltex-shirts-unisex:not(#not) .static-tabs .active{background-color:#78b7c9}@media only screen and (max-width: 992px){#page-milltex-shirts-unisex:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/milltex-shirts-unisex/banner-1-8926602a6f602113f193.jpg)}}#page-milltex-shirts-unisex:not(#not) .section-info .details .calculator{color:#78b7c9}#page-milltex-shirts-unisex:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/milltex-shirts-unisex/details-header-9076332365e297f205ab.jpg)}#page-milltex-shirts-unisex:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-unisex/descriptions_header-7b7bce3797d44540c4ad.jpg)}#page-shirts-women:not(#not) .tabs .active,#page-shirts-women:not(#not) .static-tabs .active{background-color:#f386aa}@media only screen and (max-width: 992px){#page-shirts-women:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-women/banner_01-89f829320a5594a285c8.jpg)}}#page-shirts-women:not(#not) .section-info .details .calculator{color:#f386aa}#page-shirts-women:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-women/details_header-98dd12134db313b7679a.jpg)}#page-shirts-women:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/shirts-women/descriptions_header-f9dea7ec3b797f954c77.jpg)}#page-cotton-linen-pillows:not(#not) .flow-text-bg .flow-text-wrap{background:rgba(0,0,0,0.75)}#page-cotton-linen-pillows:not(#not) .tabs .active,#page-cotton-linen-pillows:not(#not) .static-tabs .active{background-color:#906e91}@media only screen and (max-width: 992px){#page-cotton-linen-pillows:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/cotton-linen-pillows/banner-1-73b94a3182bcfce75f39.jpg)}}#page-cotton-linen-pillows:not(#not) .section-info .details .calculator{color:#906e91}#page-cotton-linen-pillows:not(#not) #pricing table{max-width:none}#page-cotton-linen-pillows:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/cotton-linen-pillows/features-banner-3ec91041c0ce82898b18.jpg)}#page-cotton-linen-pillows:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/cotton-linen-pillows/banner-product-listings-653d787b5c37d2952f47.jpg)}#page-cotton-canvas-pillows:not(#not) .flow-text-bg .flow-text-wrap{background:rgba(0,0,0,0.75)}#page-cotton-canvas-pillows:not(#not) .tabs .active,#page-cotton-canvas-pillows:not(#not) .static-tabs .active{background-color:#095ce4}#page-cotton-canvas-pillows:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/cotton-canvas-pillows/banner-700116f1ae56ff6e1b84.jpg);background-size:cover}#page-cotton-canvas-pillows:not(#not) .section-info .details .calculator{color:#095ce4}#page-cotton-canvas-pillows:not(#not) #pricing table{max-width:none}#page-cotton-canvas-pillows:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/cotton-canvas-pillows/features-banner-1a245fe5b0cd14483001.jpg)}#page-cotton-canvas-pillows:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/cotton-canvas-pillows/banner-product-listings-bbc35c8730d94c083cb1.jpg)}#page-racerback-tank-top:not(#not) .tabs .active,#page-racerback-tank-top:not(#not) .static-tabs .active{background-color:#0ccfd0}@media only screen and (max-width: 992px){#page-racerback-tank-top:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/racerback-tank-top/banner_01-7b8a1b1040e004c28d9b.jpg)}}#page-racerback-tank-top:not(#not) .section-info{padding-top:0}#page-racerback-tank-top:not(#not) .section-info .details .calculator{color:#0ccfd0}#page-racerback-tank-top:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/racerback-tank-top/details_header-e6316a46989c27da8100.jpg)}#page-racerback-tank-top:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/racerback-tank-top/descriptions_header-1ae04f152b164ed73f49.jpg)}#page-crewneck-sweatshirts:not(#not) .tabs .active,#page-crewneck-sweatshirts:not(#not) .static-tabs .active{background-color:#567381}@media only screen and (max-width: 992px){#page-crewneck-sweatshirts:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/crewneck-sweatshirts/banner_01-df339b1e423fe03196e6.jpg)}}#page-crewneck-sweatshirts:not(#not) .section-info .details .calculator{color:#567381}#page-crewneck-sweatshirts:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/crewneck-sweatshirts/details_header-cc09ce63ddd811730897.jpg)}#page-crewneck-sweatshirts:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/crewneck-sweatshirts/descriptions_header-e900af4926a73bd06719.jpg)}#page-silk-scarves:not(#not) .section-descriptions-header h2,#page-silk-scarves:not(#not) .section-descriptions-header p{color:#eee}#page-silk-scarves:not(#not) .flow-text-bg .flow-text-wrap{background:rgba(0,0,0,0.75)}#page-silk-scarves:not(#not) .tabs .active,#page-silk-scarves:not(#not) .static-tabs .active{background-color:#ffadb6;color:#000 !important}@media only screen and (max-width: 992px){#page-silk-scarves:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/silk-scarves/banner-3-df5b9421106a73d5986a.jpg);background-position-x:70%}}#page-silk-scarves:not(#not) .section-info .details .calculator{color:#ffadb6}#page-silk-scarves:not(#not) #pricing table{max-width:none}#page-silk-scarves:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/silk-scarves/banner-product-listings-c780007905609ed82ce8.jpg)}#page-silk-charmeuse-scarves:not(#not) .tabs .active,#page-silk-charmeuse-scarves:not(#not) .static-tabs .active{background-color:#4d92f8;color:black}@media only screen and (max-width: 992px){#page-silk-charmeuse-scarves:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/silk-charmeuse/banner-1-125ae4854ab8f032c324.jpg)}}#page-silk-charmeuse-scarves:not(#not) .section-details{background-color:#fafbfd}#page-silk-charmeuse-scarves:not(#not) .section-details .features-img{margin-left:-4%;max-height:500px}@media only screen and (max-width: 992px){#page-silk-charmeuse-scarves:not(#not) .section-details .features-img{margin-bottom:3rem}}#page-silk-charmeuse-scarves:not(#not) .section-info #sizes .details .calculator{color:#fafbfd}#page-silk-charmeuse-scarves:not(#not) #pricing table{max-width:none}#page-silk-charmeuse-scarves:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/silk-charmeuse/banner-charmeuse-9246b0c186a072adfb38.jpg)}#page-polyester-scarves:not(#not) .section-descriptions-header h2,#page-polyester-scarves:not(#not) .section-descriptions-header p{color:#eee}#page-polyester-scarves:not(#not) .flow-text-bg .flow-text-wrap{background:rgba(0,0,0,0.75)}#page-polyester-scarves:not(#not) .tabs .active,#page-polyester-scarves:not(#not) .static-tabs .active{background-color:#d32c3b}@media only screen and (max-width: 992px){#page-polyester-scarves:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/polyester-scarves/banner-1-bd36dac16d485a9332f0.jpg);background-position-x:50%}}#page-polyester-scarves:not(#not) .section-info .details .calculator{color:#d32c3b}#page-polyester-scarves:not(#not) #pricing table{max-width:none}#page-polyester-scarves:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/polyester-scarves/banner-product-listings-895612dcba7fe8c2a1d7.jpg);background-position-y:bottom}#page-wall-tapestries:not(#not) .tabs .active,#page-wall-tapestries:not(#not) .static-tabs .active{background-color:#4dc3ff;color:black}@media only screen and (max-width: 992px){#page-wall-tapestries:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/wall-tapestries/banner-4-20b853dfe2e388135895.jpg)}}#page-wall-tapestries:not(#not) .section-info .details .calculator{color:#4dc3ff}#page-wall-tapestries:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/wall-tapestries/features-banner-b5261f1daeed0c60a590.jpg);background-position:35% 50%}@media only screen and (max-width: 600px){#page-wall-tapestries:not(#not) .section-details{background-position:100% 50%}}#page-wall-tapestries:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/wall-tapestries/descriptions_header-7b06924710bffe95a301.jpg);background-position:100% 50%;background-size:175%}@media only screen and (max-width: 992px){#page-wall-tapestries:not(#not) .section-descriptions-header{background-size:200%}}@media only screen and (max-width: 600px){#page-wall-tapestries:not(#not) .section-descriptions-header{background-position:50% 50%;background-size:275%}}#page-duvet-covers:not(#not) .tabs .active,#page-duvet-covers:not(#not) .static-tabs .active{background-color:#e1bcb3;color:black}@media only screen and (max-width: 992px){#page-duvet-covers:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/duvet-covers/banner-1-bc995be22f6247227921.jpg)}}#page-duvet-covers:not(#not) .section-info .details .calculator{color:#e1bcb3}#page-duvet-covers:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/duvet-covers/features-banner-fb415469c096d048b52c.jpg);background-position:35% 50%}@media only screen and (max-width: 600px){#page-duvet-covers:not(#not) .section-details{background-position:100% 50%}}#page-duvet-covers:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/duvet-covers/descriptions_header-aeb094f1a8b2ebc09163.jpg);background-position:50% 100%}#page-bed-pillow-cases:not(#not) .tabs .active,#page-bed-pillow-cases:not(#not) .static-tabs .active{background-color:#f1513e}@media only screen and (max-width: 992px){#page-bed-pillow-cases:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/bed-pillow-cases/banner-1-f9bd59f710d7466ba85a.jpg)}}#page-bed-pillow-cases:not(#not) .section-info .details .calculator{color:#f1513e}#page-bed-pillow-cases:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/bed-pillow-cases/features-banner-64992dab6c6dad78e490.jpg);background-position:35% 50%}@media only screen and (max-width: 600px){#page-bed-pillow-cases:not(#not) .section-details{background-position:100% 50%}}#page-bed-pillow-cases:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/bed-pillow-cases/descriptions_header-e1c80eae76ab29be0c1c.jpg);background-position:50% 0%}#page-face-masks:not(#not) .tabs .active,#page-face-masks:not(#not) .static-tabs .active{background-color:#951ac2;color:white}@media only screen and (max-width: 992px){#page-face-masks:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/face-masks/banner-1-39c391dd834061bdf72f.jpg)}}#page-face-masks:not(#not) .section-info .details .calculator{color:#951ac2}#page-face-masks:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/face-masks/features-banner-3e9a1a9ce7f603648bb0.jpg);background-position:32% 50%}@media only screen and (max-width: 600px){#page-face-masks:not(#not) .section-details{background-position:100% 50%}}#page-face-masks:not(#not) .detail-block p{color:black;font-weight:400}#page-face-masks:not(#not) .section-descriptions .details{padding:0 1rem}#page-face-masks:not(#not) .section-important{padding:0}#page-face-masks:not(#not) .section-filters{padding-top:0}#page-face-masks:not(#not) .section-filters button{margin:2rem 0}#page-face-masks:not(#not) .side-pic{height:400px}#page-face-masks:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/face-masks/descriptions_header-cf616f18d4c699f9cc26.jpg);background-position:50% 40%}#page-face-masks:not(#not) .lookingfor-container .col div,#page-face-masks:not(#not) .lookingfor-container .card-wrap div{background-image:url(https://static.artofwhere.net/img2/img/pages/products/face-masks/link_thumb-cc4d922f54c8976a17f6.jpg)}#page-lightweight-face-coverings:not(#not) .tabs .active,#page-lightweight-face-coverings:not(#not) .static-tabs .active{background-color:#46c219;color:white}@media only screen and (max-width: 992px){#page-lightweight-face-coverings:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/lightweight-face-coverings/banner-1-0a22d473e544f25e9fec.jpg);background-position:66% 0%}}#page-lightweight-face-coverings:not(#not) .section-info .details .calculator{color:#46c219}#page-lightweight-face-coverings:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/lightweight-face-coverings/features-banner-0504aa9032b312cffd8e.jpg);background-position:32% 50%}@media only screen and (max-width: 600px){#page-lightweight-face-coverings:not(#not) .section-details{background-position:100% 50%}}#page-lightweight-face-coverings:not(#not) .detail-block p{color:black;font-weight:400}#page-lightweight-face-coverings:not(#not) .section-descriptions .details{padding:0 1rem}#page-lightweight-face-coverings:not(#not) .section-important{padding:0}#page-lightweight-face-coverings:not(#not) .section-filters{padding-top:0}#page-lightweight-face-coverings:not(#not) .section-filters button{margin:2rem 0}#page-lightweight-face-coverings:not(#not) .side-pic{height:400px}#page-lightweight-face-coverings:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/lightweight-face-coverings/descriptions_header-9c58e68fe32fa5156c62.jpg);background-position:50% 40%}#page-lightweight-face-coverings:not(#not) .lookingfor-container .col div,#page-lightweight-face-coverings:not(#not) .lookingfor-container .card-wrap div{background-image:url(https://static.artofwhere.net/img2/img/pages/products/lightweight-face-coverings/link_thumb-6fd243c081d280068f19.jpg)}#page-long-sleeve-tshirts:not(#not) .flow-text-wrap{background:#0009}#page-long-sleeve-tshirts:not(#not) .tabs .active,#page-long-sleeve-tshirts:not(#not) .static-tabs .active{background-color:#78b7c9}#page-long-sleeve-tshirts:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/long-sleeve-tshirts/banner-0a559b4e26f0a1a3845d.jpg)}#page-long-sleeve-tshirts:not(#not) .section-info .details .calculator{color:#78b7c9}#page-long-sleeve-tshirts:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/long-sleeve-tshirts/details_header-128a37075c89e46439db.jpg)}#page-long-sleeve-tshirts:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/long-sleeve-tshirts/descriptions_header-7b7bce3797d44540c4ad.jpg)}#page-tea-towels:not(#not) .flow-text-wrap{background:#0009}#page-tea-towels:not(#not) .tabs .active,#page-tea-towels:not(#not) .static-tabs .active{background-color:#f2ede7;color:black}#page-tea-towels:not(#not) .section-details{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tea-towels/features-banner-d961106f0d6fea968226.jpg);background-position:35% 50%}@media only screen and (max-width: 600px){#page-tea-towels:not(#not) .section-details{background-position:100% 50%}}#page-tea-towels:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tea-towels/descriptions_header-0e3fa27ee5c7c32ae8a3.jpg);background-position:100% 50%;background-size:175%}@media only screen and (max-width: 992px){#page-tea-towels:not(#not) .section-descriptions-header{background-size:200%}}@media only screen and (max-width: 600px){#page-tea-towels:not(#not) .section-descriptions-header{background-position:50% 50%;background-size:275%}}#page-market-totes:not(#not) .section-descriptions-header h2,#page-market-totes:not(#not) .section-descriptions-header p{color:#eee}#page-market-totes:not(#not) .flow-text-bg .flow-text-wrap{background:rgba(0,0,0,0.75)}#page-market-totes:not(#not) .tabs .active,#page-market-totes:not(#not) .static-tabs .active{background-color:#4d92f8;color:#000 !important}@media only screen and (max-width: 992px){#page-market-totes:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/market-totes/banner-3-92f1a3bece86e6585a64.jpg);background-position-x:70%}}#page-market-totes:not(#not) #pricing table{max-width:none}#page-market-totes:not(#not) .section-fabrics .vip{border:1rem solid rgba(0,0,0,0.25)}#page-market-totes:not(#not) .section-details{background-color:#fafbfd}#page-market-totes:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/market-totes/banner-product-listings-44af96a503425ff91052.jpg);background-position:center}#page-market-totes:not(#not) .lookingfor-container .col div,#page-market-totes:not(#not) .lookingfor-container .card-wrap div{background-image:url(https://static.artofwhere.net/img2/img/pages/products/market-totes/link_thumb-e5036ae520bfda96868b.jpg)}#page-large-totes:not(#not) .section-descriptions-header h2,#page-large-totes:not(#not) .section-descriptions-header p{color:#eee}#page-large-totes:not(#not) .flow-text-bg .flow-text-wrap{background:rgba(0,0,0,0.75)}#page-large-totes:not(#not) .tabs .active,#page-large-totes:not(#not) .static-tabs .active{background-color:#f35743;color:#000 !important}@media only screen and (max-width: 992px){#page-large-totes:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/large-totes/banner-3-0e1dbb3e5bd542b79fb7.jpg);background-position-x:70%}}#page-large-totes:not(#not) #pricing table{max-width:none}#page-large-totes:not(#not) .section-fabrics .vip{border:1rem solid rgba(0,0,0,0.25)}#page-large-totes:not(#not) .section-details{background-color:#fafbfd}#page-large-totes:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/large-totes/banner-product-listings-44af96a503425ff91052.jpg);background-position:center}#page-large-totes:not(#not) .lookingfor-container .col div,#page-large-totes:not(#not) .lookingfor-container .card-wrap div{background-image:url(https://static.artofwhere.net/img2/img/pages/products/large-totes/link_thumb-66862be3789632a1c15f.jpg)}#page-silk-kimonos:not(#not) .flow-text-wrap{background:#0009}#page-silk-kimonos:not(#not) .tabs .active,#page-silk-kimonos:not(#not) .static-tabs .active{background-color:#f2ede7;color:black}#page-silk-kimonos:not(#not) .section-details{background-color:#f2ede7}#page-silk-kimonos:not(#not) .section-details .features-img{margin-left:-4%;max-height:500px}@media only screen and (max-width: 992px){#page-silk-kimonos:not(#not) .section-details .features-img{margin-bottom:3rem}}#page-silk-kimonos:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/silk-kimonos/banner-product-listings-594d385e79c0fe6ee4dd.jpg)}#page-silk-bed-pillow-cases:not(#not) .flow-text-wrap{background:#0009}#page-silk-bed-pillow-cases:not(#not) .tabs .active,#page-silk-bed-pillow-cases:not(#not) .static-tabs .active{background-color:#4d92f8;color:black}#page-silk-bed-pillow-cases:not(#not) .section-details{background-color:#fafbfd}#page-silk-bed-pillow-cases:not(#not) .section-details .features-img{margin-left:-4%;max-height:500px}@media only screen and (max-width: 992px){#page-silk-bed-pillow-cases:not(#not) .section-details .features-img{margin-bottom:3rem}}#page-silk-bed-pillow-cases:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/silk-bed-pillow-cases/banner-pillow-d91066e38c2e2f1c445b.jpg)}@media only screen and (max-width: 992px){#page-leggings-and-capris:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/leggings-and-capris/banner-3-125eec67cba2c562e1c9.jpg)}}#page-leggings-and-capris:not(#not) .flow-text-wrap{background:#0009}#page-leggings-and-capris:not(#not) .tabs .active,#page-leggings-and-capris:not(#not) .static-tabs .active{background-color:#4d92f8;color:black}#page-leggings-and-capris:not(#not) .section-details{background-color:#fafbfd}#page-leggings-and-capris:not(#not) .section-details .features-img{margin-left:-4%;max-height:500px}@media only screen and (max-width: 992px){#page-leggings-and-capris:not(#not) .section-details .features-img{margin-bottom:3rem}}#page-leggings-and-capris:not(#not) .section-info #sizes .card .card-content{padding:0}#page-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right{border-left:1px solid #d0d0d0;color:#202020;padding-left:0}#page-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right thead tr th p{border-right:1px solid #f2f2f2}#page-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right thead tr th p:first-child{font-size:1.2rem;font-weight:700}#page-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right thead tr th p:last-child{color:#9d9d9d;font-size:.9rem;font-weight:400}#page-leggings-and-capris:not(#not) .section-info #sizes .card .card-content .static-text{font-size:.8rem;line-height:2.5;padding-left:1.5rem}#page-leggings-and-capris:not(#not) .section-info #sizes .card table{max-width:none}#page-leggings-and-capris:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/leggings-and-capris/banner-legging-5fc4ec1401f0b943a175.jpg);background-position:center}@media only screen and (max-width: 992px){#page-yoga-leggings-and-capris:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/yoga-leggings-and-capris/banner-1-406d1cb380cd3fb4b2c9.jpg);background-position-x:70%}}#page-yoga-leggings-and-capris:not(#not) .flow-text-wrap{background:#0009}#page-yoga-leggings-and-capris:not(#not) .tabs .active,#page-yoga-leggings-and-capris:not(#not) .static-tabs .active{background-color:#4d92f8;color:black}#page-yoga-leggings-and-capris:not(#not) .section-details{background-color:#fafbfd}#page-yoga-leggings-and-capris:not(#not) .section-details .features-img{margin-left:-4%;max-height:500px}@media only screen and (max-width: 992px){#page-yoga-leggings-and-capris:not(#not) .section-details .features-img{margin-bottom:3rem}}#page-yoga-leggings-and-capris:not(#not) .section-info #sizes .card .card-content{padding:0}#page-yoga-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right{border-left:1px solid #d0d0d0;color:#202020;padding-left:0}#page-yoga-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right thead tr th p{border-right:1px solid #f2f2f2}#page-yoga-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right thead tr th p:first-child{font-size:1.2rem;font-weight:700}#page-yoga-leggings-and-capris:not(#not) .section-info #sizes .card .card-content #right thead tr th p:last-child{color:#9d9d9d;font-size:.9rem;font-weight:400}#page-yoga-leggings-and-capris:not(#not) .section-info #sizes .card .card-content .static-text{font-size:.8rem;line-height:2.5;padding-left:1.5rem}#page-yoga-leggings-and-capris:not(#not) .section-info #sizes .card table{max-width:none}#page-yoga-leggings-and-capris:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/yoga-leggings-and-capris/banner-yoga-legging-d1787cecc5f197dbaaa6.jpg);background-position:center}#page-kangaroo-hoodies:not(#not) .tabs .active,#page-kangaroo-hoodies:not(#not) .static-tabs .active{background-color:#4d92f8;color:black}@media only screen and (max-width: 992px){#page-kangaroo-hoodies:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/hoodies/banner-1-4d3a07f4087dd7b93177.jpg)}}#page-kangaroo-hoodies:not(#not) .section-details{background-color:#fafbfd}#page-kangaroo-hoodies:not(#not) .section-details .features-img{margin-left:-4%;max-height:500px}@media only screen and (max-width: 992px){#page-kangaroo-hoodies:not(#not) .section-details .features-img{margin-bottom:3rem}}#page-kangaroo-hoodies:not(#not) .section-info #sizes img,#page-kangaroo-hoodies:not(#not) .section-info #sizes table{float:left}#page-kangaroo-hoodies:not(#not) .section-info #sizes tr th{font-weight:bold}#page-kangaroo-hoodies:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/hoodies/banner-hoodie-2bfaeda6360ebd2c4d0c.jpg)}#page-lounge-pants:not(#not) .tabs .active,#page-lounge-pants:not(#not) .static-tabs .active{background-color:#4d92f8;color:black}@media only screen and (max-width: 992px){#page-lounge-pants:not(#not) .header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/lounge-pants/banner-1-10d019af039af59a0e35.jpg)}}#page-lounge-pants:not(#not) .section-details{background-color:#fafbfd}#page-lounge-pants:not(#not) .section-details .features-img{margin-left:-4%;max-height:500px}@media only screen and (max-width: 992px){#page-lounge-pants:not(#not) .section-details .features-img{margin-bottom:3rem}}#page-lounge-pants:not(#not) .section-info #sizes .card .card-content{padding:0}#page-lounge-pants:not(#not) .section-info #sizes .card .card-content #right{border-left:1px solid #d0d0d0;color:#202020;padding-left:0}#page-lounge-pants:not(#not) .section-info #sizes .card .card-content #right thead tr th p{border-right:1px solid #f2f2f2}#page-lounge-pants:not(#not) .section-info #sizes .card .card-content #right thead tr th p:first-child{font-size:1.2rem;font-weight:700}#page-lounge-pants:not(#not) .section-info #sizes .card .card-content #right thead tr th p:last-child{color:#9d9d9d;font-size:.9rem;font-weight:400}#page-lounge-pants:not(#not) .section-info #sizes .card .card-content .static-text{font-size:.8rem;line-height:2.5;padding-left:1.5rem}#page-lounge-pants:not(#not) .section-info #sizes .card table{max-width:none}#page-lounge-pants:not(#not) .section-descriptions-header{background-image:url(https://static.artofwhere.net/img2/img/pages/products/lounge-pants/banner-lounge-pant-f107f21a8f006380827c.jpg)}#shipping-view .preloader-wrapper{margin:2rem 0}#shipping-view .limit-page-width{margin-bottom:0.5rem}#shipping-view #shipping-view-tabs{padding:0}#shipping-view #shipping-view-tabs label{align-items:center;background:#333;color:#fff;display:flex;height:3rem;justify-content:space-around;margin-bottom:1rem;margin-top:1rem;text-overflow:ellipsis;white-space:nowrap;width:100%}#shipping-view #shipping-view-tabs label.active{background:#1e88e5}#shipping-view input:checked+.shipping-view-section{display:block !important}#shipping-view .shipping-view-filters .card{border:1px solid #ccc;margin-bottom:0.5rem}#shipping-view .shipping-view-filters .card-content{height:4.5rem;padding:0.5rem}#shipping-view .shipping-view-filters .input-field{margin-top:0}#shipping-view .rates-by-weight-states ul,#shipping-view .rates-by-product-states ul{line-height:3rem;margin-bottom:0.5rem;min-height:3rem;padding-left:1rem;text-align:left}#shipping-view .rates-by-weight-states ul li,#shipping-view .rates-by-product-states ul li{display:inline;margin-right:0.5rem;white-space:nowrap}#shipping-view .rates-by-weight-states ul li:not(:last-of-type)::after,#shipping-view .rates-by-product-states ul li:not(:last-of-type)::after{content:','}#shipping-view .rates-by-weight-states .card,#shipping-view .rates-by-product-states .card,#shipping-view .shipping-view-table .card{border:1px solid #ccc}#shipping-view .rates-by-weight-states .card .card-content,#shipping-view .rates-by-product-states .card .card-content,#shipping-view .shipping-view-table .card .card-content{padding:0}#shipping-view .rates-by-weight-states .card th,#shipping-view .rates-by-weight-states .card td,#shipping-view .rates-by-product-states .card th,#shipping-view .rates-by-product-states .card td,#shipping-view .shipping-view-table .card th,#shipping-view .shipping-view-table .card td{padding-left:1rem}#shipping-view #product-weights{text-align:left}#shipping-view #product-weights span.header{background:#fff;border-bottom:1px solid #ddd;font-weight:bold;padding:15px 5px 15px 1rem}#shipping-view #product-weights .collapsible{border:0}#shipping-view #product-weights .collapsible-header{background-color:unset;cursor:default;line-height:3rem;padding:0}#shipping-view #product-weights .collapsible-header i{transition:transform 150ms}#shipping-view #product-weights .collapsible-header.active i{transform:scaleY(-1)}#shipping-view #product-weights .collapsible-header.has-content{cursor:pointer}#shipping-view #product-weights .collapsible-header.has-content:hover{background:rgba(30,136,229,0.2)}#shipping-view #product-weights .collapsible-body{background:#ccc;padding:0.5rem 2rem}#shipping-view #product-weights .collapsible-body table{background:#fff;border:1px solid #ddd;margin:1rem 0}#shipping-view #product-weights .collapsible .row{margin:0}#shipping-view #product-weights .collapsible li{height:auto;margin:0;padding:0}#shipping-view #product-weights .collapsible li:nth-of-type(odd){background-color:#eee}h1,.h1_wrap .h1_group .breadcrumbs,.h1{color:#323232;font-family:'Bebas Neue', sans-serif;font-size:3.7rem;line-height:3.3rem;margin-top:0}h2,.h2{font-family:'Bebas Neue', sans-serif;font-size:2.26rem;font-weight:500;letter-spacing:0.05rem;line-height:2.1rem;margin-bottom:0.25rem;margin-top:1rem}h3,.h3{font-size:1.6rem;font-weight:500;line-height:normal;margin:1rem 0 0.5rem}h4,.h4{font-size:1.06rem;font-weight:500;letter-spacing:0.06rem;line-height:1.5;margin-bottom:0.4rem}h5,.h5{font-size:1.06rem;font-weight:500;line-height:1.4rem}h6,.h6{font-size:1rem;font-weight:500;line-height:normal}.btn-2020,.btn-2020-flat,.btn-2020-border,.btn-2020-border-arrow{background:#333;border:0;border-radius:1.5rem;box-shadow:none;color:#fff;display:inline-block;font-size:.9rem;height:2.5rem;line-height:2.5rem;opacity:.99999;padding:0 1.5rem;position:relative;text-align:center;text-transform:none;transform-style:preserve-3d}.btn-2020.btn-2020-green,.btn-2020-green.btn-2020-flat,.btn-2020-green.btn-2020-border,.btn-2020-green.btn-2020-border-arrow{background-color:#60b258}.btn-2020 .material-icons,.btn-2020-flat .material-icons,.btn-2020-border .material-icons,.btn-2020-border-arrow .material-icons{font-size:1.3rem;height:1rem;line-height:1rem;margin-right:.5rem;margin-top:.75rem}.btn-2020:focus,.btn-2020-flat:focus,.btn-2020-border:focus,.btn-2020-border-arrow:focus{background:#333;outline:0}.btn-2020::after,.btn-2020-flat::after,.btn-2020-border::after,.btn-2020-border-arrow::after{background:rgba(255,255,255,0.2);bottom:.75rem;content:'';display:block;height:.5rem;left:1.25rem;opacity:0;position:absolute;transition:opacity 150ms;width:calc(100% - 2.5rem);z-index:-1}.btn-2020:hover,.btn-2020-flat:hover,.btn-2020-border:hover,.btn-2020-border-arrow:hover{text-decoration:none}.btn-2020:hover::after,.btn-2020-flat:hover::after,.btn-2020-border:hover::after,.btn-2020-border-arrow:hover::after{opacity:1}.btn-2020.disabled,.disabled.btn-2020-flat,.disabled.btn-2020-border,.disabled.btn-2020-border-arrow{cursor:default;opacity:0.25}.btn-2020.disabled:hover::after,.disabled.btn-2020-flat:hover::after,.disabled.btn-2020-border:hover::after,.disabled.btn-2020-border-arrow:hover::after{opacity:0}.btn-2020-flat{background:transparent;color:#333}.btn-2020-flat::after{background:yellow;transform:translateZ(-1px)}.btn-2020-flat:focus{background:transparent}.btn-2020-border,.btn-2020-border-arrow{background:#fff;border:2px solid black;color:#333;line-height:calc(2.5rem - 4px)}.btn-2020-border .material-icons,.btn-2020-border-arrow .material-icons{margin-top:calc(.75rem - 2px)}.btn-2020-border::after,.btn-2020-border-arrow::after{background:yellow;bottom:calc(.75rem - 2px);transform:translateZ(-1px)}.btn-2020-border:focus,.btn-2020-border-arrow:focus{background:#fff}.btn-2020-border-arrow{overflow:hidden;padding-right:52px;transition:padding-left 150ms, padding-right 150ms}.btn-2020-border-arrow:hover{padding-left:52px;padding-right:1.5rem}.btn-2020-border-arrow:hover::before{right:-26px}.btn-2020-border-arrow:hover::after{left:20px}.btn-2020-border-arrow::before{background:url(https://static.artofwhere.net/img2/img/pages/home/design-2020/arrow-2a4cbf9d23ba6fe867ad.svg) no-repeat center;content:'';height:100%;position:absolute;right:20px;top:0;transition:right 150ms;width:25px}.btn-2020-border-arrow::after{background:url(https://static.artofwhere.net/img2/img/pages/home/design-2020/arrow-2a4cbf9d23ba6fe867ad.svg) no-repeat center;bottom:auto;content:'';height:100%;left:-26px;opacity:1;position:absolute;top:0;transform:none;transition:left 150ms;width:25px}.btn-2020-pink,.btn-2020-pink-big{background-color:#f600be;background-image:linear-gradient(-180deg, #f600be 0%, #f600be 0%, #ea008a 100%, #ea008a 100%);border:0;border-radius:2rem;box-sizing:border-box;color:#fff;display:inline-block;font-size:14px;font-weight:600;height:2.5rem;line-height:2.5rem;outline:0;padding:0 1.5rem;text-align:center}.btn-2020-pink:disabled,.btn-2020-pink-big:disabled{cursor:default;opacity:0.25;pointer-events:none}.btn-2020-pink:hover,.btn-2020-pink-big:hover{background-image:none;text-decoration:none}.btn-2020-pink:focus,.btn-2020-pink-big:focus{background-image:linear-gradient(0deg, #f600be 0%, #f600be 0%, #ea008a 100%, #ea008a 100%)}.btn-2020-pink img,.btn-2020-pink-big img,.btn-2020-pink .material-icons,.btn-2020-pink-big .material-icons{margin-right:.5rem;margin-top:-3px;vertical-align:middle}.btn-2020-pink img.left,.btn-2020-pink-big img.left,.btn-2020-pink #headbands-page #headband-slider .slider-container .slider .slider-btns img.slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .btn-2020-pink img.slider-btn-prev,.btn-2020-pink-big #headbands-page #headband-slider .slider-container .slider .slider-btns img.slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .btn-2020-pink-big img.slider-btn-prev,.btn-2020-pink .material-icons.left,.btn-2020-pink-big .material-icons.left,.btn-2020-pink #headbands-page #headband-slider .slider-container .slider .slider-btns .material-icons.slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .btn-2020-pink .material-icons.slider-btn-prev,.btn-2020-pink-big #headbands-page #headband-slider .slider-container .slider .slider-btns .material-icons.slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .btn-2020-pink-big .material-icons.slider-btn-prev{font-size:1.3rem;height:1rem;line-height:1rem;margin-right:.5rem;margin-top:.75rem;vertical-align:top}.btn-2020-pink-big{height:3rem;line-height:3rem}.card-2020{background-color:#fff;margin:0.5rem 0 1rem;overflow:visible;position:relative}.card-2020 .card-content{padding:1.5rem}.card-2020 .card-content p{margin:0}.card-presets-content{border-radius:0 0 2px 2px;padding:24px}.collection{border:0;box-shadow:none}.modal.modal-2020{background-color:#fff;border-radius:30px;box-shadow:0 0 20px 0 rgba(0,0,0,0.5);max-width:calc(100% - 2rem);overflow-x:hidden;overflow-y:hidden;width:830px}.modal.modal-2020 .close-btn{position:absolute;right:1rem;top:1rem;z-index:80}.modal.modal-2020 .close-btn .material-icons{font-size:32px}.modal.modal-2020 .progress{background-color:rgba(255,208,236,0.5)}.modal.modal-2020 .progress .determinate{background-color:#f400b7}.modal.modal-2020 .simplebar-scrollbar::before{background:#dbdbdb;opacity:1}.modal.modal-2020 .simplebar-scroll-content{padding-left:1px}.modal.modal-2020 .simplebar-scroll-content .simplebar-content{padding-right:2rem}.modal.modal-2020 .modal-wrap{height:100%}.modal.modal-2020 .modal-content{display:flex;height:100%}.modal.modal-2020 .modal-content.no-padding{padding:0}.modal.modal-2020 .modal-subcontent{height:100%;margin-top:1rem}.modal.modal-2020 .modal-content-left{border-right:2px solid #dbdbdb;padding:1rem;text-align:center;width:100px}.modal.modal-2020 .modal-content-left ul{display:flex;flex-direction:column}.modal.modal-2020 .modal-content-left ul li,.modal.modal-2020 .modal-content-left ul li img{height:60px;width:60px}.modal.modal-2020 .modal-content-right{padding:32px;width:100%}.modal.modal-2020 .modal-footer{height:3rem;padding:.25rem}.modal.modal-2020 .tabs,.modal.modal-2020 .static-tabs{border:none;margin-bottom:1rem}.modal.modal-2020 .tabs:not(.vertical),.modal.modal-2020 .static-tabs:not(.vertical){display:flex;height:38px;justify-content:space-evenly}.modal.modal-2020 .tabs:not(.vertical) .indicator,.modal.modal-2020 .static-tabs:not(.vertical) .indicator{background-color:#ffd0ec;height:6px}.modal.modal-2020 .tabs:not(.vertical) .tab,.modal.modal-2020 .static-tabs:not(.vertical) .tab{height:38px}.modal.modal-2020 .tabs:not(.vertical) .tab a,.modal.modal-2020 .static-tabs:not(.vertical) .tab a{color:#a6a6a6;font-family:Poppins;font-size:24px;font-weight:500;height:33px;letter-spacing:0;line-height:35px;padding:0 4px;text-align:center;text-transform:none}.modal.modal-2020 .tabs:not(.vertical) .tab a.active,.modal.modal-2020 .static-tabs:not(.vertical) .tab a.active{color:#2d2d2d}.modal.modal-2020 .tabs.vertical,.modal.modal-2020 .vertical.static-tabs{height:100%;justify-content:start;padding:4rem 0}.modal.modal-2020 .tabs.vertical .tab a,.modal.modal-2020 .vertical.static-tabs .tab a{background:rgba(255,235,247,0);border-radius:27px;display:inline-flex;opacity:0.5;padding:0;transition:background 150ms, opacity 150ms}.modal.modal-2020 .tabs.vertical .tab a.active,.modal.modal-2020 .vertical.static-tabs .tab a.active{background:#ffebf7;opacity:1}.modal.modal-2020 .tabs.vertical .tab a img,.modal.modal-2020 .vertical.static-tabs .tab a img{height:unset;margin:auto;width:35px}.modal.modal-2020 .tabs.vertical .indicator,.modal.modal-2020 .vertical.static-tabs .indicator{display:none}.modal.modal-2020.modal-2020-footer-large .modal-footer{height:4rem;padding:.75rem 1.5rem}#holiday-deadlines p{font-weight:600}#holiday-deadlines table{margin-bottom:30px}#holiday-deadlines table thead{background:#ebebeb}#holiday-deadlines table tbody tr{border-bottom:1px solid #d0d0d0}#holiday-deadlines table td{padding:5px}#holiday-deadlines table td span{display:block;font-size:12px}.located-cart{margin-left:15px}.toast{background:none;box-shadow:none;color:#000;padding:0}.toast .card{border-radius:30px;box-shadow:0 0 20px rgba(0,0,0,0.5)}.toast>span,.toast>div:not(.card){background-color:#323232;box-shadow:0 2px 4px rgba(0,0,0,0.1);color:#fff;padding:10px 25px}.toast>.card.goal-toast{font-family:Poppins}.toast>.card.goal-toast .card-image img{margin:1.5rem 0 1.5rem 1.5rem;width:110px !important}.toast>.card.goal-toast .card-content{padding:1rem 3rem 1rem 1rem;width:320px;word-break:break-word}.toast>.card.goal-toast .card-content h4{font-size:24px;font-weight:bold;letter-spacing:0;line-height:33px;margin:0 0 0.5rem}.toast>.card.goal-toast .card-content p{color:#444;font-size:12px;letter-spacing:1px;line-height:21px;word-break:normal}.toast>.card.goal-toast .card-content .toast-close{background:none;border:none;line-height:1rem;padding:0;position:absolute;right:1rem;top:1rem}.toast>.card.goal-toast .card-action{border-top:0;padding:0 3rem .5rem 1rem}#user-header-wrap-2020{background:#000;height:4.5rem;line-height:4.5rem;position:relative;z-index:1300}@media only screen and (max-width: 899px){#user-header-wrap-2020{left:0;position:fixed;right:0;top:0}}body{padding-top:64px}@media only screen and (max-width: 899px){body{padding-top:52px}}#user-header{height:3.5rem;line-height:3.5rem;max-width:1520px;z-index:990}#user-header .user-links{align-items:center;color:#fff;display:flex;font-size:0;height:4.5rem;position:relative}#user-header .user-links .btn-2020-pink,#user-header .user-links .btn-2020-pink-big{margin-right:1rem;vertical-align:middle}@media only screen and (max-width: 899px){#user-header .user-links .btn-2020-pink,#user-header .user-links .btn-2020-pink-big{display:none}}@media only screen and (max-width: 899px){#user-header .user-links{display:block}}@media only screen and (max-width: 899px){#user-header .user-links .login-link,#user-header .user-links .dashboard-link{display:none}}#user-header .user-links a:not(.btn-2020-pink):not(.btn-2020-pink-big){color:inherit;font-size:1rem;height:4.5rem;line-height:4.5rem;text-transform:none}#user-header .user-links a:not(.btn-2020-pink):not(.btn-2020-pink-big).cart-link i{font-size:24px;margin-right:5px}#user-header .user-links a:not(.btn-2020-pink):not(.btn-2020-pink-big).dashboard-link i{margin-right:2px}#user-header .user-links a:not(.btn-2020-pink):not(.btn-2020-pink-big)#signup-free{font-size:0.94rem;height:auto;line-height:2.45rem;margin-left:1rem;text-transform:none;top:50%;transform:translateY(-50%)}#user-header .user-links .btn-flat{border-radius:0;padding:0 0.75rem;transition:150ms}#user-header .user-links>.btn-flat:hover{background:rgba(255,255,255,0.25)}@media (max-width: 760px){#user-header .user-links-dropdown{display:none}}#user-header .user-links-dropdown .user-link{padding-bottom:0.55rem;padding-top:0.5rem}#user-header .user-links-dropdown .btn-large{box-shadow:none}#user-header .user-links-dropdown .btn-large i{margin-right:0}#user-header .user-links-dropdown .account-btn{border-radius:0;color:#fff;height:4.5rem;line-height:4.5rem;max-width:20rem;text-align:left;text-decoration:none;text-overflow:ellipsis;text-transform:uppercase;transition:150ms;vertical-align:top;white-space:nowrap}#user-header .user-links-dropdown .account-btn:hover{background-color:rgba(255,255,255,0.25)}#user-header .user-links-dropdown .account-btn .material-icons{font-size:32px}#user-header .user-links-dropdown .account-btn .avatar{height:auto;margin-top:0.75rem;vertical-align:top;width:3rem}#user-header .user-links-dropdown .account-btn span{margin-left:0.75rem;text-transform:none}#user-header .user-links-dropdown #account-settings{box-shadow:0 4px 50px rgba(0,0,0,0.1);display:none;min-width:20rem;opacity:0;padding:1rem;position:absolute;right:0;top:4rem;transition:opacity 0.25s;z-index:410}#user-header .user-links-dropdown #account-settings .new-badge{background-color:#f600be;color:#fff;float:right;margin-top:0.75rem}#user-header .user-links-dropdown #account-settings.active{opacity:1}#user-header .user-links-dropdown #account-settings ul.main{background:#fff;border-radius:2px;margin:0;max-height:calc(100vh - 6rem);overflow:auto;padding:1rem 0}#user-header .user-links-dropdown #account-settings li{font-size:1rem;font-weight:500;line-height:initial}#user-header .user-links-dropdown #account-settings li.half-link{border-bottom:1px solid rgba(0,0,0,0.15);float:left;width:50%}#user-header .user-links-dropdown #account-settings li.half-link.half-link-left{border-right:1px solid rgba(0,0,0,0.15)}#user-header .user-links-dropdown #account-settings li i{font-size:24px;margin-right:0.75rem;vertical-align:middle}#user-header .user-links-dropdown #account-settings li span{vertical-align:middle}#user-header .user-links-dropdown #account-settings li ul{border-bottom:1px solid rgba(0,0,0,0.15);margin-bottom:0.5rem;padding-bottom:0.5rem}#user-header .user-links-dropdown #account-settings li ul>li{border-radius:0;display:block;height:auto;line-height:2.5rem;padding:0 1rem;text-transform:none}#user-header .user-links-dropdown #account-settings li ul>li.link{padding:0}#user-header .user-links-dropdown #account-settings li ul>li .preloader-wrapper{float:right;height:1.3rem;margin-right:-2.5rem;margin-top:0.4rem;width:1.3rem}#user-header .user-links-dropdown #account-settings li.title{font-weight:600}#user-header .user-links-dropdown #account-settings li>a{border-radius:0;color:#333;display:inline-block;font-size:1rem;font-weight:500;height:auto;line-height:2.5rem;padding:0 1rem;text-decoration:none;text-transform:none;width:100%}#user-header .user-links-dropdown #account-settings .settings,#user-header .user-links-dropdown #account-settings .branding-options{border-bottom:1px solid #dedede;margin-bottom:0.5rem;padding-bottom:0.5rem}#user-header .user-links-dropdown #account-settings .settings .account-details,#user-header .user-links-dropdown #account-settings .branding-options .account-details{cursor:pointer}#user-header .user-links-dropdown #account-settings .settings .account-details:hover,#user-header .user-links-dropdown #account-settings .branding-options .account-details:hover{background-color:rgba(0,0,0,0.1)}#user-header .user-links-dropdown #account-settings .settings .account-details i,#user-header .user-links-dropdown #account-settings .branding-options .account-details i{color:#2196f3;font-size:24px;margin-right:0.75rem;vertical-align:middle}#user-header .user-links-dropdown #account-settings .settings .account-details span,#user-header .user-links-dropdown #account-settings .branding-options .account-details span{font-weight:500}#user-header .user-links-dropdown #account-settings .settings .account-details.disabled i,#user-header .user-links-dropdown #account-settings .branding-options .account-details.disabled i{color:inherit}#user-header .button-collapse-wrap{display:none;float:left;height:auto;margin-top:10px;min-width:0;padding:0}@media only screen and (max-width: 899px){#user-header .button-collapse-wrap{display:block}}#user-header .button-collapse-wrap .button-collapse{display:none;height:3.5rem;line-height:3.5rem;width:3.5rem}@media only screen and (max-width: 899px){#user-header .button-collapse-wrap .button-collapse{display:block}}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu{display:none;height:14px;margin:0;position:relative;transform:rotate(0deg);transform:rotate(0deg);transform:rotate(0deg);transform:rotate(0deg);transition:0.5s ease-in-out;transition:0.5s ease-in-out;transition:0.5s ease-in-out;transition:0.5s ease-in-out;vertical-align:middle;width:24px}@media only screen and (max-width: 899px){#user-header .button-collapse-wrap .button-collapse #triple-bar-menu{display:inline-block}}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu span{background:#fff;display:block;height:2px;left:0;opacity:1;position:absolute;transform:rotate(0deg);transform:rotate(0deg);transform:rotate(0deg);transform:rotate(0deg);transition:0.35s ease-in-out;transition:0.35s ease-in-out;transition:0.35s ease-in-out;transition:0.35s ease-in-out;width:100%}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu span:nth-child(1){top:0}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu span:nth-child(2),#user-header .button-collapse-wrap .button-collapse #triple-bar-menu span:nth-child(3){top:6px}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu span:nth-child(4){top:12px}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu.open span:nth-child(1){left:50%;top:6px;width:0%}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu.open span:nth-child(2){transform:rotate(45deg);transform:rotate(45deg);transform:rotate(45deg);transform:rotate(45deg)}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu.open span:nth-child(3){transform:rotate(-45deg);transform:rotate(-45deg);transform:rotate(-45deg);transform:rotate(-45deg)}#user-header .button-collapse-wrap .button-collapse #triple-bar-menu.open span:nth-child(4){left:50%;top:6px;width:0%}#main-logo-wrap{display:block;height:4.5rem;position:relative;width:8rem}@media only screen and (max-width: 899px){#main-logo-wrap{padding-left:2rem;text-align:left}}#main-logo{margin-top:-1.375rem;opacity:1;position:absolute;top:50%;transition:opacity 0.15s}#main-logo img{display:block;height:2.75rem;width:auto}@media only screen and (max-width: 899px){#main-logo{opacity:0}}#main-logo-small{line-height:normal;margin-top:-1.25rem;opacity:0;position:absolute;top:50%;transition:opacity 0.15s}#main-logo-small img{height:2.5rem;width:auto}@media only screen and (max-width: 899px){#main-logo-small{opacity:1}}#nav{background:transparent;box-shadow:none;color:inherit;height:auto;line-height:normal;margin-left:-1rem}#nav>ul>li{line-height:3.5rem}#nav ul{position:relative}#nav li{background-color:transparent}#nav li>a,#nav li>span{background:transparent;color:#444;cursor:pointer;display:block;padding:0 1rem;position:relative;text-decoration:none}#nav li>a span,#nav li>span span{border-bottom:4px solid transparent;display:inline-block;line-height:1rem;padding-top:4px;vertical-align:middle}#nav li>a:hover span,#nav li>span:hover span{border-color:#ffd0ec}#nav li .subnav{background:#fff;box-shadow:0 -4px 50px rgba(0,0,0,0.1);clip-path:inset(0 -100px -100px -100px);display:none;left:-.5rem;line-height:normal;opacity:0;position:absolute;top:3.5rem;transition:opacity 0.15s;width:1280px;z-index:400}@media only screen and (max-width: 1400px){#nav li .subnav{width:100vw}}#nav li .subnav+span::after{border-bottom:10px solid #2d2d2d;border-left:10px solid transparent;border-right:10px solid transparent;bottom:0;content:'';display:none;left:50%;margin-left:-10px;position:absolute}#nav li .subnav.no-header+span::after{border-bottom:10px solid #f4f4f4}#nav li .subnav.hover{opacity:1;z-index:410}#nav li .subnav.hover+span::after{display:block}#nav li .subnav-content{background:#f4f4f4;padding:.5rem 0}#nav li .subnav-content a{background:transparent;padding:0;transition:none}#nav li .subnav-content .col,#nav li .subnav-content .card-wrap{display:inline-block;margin:1rem 1.5rem;vertical-align:top}#nav li .subnav-content .text-element{margin-bottom:.75rem}#nav li .subnav-content .text-element:hover span{text-decoration:underline}#nav li .subnav-content .title{display:inline-block;font-size:1rem;font-weight:700;margin-bottom:.75rem}#nav li .subnav-content .name{color:#444;display:inline-block;font-size:.9rem;vertical-align:middle;width:80%}#nav li .subnav-header{background:#2d2d2d;color:#fff;cursor:default;height:62px;line-height:62px;padding:0 .75rem;white-space:nowrap}@media only screen and (max-width: 1280px){#nav li .subnav-header{padding:0 1rem}}#nav li .subnav-header>.header-item{display:inline-block;font-size:.9rem;font-weight:500;line-height:62px;margin:0 .75rem;position:relative}@media only screen and (max-width: 1280px){#nav li .subnav-header>.header-item{font-size:.85rem}}#nav li .subnav-header>.header-item::after{border-bottom:10px solid #f4f4f4;border-left:10px solid transparent;border-right:10px solid transparent;bottom:0;content:'';display:none;left:50%;margin-left:-10px;position:absolute}#nav li .subnav-header>.header-item span{line-height:1rem;padding:.1rem 0}#nav li .subnav-header>.header-item.active span{border-bottom:2px solid #fff}#nav li .subnav-header>.header-item.active::after{display:block}#nav li .subnav-footer{background:#e0e0e0;line-height:4.5rem;padding:0 1.5rem;text-align:right}#nav li .subnav-footer>*{vertical-align:middle}#nav li .subnav-footer .btn-2020,#nav li .subnav-footer .btn-2020-flat,#nav li .subnav-footer .btn-2020-border,#nav li .subnav-footer .btn-2020-border-arrow{background:#333;margin-right:1rem}#nav li .subnav-footer .btn-2020-border-arrow{background:#fff}@media only screen and (max-width: 1280px){#nav li .subnav-footer{padding:0 2rem}}#nav .products{display:none}#nav .products.active{display:block}#nav .products>.product{display:inline-block;margin:1rem;position:relative;text-align:center;width:calc(14% - 2rem)}@media only screen and (max-width: 1280px){#nav .products>.product{width:calc(20% - 2.5rem)}}#nav .products>.product:hover img{transform:scale(1.2)}#nav .products>.product .img-wrapper{border-radius:50%;display:block;margin:0 auto .75rem;overflow:hidden;width:100px}#nav .products>.product img{display:block;transition:transform 150ms;width:100%}#nav .products>.product .name{height:3rem}#nav .products>.product .new-badge{background:#ea008a;color:#fff;font-size:.7rem;left:50%;line-height:1rem;padding:0 .25rem;position:absolute;z-index:10}#nav .btn-change-preferences{border-radius:0;font-size:.85rem;height:3.5rem;line-height:3.5rem;margin-right:-1rem}#nav .btn-change-preferences .material-icons{font-size:20px;height:3.5rem;line-height:3.5rem;margin-right:.5rem}.usernav:not(#🔥):not(#❄){color:#585858;font-family:Poppins;padding:0;width:20rem}.usernav:not(#🔥):not(#❄)>img{float:left;height:3rem;margin:1rem;width:3rem}.usernav:not(#🔥):not(#❄) .usernav-name{display:block;font-size:24px;height:3rem;line-height:3rem;margin:1rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.usernav:not(#🔥):not(#❄) .usernav-rewards{display:flex;justify-content:center}.usernav:not(#🔥):not(#❄) .usernav-rewards-container{background:#f3f3f3;border:1px solid #dbdbdb;border-radius:8px;height:10rem;margin:1rem 0;width:8rem}.usernav:not(#🔥):not(#❄) .usernav-rewards-container:first-of-type{margin-right:0.5rem}.usernav:not(#🔥):not(#❄) .usernav-rewards-container:last-of-type{margin-left:0.5rem}.usernav:not(#🔥):not(#❄) .usernav-rewards-image{display:block;margin:1rem auto;width:3rem}.usernav:not(#🔥):not(#❄) .usernav-rewards-image.greyscale{filter:grayscale(1)}.usernav:not(#🔥):not(#❄) .usernav-rewards-score{display:block;font-size:2rem;line-height:2rem;text-align:center}.usernav:not(#🔥):not(#❄) .usernav-rewards-text{display:block;font-size:12px;line-height:12px;margin-top:0.5rem;text-align:center}.usernav:not(#🔥):not(#❄) hr{background:#dbdbdb;border:none;clear:both;height:1px}.usernav:not(#🔥):not(#❄) li.link>a{font-weight:400;line-height:3rem}#header-wrap-2020{background:#fff;box-shadow:0 -4px 50px rgba(0,0,0,0.1);clear:both;position:relative;z-index:999}@media only screen and (max-width: 899px){#header-wrap-2020{display:none}}.product-page-v3 .goal-card{position:absolute;right:2rem;text-align:left;top:14rem;width:16rem;z-index:10}@media screen and (max-width: 993px){.product-page-v3 .goal-card{bottom:1rem;top:auto}}.product-page-v3 .goal-card h4{font-size:.7rem;font-weight:700;margin:0;text-transform:uppercase}.product-page-v3 .goal-card .info-btn{border-radius:50%;cursor:pointer;float:right;height:28px;line-height:26px;margin-right:-1rem;margin-top:-4px;text-align:center;transition:background-color 150ms;width:28px}.product-page-v3 .goal-card .info-btn:hover{background-color:rgba(0,0,0,0.1)}.product-page-v3 .goal-card .info-btn .material-icons{font-size:18px;vertical-align:middle}.product-page-v3 .goal-card .goal-content{background:#fff;border-radius:32px;box-shadow:0 0 10px rgba(0,0,0,0.4);padding:1rem 1.5rem;position:relative;z-index:15}.product-page-v3 .goal-card .goal-content .show-on-small-height{display:none}.product-page-v3 .goal-card .goal-content .small-img{display:none;float:left;margin:-1rem .5rem -1rem -1rem;width:50%}@media screen and (max-height: 810px){.product-page-v3 .goal-card .goal-content .small-img{display:block}}.product-page-v3 .goal-card .goal-content h5{font-size:.9rem;font-weight:400;margin:0}.product-page-v3 .goal-card .goal-content img{width:100%}.product-page-v3 .goal-card .goal-content .goal-image{position:relative}.product-page-v3 .goal-card .goal-content .goal-image .goal-progress{background-color:#fff;border:2px solid #4d4d4d;border-radius:24px;color:#4d4d4d;font-family:Poppins;font-size:18px;font-weight:500;letter-spacing:-2px;padding:1px 14px 0 10px;position:absolute;right:0;text-align:center;top:0}.product-page-v3 .goal-card .goal-content .btn-2020,.product-page-v3 .goal-card .goal-content .btn-2020-flat,.product-page-v3 .goal-card .goal-content .btn-2020-border,.product-page-v3 .goal-card .goal-content .btn-2020-border-arrow{display:block;width:100%}@media screen and (max-height: 810px){.product-page-v3 .goal-card .goal-content{height:8rem}.product-page-v3 .goal-card .goal-content .content-wrap{float:left;width:50%}.product-page-v3 .goal-card .goal-content .goal-image{display:none}.product-page-v3 .goal-card .goal-content .hide-on-small-height{display:none}.product-page-v3 .goal-card .goal-content .show-on-small-height{display:inline}.product-page-v3 .goal-card .goal-content .btn-2020,.product-page-v3 .goal-card .goal-content .btn-2020-flat,.product-page-v3 .goal-card .goal-content .btn-2020-border,.product-page-v3 .goal-card .goal-content .btn-2020-border-arrow{display:inline-block;height:1.75rem;line-height:1.75rem;padding:0 1rem;width:auto}.product-page-v3 .goal-card .goal-content .btn-2020 .material-icons,.product-page-v3 .goal-card .goal-content .btn-2020-flat .material-icons,.product-page-v3 .goal-card .goal-content .btn-2020-border .material-icons,.product-page-v3 .goal-card .goal-content .btn-2020-border-arrow .material-icons{margin-top:.3rem}.product-page-v3 .goal-card .goal-content .btn-2020::after,.product-page-v3 .goal-card .goal-content .btn-2020-flat::after,.product-page-v3 .goal-card .goal-content .btn-2020-border::after,.product-page-v3 .goal-card .goal-content .btn-2020-border-arrow::after{bottom:0.4rem;left:.75rem;width:calc(100% - 1.5rem)}}.product-page-v3 .goal-card .separator{background:#fff;box-shadow:0 0 10px rgba(0,0,0,0.4);height:2.5rem;left:50%;margin-left:-5px;position:absolute;width:10px;z-index:1}.product-page-v3 .goal-card .separator .dash{border-right:2px dashed rgba(0,0,0,0.2);height:100%;width:6px}.product-page-v3 .goal-card .reward-content{background:#fff;border-radius:.5rem;box-shadow:0 0 10px rgba(0,0,0,0.4);height:6.5rem;margin-top:2.5rem;position:relative;z-index:10}.product-page-v3 .goal-card .reward-content .lock-icon{background:#fff;border:2px solid rgba(0,0,0,0.2);border-radius:50%;color:rgba(0,0,0,0.2);height:24px;left:50%;line-height:18px;margin-left:-12px;margin-top:-12px;position:absolute;text-align:center;width:24px}.product-page-v3 .goal-card .reward-content .lock-icon .material-icons{font-size:16px;vertical-align:middle}.product-page-v3 .goal-card .reward-content .reward-left{align-items:center;border-right:2px dashed rgba(0,0,0,0.2);display:flex;float:left;height:100%;width:40%}.product-page-v3 .goal-card .reward-content .reward-left img{width:100%}.product-page-v3 .goal-card .reward-content .reward-right{align-items:center;display:flex;float:left;height:100%;padding:1rem .5rem;width:60%}.product-page-v3 .goal-card .reward-content p{font-size:.9rem !important;font-weight:400;margin:0}.product-page-v3 .goal-card .reward-content p strong{font-size:1.2em}.product-page-v4{color:#333;font-family:Bebas Neue}.product-page-v4 .tp{color:#da3192}.product-page-v4 .tb{color:#1e88e5}.product-page-v4 .ty{color:#fdf151}.product-page-v4 .tyy{color:#fff000}.product-page-v4 h1,.product-page-v4 .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v4 .breadcrumbs{align-items:center;font-family:Bebas Neue;font-size:56px;font-style:normal;line-height:50px}.product-page-v4 p{align-items:center;color:#333;font-family:Poppins;font-size:16px;font-style:normal;font-weight:500;line-height:28px;margin-top:1rem}.product-page-v4 .btn-2020,.product-page-v4 .btn-2020-flat,.product-page-v4 .btn-2020-border,.product-page-v4 .btn-2020-border-arrow,.product-page-v4 .btn-2020-flat{border-radius:3em;font-size:16px;height:3em;line-height:3em;margin:auto;margin:1.5rem auto;min-width:15em}.product-page-v4 .btn-2020 i,.product-page-v4 .btn-2020-flat i,.product-page-v4 .btn-2020-border i,.product-page-v4 .btn-2020-border-arrow i,.product-page-v4 .btn-2020-flat i{margin:0;margin-left:5px;vertical-align:middle}.product-page-v4 .btn-2020::after,.product-page-v4 .btn-2020-flat::after,.product-page-v4 .btn-2020-border::after,.product-page-v4 .btn-2020-border-arrow::after,.product-page-v4 .btn-2020-flat::after{bottom:1rem}.product-page-v4 .btn-2020.hide,.product-page-v4 .hide.btn-2020-flat,.product-page-v4 .hide.btn-2020-border,.product-page-v4 .hide.btn-2020-border-arrow,.product-page-v4 .btn-2020-flat.hide{display:none}.product-page-v4 .btn-2020-flat{border:1px solid #333;line-height:3em}.product-page-v4 .btn-2020-pink,.product-page-v4 .btn-2020-pink-big{font-size:16px;height:unset;line-height:53px;max-width:100%;width:415px}.product-page-v4 .btn-2020-pink img,.product-page-v4 .btn-2020-pink-big img{margin:0 0 0 0.25rem}.product-page-v4 .full-page-panel{padding:8rem 0 6rem}.product-page-v4 .center-align{text-align:center}.product-page-v4 .pink-tag{color:#da3192;font-family:Rottersand;font-size:36px;font-style:normal;font-weight:normal;margin:0}.product-page-v4 .detail-block{overflow:hidden}.product-page-v4 .detail-block p{font-size:1.1rem;font-weight:300;margin:0}.product-page-v4 .detail-block p.or{font-size:1.5rem;font-weight:600;margin:1.5rem auto}.product-page-v4 .detail-block.vertical-block{align-items:center;display:flex;margin-bottom:1rem;max-width:500px;min-height:60px}.product-page-v4 .detail-block.vertical-block .detail-img-wrapper{background:rgba(255,255,255,0.6);border-radius:50px;height:70px;margin-right:1.5rem;padding:10px;text-align:center;width:70px}.product-page-v4 .detail-block.vertical-block img{max-width:50px}.product-page-v4 .detail-block.vertical-block .text-wrap{margin-left:calc(60px + 1.5rem)}.product-page-v4 .detail-block.vertical-block h4{font-size:1.1rem}.product-page-v4 .detail-block.vertical-block p{font-size:1rem;line-height:1.4}.product-page-v4 .detail-block.vertical-block a{text-decoration:underline}.product-page-v4 .section-header-details>.container{padding-bottom:8rem;padding-top:7rem}.product-page-v4 .section-header-details .features-img{display:block;margin:auto;max-height:40rem}@media only screen and (max-width: 992px){.product-page-v4 .section-header-details .transition-top{margin-top:-10rem;padding-top:10rem;position:relative}.product-page-v4 .section-header-details .transition-top::before{background:inherit;content:'';height:10rem;left:0;position:absolute;right:0;top:0;width:100%}}.product-page-v4 .section-header-details .btn-2020,.product-page-v4 .section-header-details .btn-2020-flat,.product-page-v4 .section-header-details .btn-2020-border,.product-page-v4 .section-header-details .btn-2020-border-arrow,.product-page-v4 .section-header-details .btn-2020-flat{display:block;margin:1rem auto;max-width:415px;width:100%}@media only screen and (min-width: 993px){.product-page-v4 .section-header-details .btn-2020,.product-page-v4 .section-header-details .btn-2020-flat,.product-page-v4 .section-header-details .btn-2020-border,.product-page-v4 .section-header-details .btn-2020-border-arrow,.product-page-v4 .section-header-details .btn-2020-flat{margin:1rem 0}}.product-page-v4 .section-header-details .tag{color:#333;font-family:Bebas Neue;font-size:1.5rem;font-weight:bold;letter-spacing:0.02em;text-transform:uppercase}.product-page-v4 .section-header-details .staggered-list{margin-bottom:3rem;margin-top:0}.product-page-v4 .section-header-details .staggered-list li{opacity:1;transform:translateX(0)}.product-page-v4 .section-header-details .staggered-list li p{font-size:16px;font-weight:500}.product-page-v4 .section-gallery{padding:0 !important}.product-page-v4 .section-gallery .col,.product-page-v4 .section-gallery .card-wrap{background-position:center;background-size:cover}.product-page-v4 .section-gallery .col:first-of-type,.product-page-v4 .section-gallery .card-wrap:first-of-type{height:100vw;width:100%}.product-page-v4 .section-gallery .col:not(:first-of-type),.product-page-v4 .section-gallery .card-wrap:not(:first-of-type){height:50vw;width:50%}@media only screen and (min-width: 601px){.product-page-v4 .section-gallery .col:first-of-type,.product-page-v4 .section-gallery .card-wrap:first-of-type{height:80vw;width:80%}.product-page-v4 .section-gallery .col:not(:first-of-type),.product-page-v4 .section-gallery .card-wrap:not(:first-of-type){height:20vw;width:20%}}@media only screen and (min-width: 993px){.product-page-v4 .section-gallery .col:first-of-type,.product-page-v4 .section-gallery .card-wrap:first-of-type{height:50vw;width:50%}.product-page-v4 .section-gallery .col:not(:first-of-type),.product-page-v4 .section-gallery .card-wrap:not(:first-of-type){height:25vw;width:25%}}.product-page-v4 .section-choice a.btn,.product-page-v4 .section-choice a.btn-large{font-size:16px;font-weight:bold;letter-spacing:0.09em;padding:0 30px}.product-page-v4 .section-dropship p{margin:0 auto;margin-bottom:3rem;max-width:550px}.product-page-v4 .section-dropship .dropship-steps{margin:3rem 0}@media only screen and (max-width: 600px){.product-page-v4 .section-dropship .dropship-steps{display:flex;flex-direction:column}}.product-page-v4 .section-dropship .dropship-steps .steps-row{display:contents}@media only screen and (max-width: 600px){.product-page-v4 .section-dropship .dropship-steps .steps-row{display:flex;justify-content:space-evenly}.product-page-v4 .section-dropship .dropship-steps .steps-row.row-1{margin-bottom:5rem}}.product-page-v4 .section-dropship .dropship-steps .step{display:inline-block;text-align:center;vertical-align:top;width:100px}.product-page-v4 .section-dropship .dropship-steps .step .icon{display:flex;height:50px;justify-content:center;margin-bottom:10px}.product-page-v4 .section-dropship .dropship-steps .step .icon img{max-height:45px;max-width:75px}.product-page-v4 .section-dropship .dropship-steps .step .check{border-radius:50%;color:white;height:25px;margin:0 auto 25px;width:25px}.product-page-v4 .section-dropship .dropship-steps .step .check i{position:relative}.product-page-v4 .section-dropship .dropship-steps .step.step-1 .check{background:linear-gradient(0deg, #da3192 0%, #f600be 100%)}.product-page-v4 .section-dropship .dropship-steps .step.step-2 .check{background:linear-gradient(0deg, #da3192 0%, #f600be 100%);position:relative}.product-page-v4 .section-dropship .dropship-steps .step.step-2 .check .layer-1,.product-page-v4 .section-dropship .dropship-steps .step.step-2 .check .layer-2{background:#da3192;border-radius:50%;left:0;opacity:0.4;position:absolute;right:0}.product-page-v4 .section-dropship .dropship-steps .step.step-2 .check .layer-1{height:35px;margin-left:-5px;margin-top:-5px;width:35px}.product-page-v4 .section-dropship .dropship-steps .step.step-2 .check .layer-2{height:45px;margin-left:-10px;margin-top:-10px;width:45px}.product-page-v4 .section-dropship .dropship-steps .step.step-3 .check,.product-page-v4 .section-dropship .dropship-steps .step.step-4 .check{border:2px dashed #afafaf}.product-page-v4 .section-dropship .dropship-steps .step .title{color:#afafaf;font-family:Poppins;font-size:16px;font-weight:bold;letter-spacing:0.09em;line-height:23px;margin-bottom:7px;text-transform:uppercase}.product-page-v4 .section-dropship .dropship-steps .step .label{color:#fff;font-family:Poppins;font-size:16px;font-style:normal;font-weight:500;line-height:21px;margin-bottom:20px}.product-page-v4 .section-dropship .dropship-steps .step-line{display:inline-block;height:2px;margin:113px -40px 0;width:20%}@media only screen and (max-width: 600px){.product-page-v4 .section-dropship .dropship-steps .step-line{display:none}}.product-page-v4 .section-dropship .dropship-steps .step-line.line-1,.product-page-v4 .section-dropship .dropship-steps .step-line.line-2{background-color:#da3192}.product-page-v4 .section-dropship .dropship-steps .step-line.line-3,.product-page-v4 .section-dropship .dropship-steps .step-line.line-4{border-bottom:2px dashed #afafaf}.product-page-v4 .section-dropship .dropship-steps .step-line.line-2{margin-right:0;width:15%}.product-page-v4 .section-dropship .dropship-steps .step-line.line-3{margin-left:0;width:5%}.product-page-v4 .section-dropship .explore{margin-top:3rem}.product-page-v4 .section-dropship .explore a{border:1px solid #da3192;font-family:Poppins;font-size:16px;font-style:normal;font-weight:500;line-height:33px}.product-page-v4 .section-sizes{background-color:#333;padding-top:4rem}.product-page-v4 .section-sizes h1,.product-page-v4 .section-sizes .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v4 .section-sizes .breadcrumbs,.product-page-v4 .section-sizes p{color:#fff}.product-page-v4 .section-sizes h1,.product-page-v4 .section-sizes .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v4 .section-sizes .breadcrumbs{margin-bottom:0}.product-page-v4 .section-sizes p{margin:1rem auto 2rem;max-width:1000px}.product-page-v4 .section-sizes p,.product-page-v4 .section-sizes span,.product-page-v4 .section-sizes table:not(.size-chart){font-size:16px}.product-page-v4 .section-sizes>.container>.row{align-items:center;display:flex;flex-flow:column;padding:3rem 0}@media only screen and (min-width: 993px){.product-page-v4 .section-sizes>.container>.row{flex-flow:row}}.product-page-v4 .section-sizes .col,.product-page-v4 .section-sizes .card-wrap{position:relative}.product-page-v4 .section-sizes table:not(.size-chart){margin:4rem 0 0;table-layout:fixed;white-space:nowrap}.product-page-v4 .section-sizes table:not(.size-chart) thead{border-bottom:1px solid #4d4d4d}.product-page-v4 .section-sizes table:not(.size-chart) th,.product-page-v4 .section-sizes table:not(.size-chart) td:first-of-type{color:#afafaf;font-weight:500}.product-page-v4 .section-sizes img:not(.size-chart-image){height:auto;margin-right:6rem;margin-top:4rem}.product-page-v4 .section-sizes img:not(.size-chart-image).tshirt-sizes{margin-right:0}@media only screen and (min-width: 993px){.product-page-v4 .section-sizes img:not(.size-chart-image).tshirt-sizes{max-width:570px;width:100%}}@media only screen and (min-width: 1440px){.product-page-v4 .section-sizes img:not(.size-chart-image).tshirt-sizes{width:85%}}@media only screen and (max-width: 993px){.product-page-v4 .section-sizes img:not(.size-chart-image).tshirt-sizes{height:unset;max-height:300px}}.product-page-v4 .section-sizes .measurement img:not(.size-chart-image){height:auto;margin:0}.product-page-v4 .section-sizes .download-button .btn-2020-flat{border:1px solid white;color:#fff;font-family:Poppins, sans-serif}.product-page-v4 .section-sizes .download-button .btn-2020-flat::after{background:#f400b7}.product-page-v4 .section-sizes .sizes-guides{align-items:flex-start;display:flex;flex-flow:column;font-family:Poppins;height:11rem;justify-content:space-around;left:50%;margin-left:6rem;position:absolute;position:absolute;top:22%}.product-page-v4 .section-colors{background-color:#333;padding:0 1rem 8rem}.product-page-v4 .section-colors h1,.product-page-v4 .section-colors .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .product-page-v4 .section-colors .breadcrumbs,.product-page-v4 .section-colors p{color:#fff}.product-page-v4 .section-colors .color-item{display:inline-block;margin:2rem 2rem 0 0;max-width:130px}.product-page-v4 .section-colors .color-item img{max-width:100%}.product-page-v4 .section-colors .color-item h4{margin-top:0.5rem;text-align:center}@media only screen and (max-width: 667px){.product-page-v4 .section-colors .color-item{margin:2rem 1rem 0 0;max-width:100px}}.product-page-v4 #product-page-pricing{background-color:#fff;padding-bottom:6rem;padding-top:8rem}.product-page-v4 #product-page-pricing h3{font-size:56px;line-height:55px;margin-bottom:1rem;margin-top:0;text-align:center}.product-page-v4 #product-page-pricing p{margin:0 auto;max-width:700px;text-align:center}.product-page-v4 #product-page-pricing h4{font-family:'Poppins', sans-serif;font-size:24px;margin-top:2rem}@media (max-width: 1200px){.product-page-v4 #product-page-pricing h4{text-align:center}}.product-page-v4 #product-page-pricing .price-tables-wrap{display:grid;grid-gap:30px;grid-template-columns:repeat(2, minmax(0, 1fr))}@media (max-width: 1200px){.product-page-v4 #product-page-pricing .price-tables-wrap{display:block}}@media (max-width: 1200px){.product-page-v4 #product-page-pricing .price-tables-wrap .price-table{margin:0 auto;max-width:800px}}.product-page-v4 #product-page-pricing .table-responsive{overflow:auto}.product-page-v4 #product-page-pricing table{font-family:'Poppins', sans-serif;min-width:500px;width:100%}.product-page-v4 #product-page-pricing table thead{background-color:#cbecf8;border-bottom:1px solid #cbecf8;font-weight:500}.product-page-v4 #product-page-pricing table thead td:nth-child(3){background-color:#addff2}.product-page-v4 #product-page-pricing table thead td:nth-child(4){background-color:#addff2}.product-page-v4 #product-page-pricing table thead td:nth-child(5){background-color:#99cee2}.product-page-v4 #product-page-pricing table thead td:last-child{background-color:#99cee2}.product-page-v4 #product-page-pricing table tbody tr td:not(:last-child){border-right:1px solid #cbecf8}.product-page-v4 #product-page-pricing table tbody tr td:nth-child(4),.product-page-v4 #product-page-pricing table tbody tr td:last-child{font-weight:600}.product-page-v4 #product-page-pricing table tr:not(:last-child){border-bottom:1px solid #cbecf8}.product-page-v4 #product-page-pricing table tr td:not(:first-child){text-align:center}.product-page-v4 #product-page-pricing table td{line-height:1.2;padding:10px 15px}.product-page-v4 #product-page-pricing table td:nth-child(2){padding:10px 0;width:120px}.product-page-v4 #product-page-pricing table td:nth-child(3){padding:10px;width:90px}.product-page-v4 #product-page-pricing table td:nth-child(4){width:50px}.product-page-v4 #product-page-pricing table td:nth-child(5){padding:10px;width:90px}.product-page-v4 #product-page-pricing table td:last-child{width:50px}.product-page-v4 #product-page-pricing table td input{border:1px solid #afafaf;box-sizing:border-box;height:auto;margin:0 0 0 10px;padding:10px;width:80px}.product-page-v4 #product-page-pricing table td input:focus-visible{border:1px solid #1e88e4;outline:0}.product-page-v4 #product-page-custom-sizes{background-color:#333;padding-bottom:6rem;padding-top:8rem}.product-page-v4 #product-page-custom-sizes h3{color:#fff;font-size:56px;margin-bottom:1rem;margin-top:0;text-align:center}.product-page-v4 #product-page-custom-sizes p{color:#fff;margin:0 auto;max-width:770px}.product-page-v4 #product-page-custom-sizes .ratios-toggle{background-color:#464646;border-radius:50px;margin:3rem auto;transition:background-color 250ms;width:fit-content}.product-page-v4 #product-page-custom-sizes .ratios-toggle:hover{background-color:#616161}.product-page-v4 #product-page-custom-sizes .ratios-toggle span{border-radius:50px;color:#fff;cursor:pointer;display:inline-block;font-family:'Poppins', sans-serif;padding:8px 20px;text-transform:uppercase}.product-page-v4 #product-page-custom-sizes .ratios-toggle span.active{background-color:#758193}.product-page-v4 #product-page-custom-sizes .ratios-wrapper{margin:2rem auto 0}@media (min-width: 1200px){.product-page-v4 #product-page-custom-sizes .ratios-wrapper{align-items:flex-end;display:flex;justify-content:center}}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio{position:relative}@media (max-width: 1199px){.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio{display:block;margin:0 auto 30px;max-width:fit-content}}@media (min-width: 1200px){.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio:not(:last-child){margin-right:15px}}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio>div{border:1px solid #fff;bottom:0;color:#fff;font-family:'Poppins', sans-serif;font-size:16px;padding-right:5px;padding-top:3px;text-align:right;transition:height 500ms, width 500ms}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio>div:not(:last-child){position:absolute}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio>div.box1{background-color:#979797;z-index:4}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio>div.box2{background-color:#7a7a7a;z-index:3}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio>div.box3{background-color:#616161;z-index:2}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio>div.box4{background-color:#464646;z-index:1}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-1-1 .box1{height:60px;width:60px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-1-1 .box2{height:100px;width:100px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-1-1 .box3{height:140px;width:140px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-1-1 .box4{height:180px;width:180px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-1-1 .box5{height:220px;width:220px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-3-2 .box1{height:60px;width:100px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-3-2 .box2{height:100px;width:160px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-3-2 .box3{height:140px;width:220px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-3-2 .box4{height:180px;width:280px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-4-3 .box1{height:55px;width:80px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-4-3 .box2{height:100px;width:140px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-4-3 .box3{height:160px;width:220px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-4-3 .box4{height:220px;width:300px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-fixed .box1{height:60px;width:80px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-fixed .box2{height:90px;width:120px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-fixed .box3{height:140px;width:180px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper .ratio.ratio-fixed .box4{height:180px;width:220px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .dimensions{display:inline-block;width:fit-content}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .dimensions .dim-right{float:left}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .dimensions .dim-left{float:right}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-1-1 .box1{height:60px;width:60px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-1-1 .box2{height:100px;width:100px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-1-1 .box3{height:140px;width:140px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-1-1 .box4{height:180px;width:180px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-1-1 .box5{height:220px;width:220px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-3-2 .box1{height:100px;width:60px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-3-2 .box2{height:160px;width:100px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-3-2 .box3{height:220px;width:140px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-3-2 .box4{height:280px;width:180px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-4-3 .box1{height:80px;width:55px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-4-3 .box2{height:140px;width:100px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-4-3 .box3{height:220px;width:160px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-4-3 .box4{height:300px;width:220px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-fixed .box1{height:80px;width:60px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-fixed .box2{height:120px;width:90px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-fixed .box3{height:180px;width:140px}.product-page-v4 #product-page-custom-sizes .ratios-wrapper.inverted .ratio.ratio-fixed .box4{height:220px;width:180px}.product-page-v4 #product-page-features{background-color:#333;padding-bottom:6rem}.product-page-v4 #product-page-features h3{color:#fff;font-size:56px;margin-bottom:3rem;margin-top:0;text-align:center}.product-page-v4 #product-page-features p{color:#fff;margin:0 auto;max-width:770px}.product-page-v4 #product-page-features h5{color:#fff;font-size:35px;margin-bottom:3rem;margin-top:0}.product-page-v4 #product-page-features .col,.product-page-v4 #product-page-features .card-wrap{margin-bottom:6rem}.product-page-v4 #product-page-features .col img,.product-page-v4 #product-page-features .card-wrap img{margin:0 1rem;max-width:250px;width:100%}@media (max-width: 992px){.product-page-v4 #product-page-features .col img,.product-page-v4 #product-page-features .card-wrap img{max-width:200px}}@media (max-width: 992px){.product-page-v4 #product-page-features .col img,.product-page-v4 #product-page-features .card-wrap img{margin:0 .5rem;max-width:160px}}@media (max-width: 365px){.product-page-v4 #product-page-features .col img,.product-page-v4 #product-page-features .card-wrap img{margin:0 .5rem 1rem}}.product-page-v4 #product-page-features.one-feature h3{margin-bottom:1rem}.product-page-v4 #product-page-features.one-feature img{margin-top:3rem;max-width:750px}@media only screen and (min-width: 993px){.product-page-v4 .section-feature:not(.section-custom-feature){max-height:340px}}.product-page-v4 .section-feature{min-height:340px;padding:0}.product-page-v4 .section-feature h3{font-size:34px;line-height:1;margin-bottom:0}.product-page-v4 .section-feature p{margin:0.5rem auto;max-width:560px}@media only screen and (min-width: 993px){.product-page-v4 .section-feature p{margin:0.5rem 0}}.product-page-v4 .section-feature .container{background-repeat:no-repeat;background-size:contain;max-width:1140px;min-height:340px}.product-page-v4 .section-feature .feature::after{content:'';display:block;height:100%;position:absolute;top:0;width:calc((100vw - 1140px) / 2)}.product-page-v4 .section-feature .feature-left::after{right:0}.product-page-v4 .section-feature .feature-right::after{left:0}.product-page-v4 .section-feature .feature-blue::after{background:#4fb3ea}.product-page-v4 .section-feature .feature-yellow::after{background:#fdf151}.product-page-v4 .section-feature .feature-magenta::after{background:#da3192}.product-page-v4 .section-feature.section-feature-left .container{background-position:top right}.product-page-v4 .section-feature.section-feature-right .container{background-position:top left}.product-page-v4 .section-feature .col,.product-page-v4 .section-feature .card-wrap{display:flex;flex-flow:column;justify-content:center;position:relative}.product-page-v4 .section-feature .col:nth-of-type(2),.product-page-v4 .section-feature .card-wrap:nth-of-type(2){margin:4rem 0}.product-page-v4 .section-feature .col img,.product-page-v4 .section-feature .card-wrap img{margin:auto;width:50%}@media only screen and (min-width: 993px){.product-page-v4 .section-feature .col,.product-page-v4 .section-feature .card-wrap{min-height:340px}.product-page-v4 .section-feature .col:nth-of-type(2),.product-page-v4 .section-feature .card-wrap:nth-of-type(2){margin:unset}.product-page-v4 .section-feature .col img,.product-page-v4 .section-feature .card-wrap img{max-width:400px;position:absolute;top:0;width:unset;z-index:1}}.product-page-v4 .section-printing{padding:0 0 6rem}.product-page-v4 .section-printing h3{font-family:Bebas Neue;font-size:34px;font-weight:500;margin:0}.product-page-v4 .section-printing .col,.product-page-v4 .section-printing .card-wrap{padding:2rem;text-align:center}@media only screen and (min-width: 993px){.product-page-v4 .section-printing .col,.product-page-v4 .section-printing .card-wrap{display:flex;flex-flow:column;justify-content:center;min-height:480px;text-align:left}}.product-page-v4 .section-printing img{margin:auto;margin-right:0;width:28rem}.product-page-v4 .section-simple{display:flex;padding-bottom:3rem}.product-page-v4 .section-simple.section-simple-full{padding-bottom:6rem}.product-page-v4 .section-simple.section-simple-notop{padding-top:0}.product-page-v4 .section-simple.section-simple-grey{background:#f0f0f0}.product-page-v4 .section-simple.section-simple-dark{background:#000}.product-page-v4 .section-simple.section-simple-dark p,.product-page-v4 .section-simple.section-simple-dark h3,.product-page-v4 .section-simple.section-simple-dark h5,.product-page-v4 .section-simple.section-simple-dark a{color:#fff}.product-page-v4 .section-simple.section-simple-dark .btn-2020-flat{border:1px solid white}.product-page-v4 .section-simple.section-simple-dark .btn-2020-flat::after{background:#f400b7}.product-page-v4 .section-simple>div{align-self:center}.product-page-v4 .section-simple .bounded{max-width:50rem}.product-page-v4 .section-simple p{margin:1rem auto}.product-page-v4 .section-simple .btn-2020-pink,.product-page-v4 .section-simple .btn-2020-pink-big{margin-top:0.5rem}.product-page-v4 .section-simple h3{color:#000;font-family:Bebas Neue;font-size:56px;font-weight:500;line-height:1em;margin:0}.product-page-v4 .section-simple p,.product-page-v4 .section-simple h5,.product-page-v4 .section-simple a{font-family:Poppins;font-style:normal;font-weight:500}.product-page-v4 .section-simple .more-container{margin:auto;margin-top:2rem;max-width:1080px}.product-page-v4 .section-simple .more-entry{margin-bottom:2rem}.product-page-v4 .section-simple .more-entry img{max-width:300px}@media only screen and (min-width: 600px) and (max-width: 650px){.product-page-v4 .section-simple .more-entry img{max-width:260px}}.product-page-v4 .section-simple .more-entry h5{color:#000;font-size:24px;letter-spacing:0.02em;margin-top:2rem}.product-page-v4 .section-pricing{font-family:Poppins;font-style:normal;font-weight:500;padding:10rem 0;text-align:center}.product-page-v4 .section-pricing h3{margin:0 auto;max-width:770px}@media (max-width: 767px){.product-page-v4 .section-pricing h3 br{display:none}}.product-page-v4 .section-pricing .profit{font-weight:600 !important}.product-page-v4 .section-pricing .section-pricing-button{cursor:pointer;max-width:90%}.product-page-v4 .section-pricing .section-pricing-button img{transition:transform 400ms}.product-page-v4 .section-pricing .section-pricing-button.opened img{transform:scaleY(-1)}.product-page-v4 .section-pricing .section-pricing-prices{display:flex;justify-content:center;text-align:center}@media only screen and (max-width: 600px){.product-page-v4 .section-pricing .section-pricing-prices.column-on-mobile{flex-direction:column}}@media only screen and (max-width: 600px){.product-page-v4 .section-pricing .section-pricing-prices{padding-left:0.5rem;padding-right:0.5rem}}.product-page-v4 .section-pricing .section-pricing-prices table{width:auto}.product-page-v4 .section-pricing .section-pricing-prices table:not(:first-of-type){margin-left:4rem}@media only screen and (max-width: 600px){.product-page-v4 .section-pricing .section-pricing-prices table:not(:first-of-type){margin-left:0}}.product-page-v4 .section-pricing .section-pricing-prices table th,.product-page-v4 .section-pricing .section-pricing-prices table td{font-weight:500;width:14rem}@media only screen and (max-width: 520px){.product-page-v4 .section-pricing .section-pricing-prices table th,.product-page-v4 .section-pricing .section-pricing-prices table td{width:unset}}@media only screen and (max-width: 600px){.product-page-v4 .section-pricing .section-pricing-prices table th.text-end-mobile,.product-page-v4 .section-pricing .section-pricing-prices table td.text-end-mobile{text-align:end}}.product-page-v4 .section-pricing .section-pricing-prices table input{border:1px solid #afafaf;margin-left:0.5rem;padding:0 1rem;width:4rem}@media only screen and (max-width: 400px){.product-page-v4 .section-pricing .section-pricing-prices table input{padding:0 0.5rem;width:2rem}}.product-page-v4 .section-pricing .section-pricing-prices table input:disabled{border:none;color:#333;padding:0}.product-page-v4 .section-pricing .section-pricing-prices table input:focus{border:1px solid #1e88e5;box-shadow:none}.product-page-v4 .section-pricing .section-pricing-prices table input.retail-price{background-color:#fff}.product-page-v4 .section-pricing .section-pricing-prices table .option-name{margin-bottom:20px}@media only screen and (min-width: 601px){.product-page-v4 .section-pricing .section-pricing-prices table .display-on-mobile{display:none}}.product-page-v4 .aow-spacer{padding:40px}#page-cart-pay .discount-code-form{margin-bottom:0}#page-cart-pay .cart-reward{align-items:center;cursor:pointer;display:flex}#page-cart-pay .cart-reward label{margin-left:1rem}#page-cart-pay .cart-reward label::before{border-color:#999}#page-cart-pay .cart-reward label::after{background-color:#999;border-color:#999}#page-cart-pay .cart-reward>p{margin-right:1rem}#page-cart-pay .cart-section{background:#fff;border:1px solid #e0e0e0;margin-bottom:1rem;padding:0 1rem 1rem}#page-cart-pay .reward{background-image:url(https://static.artofwhere.net/img2/img/account/rewards/coupon-ffdfa7d352a0e237a522.svg);background-repeat:no-repeat;background-size:100% 100%;height:118px;margin:1rem 0;position:relative;width:300px}#page-cart-pay .reward .reward-content{display:flex;height:100%;left:0;position:absolute;top:0;width:100%}#page-cart-pay .reward>div{float:left;position:relative}#page-cart-pay .reward.reward-used{opacity:0.5}#page-cart-pay .reward .reward-left{align-items:center;display:flex;height:100%;justify-content:center;margin-left:3%;text-align:center;width:36%}#page-cart-pay .reward .reward-left img{width:90%}#page-cart-pay .reward .reward-right{align-items:center;display:flex;height:100%;padding-bottom:.5rem;padding-left:7%;padding-top:.5rem;width:58%}#page-cart-pay .reward .reward-right p{color:#2d2d2d;font-family:Poppins;font-size:12px;font-weight:500;letter-spacing:0;line-height:18px;margin-top:0}#page-cart-pay .reward .reward-right p span{font-size:18px;margin-right:4px}#page-face-coverings,#page-kimonos,#page-scarves{color:#333}#page-face-coverings>h1,.h1_wrap .h1_group #page-face-coverings>.breadcrumbs,#page-kimonos>h1,.h1_wrap .h1_group #page-kimonos>.breadcrumbs,#page-scarves>h1,.h1_wrap .h1_group #page-scarves>.breadcrumbs{color:#333;font-family:'Bebas Neue', sans-serif;font-size:2.2666rem;font-weight:600;letter-spacing:0.05333rem;line-height:2.1333rem;text-transform:uppercase;margin-top:4rem;text-align:center}#page-face-coverings>p,#page-face-coverings .row,#page-face-coverings .col,#page-face-coverings .card-wrap,#page-kimonos>p,#page-kimonos .row,#page-kimonos .col,#page-kimonos .card-wrap,#page-scarves>p,#page-scarves .row,#page-scarves .col,#page-scarves .card-wrap{margin-bottom:2rem}#page-face-coverings>p,#page-kimonos>p,#page-scarves>p{color:#333;font-family:'Poppins', sans-serif;font-size:0.9333rem;font-weight:400;letter-spacing:0.05333rem;line-height:1.4rem;margin-left:auto;margin-right:auto;max-width:770px}#page-face-coverings .card,#page-kimonos .card,#page-scarves .card{border-radius:2px;box-shadow:none;margin:0;padding:1rem}#page-face-coverings h2,#page-kimonos h2,#page-scarves h2{color:#333;font-family:'Poppins', sans-serif;font-size:1.6rem;font-weight:500;text-transform:capitalize;margin-top:0}#page-face-coverings h2.title,#page-kimonos h2.title,#page-scarves h2.title{padding-left:1rem}#page-face-coverings h2.title button,#page-kimonos h2.title button,#page-scarves h2.title button{background:white;border:2px solid #333;color:#333;font-size:14px}#page-face-coverings h2.title button img,#page-kimonos h2.title button img,#page-scarves h2.title button img{height:auto;margin:0 0 2px 0.5rem;vertical-align:middle;width:25px;z-index:1}#page-face-coverings .row>h2.title,#page-kimonos .row>h2.title,#page-scarves .row>h2.title{padding:0 1rem 0 2rem}#page-face-coverings span.price,#page-kimonos span.price,#page-scarves span.price{color:#333;font-family:'Poppins', sans-serif;font-size:1.6rem;font-weight:500;text-transform:capitalize;display:inline-block;margin:1rem 0 0.5rem;padding-left:1rem}#page-face-coverings span.price span.starting,#page-kimonos span.price span.starting,#page-scarves span.price span.starting{color:#cbb7af;font-size:12px;font-style:italic;letter-spacing:1px;padding-right:4px;text-transform:initial;vertical-align:super}#page-face-coverings ul,#page-kimonos ul,#page-scarves ul{margin-top:0;padding-left:1rem}#page-face-coverings ul li,#page-kimonos ul li,#page-scarves ul li{color:#333;font-family:'Poppins', sans-serif;font-size:0.9333rem;font-weight:400;letter-spacing:0.05333rem;line-height:1.4rem;line-height:2rem}#page-face-coverings ul li img,#page-kimonos ul li img,#page-scarves ul li img{margin-right:0.5rem;width:1.466rem}#page-face-coverings ul li>*,#page-kimonos ul li>*,#page-scarves ul li>*{vertical-align:middle}#page-face-coverings button,#page-kimonos button,#page-scarves button{background:#333;border:none;border-radius:2rem;color:white;height:32px;line-height:32px;margin-bottom:1rem;margin-left:1rem;padding:0 1.5rem}#page-face-coverings button img,#page-kimonos button img,#page-scarves button img{margin:0 0 2px 0.5rem;vertical-align:middle;z-index:1}#products-page{background-color:#f0f0f0;color:#333}#products-page .product-categories-filter{margin-top:3.25rem;padding:1rem .75rem;position:sticky;top:0}#products-page .container{max-width:1280px}#products-page .container .title{font-size:3.73rem;margin-top:4.73rem}#products-page .container .subtext{letter-spacing:0.8px;line-height:21px;margin:0 auto;margin-bottom:1rem;max-width:711px}#products-page .container .side-menu{background-color:#fff;margin-bottom:1rem}#products-page .container .side-menu:first-child .side-list{max-height:calc(57vh - 5rem)}#products-page .container .side-menu .side-title{border-bottom:1px solid #dbdbdb;line-height:21px;margin:0;padding:1rem 2.6rem}#products-page .container .side-menu .side-list{margin:0;max-height:calc(40vh - 5rem);overflow:auto;padding:1rem 2.6rem}#products-page .container .side-menu .side-list li a{color:inherit;display:inline-block;line-height:21px;padding:.75rem 0;text-decoration:none}#products-page .container .side-menu .side-list li a:hover{font-weight:600}#products-page .container .side-menu .side-list li a img{margin-right:0.5rem}#products-page .container .product-section{margin-bottom:3rem}#products-page .container .product-section .card-wrapper{padding:0}#products-page .container .product-section .card-wrapper a.card-wrap{color:inherit;text-decoration:none}#products-page .container .product-section .card-wrapper .card-content{padding:1.06rem 1.66rem}#products-page .container .product-section .card-wrapper .sub-content{height:5.25rem}#products-page .container .product-section .card-wrapper .product-detail{display:block}#products-page .container .product-section .card-wrapper .product-detail.product-options{height:32px}#products-page .container .product-section .card-wrapper .product-detail.product-tag,#products-page .container .product-section .card-wrapper .product-detail.product-options,#products-page .container .product-section .card-wrapper .product-detail.product-from{color:#a6a6a6;font-size:10px;letter-spacing:1px;line-height:normal}#products-page .container .product-section .card-wrapper .product-detail.product-filters{margin:6px 0}#products-page .container .product-section .card-wrapper .product-detail.product-filters span.filter{box-sizing:border-box;display:inline-block;height:22px;line-height:normal;text-align:center;width:22px}#products-page .container .product-section .card-wrapper .product-detail.product-filters span.filter.material-natural{background-image:url(https://static.artofwhere.net/img2/img/pages/products/design-2020/natural-760819d3e4c8923dad91.svg)}#products-page .container .product-section .card-wrapper .product-detail.product-filters span.filter.material-synthetic{background-image:url(https://static.artofwhere.net/img2/img/pages/products/design-2020/synthetic-2e50599548e04e98c25e.svg)}#products-page .container .product-section .card-wrapper .product-detail.product-filters span.filter.print-garment{background-image:url(https://static.artofwhere.net/img2/img/pages/products/design-2020/garment-fe66c8b66481b651c1fa.svg)}#products-page .container .product-section .card-wrapper .product-detail.product-filters span.filter.print-all-over{background-image:url(https://static.artofwhere.net/img2/img/pages/products/design-2020/all-over-54ffe3e76858e48e08c4.svg)}#products-page .container .product-section .card-wrapper .product-detail.product-filters span.filter.include-label{background-image:url(https://static.artofwhere.net/img2/img/pages/products/design-2020/custom-label-5de02cae35cba15e401f.svg)}#products-page .container .product-section .card-wrapper .product-detail.product-from{font-style:italic}#products-page .container .product-section .card-wrapper .product-detail.product-price .mark{vertical-align:text-bottom}.fabrics-page .grey.aow-lighten{background:#f0f0f0 !important}.fabrics-page .title{font-size:2.26rem;margin-bottom:3rem;margin-top:0}.fabrics-page .fixed-page-title{background-color:#fff;box-shadow:0 4px 50px rgba(0,0,0,0.1);display:none;height:60px;left:0;line-height:60px;margin-bottom:120px;margin-top:-120px;position:relative;text-align:left;width:100%;z-index:21}@media only screen and (max-width: 899px){.fabrics-page .fixed-page-title{margin-bottom:0;margin-top:0}}.fabrics-page .fixed-page-title .title{color:#444;font-family:'Bebas Neue', serif;font-size:2rem;font-weight:500;margin:0}@media only screen and (max-width: 600px){.fabrics-page .fixed-page-title .title{font-size:1.1rem}}.fabrics-page .header{height:900px;min-height:600px;padding-bottom:0;padding-top:182px;position:relative}.fabrics-page .header .slider{height:100% !important;position:absolute;top:0;width:100%}.fabrics-page .header .slider .slider-btns{bottom:3rem;left:initial;max-width:300px;position:absolute;right:3rem;z-index:20}.fabrics-page .header .slider .slider-btns span.slider-btn-prev{margin-right:1.25rem}.fabrics-page .header .slider .slider-btns span{background-color:#fff;border-radius:50%;cursor:pointer;display:inline-block;height:3rem;width:3rem}.fabrics-page .header .slider .slider-btns span i{font-size:3rem}.fabrics-page .header .slider .indicators{display:none}.fabrics-page .header .flow-text-bg{background:transparent;height:0;overflow:initial;position:absolute;z-index:10}.fabrics-page .header .flow-text-bg .flow-text-wrap{background:#fff;box-sizing:border-box;max-width:440px;padding:2.8rem;z-index:1}.fabrics-page .header .flow-text-bg .flow-text-wrap .flow-text,.fabrics-page .header .flow-text-bg .flow-text-wrap .centered-page .important-text,.centered-page .fabrics-page .header .flow-text-bg .flow-text-wrap .important-text{font-size:1rem}@media only screen and (max-width: 992px){.fabrics-page .header{background-position-x:center;background-repeat:no-repeat;background-size:cover;height:750px;margin-top:-122px;padding-top:122px}.fabrics-page .header.cotton-header{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/design-2020/cotton/banner-1-22d8328e68a730179dbb.jpg)}.fabrics-page .header.silk-header{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/design-2020/silk/banner-3-a88df9bb8c6142494765.jpeg)}.fabrics-page .header.hemp-header{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/design-2020/hemp/banner-2-9021c98c4ba64669d61e.jpeg)}.fabrics-page .header.performance-header{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/design-2020/performance/banner-2-e8e17b723f83dbdc600a.jpg)}.fabrics-page .header.woven-header{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/design-2020/woven/banner-2-25a22b24fdc3ea26f8fb.jpeg)}.fabrics-page .header .flow-text-bg{position:initial}.fabrics-page .header .flow-text-bg .flow-text-wrap{bottom:2rem;left:0;padding:1.5rem 1rem;position:absolute}}@media only screen and (max-width: 600px){.fabrics-page .header{height:600px}}.fabrics-page .summary-section .detail-block{margin-bottom:0;text-decoration:none}.fabrics-page .summary-section .detail-block img{height:4rem;width:4rem}.fabrics-page .summary-section .detail-block h4{color:#333;font-size:13px;margin:0}@media only screen and (max-width: 600px){.fabrics-page .summary-section .detail-block h4{font-size:11px}}@media only screen and (max-width: 1000px){.fabrics-page .summary-section .detail-block{min-height:11rem}}.fabrics-page .fabrics-section .card{box-shadow:none;color:#333;padding:1rem}.fabrics-page .fabrics-section .card .card-title h2{font-family:'Poppins', sans-serif;font-size:1.4rem;font-weight:500;margin-top:0;text-transform:capitalize;white-space:nowrap}.fabrics-page .fabrics-section .card .card-title h2 small{font-size:12px}.fabrics-page .fabrics-section .card .card-image{height:360px}.fabrics-page .fabrics-section .card .card-image .slider{height:100%}.fabrics-page .fabrics-section .card .card-image .slider .slider-btns{bottom:1rem;position:absolute;right:1rem;z-index:20}.fabrics-page .fabrics-section .card .card-image .slider .slider-btns span.slider-btn-prev{margin-right:.5rem}.fabrics-page .fabrics-section .card .card-image .slider .slider-btns span{background-color:#fff;border-radius:50%;cursor:pointer;display:inline-block;height:2rem;width:2rem}.fabrics-page .fabrics-section .card .card-image .slider .slider-btns span i{font-size:2rem}.fabrics-page .fabrics-section .card .card-image .slider .indicators{display:none}.fabrics-page .fabrics-section .card .card-content h4{font-size:1.6rem;letter-spacing:0;margin:0;margin-bottom:0.66rem}.fabrics-page .fabrics-section .card .card-content h4 span{color:#aaa;font-size:13px;font-weight:300;letter-spacing:.09rem;margin-left:.5rem}.fabrics-page .fabrics-section .card .card-content ul{margin:0}.fabrics-page .fabrics-section .card .card-content ul li{color:#999;font-size:.9rem;margin-bottom:.5rem}.fabrics-page .fabrics-section .card .card-content ul li.with-bullet::before{content:'·';font-size:21px;line-height:20px;margin-left:-12px;margin-right:7px;vertical-align:middle}.fabrics-page .fabrics-section .card .card-content ul li img{height:20px;margin-right:.5rem;vertical-align:middle;width:20px}.fabrics-page .fabrics-section .card .card-content .divider{margin:0 auto;margin-bottom:20px;margin-top:20px;max-width:265px}.fabrics-page .printed-section{background-image:url(https://static.artofwhere.net/img2/img/pages/fabric/design-2020/printed-bg-b07309b20218b0cddb14.png);background-repeat:no-repeat;background-size:cover}.fabrics-page .printed-section .container{color:#fff;position:inherit;z-index:1}.fabrics-page .printed-section .card{padding:3.73rem}.fabrics-page .printed-section .tabs,.fabrics-page .printed-section .static-tabs{background-color:transparent;border-bottom:none;box-shadow:none;margin-bottom:2rem}.fabrics-page .printed-section .tabs .tab,.fabrics-page .printed-section .static-tabs .tab{text-align:left}.fabrics-page .printed-section .tabs .tab a,.fabrics-page .printed-section .static-tabs .tab a{color:#afafaf;font-size:1.1rem;font-weight:500;padding:0 24px 0 0;text-transform:capitalize}.fabrics-page .printed-section .tabs .tab a.active,.fabrics-page .printed-section .static-tabs .tab a.active{color:#fff;font-weight:600}.fabrics-page .printed-section .tabs .tab a.active::after,.fabrics-page .printed-section .static-tabs .tab a.active::after{background:#afafaf;content:'';display:block;height:4px;margin-top:-1rem}.fabrics-page .printed-section .tabs .indicator,.fabrics-page .printed-section .static-tabs .indicator{display:none}.fabrics-page .printed-section .details h3{margin-top:0}.fabrics-page .printed-section .layer{background-color:rgba(0,0,0,0.75);height:100%;left:0;position:absolute;top:0;width:100%}.fabrics-page .dropship-section p{max-width:368px}.fabrics-page .ideas-section .card-2020 .card-image{max-height:260px;overflow:hidden}.fabrics-page .ideas-section .card-2020 .card-content h4{font-size:1.1rem;margin-top:0}.fabrics-page .descriptions-section{padding:4rem 0}.fabrics-page .descriptions-section .tabs,.fabrics-page .descriptions-section .static-tabs{background-color:transparent;border-bottom:none;box-shadow:none}.fabrics-page .descriptions-section .tabs .tab,.fabrics-page .descriptions-section .static-tabs .tab{text-align:left}.fabrics-page .descriptions-section .tabs .tab a,.fabrics-page .descriptions-section .static-tabs .tab a{color:#afafaf;font-size:1.1rem;font-weight:500;padding:0 24px 0 0;text-transform:capitalize}.fabrics-page .descriptions-section .tabs .tab a.active,.fabrics-page .descriptions-section .static-tabs .tab a.active{color:#333;font-weight:600}.fabrics-page .descriptions-section .tabs .tab a.active::after,.fabrics-page .descriptions-section .static-tabs .tab a.active::after{background:#afafaf;content:'';display:block;height:4px;margin-top:-1rem}.fabrics-page .descriptions-section .tabs .indicator,.fabrics-page .descriptions-section .static-tabs .indicator{display:none}.fabrics-page .descriptions-section .text-to-copy{position:relative}.fabrics-page .descriptions-section .text-to-copy p{border:2px solid #2d2d2d;border-radius:10px;box-sizing:border-box;padding:2rem}.fabrics-page .descriptions-section .text-to-copy button{float:right;height:2rem;line-height:calc(2rem - 4px)}.fabrics-page .products-section{color:#333}.fabrics-page .products-section .detail-block{margin-bottom:3rem}.fabrics-page .products-section .detail-block img{border-radius:50%;max-width:90%}.fabrics-page .products-section .detail-block h4{margin-bottom:0;margin-top:12px}.fabrics-page .products-section .detail-block p{color:#a6a6a6;font-size:10px;letter-spacing:1px;margin:0 0 1rem}.fabrics-page .products-section .detail-block .btn-2020-border-arrow{margin-bottom:1rem}#page-holiday-stocking .section-header-details{background-color:#e5ffeb}#page-holiday-stocking .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-holiday-stocking .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/holiday-stocking/banner-1-ba9aa47bc139fd66efcd.png)}}#page-holiday-stocking .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #e5ffeb)}#page-silk-modal-scarf .section-header-details{background-color:#c09ffa}#page-silk-modal-scarf .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-silk-modal-scarf .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/silk-modal/banner-1-58c98e3eedd4026494be.png)}}#page-silk-modal-scarf .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #c09ffa)}#page-flare-skirt .section-header-details{background-color:#c5c7db}#page-flare-skirt .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-flare-skirt .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/flare-skirt/banner-1-17d2ffb3fad57211f201.png)}}#page-flare-skirt .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #c5c7db)}#page-fitted-skirt .section-header-details{background-color:#9cb7d4}#page-fitted-skirt .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-fitted-skirt .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/fitted-skirt/banner-1-c8c3e873ed204ce8026e.png)}}#page-fitted-skirt .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #9cb7d4)}#page-flare-dress .section-header-details{background-color:#ffdac0}#page-flare-dress .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-flare-dress .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/flare-dress/banner-1-86ebf66e20deba263fa8.png)}}#page-flare-dress .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #ffdac0)}#page-bodycon-dress .section-header-details{background-color:#68a9f5}#page-bodycon-dress .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-bodycon-dress .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/bodycon-dress/banner-1-04c05814fa521d262688.png)}}#page-bodycon-dress .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #68a9f5)}#page-headbands .section-header-details{background-color:#ec9c75}#page-headbands .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-headbands .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/headband/banner-1-752eb4afdc175b7cd5fc.png)}}#page-headbands .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #ec9c75)}#page-poly-canvas-pillow-case .section-header-details{background-color:#ffa1d8}#page-poly-canvas-pillow-case .section-header-details .btn-2020,#page-poly-canvas-pillow-case .section-header-details .btn-2020-flat,#page-poly-canvas-pillow-case .section-header-details .btn-2020-border,#page-poly-canvas-pillow-case .section-header-details .btn-2020-border-arrow{width:unset}#page-poly-canvas-pillow-case .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-poly-canvas-pillow-case .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/canvas-pillow/banner-1-19dc15eaf501d12e113a.png)}}#page-poly-canvas-pillow-case .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #ffa1d8)}#page-poly-canvas-pillow-case .pillows-sizing-rows{align-items:center;display:flex;justify-content:space-evenly}@media only screen and (max-width: 800px){#page-poly-canvas-pillow-case .pillows-sizing-rows img{height:auto;width:70%}}#page-poly-canvas-pillow-case .pillows-sizing-rows:first-child{margin-bottom:4rem}#page-velveteen-pillow-case .section-header-details{background-color:#b4ebc9}#page-velveteen-pillow-case .section-header-details .btn-2020,#page-velveteen-pillow-case .section-header-details .btn-2020-flat,#page-velveteen-pillow-case .section-header-details .btn-2020-border,#page-velveteen-pillow-case .section-header-details .btn-2020-border-arrow{width:unset}#page-velveteen-pillow-case .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-velveteen-pillow-case .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/velveteen-pillow/banner-11-4de81dd0843fbccd6d1a.png)}}#page-velveteen-pillow-case .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #b4ebc9)}#page-velveteen-pillow-case .pillows-sizing-rows{align-items:center;display:flex;justify-content:space-evenly}@media only screen and (max-width: 800px){#page-velveteen-pillow-case .pillows-sizing-rows img{height:auto;width:70%}}#page-velveteen-pillow-case .pillows-sizing-rows:first-child{margin-bottom:4rem}#page-blankets .section-header-details{background-color:#96deea}#page-blankets .section-header-details .container{background-position:center right;background-repeat:no-repeat;background-size:50%}@media only screen and (min-width: 993px){#page-blankets .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/blankets/hero-blanket-15bd0fab19e722b01fda.png)}}#page-blankets .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #96deea)}#page-vegan-leather-tote-bag .section-header-details{background-color:#e5c4b1}#page-vegan-leather-tote-bag .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-vegan-leather-tote-bag .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/vegan-leather-tote-bags/banner-1-6c1ec49a1d7810be239f.png)}}#page-vegan-leather-tote-bag .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #e5c4b1)}#page-vegan-leather-makeup-bag .section-header-details{background-color:#f17878}#page-vegan-leather-makeup-bag .section-header-details .container{background-position:center right;background-repeat:no-repeat;background-size:55%}@media only screen and (min-width: 993px){#page-vegan-leather-makeup-bag .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/vegan-leather-makeup-bags/banner-1-b73e8dd8ba83bb269389.png)}}#page-vegan-leather-makeup-bag .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #f17878)}#page-vegan-leather-crossbody-purses .section-header-details{background-color:#b972ff}#page-vegan-leather-crossbody-purses .section-header-details .container{background-position:center right;background-repeat:no-repeat;background-size:55%}@media only screen and (min-width: 993px){#page-vegan-leather-crossbody-purses .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/vegan-leather-crossbody-purses/banner-1-b06486a73a9ea1157597.png)}}#page-vegan-leather-crossbody-purses .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #b972ff)}#page-fine-art-prints .section-header-details{background-color:#d7b15a}#page-fine-art-prints .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-fine-art-prints .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/fine-art-prints/banner-1-f5dd39eccd734016042b.png)}}#page-fine-art-prints .section-header-details .transition-top{background-image:linear-gradient(to bottom, transparent, #d7b15a)}#page-digital-art-prints .section-header-details{background-color:#3ebcdd}#page-digital-art-prints .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-digital-art-prints .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/digital-art-prints/banner-1-e15d7ca693e13969e1dd.png)}}#page-digital-art-prints .section-header-details .transition-top{background-image:linear-gradient(to bottom, transparent, #3ebcdd)}#page-posters .section-header-details{background-color:#ff7d7d}#page-posters .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 993px){#page-posters .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/posters/banner-1-81a556f60c0d7885ea9a.png)}}#page-posters .section-header-details .transition-top{background-image:linear-gradient(to bottom, transparent, #ff7d7d)}#page-comfort-t-shirts .section-header-details{background-color:#f5de60}#page-comfort-t-shirts .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-comfort-t-shirts .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/comfort-t-shirt/banner-1-74efd6a4c5ca07316e32.png)}}#page-comfort-t-shirts .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #f5de60)}#page-premium-t-shirts .section-header-details{background-color:#c09ffa}#page-premium-t-shirts .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-premium-t-shirts .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/premium-t-shirt/banner-1-80b30dcfa41e27f2bdab.png)}}#page-premium-t-shirts .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #c09ffa)}#page-comfort-slimfit-t-shirts .section-header-details{background-color:#25efce}#page-comfort-slimfit-t-shirts .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-comfort-slimfit-t-shirts .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/comfort-slimfit-t-shirt/banner-1-93689427a7784ceebd6e.png)}}#page-comfort-slimfit-t-shirts .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #25efce)}#page-premium-slimfit-t-shirts .section-header-details{background-color:#25efce}#page-premium-slimfit-t-shirts .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-premium-slimfit-t-shirts .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/premium-slimfit-t-shirt/banner-1-8d8b3e023b5c5001e243.png)}}#page-premium-slimfit-t-shirts .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #25efce)}#page-comfort-long-sleeve-t-shirts .section-header-details{background-color:#65d3fc}#page-comfort-long-sleeve-t-shirts .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-comfort-long-sleeve-t-shirts .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/comfort-long-sleeve-t-shirt/banner-1-72dfd34639e5168bb2d8.png)}}#page-comfort-long-sleeve-t-shirts .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #65d3fc)}#page-premium-long-sleeve-t-shirts .section-header-details{background-color:#febb52}#page-premium-long-sleeve-t-shirts .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-premium-long-sleeve-t-shirts .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/premium-long-sleeve-t-shirt/banner-1-99a718c6c211c771f742.png)}}#page-premium-long-sleeve-t-shirts .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #febb52)}#page-comfort-racerback-tank-tops .section-header-details{background-color:#ffe115}#page-comfort-racerback-tank-tops .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-comfort-racerback-tank-tops .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/comfort-racerback-tank-top/banner-1-0ed9ecc871a189f18bb8.png)}}#page-comfort-racerback-tank-tops .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #ffe115)}#page-premium-unisex-tank-tops .section-header-details{background-color:#fd8cab}#page-premium-unisex-tank-tops .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-premium-unisex-tank-tops .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/premium-unisex-tank-top/banner-1-927ef3bfc48380834705.png)}}#page-premium-unisex-tank-tops .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #fd8cab)}#page-flow-racerback-tank-tops .section-header-details{background-color:#fd8cab}#page-flow-racerback-tank-tops .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-flow-racerback-tank-tops .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/flow-racerback-tank-top/banner-1-d054e5806c1e50dbc6ab.png)}}#page-flow-racerback-tank-tops .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #fd8cab)}#page-classic-crewnecks .section-header-details{background-color:#25efce}#page-classic-crewnecks .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-classic-crewnecks .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/classic-crewneck/banner-1-1ed17719962b39e4b240.png)}}#page-classic-crewnecks .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #25efce)}#page-premium-crewnecks .section-header-details{background-color:#65d3fc}#page-premium-crewnecks .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-premium-crewnecks .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/premium-crewneck/banner-1-5e4aa97bb8b8b065a9e6.png)}}#page-premium-crewnecks .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #65d3fc)}#page-classic-zipper-hoodies .section-header-details{background-color:#febb52}#page-classic-zipper-hoodies .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-classic-zipper-hoodies .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/classic-zipper-hoodie/banner-1-9f1c5dedeac760a85cbd.png)}}#page-classic-zipper-hoodies .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #febb52)}#page-premium-zipper-hoodies .section-header-details{background-color:#65d3fc}#page-premium-zipper-hoodies .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-premium-zipper-hoodies .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/premium-zipper-hoodie/banner-1-df94fe92d35072f340f0.png)}}#page-premium-zipper-hoodies .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #65d3fc)}#page-classic-pullover-hoodies .section-header-details{background-color:#26efcf}#page-classic-pullover-hoodies .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-classic-pullover-hoodies .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/classic-pullover-hoodie/banner-1-249566a95053c8d03bbf.png)}}#page-classic-pullover-hoodies .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #26efcf)}#page-premium-pullover-hoodies .section-header-details{background-color:#ffe115}#page-premium-pullover-hoodies .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-premium-pullover-hoodies .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/premium-pullover-hoodie/banner-1-a512fab4d140180c8b38.png)}}#page-premium-pullover-hoodies .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #ffe115)}#page-flow-pullover-hoodies .section-header-details{background-color:#fd8cab}#page-flow-pullover-hoodies .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-flow-pullover-hoodies .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/flow-pullover-hoodie/banner-1-047953746b7fdaf68153.png)}}#page-flow-pullover-hoodies .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #fd8cab)}#page-cropped-pullover-hoodies .section-header-details{background-color:#65d3fc}#page-cropped-pullover-hoodies .section-header-details .container{background-position:bottom right;background-repeat:no-repeat;background-size:contain;padding:3rem .75rem}@media only screen and (min-width: 993px){#page-cropped-pullover-hoodies .section-header-details .container{background-image:url(https://static.artofwhere.net/img2/img/pages/products/tshirts/cropped-pullover-hoodie/banner-1-71cf57e78b910a52a38a.png)}}#page-cropped-pullover-hoodies .section-header-details .transition-top{background-image:linear-gradient(to bottom, rgba(253,129,129,0), #65d3fc)}.page-2020-spacing{margin-top:3rem;padding-bottom:3rem}@media (max-width: 479px){.hide,.hide-on-phone-only,.hide-on-tablet-and-phone{display:none}}@media (max-width: 839px) and (min-width: 480px){.hide,.hide-on-tablet-only,.hide-on-tablet-and-phone,.hide-on-tablet-and-desktop{display:none}}@media (min-width: 840px){.hide,.hide-on-tablet-and-desktop,.hide-on-desktop-only{display:none}}.MuiInput-underline.MuiInputBase-adornedEnd{flex-flow:wrap}@keyframes grow{from{opacity:0;transform:scale(0.5)}to{opacity:1;transform:scale(1)}}@keyframes shrink{from{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(0.5)}}@keyframes darken{from{opacity:0}to{opacity:1}}.react-modal{align-items:center;animation-duration:150ms;animation-fill-mode:forwards;animation-timing-function:ease-out;bottom:0;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:10101}.react-modal.dark-mode input,.react-modal.dark-mode label{color:#fff}.react-modal.react-modal-drawer .react-modal-content{display:flex;flex-direction:column;height:100%;justify-content:space-between}.modal-close-fullscreen{animation-duration:150ms;animation-fill-mode:forwards;animation-timing-function:ease-out;bottom:0;left:0;position:fixed;right:0;top:0;z-index:1200}.modal-close-fullscreen.darken{animation-name:darken;background-color:rgba(0,0,0,0.32)}.modal-close-fullscreen body{overflow:hidden !important}.react-modal-content{margin:auto;padding:1rem;position:fixed;z-index:10}.react-modal-content .breadcrumbs{color:#666;font-size:1rem;margin-bottom:.5rem}.react-modal-content .breadcrumbs .breadcrumb{cursor:pointer;text-decoration:underline;text-transform:uppercase}.modal_saving{letter-spacing:8px;text-transform:uppercase}@keyframes drip{to{transform:rotate(360deg)}}.modal_saving-anim .modal_saving-anim--drop{animation:drip 1s ease-in-out infinite;border:8px solid #807f7f;border-radius:50%;height:64px;margin:auto;width:64px}.inline{display:inline}.hide{display:none}.MuiTooltip-popper .MuiTooltip-tooltip{background:#4d4d4d;border-radius:4px;max-width:257px;padding:8px 12px}.MuiTooltip-popper .MuiTooltip-tooltip #tooltip-icon{float:left;margin-right:9px;vertical-align:sub}.MuiTooltip-popper .MuiTooltip-tooltip #tooltip-icon path{color:#da3192;height:16.6px;width:15.9px}.MuiTooltip-popper .MuiTooltip-tooltip #tooltip-txt{font-family:Poppins;font-size:10px;font-style:normal;font-weight:normal;line-height:14px}.MuiTooltip-popper .MuiTooltip-tooltip #got-it-btn{background-color:transparent;color:#fff;float:right;font-family:Poppins;font-size:10px;font-style:normal;font-weight:bold;letter-spacing:0.09em;line-height:15px;margin-left:9px;text-transform:uppercase;vertical-align:auto}.MuiTooltip-popper .MuiTooltip-tooltip .MuiTooltip-arrow::before{background:#4d4d4d}.drawer-root .MuiDrawer-paperAnchorBottom{border-top-left-radius:10px;border-top-right-radius:10px;margin:0 auto;width:95%}.drawer-grey .MuiPaper-root{background:#ededed}.drawer-content{padding:20px 30px;position:relative}.close-drawer-btn{position:absolute;right:18px}.snackbar-style .MuiSnackbarContent-root{font-family:Poppins;padding:6px 18.15px}.snackbar-style .MuiSnackbarContent-root .MuiSnackbarContent-message{letter-spacing:0.04em}.react-cart-select{background-color:#fff;border:0;border-radius:15px;box-shadow:0 0 12px -7px #000;margin-top:10px;overflow:hidden;position:absolute;width:183.53px;z-index:5}.react-cart-select.order-product{width:264px}.react-cart-select .cart-selector{height:42px;padding:7px}.react-cart-select .cart-selector .MuiInput-underline::before,.react-cart-select .cart-selector .MuiInput-underline::after{border:none !important}.react-cart-select ul{padding:0}.react-cart-select ul .react-cart-select-btn{border-bottom:1px solid #f1f1f1;height:42px;padding:10px;position:relative}.react-cart-select ul .react-cart-select-btn .react-cart-select-icon{color:#4fb3ea;min-width:auto}.react-cart-select ul .react-cart-select-btn .react-cart-select-icon svg{height:22px;width:22px}.react-cart-select ul .react-cart-select-btn .react-cart-select-txt span{color:#4fb3ea;font-size:14px;margin-left:5px}.react-cart-select ul .react-cart-select-btn .MuiTouchRipple-root{margin:0}.react-cart-select ul .react-cart-select-btn.new-cart{height:50px}.react-cart-select ul .react-cart-select-btn.user-cart{height:max-content}.react-cart-select ul .react-cart-select-btn.user-cart.align-start{align-items:flex-start}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-icon{min-width:auto}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-icon svg{height:18px;width:22px}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-txt{margin:0}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-txt span{color:#000}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice{display:block;font-size:10px}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.added{color:#afafaf}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.to-add{color:#4fb3ea}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.to-add:hover{text-decoration:underline}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.to-add svg{height:12px;margin-right:2px;vertical-align:text-top;width:12px}.react-cart-select #react-cart-textfield{border:1px solid #afafaf;box-sizing:border-box;color:#000;font-family:Poppins;font-size:12px;font-style:normal;font-weight:normal;height:28.15px;letter-spacing:0.01em;line-height:21px;margin:0;padding-left:.5rem;width:135.9px}.react-cart-select .closeIcon{cursor:pointer;margin-left:-18px}.react-cart-select .closeIcon svg{font-size:14px}.react-cart-select #check-btn{background:#4fb3ea;border-radius:2px;height:25.37px;margin-right:7px;margin-top:1px;min-width:auto;padding:0;position:absolute;right:0;width:25.38px}.react-cart-select #check-btn svg{color:#fff}.react-cart-select #check-btn.Mui-disabled{background:#afafaf}.discount-component-container{border:2px solid rgba(175,175,175,0.445);border-radius:9px;margin-top:15px}.discount-component-container .title-container{align-items:center;border-bottom:2px dashed #dedcdc;display:flex;justify-content:center;position:relative;text-align:center}.discount-component-container .title-container .half-circle{background-color:#f0f0f0;border-bottom:2px solid rgba(175,175,175,0.445);border-top:2px solid rgba(175,175,175,0.445);height:34px;position:absolute;top:42.5px;width:17px}.discount-component-container .title-container .left-circle{border-bottom-right-radius:16px;border-right:2px solid rgba(175,175,175,0.445);border-top-right-radius:16px;left:-2px}.discount-component-container .title-container .right-circle{border-bottom-left-radius:16px;border-left:2px solid rgba(175,175,175,0.445);border-top-left-radius:16px;right:-2px}.discount-component-container .title-container h4{color:#4d4d4d;font-size:16px;font-weight:700;letter-spacing:0.09em;margin:0;margin:18px 0;text-transform:uppercase}.discount-component-container .option-container{display:flex;justify-content:space-around;text-align:center}.discount-component-container .option-container .option-item{align-items:center;display:flex;flex-basis:50%;flex-grow:1;justify-content:center}@media (min-width: 1280px){.discount-component-container .option-container .option-item{padding-left:5px}}.discount-component-container .option-container .option-item.option-item--disabled .option-label{color:rgba(175,175,175,0.8)}.discount-component-container .option-container .option-item:first-child{border-right:2px dashed #dedcdc}.discount-component-container .option-label{color:#000;font-family:Poppins;font-size:13px;margin:18px 0;margin-left:2px}.discount-component-container .border-dashed-bottom{border-bottom:2px dashed #dedcdc}.discount-component-container .position-relative{position:relative}.discount-component-container .remove-code-container{color:#4fb3ea;text-align:center}.discount-component-container .remove-code-container p{font-size:14px;margin:0}.discount-component-container .address-form .form-control .form-select .MuiSelect-select{align-items:center;display:flex;font-family:Poppins;height:100%;padding:0}.discount-component-container .address-form .form-control .form-select .MuiSelect-select div{background-color:unset;min-height:unset}.discount-component-container .address-form .form-control .form-select .MuiSelect-select div:hover{border:unset}.btn-create{background-color:#f600be;background-image:linear-gradient(-180deg, #f600be 0%, #f600be 0%, #ea008a 100%, #ea008a 100%);border:0;border-radius:2rem;box-sizing:border-box;color:#fff;display:inline-block;font-size:24px;font-weight:500;height:3.5rem;line-height:3rem;margin-right:1rem;outline:0;padding:0.3rem 2.5rem 0.3rem 1.5rem;text-align:center;vertical-align:middle}.btn-create:hover{text-decoration:underline}.btn-create i{margin-right:0.5rem;vertical-align:middle}.FRIDAYFRIDAYFRIDAY{background-color:#fff;cursor:pointer;overflow:hidden;padding:0 2rem;transition:background-color 250ms;width:100%;z-index:9}.FRIDAYFRIDAYFRIDAY .scroll{display:flex;width:100%}.FRIDAYFRIDAYFRIDAY .scroll .textscroll{animation:animate 30s linear infinite;animation-delay:-30s;white-space:nowrap}.FRIDAYFRIDAYFRIDAY .scroll .textscroll:nth-child(2){animation:animate2 30s linear infinite;animation-delay:-15s}.FRIDAYFRIDAYFRIDAY .FRIDAY-WRAP span{display:inline-block}.FRIDAYFRIDAYFRIDAY .FRIDAY-WRAP .script{color:#00aced;font-family:'Bebas Neue';font-size:40px;font-weight:600;line-height:60px;margin:0 1rem;margin:0 1rem;transition:color 250ms}.FRIDAYFRIDAYFRIDAY .FRIDAY-WRAP .tag,.FRIDAYFRIDAYFRIDAY .FRIDAY-WRAP .sale{color:#000;font-family:Bebas Neue;font-size:30px;text-transform:uppercase}@keyframes animate{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}@keyframes animate2{0%{transform:translateX(0%)}100%{transform:translateX(-200%)}}.FRIDAYFRIDAYFRIDAY:hover{background-color:#ea008a}.FRIDAYFRIDAYFRIDAY:hover .script,.FRIDAYFRIDAYFRIDAY:hover .sale,.FRIDAYFRIDAYFRIDAY:hover .tag{color:#fff}#blackFridayPopup{background-color:#fff;border:8px solid #fff;border-radius:30px;left:15px;margin:auto;max-width:700px;opacity:0;padding:60px 60px 30px;position:fixed;right:15px;text-align:center;top:20vh;transition:opacity 300ms;visibility:hidden;z-index:1020}#blackFridayPopup.opened{opacity:1;visibility:visible}#blackFridayPopup .content-over{position:relative;z-index:20}@media (max-width: 575px){#blackFridayPopup{padding:30px;top:10vh}}@media (max-height: 730px){#blackFridayPopup{bottom:30px;top:30px}}#blackFridayPopup #blackFridayPopupClose{color:#000;cursor:pointer;font-size:22px;font-weight:700;position:absolute;right:30px;top:20px;z-index:20}#blackFridayPopup #blackFridayPopupClose:hover{color:#f600be}@media (max-width: 575px){#blackFridayPopup #blackFridayPopupClose{right:15px;top:15px}}#blackFridayPopup h2{color:#f600be;font-size:50px;font-weight:700;line-height:1}@media (max-width: 450px){#blackFridayPopup h2{font-size:40px}}#blackFridayPopup h2+p{margin-top:0}#blackFridayPopup img{display:block;margin:30px auto 15px;max-width:200px}@media (max-width: 575px){#blackFridayPopup img{max-width:150px}}#blackFridayPopup p{color:#000;font-size:22px}@media (max-width: 575px){#blackFridayPopup p{font-size:20px}}@media (max-width: 450px){#blackFridayPopup p{font-size:18px}}#blackFridayPopup p.small{font-size:14px}#overlayFriday{background-color:rgba(0,0,0,0.8);bottom:0;left:0;opacity:0;opacity:0;position:fixed;right:0;top:0;transition:opacity 300ms;visibility:hidden;z-index:1010}#overlayFriday.opened{opacity:1;visibility:visible}#overlayFriday::before,#overlayFriday::after{background-repeat:no-repeat;background-size:contain;bottom:0;content:'';position:absolute;top:0;width:50%}@media (max-width: 575px){#overlayFriday::before,#overlayFriday::after{width:75%}}#overlayFriday::before{background-image:url(https://static.artofwhere.net/img2/img/pages/home/_decorations/deco-left-6e24455b616e319f2795.svg);background-position:bottom left;left:0}#overlayFriday::after{background-image:url(https://static.artofwhere.net/img2/img/pages/home/_decorations/deco-right-bf04057d47d66bbd0d6c.svg);background-position:top right;right:0}.react-cart-select{background-color:#fff;border:0;border-radius:15px;box-shadow:0 0 12px -7px #000;margin-top:10px;overflow:hidden;position:absolute;width:183.53px;z-index:5}.react-cart-select.order-product{width:264px}.react-cart-select .cart-selector{height:42px;padding:7px}.react-cart-select .cart-selector .MuiInput-underline::before,.react-cart-select .cart-selector .MuiInput-underline::after{border:none !important}.react-cart-select ul{padding:0}.react-cart-select ul .react-cart-select-btn{border-bottom:1px solid #f1f1f1;height:42px;padding:10px;position:relative}.react-cart-select ul .react-cart-select-btn .react-cart-select-icon{color:#4fb3ea;min-width:auto}.react-cart-select ul .react-cart-select-btn .react-cart-select-icon svg{height:22px;width:22px}.react-cart-select ul .react-cart-select-btn .react-cart-select-txt span{color:#4fb3ea;font-size:14px;margin-left:5px}.react-cart-select ul .react-cart-select-btn .MuiTouchRipple-root{margin:0}.react-cart-select ul .react-cart-select-btn.new-cart{height:50px}.react-cart-select ul .react-cart-select-btn.user-cart{height:max-content}.react-cart-select ul .react-cart-select-btn.user-cart.align-start{align-items:flex-start}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-icon{min-width:auto}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-icon svg{height:18px;width:22px}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-txt{margin:0}.react-cart-select ul .react-cart-select-btn.user-cart .react-cart-select-txt span{color:#000}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice{display:block;font-size:10px}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.added{color:#afafaf}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.to-add{color:#4fb3ea}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.to-add:hover{text-decoration:underline}.react-cart-select ul .react-cart-select-btn.user-cart .address-notice.to-add svg{height:12px;margin-right:2px;vertical-align:text-top;width:12px}.react-cart-select #react-cart-textfield{border:1px solid #afafaf;box-sizing:border-box;color:#000;font-family:Poppins;font-size:12px;font-style:normal;font-weight:normal;height:28.15px;letter-spacing:0.01em;line-height:21px;margin:0;padding-left:.5rem;width:135.9px}.react-cart-select .closeIcon{cursor:pointer;margin-left:-18px}.react-cart-select .closeIcon svg{font-size:14px}.react-cart-select #check-btn{background:#4fb3ea;border-radius:2px;height:25.37px;margin-right:7px;margin-top:1px;min-width:auto;padding:0;position:absolute;right:0;width:25.38px}.react-cart-select #check-btn svg{color:#fff}.react-cart-select #check-btn.Mui-disabled{background:#afafaf}.phone-input-style{--PhoneInputCountryFlag-borderColor: none}.phone-input-style.PhoneInput{border:1px solid #afafaf;height:45px;padding-left:20px}.phone-input-style.PhoneInput--focus{border-bottom:1px solid #1e88e5;box-shadow:0 1px 0 0 #1e88e5}.phone-input-style .PhoneInputCountrySelect{display:block}.phone-input-style input{border-bottom:none;height:43px;margin:0}.phone-input-style input:focus{border-bottom:none;box-shadow:none}.phone-input-style input:focus:not([readonly]){border-bottom:none;box-shadow:none}.phone-input-style.mt-10{margin-top:10px}#react-mass-product-sending.btn-flat:hover{background-color:unset}.mb-8{margin-bottom:0}#mass-sending-body.padding-bottom-24{padding-bottom:24px}.breadCrumb-lab-exit{margin-bottom:20px;padding-bottom:0}.breadCrumb-lab-exit .cart-status{margin-bottom:0}.breadCrumb-lab-exit .cart-step-line{width:calc(calc(100% - 4*23px - 80px) / 3) !important}.cursor-pointer{cursor:pointer}.position-relative{position:relative}.MuiCard-root{overflow:hidden}.MuiCard-root h1,.MuiCard-root .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .MuiCard-root .breadcrumbs{font-size:2rem;margin:0 0 1rem}.MuiCard-root form{margin:0}.dropzone-active{background:#1c1f59;border:0.5rem solid #1c1f59;bottom:0;left:0;opacity:.75;position:fixed;right:0;top:0;z-index:5000}.dropzone-active .dropzone-text{align-items:center;color:#fff;display:flex;font-size:4rem;font-weight:500;height:100%;justify-content:center;padding:5%;text-transform:uppercase;width:100%}.af-prompt{z-index:20000 !important}.af-prompt .ta-center{text-align:center}.af-prompt .ta-right{text-align:right}.af-prompt .close-icon{cursor:pointer}.af-prompt .af-prompt-header{border-bottom:1px solid #80808045;display:flex;justify-content:space-between}.af-prompt .af-prompt-header .af-prompt-header-title{align-items:center;display:flex;font-size:16px}.af-prompt .af-prompt-header .MuiSvgIcon-root{cursor:pointer}.af-prompt .af-prompt-header .MuiSvgIcon-root.af-prompt-close-icon{color:#fff}.af-prompt.prompt-ERROR .af-prompt-header{border-top:4px solid #f600be}.af-prompt.prompt-ERROR .af-prompt-header .MuiSvgIcon-root{color:#f600be}.af-prompt.prompt-SUCCESS .af-prompt-header{border-top:4px solid #1e88e5}.af-prompt.prompt-SUCCESS .af-prompt-header .MuiSvgIcon-root{color:#1e88e5}.af-prompt.prompt-WARNING .af-prompt-header{border-top:4px solid #ffeb01}.af-prompt.prompt-WARNING .af-prompt-header .MuiSvgIcon-root{color:#ffeb01}.af-prompt.prompt-NORMAL .af-prompt-header,.af-prompt.prompt-HELP .af-prompt-header,.af-prompt.prompt-EDIT .af-prompt-header{border-top:4px solid #1e88e5}.af-prompt.prompt-NORMAL .af-prompt-header .MuiSvgIcon-root,.af-prompt.prompt-HELP .af-prompt-header .MuiSvgIcon-root,.af-prompt.prompt-EDIT .af-prompt-header .MuiSvgIcon-root{color:#1e88e5}.abcRioButton{width:100% !important}.text-center{text-align:center}.text-right{text-align:right}.card-wrapper{padding:0 .25rem}.card-wrap{position:relative;z-index:20;width:100%;transition:-webkit-filter .4s, opacity .5s}.card-wrap.product{padding:0 .5rem}@media only screen and (min-width: 320px){.card-wrap{width:50%}}@media only screen and (min-width: 700px){.card-wrap{width:33.33337%}}@media only screen and (min-width: 996px){.card-wrap{width:25%}}@media only screen and (min-width: 1400px){.card-wrap{width:20%}}@media only screen and (min-width: 1700px){.card-wrap{width:16.66667%}}.card-wrap:hover{z-index:22}.card-wrap.active{z-index:23}@media only screen and (min-width: 700px){.mainPage .card-wrap{width:50%}}@media only screen and (min-width: 996px){.mainPage .card-wrap{width:33.33337%}}@media only screen and (min-width: 1400px){.mainPage .card-wrap{width:25%}}@media only screen and (min-width: 1700px){.mainPage .card-wrap{width:25%}}.card-wrap.artist .card{width:100%;display:block}.card-wrap.artist .card .card-image{position:relative;height:180px;overflow:hidden;width:100%}.card-wrap.artist .card .card-image img{max-height:none;max-width:none;height:auto;width:100%;z-index:-1}.card-wrap .card .card-image .card-image-wrap{position:relative;padding-bottom:89.1%;width:100%;height:0 !important;overflow:hidden}.card.product{transition:all .2s ease-out;position:relative;z-index:20;width:100%;margin-bottom:.5rem}.card.product>a{display:block;color:inherit;text-decoration:none}.card.product:hover{transform:scale(1.3);z-index:22}@media only screen and (max-width: 1400px){.card.product:hover{transform:none}}.card.product .waves-ripple{z-index:20}.card.product .card-image{background:#eee;z-index:10}.card.product .card-image .btn-floating{position:absolute;bottom:.5rem;right:.5rem}.card.product .card-content{padding:.4rem 8%}.card.product .card-content .price{text-align:right;color:#f600be}.card.product .card-content .artist-name{display:block;color:#666;font-size:.9rem;line-height:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.card.product .card-content .card-title{font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.card.product .card-content .more-nav{position:absolute;top:4px;right:4px;width:26px;height:26px;line-height:26px}.card.product .card-content .more-nav i{font-size:1.3rem}.card{overflow:visible}.card.small-text,.card.product{overflow:visible}.card.small-text.waves-effect,.waves-effect.card.product{overflow:hidden}.card.small-text .card-image .card-title-underlay,.card.product .card-image .card-title-underlay{padding:0}.card.small-text .card-title,.card.product .card-title{height:22px;line-height:22px;font-size:13px}.card.waves-effect{overflow:hidden}.card .more-nav{position:absolute;top:4px;right:4px;width:26px;height:26px;line-height:26px;padding:0;background:transparent}.card .card-content{position:relative}.card .card-content .with-margin{margin:1rem 0}.card .card-content>*:last-child{margin-bottom:0}.card .card-content .card-title{margin:0;line-height:normal}.card .card-content .card-title h1,.card .card-content .card-title .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .card .card-content .card-title .breadcrumbs{margin-bottom:.5rem}.card .card-content .card-title h3{margin-top:0}.card .card-content .more-nav{top:18px;right:10px;width:36px;height:36px;line-height:36px}.card .card-content .more-nav i{font-size:1.8rem}.card .card-action{padding:.5rem}.card .card-action a.btn-flat{color:#1e88e5}.card .order-btn{position:absolute;top:50%;left:50%;margin-top:-18px;margin-left:-60px;width:120px;padding:0;height:36px;opacity:0}.card:hover .order-btn{opacity:1}.card-image{min-height:40px}.card-image img{display:block}.card-image .card-title-underlay{position:absolute;bottom:0;left:0;width:100%;height:auto;background-color:rgba(0,0,0,0.5);padding:6px 0}.card-image .card-title-underlay .card-title{position:static;text-shadow:0 3px 5px rgba(0,0,0,0.5);overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap;margin:6px 10px}.card-image .card-title-underlay.with-nav .card-title{margin-right:32px}.card-image .more-nav{background:transparent;color:#fff;text-shadow:0 3px 5px rgba(0,0,0,0.3)}.static-tabs.auto-width .tab{width:auto}.static-tabs.auto-width .tab a{padding:0 1rem}.static-tabs a.active{border-bottom:3px solid #f600be}.static-tabs.dark{background-color:#333}.static-tabs.dark a{color:#fff}.static-tabs.dark a:hover{color:#fff;background:rgba(255,255,255,0.1)}.tabs,.static-tabs{border-bottom:1px solid #eee}.tabs.tabs-transparent,.tabs-transparent.static-tabs{border-bottom:0}.tabs .tab,.static-tabs .tab{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0}.tabs .tab a,.static-tabs .tab a{text-decoration:none}.tabs.gray,.gray.static-tabs{background-color:#ddd;border-bottom:2px solid #ccc}.tabs.gray .tab,.gray.static-tabs .tab{font-weight:500}.pagination li{font-size:1.1rem;height:auto;margin:0 0.5rem;padding:0;width:auto}.pagination li a{display:inline-block;min-width:24px;padding:0 0.25rem;text-decoration:none}.pagination li.disabled>span{color:#999}.dropdown-content{min-width:180px;z-index:100}.dropdown-content li{min-height:0}.no-min-width .dropdown-content{min-width:0;width:auto}.h1_wrap{margin-top:1rem;overflow:hidden;position:relative;transition:height 0.5s}@media only screen and (max-width: 600px){.h1_wrap{margin:0 -10px;min-height:0;padding-bottom:50px}}.h1_wrap img{display:block;transition:margin-top 0.5s;width:100%}.h1_wrap .bg{height:60px;margin-top:2rem;width:100%}@media only screen and (max-width: 600px){.h1_wrap .bg{display:none;height:50px}}.h1_wrap.small{height:70px}.h1_wrap.small img{margin-top:-125px}.h1_wrap .h1_group{background:#323232;bottom:10%;font-size:2.3rem;left:0;margin-top:-2rem;padding:0 2rem;position:absolute;text-align:center}@media only screen and (max-width: 899px){.h1_wrap .h1_group{font-size:1.8rem}}@media only screen and (max-width: 600px){.h1_wrap .h1_group{font-size:1.4rem}}@media only screen and (max-width: 600px){.h1_wrap .h1_group{bottom:0;height:50px;padding:0;width:100%}}.accent-mainpink .h1_wrap .h1_group{background:#f600be}.accent-mainblue .h1_wrap .h1_group{background:#1e88e5}.h1_wrap .h1_group .breadcrumbs{color:#fff;display:inline-block;font-size:inherit;line-height:4rem;margin:0}.h1_wrap .h1_group .breadcrumbs .breadcrumb{font-size:inherit}.h1_wrap .h1_group .breadcrumbs a{border-right:1px solid rgba(255,255,255,0.5);color:#fff;display:inline-block;font-weight:100;line-height:2.5rem;margin-right:1rem;padding-right:1rem;text-decoration:none}@media only screen and (max-width: 600px){.h1_wrap .h1_group .breadcrumbs{line-height:50px}}.h1_wrap .h1_group h1,.h1_wrap .h1_group .breadcrumbs{color:#fff;display:inline-block;font-size:inherit;font-weight:300;line-height:4rem;margin:0}@media only screen and (max-width: 600px){.h1_wrap .h1_group h1,.h1_wrap .h1_group .breadcrumbs{line-height:50px}}.h1_wrap .h1_group h1 a,.h1_wrap .h1_group .breadcrumbs a{color:#fff;text-decoration:none}@media only screen and (min-width: 1700px){.wide-product-card{width:20%}}@media only screen and (max-width: 600px){.h1_wrap .h1_group>.breadcrumbs>a{display:none}.h1_wrap .h1_group>.breadcrumbs>a:first-child{display:inline-block}}#modal-login{max-width:360px}#modal-login .social-btns{margin-bottom:20px;margin-top:20px}#modal-login .social-btns .btn,#modal-login .social-btns .btn-large{margin-top:14px}#modal-login .social-btns .btn:first-child,#modal-login .social-btns .btn-large:first-child{margin-top:0}.modal{z-index:1300}@media screen and (max-height: 1000px){.modal{top:calc(64px + 2%) !important;max-height:calc(93% - 64px)}}.modal.xsmall{max-width:300px;max-height:420px;overflow:visible}@media screen and (max-height: 992px){.modal.xsmall{top:1rem !important;width:95%}}.modal.xsmall h3{margin-bottom:1rem}.modal.xsmall .collection{border:0;background-color:transparent;margin:0}.modal.xsmall .collection .collection-item{border:0;padding:0.75rem 0;border-top:1px solid #ccc;background-color:transparent}.modal.xsmall .collection .collection-item:first-child{border-top:0}.modal.small{max-width:520px;overflow:auto}.modal.medium{max-width:700px;overflow:auto}@media only screen and (max-width: 600px){.modal.medium{width:100%;top:0% !important;max-height:none;overflow:auto;bottom:0}}.modal.large{max-width:900px;overflow:auto}@media only screen and (max-width: 600px){.modal.large{width:100%;max-height:100%;top:0% !important;overflow:auto}}.modal.xlarge{max-width:90%;top:5% !important;max-height:90%;overflow:auto}@media only screen and (max-width: 600px){.modal.xlarge{width:100%;max-height:100%;top:0% !important;overflow:auto}}.modal.iframe{width:740px;height:545px}.modal.iframe iframe{display:block;width:740px;height:545px;border:0;padding:0}.modal h4{font-size:1.3rem}.modal h3.error,.modal h4.error{color:#d50000}.modal h3.warning,.modal h4.warning{color:#ff6f00}.modal .modal-title{padding:1rem}.modal .modal-title h2,.modal .modal-title h3,.modal .modal-title h4{margin:0;line-height:1.4rem}.modal .modal-content{padding:1rem}.modal .modal-img{display:block;margin:-1rem 0 -1rem -1rem}.modal .modal-footer{z-index:20}.modal.modal-fixed-footer.modal-fixed-header .modal-content{height:calc(100% - 56px - 3.4rem);padding:0 1rem}.modal.allow-overflow{overflow:visible;overflow-y:visible}.modal .dropdown-content{max-height:300px !important}.modal.dark-mode{background:#4D4D4D;color:#EEEEEE}.modal.dark-mode .card{color:rgba(0,0,0,0.87)}.modal.dark-mode .modal-footer{background:#4D4D4D}.modal.dark-mode .modal-footer button{color:#EEEEEE;margin-left:1em;font-size:14px;font-family:"Roboto", sans-serif;font-weight:normal}.modal.product-design{max-width:420px}.modal.product-design .modal-success{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;z-index:100;padding:2rem;text-align:center;font-size:2rem;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity 150ms;border-radius:2px}.modal.product-design .modal-success img{margin-bottom:3rem}.modal.product-design .modal-success p{font-size:2rem;margin-top:0;margin-bottom:1rem}.modal.product-design .modal-img{margin:0;width:100%;height:auto}.modal.product-design .modal-content{overflow:inherit !important}.modal.product-design .modal-content>div{flex:1}@media only screen and (min-width: 601px){.modal.product-design{max-width:960px;width:95%;overflow:hidden;height:auto !important;display:flex !important;flex-direction:column}.modal.product-design.modal-overflow-visible{overflow:visible}.modal.product-design .image-gallery-wrapper{float:left;width:calc(100% - 320px)}.modal.product-design .modal-wrap{height:100%;overflow-x:hidden}.modal.product-design .modal-content{float:left;width:320px;height:100%;overflow:auto;padding:1rem 1rem .5rem}}@media only screen and (max-width: 600px){.modal.product-design{width:100% !important;max-width:none;top:0% !important;max-height:none;overflow:auto;bottom:0}}.modal.product-design .select-wrapper+label{left:0}#fabric-viewer-scope .image-gallery-wrapper,#fabric-viewer-scope .image-gallery{height:auto !important;padding-bottom:0}.modal.simple{max-width:280px}.modal.simple .collection{border:0;margin:1rem -1rem 0}.modal.simple .collection .collection-item{border:0;background:transparent}.modal-scroll-wrap-container{overflow:auto;height:100%}#modal-unrecoverableerror{text-align:center}#modal-unrecoverableerror img{padding:1em 5em;width:100%;background:white;display:block}#modal-unrecoverableerror .modal-content{padding-top:1.5em}#modal-unrecoverableerror .modal-content h4{font-size:22px;font-weight:500}#modal-unrecoverableerror .modal-content .modal-unrecoverableerror-message{font-size:18px;padding:0 3em 0.5em 3em}#modal-unrecoverableerror .modal-content,#modal-unrecoverableerror .modal-footer{background:#eee}#modal-unrecoverableerror span{display:block;margin:auto;width:100%;text-align:center;background:rgba(0,0,0,0.1);padding:0.5em;font-size:1.5em}#modal-unrecoverableerror button{font-size:18px}.modal.modal-creditcard{max-height:none}.collection-item .row{margin-bottom:0}.order-wrap{transition:margin 300ms ease;will-change:margin}.order-wrap.deleted{margin:0}.order-wrap.deleted .collection.order{border:0;margin:0;max-height:0 !important;opacity:0}.button-wrap.deleted{border:0;margin:0;margin:0;max-height:0 !important;opacity:0}.collection.order{background:#fff;opacity:1;transition:opacity 300ms ease, max-height 300ms ease, border 300ms ease, margin 300ms ease;will-change:opacity, max-height, border, margin}.collection.order.warning li:nth-child(1){border:1px solid #ffa500}.collection.order .title-wrap{float:left;line-height:26px;position:relative}@media only screen and (max-width: 600px){.collection.order .title-wrap{float:none}}.collection.order .title-wrap .button-wrap{display:inline-block}@media only screen and (max-width: 600px){.collection.order .title-wrap .button-wrap{position:absolute;right:0;top:0}}.collection.order h3,.collection.order h4{display:inline-block;margin:0;vertical-align:middle}@media only screen and (max-width: 600px){.collection.order h3,.collection.order h4{padding-right:70px}}.collection.order p.address{color:#999;float:right;line-height:26px;margin:0}@media only screen and (max-width: 600px){.collection.order p.address{clear:left;display:block;float:none;height:26px;line-height:26px;margin-top:0.5rem;padding-right:50px;position:relative}}@media only screen and (max-width: 600px){.collection.order p.address .address-text{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}}@media only screen and (max-width: 600px){.collection.order p.address button{position:absolute;right:0}}.collection.order .collection-item{padding:0.75rem 1rem;transition:max-height 300ms ease, opacity 300ms ease, padding 300ms ease, border 300ms ease;will-change:opacity,max-height,padding,border}.collection.order .collection-item.deleted{border:0;max-height:0 !important;opacity:0;overflow:hidden;padding-bottom:0 !important;padding-top:0 !important}@media only screen and (max-width: 600px){.collection.order .collection-item .valign-wrapper,.collection.order .collection-item #headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-prev,#headbands-page #headband-slider .slider-container .slider .slider-btns .collection.order .collection-item .slider-btn-prev,.collection.order .collection-item #headbands-page #headband-slider .slider-container .slider .slider-btns .slider-btn-next,#headbands-page #headband-slider .slider-container .slider .slider-btns .collection.order .collection-item .slider-btn-next,.collection.order .collection-item #headbands-page #headband-slider .slider-container .slider .slider-overlay,#headbands-page #headband-slider .slider-container .slider .collection.order .collection-item .slider-overlay,.collection.order .collection-item .info-badge{display:block}}.collection.order .collection-item.avatar{min-height:0;padding:0.75rem 1rem}.collection.order .collection-item.avatar img.circle{float:left;margin-right:1rem;position:static}.collection.order .collection-item .collection-item-content{float:left}@media only screen and (max-width: 600px){.collection.order .collection-item .collection-item-content{margin-bottom:1rem}}.collection.order .collection-item .title{font-weight:500}.collection.order .collection-item .product-options{color:#999;line-height:28px;margin-right:0.5rem;vertical-align:middle}.collection.order .collection-item .product-options .option{border-left:1px solid #ccc;display:inline-block;font-style:italic;line-height:0.9rem;margin-left:0.5rem;padding-left:0.5rem}.collection.order .collection-item .product-options .option:first-child{border:0;margin-left:0;padding-left:0}.collection.order .collection-item input[type='number']{height:32px;margin:0;width:64px}.collection.order .collection-item .priceWrap{float:right;text-align:right}.collection.order .collection-item .total-price{font-size:1.1rem}.collection.order .collection-item .quantity-counter{font-size:1.8rem;font-weight:bold}.collection.order .address button{margin-left:0.5rem}.tooltipped{cursor:pointer}.material-tooltip{max-width:300px}.input-field label{left:0}.input-field.col label,.input-field.card-wrap label{left:0.75rem}.input-field .prefix ~ label{width:calc(100% - 4.5rem)}.input-field .stripe-input{background-color:transparent;border:0;border-bottom:1px solid #9e9e9e;border-radius:0;box-shadow:none;box-sizing:content-box;font-size:1rem;height:2rem;margin:0 0 20px;outline:none;padding:1rem 0 0;transition:all 0.3s;width:100%}.input-field .fixed-label{font-size:0.8rem;transform:translateY(-140%)}.input-field .suffix{font-size:1.2rem;position:absolute;right:0.75rem;top:0;transition:color 0.2s;transition:color 0.2s;transition:color 0.2s;transition:color 0.2s;transition:color 0.2s;width:auto}.input-field .suffix:hover{color:#1e88e5}.switch-field{min-height:25px;position:relative}.switch-field .switch-label{margin:0 72px 0 0}.switch-field .switch-label p{margin:0}.switch-field .switch-label p.info{color:#999;font-size:0.8rem}.switch-field .switch{align-items:center;display:flex;height:100%;position:absolute;right:0;top:0}input[type='radio']:not(:checked)+label,input[type='radio']:checked+label{color:inherit}.dropdown-content.small-dropdown a,.dropdown-content.small-dropdown span{color:#323232;font-size:1rem;line-height:normal;padding:0.5rem}.dropdown-content.small-dropdown a:hover,.dropdown-content.small-dropdown span:hover{text-decoration:none}.dropdown-content.small-dropdown a .material-icons,.dropdown-content.small-dropdown span .material-icons{font-size:1.3rem;margin-right:0.5rem;vertical-align:middle;width:auto}.grid-element-wrap{margin-bottom:1.5rem}.grid-element-wrap .grid-element{display:block;position:relative}.grid-element-wrap .grid-element .grid-element-bg{display:block;position:relative;z-index:-1}.grid-element-wrap .grid-element .grid-element-title{background-color:rgba(0,0,0,0.5);bottom:0;color:#fff;font-size:1rem;left:0;line-height:2.8rem;margin:0;overflow:hidden;padding:0 10px;position:absolute;text-overflow:ellipsis;white-space:nowrap;width:100%}.grid-element-wrap .grid-element .grid-element-title.main-pink{background-color:#f600be}.grid-element-wrap .grid-element .btn-floating.btn-large{left:50%;margin-left:-28px;margin-top:-28px;opacity:0;position:absolute;top:50%}.grid-element-wrap .grid-element:hover .btn-floating{opacity:1}.picture-wrap.circle{display:inline-block;overflow:hidden;vertical-align:top}.picture-wrap.circle img{height:auto;max-height:none;max-width:none;width:100%}.artist-card{background-color:#fff;display:inline-block;line-height:48px;padding-right:1.5rem}.artist-card:hover{text-decoration:none}.artist-card .picture-wrap{display:inline-block;height:48px;margin-right:0.75rem;width:48px}.artist-card .artist-card-content{display:inline-block;line-height:1.3rem;vertical-align:middle}.aligned-field{clear:both;margin:1em 0}.productDesign-info h1,.productDesign-info .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .productDesign-info .breadcrumbs{margin-bottom:0}.productDesign-info .product-img{width:100%}.productDesign-info .product-name{margin-bottom:1rem}.productDesign-info .product-name a{border-left:1px solid #ccc;padding-left:0.5rem;padding-right:0.5rem}.productDesign-info .product-name a:first-child{border-left:0;padding-left:0}.productDesign-info .select-wrapper input{font-size:.9rem;height:2rem}.productDesign-info [type='checkbox']+label{font-size:.9rem}.productDesign-info .offer .price-box{line-height:64px}.productDesign-info .offer .multiply{color:#999;display:inline-block;font-size:1.3rem;height:64px;line-height:64px;margin:0 .5rem;vertical-align:middle}.productDesign-info .offer .price{display:inline-block;font-size:1.2rem;height:64px;line-height:64px;vertical-align:middle}.productDesign-info .offer .input-field.quantity{display:inline-block;line-height:normal;margin-top:0.8rem;padding-left:0;vertical-align:middle;width:60px}.productDesign-info .offer .input-field.quantity label{left:0}span.label{color:#999;font-size:0.9rem;font-style:italic;margin-right:1rem}#fbcomments,.fb-comments,.fb-comments iframe[style],.fb-comments span{width:100% !important}#create-page #category-tabs ul{background:transparent;border-bottom:0;display:block;height:auto;margin-bottom:1rem;text-align:center}#create-page #category-tabs ul li{margin:0 0.5rem 0.5rem 0;text-transform:none}#create-page #category-tabs ul li a{background:rgba(0,0,0,0.1);border-radius:2px;color:#000;font-size:1rem;font-weight:bold;padding:0 1rem;text-transform:uppercase}#create-page #category-tabs ul li a.active{background-color:rgba(0,0,0,0.7);color:#fff}#create-page #category-tabs ul li a:hover{background-color:rgba(0,0,0,0.7);color:#fff}#create-page #category-tabs ul .indicator{display:none}#create-page #products h2{font-size:2rem;font-weight:bold;margin-bottom:1.5rem;margin-top:0}#create-page #products .category-products h3:first-child{margin-bottom:-1.5rem}#create-page #products .category-products h3{font-weight:bold}#create-page #products .category-products .sub-category-product{margin-top:2.75rem}#create-page #products article{margin-bottom:3rem;margin-top:2rem;text-align:center}#create-page #products article img{border-radius:50%}#create-page #products article h5{font-weight:bold;letter-spacing:-1px;text-transform:uppercase}#create-page #products article a{display:inline-block}.full-title{background-color:#ec407a;color:#fff;margin:-4.5rem 0 2rem;padding:10.5rem 0 6rem;text-align:center}.full-title.main-blue{background-color:#1e88e5}.full-title h1,.full-title .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .full-title .breadcrumbs{color:#fff;display:inline;font-size:3.2rem;font-weight:700;margin-bottom:0;text-transform:uppercase}.full-title p{font-size:2rem;margin:0}.full-title a{color:#fff}.full-title .breadcrumbs>span>a{border-right:1px solid rgba(255,255,255,0.5);font-size:3.6rem;margin-right:1rem;padding-right:1rem}.standard-title{font-size:3rem;font-weight:600;margin:0;padding:3rem 0;text-transform:uppercase}.panel,.order-note{background-color:#fff;padding:0.25rem 1rem}.panel p:first-child,.order-note p:first-child{margin-bottom:0.5rem;margin-top:0.5rem}.text-panel ul,.modal-text ul{padding-left:20px}.text-panel ul li,.modal-text ul li{list-style-type:disc;margin-bottom:0.5rem}ul.bullets{padding-left:20px}ul.bullets li{list-style-type:disc;margin-bottom:0.5rem}.loader-wrap{display:none;text-align:center}.loader-wrap .spinner-layer{border-color:#f600be}table.clickable tbody tr{cursor:pointer}table.clickable tbody tr:hover{background:rgba(0,0,0,0.1)}table.clickable tbody tr:active{background:rgba(0,0,0,0.2)}table.clickable tbody tr td,table.clickable tbody tr th{border-radius:0;position:relative}table.tight-borderless td{padding:.25rem .5rem}table.tight-borderless td:first-child{padding-left:0}table.panel,table.order-note{padding:0}td .badge{float:right;margin-right:5px;position:static}td.modified-price{color:red}.order-list a{color:#000 !important}.order-list .collection-item.cancelled-order{color:red !important}.order-list .collection-item.shipped-order{color:green !important}.order-list .collection-item:nth-child(even){background:#f2f2f2}.order-status .step-wrap{padding:1rem 0;text-align:center}.order-status .step{display:inline-block;text-align:center;vertical-align:top;width:100px}.order-status .step .icon{background-color:#ddd;border-radius:50%;display:inline-block;height:48px;margin-bottom:0.5rem;width:48px}.order-status .step .icon i{color:#fff;font-size:32px;line-height:48px}.order-status .step .label{color:#ddd}.order-status .step.step-onhold .icon{background-color:#212121}.order-status .step.step-onhold .label{color:#212121}@media only screen and (max-width: 992px){.order-status .step{width:80px}.order-status .step .icon{height:24px;width:24px}.order-status .step .icon i{font-size:18px;line-height:24px}}.order-status .step-line{background-color:#ddd;display:inline-block;height:2px;margin:23px -20px 0;width:10%}@media only screen and (max-width: 992px){.order-status .step-line{margin:11px -20px 0;width:8%}}span.badge{background-color:#999;border-radius:2px;color:#fff;font-size:0.8rem;font-weight:300;min-width:0}span.badge.new::after{content:''}.order-note{position:relative}.order-note h4{font-size:1.4rem;line-height:normal;margin-top:0}.order-note .badge{float:right;line-height:20px;position:static}textarea.materialize-textarea{margin-bottom:0}.cropit-image-preview-container{margin-bottom:30px;margin-left:20px;margin-top:20px}.cropit-image-preview-container .cropit-image-background-container{background-color:#333}.cropit-image-preview-container .cropit-image-background{opacity:0.2}.cropit-image-preview-container .cropit-image-preview{cursor:move}.image-cropper .range-wrap{display:inline-block}.image-cropper i.small-img{float:left;font-size:18px;line-height:24px;margin-right:6px}.image-cropper i.big-img{float:left;font-size:32px;line-height:24px;margin-left:6px}.image-cropper .cropit-image-zoom-input{float:left;margin:10px 0;width:140px}#modal-fileUpload{width:296px}#modal-fileUpload form{padding:1rem}#lab-uploader{transition:opacity 0.5s}.collection .collection-item{text-decoration:none}.collection a.collection-item:not(.active):hover,.collection button.collection-item:not(.active):hover{background-color:rgba(0,0,0,0.1)}.collection a.collection-item,.collection button.collection-item{overflow:hidden;position:relative;transition:all 0.5s}.collection a.collection-item.disabled,.collection button.disabled.collection-item{color:#ccc;cursor:default}.collection a.collection-item.disabled:hover,.collection button.disabled.collection-item:hover{background-color:#fff}.collection a.collection-item.disabled .spinner-layer,.collection button.disabled.collection-item .spinner-layer{border-color:#ccc}.collection a.collection-item .preloader-wrapper,.collection button.collection-item .preloader-wrapper{height:24px;left:20px;opacity:0;position:absolute;top:10px;width:24px}.collection button.collection-item{float:none;margin:0;text-align:left;width:100%}.image-gallery-3dmodel-loader{background:#fff;height:100%;position:absolute;top:0;width:100%}.image-gallery-3dmodel-loader>div:nth-of-type(1){color:#1e88e5;font-size:1.2rem;font-weight:600;padding-bottom:1em;position:absolute;text-align:center;width:100%}.image-gallery-3dmodel-loader .progress{margin:auto;top:1em;width:80%}.info-badge{background-color:#fff;border-radius:2px;padding:1rem}.info-badge p{margin:0}.order-status .step.step-cancelled .info-badge.icon,.info-badge.red{color:#fff !important}.order-status .step.step-cancelled .info-badge.icon a,.info-badge.red a{color:#fff !important;text-decoration:underline}.checkout-buttons .btn,.checkout-buttons .btn-large{margin-bottom:1rem}#toast-container{left:auto;z-index:2001}#toast-container .toast .btn-flat{font-weight:500}.mainPage,.col.mainPage,.mainPage.card-wrap,.row.mainPage{position:relative}@media only screen and (max-width: 600px){.mainPage,.col.mainPage,.mainPage.card-wrap,.row.mainPage{box-shadow:none;padding:0}}@media only screen and (max-width: 600px){.row.page-wrapper{margin:0;padding-bottom:1rem;padding-top:1rem}.row.page-wrapper.no-margin{padding-bottom:0}}.artist-profile{background:#fff}@media only screen and (max-width: 600px){.artist-profile{margin:0 -0.75rem}}.artist-profile .header{background-color:#1e88e5;height:170px;position:relative}@media only screen and (max-width: 600px){.artist-profile .header{height:auto}}.artist-profile .header .img-container{background-color:#fff;border-radius:2px;bottom:-3rem;height:196px;left:2rem;overflow:hidden;position:absolute;width:196px}@media only screen and (max-width: 600px){.artist-profile .header .img-container{bottom:-38px;height:86px;left:1rem;width:86px}}.artist-profile .header .img-container img{display:block;height:196px;max-width:none}@media only screen and (max-width: 600px){.artist-profile .header .img-container img{height:86px}}.artist-profile .header .header-text{bottom:1rem;color:#fff;left:246px;position:absolute}@media only screen and (max-width: 600px){.artist-profile .header .header-text{bottom:inherit;left:1rem;padding:1rem 2rem;position:relative;top:1rem}}.artist-profile .header .header-text h1,.artist-profile .header .header-text .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .artist-profile .header .header-text .breadcrumbs{color:#fff;margin:0}.artist-profile .header .header-text p{margin:0}@media only screen and (max-width: 600px){.artist-profile .header .header-text p{font-size:1.5rem;margin-left:100px;margin-top:20px;min-height:3rem}}.artist-profile .links{height:3rem;padding-left:246px}@media only screen and (max-width: 600px){.artist-profile .links{margin-left:1rem;padding-left:100px}}.artist-profile .links a{color:#323232;display:inline-block;line-height:3rem;margin-right:0.75rem;vertical-align:middle}.artist-profile .links a i{font-size:2rem;vertical-align:middle}.artist-profile .bio{padding:1rem 2rem}@media only screen and (max-width: 600px){.artist-profile .bio{padding:1rem}}.discount-code-form{margin-bottom:1rem;margin-top:2rem}.discount-code-form .input-field{margin-right:7.2rem}.discount-code-form button[type='submit']{float:right;height:2.5rem;line-height:2.5rem;margin-top:0.5rem}@media only screen and (max-width: 992px){.list-info-tiles .offset-m3{margin-top:1.5rem}}.list-info-tiles .info-tile{position:relative}.list-info-tiles .info-tile .info-tile-content{background:rgba(0,0,0,0.5);height:100%;min-height:160px;padding:1rem;position:absolute;text-align:center;top:0;width:100%}.list-info-tiles .info-tile .info-tile-content .valign,.list-info-tiles .info-tile .info-tile-content .info-badge .material-icons,.info-badge .list-info-tiles .info-tile .info-tile-content .material-icons{width:100%}.list-info-tiles .info-tile .info-tile-content p{color:#fff;font-family:'Bebas Neue', sans-serif;font-size:1.2rem;font-weight:300;margin:0 0 0.5rem;text-shadow:0 3px 5px rgba(0,0,0,0.4)}.list-info-tiles .info-tile .info-tile-content p .plus{font-size:2.5rem;font-weight:400}.list-info-tiles .info-tile .info-tile-content p .icon-heart{color:red}#etsy-info-tile .info-tile-content{background:transparent}#etsy-info-tile .info-tile-content p{font-size:1.5rem}#etsy-info-tile .info-tile-content p strong{font-size:3rem}.social-btn{display:inline-block;line-height:12px;margin-left:1rem;vertical-align:middle}.social-btn:first-child{margin-left:0}#materialbox-overlay{background-color:rgba(0,0,0,0.75);z-index:999}img.materialboxed.active,img.active.materialboxed-autowidth,img.materialboxed-autowidth.active{max-width:none}.custom-label-preview{float:left;margin-right:1rem}h4.curly{font-family:'Lobster Two';font-size:1.7rem;font-style:italic;font-weight:700;line-height:3rem}.step-nb{background-color:#04afef;border-radius:50%;color:#fff;display:inline-block;font-family:'Lobster Two';font-size:2rem;height:3rem;line-height:3rem;margin-right:0.5rem;text-align:center;vertical-align:top;width:3rem}.step-nb.main-pink{background-color:#f600be}.step-nb.main-yellow{background-color:#f1db30}h3.step-title{line-height:2.2rem}h3.step-title .step-nb{font-family:'Roboto',sans-serif;font-size:1.4rem;height:2.2rem;line-height:2.2rem;width:2.2rem}.page-img-banner{position:relative}.page-img-banner h1,.page-img-banner .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .page-img-banner .breadcrumbs,.page-img-banner h2{background-color:rgba(0,0,0,0.7);bottom:20px;color:#fff;font-family:'Lobster Two', sans-serif;font-size:3rem;font-style:italic;font-weight:700;line-height:5rem;margin:0;padding:0 2rem;position:absolute}@media only screen and (max-width: 992px){.page-img-banner h1,.page-img-banner .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .page-img-banner .breadcrumbs,.page-img-banner h2{font-size:2.4rem;line-height:4rem;padding:0 1.4rem}}@media only screen and (max-width: 600px){.page-img-banner h1,.page-img-banner .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .page-img-banner .breadcrumbs,.page-img-banner h2{position:static}}.input-field .label{color:#9e9e9e;font-size:0.8rem;margin-bottom:0.1rem;margin-top:-1rem}.collection.list-products{margin:0;overflow:visible}.collection.list-products .collection-item.product{height:49px;line-height:48px;padding:0 0.5rem 0 0;position:relative}.collection.list-products .collection-item.product img{display:inline-block;height:48px;margin-right:0.5rem;width:54px}.collection.list-products .collection-item.product .title{display:inline-block;font-size:1.2rem;font-weight:400;line-height:48px;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:50%}.collection.list-products .collection-item.product .secondary-content{height:36px;line-height:36px;margin-top:6px;padding:0;width:36px}.collection.list-products .collection-item.product .secondary-content.action-btn{top:0}.collection.list-products .collection-item.product .secondary-content i{font-size:1.8rem}.collection.list-products .collection-item.product .order-btn{float:right;margin-top:6px}.collection.list-products .collection-item.product .icon-btn{float:right;height:36px;line-height:36px;margin-top:6px;width:36px}.collection.list-products .collection-item.product .icon-btn .preloader-wrapper{height:38px;left:-1px;position:absolute;top:-1px;width:38px}.card-tag-wrapper{position:absolute;right:1rem;top:0.5rem;z-index:20}.card-tag-wrapper .card-tag{background-color:#f600be;border-radius:16px;color:#fff;display:block;font-size:0.9rem;font-weight:500;height:1.8rem;line-height:1.8rem;margin-bottom:0.5rem;padding:0 0.8rem}.card-tag-wrapper .card-tag i{display:inline-block;font-size:16px;line-height:1.8rem;margin-right:0.5rem;vertical-align:top}.row .col.checkout-box-login,.row .checkout-box-login.card-wrap{padding:0 2rem;text-align:center}@media only screen and (max-width: 600px){.row .col.checkout-box-login,.row .checkout-box-login.card-wrap{border-bottom:1px solid rgba(0,0,0,0.1);margin-bottom:1rem;padding-bottom:2rem}}.row .col.checkout-box-guest,.row .checkout-box-guest.card-wrap{border-left:1px solid rgba(0,0,0,0.1);padding:0 2rem;text-align:center}@media only screen and (max-width: 600px){.row .col.checkout-box-guest,.row .checkout-box-guest.card-wrap{border-left:0;padding-bottom:2rem}}.invoice .status-badge-wrap{display:inline-block;float:right;line-height:3.5rem;vertical-align:middle}.invoice .status-badge-wrap .status-badge{background-color:#323232;border-radius:2px;display:inline-block;font-size:1rem;font-weight:bold;line-height:2.2rem;padding:0 1.4rem;text-transform:uppercase;vertical-align:middle}.invoice .status-badge-wrap .status-badge.yellow{background-color:#ffeb3b}.invoice .status-badge-wrap .status-badge.green,.invoice .status-badge-wrap .order-status .step.step-done .status-badge.icon,.order-status .step.step-done .invoice .status-badge-wrap .status-badge.icon,.invoice .status-badge-wrap .order-status .status-badge.step-line.step-line-done,.order-status .invoice .status-badge-wrap .status-badge.step-line.step-line-done{background-color:#4caf50;color:#fff}.invoice .status-badge-wrap .status-badge.red,.invoice .status-badge-wrap .order-status .step.step-cancelled .status-badge.icon,.order-status .step.step-cancelled .invoice .status-badge-wrap .status-badge.icon{background-color:#f44336;color:#fff}.new-badge,.small-badge{background:#fff;border-radius:2px;color:#333;display:inline-block;line-height:2rem;margin-left:1rem;padding:0 0.5rem;text-transform:uppercase}.new-badge.etsy,.small-badge.etsy{background-color:#d5641c;color:#fff}.new-badge.shopify,.small-badge.shopify{background-color:#7ab55c;color:#fff}.new-badge.bigcartel,.small-badge.bigcartel{background-color:#212121;color:#fff}.new-badge.woocommerce,.small-badge.woocommerce{background-color:#9b5c8f;color:#fff}.new-badge.bigcommerce,.small-badge.bigcommerce{background-color:#34313f;color:#fff}.new-badge.squarespace,.small-badge.squarespace{background-color:#222;color:#fff}.info-link{float:right;position:relative;z-index:20}.card .card-content .card-title{font-weight:400}.card .card-content .card-title a{color:inherit}.card .card-content .card-subtitle{color:#999;font-size:0.9rem}.card.artist-collection{display:block}.card.artist-collection .card-image{max-height:238px;overflow:hidden}.card.shop-artist-collection{display:block}.card.shop-artist-collection a{color:#fff;display:block;text-decoration:none}.card.shop-artist-collection .card-title{background-color:#04afef;font-family:'Lobster Two',serif;font-size:2rem;margin:0;overflow:hidden;padding:0.5rem 1rem;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.collection button.collection-item.addToCollection-btn .preloader-wrapper{left:auto;right:10px}.collection_modal-img-wrap{border-radius:2px 2px 0 0;max-height:310px;overflow:hidden;position:relative}.collection_modal-img-wrap img{display:block;width:100%}.collection_modal-img-wrap button{background-color:rgba(255,255,255,0.8);bottom:0.5rem;font-size:1rem;position:absolute;right:1rem}.collection_modal-img-wrap button:focus{background-color:rgba(255,255,255,0.9)}.collection_modal-img-wrap button i{font-size:2rem}.artist-collection-header{position:relative}@media only screen and (max-width: 992px){.artist-collection-header{margin-bottom:72px}}.artist-collection-header img{display:block;height:auto;width:100%}.artist-collection-header .artist-collection-header-content{align-items:center;background-color:rgba(4,175,239,0.7);display:flex;height:100%;left:0;position:absolute;top:0;width:100%}.artist-collection-header .artist-collection-header-content h1,.artist-collection-header .artist-collection-header-content .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .artist-collection-header .artist-collection-header-content .breadcrumbs{color:#fff;font-family:'Lobster Two',serif;font-size:4rem;font-weight:700;margin:0;text-align:center;text-shadow:0 5px 5px rgba(0,0,0,0.25);width:100%}@media only screen and (max-width: 600px){.artist-collection-header .artist-collection-header-content h1,.artist-collection-header .artist-collection-header-content .h1_wrap .h1_group .breadcrumbs,.h1_wrap .h1_group .artist-collection-header .artist-collection-header-content .breadcrumbs{font-size:2rem}}.artist-collection-header .artist-collection-header-content .artist-collection-profile{bottom:1rem;color:inherit;display:block;left:2rem;position:absolute}.artist-collection-header .artist-collection-header-content .artist-collection-profile:hover{text-decoration:none}.artist-collection-header .artist-collection-header-content .artist-collection-profile .img-container{background-color:#fff;border-radius:50%;display:inline-block;height:64px;margin-right:1rem;overflow:hidden;vertical-align:middle;width:64px}.artist-collection-header .artist-collection-header-content .artist-collection-profile .artist-collection-profile-text{color:#fff;display:inline-block;line-height:2rem;vertical-align:middle}.artist-collection-header .artist-collection-header-content .artist-collection-profile .artist-collection-profile-text .artist-collection-profile-label{font-size:0.9rem;font-style:italic;line-height:normal;margin:0}.artist-collection-header .artist-collection-header-content .artist-collection-profile .artist-collection-profile-text h3{margin:0}@media only screen and (max-width: 992px){.artist-collection-header .artist-collection-header-content .artist-collection-profile{background-color:#fff;bottom:-64px;left:0;width:100%}.artist-collection-header .artist-collection-header-content .artist-collection-profile .img-container{border-radius:0}.artist-collection-header .artist-collection-header-content .artist-collection-profile .artist-collection-profile-text{color:inherit}}.trip-block{border-radius:2px}.trip-block.black{background-color:#333 !important}.trip-content{max-width:280px}i.external-link{font-size:inherit;line-height:inherit;margin-left:0.5rem;vertical-align:middle}.select2-container--default .select2-selection--multiple,.select2-container--default.select2-container--focus .select2-selection--multiple{background:transparent;border:0;border-bottom:1px solid #9e9e9e;border-radius:0;box-shadow:none;box-sizing:content-box;box-sizing:content-box;box-sizing:content-box;height:3rem;line-height:normal;margin:0;outline:0;padding:0;transition:all 0.3s}.select2-container--default .select2-selection--multiple .select2-selection__rendered,.select2-container--default.select2-container--focus .select2-selection--multiple .select2-selection__rendered{min-height:0;outline:0;padding:0}.select2-container--default .select2-selection--multiple .select2-selection__rendered li,.select2-container--default.select2-container--focus .select2-selection--multiple .select2-selection__rendered li{outline:0}.select2-container--default .select2-selection--multiple .select2-selection__rendered li input,.select2-container--default.select2-container--focus .select2-selection--multiple .select2-selection__rendered li input{background:transparent;margin:0}.select2-container--default .select2-selection--multiple .select2-selection__choice,.select2-container--default.select2-container--focus .select2-selection--multiple .select2-selection__choice{border:0;line-height:1.8rem;margin-top:0.6rem;padding:0 0.5rem}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,.select2-container--default.select2-container--focus .select2-selection--multiple .select2-selection__choice__remove{font-size:1.3rem;margin-right:0.4rem;vertical-align:top}.select2-container--default .select2-selection--multiple .select2-selection__choice__display,.select2-container--default.select2-container--focus .select2-selection--multiple .select2-selection__choice__display{margin-left:1.5rem}.select2-container--default.select2-container--focus .select2-selection--multiple{border-bottom:1px solid #04afef;box-shadow:0 1px 0 0 #04afef}.select2-container--open .select2-dropdown{border:1px solid #9e9e9e;border-radius:0;margin-top:0.5rem}.select2-container--open .select2-dropdown .select2-results>.select2-results__options{max-height:400px}.select2-container--open .select2-dropdown .select2-results__option .result-item{border-bottom:1px solid #ddd;font-weight:bold;margin:-6px;padding:0.4rem 1rem}.select2-container--open .select2-dropdown .select2-results__option .result-item.result-productDesign{font-weight:normal;height:48px;line-height:48px;overflow:hidden;padding:0;vertical-align:middle}.select2-container--open .select2-dropdown .select2-results__option .result-item.result-productDesign img{float:left;height:48px;width:54px}.select2-container--open .select2-dropdown .select2-results__option .result-item.result-productDesign .result-text{display:inline-block;font-size:0.8rem;line-height:1.2rem;padding:0 0.5rem;vertical-align:middle}.select2-container--open .select2-dropdown .select2-results__option .result-item.result-productDesign .result-text strong{font-size:1rem;line-height:1rem}.img-link-wrap{border-radius:2px;overflow:hidden;position:relative;z-index:20}.img-link-wrap img{border-radius:2px;transform:none;transition:transform 150ms ease;will-change:transform}.img-link-wrap:hover img{transform:scale(1.1)}.img-link-wrap a{align-items:center;background-color:rgba(0,0,0,0.4);border-radius:2px;color:#fff;display:flex;font-family:'Lobster Two', serif;font-size:2.2rem;font-weight:bold;height:100%;justify-content:center;left:0;position:absolute;text-decoration:none;text-shadow:0 2px 5px rgba(0,0,0,0.5);top:0;transition:background-color 150ms ease;width:100%;will-change:background-color}.img-link-wrap:hover a{background-color:rgba(0,0,0,0.3)}.feature-point{height:10rem}@media only screen and (max-width: 600px){.feature-point{height:auto}}.color-selector .color-block{border:1px solid rgba(0,0,0,0.25);border-radius:2px;box-sizing:content-box;display:inline-block;height:36px;margin:2px;transition:none;width:36px}.color-selector .color-block.selected{border:3px solid #04afef;margin:0}.color-selector-images{display:inline-block;width:100%}.color-selector-images img{display:none}.color-selector-images img.selected{display:inline-block}.action-btn{height:42px;line-height:42px;padding:0;position:absolute;right:4px;top:4px;width:42px}.action-btn i{font-size:24px}.action-btn.loading{animation-direction:reverse;animation-duration:1.3s;animation-iteration-count:infinite;animation-name:load-rotate;animation-timing-function:linear}.action-btn.synced{color:#4caf50}.action-btn.synced:hover{color:#f44336}.collection button.collection-item.selectCreditcard-btn .preloader-wrapper{left:auto;right:0}.status-tag{background:#333;border-radius:2px;color:#fff;display:inline-block;font-size:0.9rem;line-height:1.5rem;padding:0 0.5rem;text-transform:uppercase;vertical-align:middle}.status-tag.status-cancelled{background:red}.status-tag.status-cart{background:#f44336}.status-tag.status-ordered{background:#ffeb3b;color:rgba(0,0,0,0.87)}.status-tag.status-paid,.status-tag.status-in-production,.status-tag.status-ready,.status-tag.status-shipped{background:#4caf50}.thin-dropdown .dropdown-content li>span{font-size:1rem;padding:4px 16px}.full-seperator{background-color:#1e88e5;margin-bottom:20px;padding:1rem 0;position:relative}.full-seperator h2{color:#fff;font-family:'Lobster Two',serif;font-size:3rem;font-style:italic;font-weight:bold;margin:0;text-align:center;text-shadow:2px 2px 1px rgba(0,0,0,0.15)}.full-seperator .arrow{left:50%;margin-left:-20px;position:absolute;top:100%}.full-seperator .arrow.arrow-down{border-top:20px solid #1e88e5}.arrow-up{border-bottom:5px solid #000;border-left:5px solid transparent;border-right:5px solid transparent;height:0;width:0}.arrow-down{border-left:20px solid transparent;border-right:20px solid transparent;border-top:20px solid #f00;height:0;width:0}.arrow-right{border-bottom:60px solid transparent;border-left:60px solid green;border-top:60px solid transparent;height:0;width:0}.arrow-left{border-bottom:10px solid transparent;border-right:10px solid blue;border-top:10px solid transparent;height:0;width:0}a.pink-link{border-bottom:1px dashed #f600be;color:#f600be;padding-bottom:1px;text-decoration:none}a.blue-link{border-bottom:1px dashed #1e88e5;color:#1e88e5;padding-bottom:1px;text-decoration:none}a.black-link{border-bottom:1px dashed rgba(0,0,0,0.87);color:rgba(0,0,0,0.87);padding-bottom:1px;text-decoration:none}a.white-link{border-bottom:1px dashed #fff;color:#fff;padding-bottom:1px;text-decoration:none}.video-container iframe{border:0}@keyframes load-rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.fabric-preview{min-width:0 !important;overflow:scroll}.fabric-preview .fabric-container{overflow:hidden}.fabric-preview .fabric-ruler-x{height:auto;max-width:none;transition:top 200ms}.fabric-preview .fabric-ruler-y{max-width:none;transition:left 200ms;width:auto}ol{padding-left:1rem}ol li{margin-bottom:0.5rem}.croppie-container{padding:0}#wood-promo-form input[type='range']+.thumb{display:none}.cartItem.disabled{background:#ddd;opacity:0.75}#homeSlider .slides li .caption.slider-scale-text{bottom:35%}#homeSlider .slides li .caption.slider-scale-text h3{font-size:3.5rem}#homeSlider .slides li .caption.slider-scale-text p{font-size:1.5rem}@media only screen and (max-width: 760px){#homeSlider .slides li .caption.slider-scale-text{bottom:30%}#homeSlider .slides li .caption.slider-scale-text h3{font-size:3rem}}@media only screen and (max-width: 540px){#homeSlider .slides li .caption.slider-scale-text{bottom:25%}#homeSlider .slides li .caption.slider-scale-text p{font-size:1.1rem}}#homeSlider .slides li .caption.slider-scale-text-sale{bottom:20%}#homeSlider .slides li .caption.slider-scale-text-sale h3{font-size:3.5rem}#homeSlider .slides li .caption.slider-scale-text-sale p{font-size:1.5rem}@media only screen and (min-width: 760px){#homeSlider .slides li .caption.slider-scale-text-sale{bottom:30%;width:60%}#homeSlider .slides li .caption.slider-scale-text-sale h3{font-size:3rem}}@media only screen and (max-width: 760px){#homeSlider .slides li .caption.slider-scale-text-sale+.slider-caption-foot-notice{width:50%}}@media only screen and (max-width: 540px){#homeSlider .slides li .caption.slider-scale-text-sale{bottom:25%}#homeSlider .slides li .caption.slider-scale-text-sale p{font-size:1.1rem}#homeSlider .slides li .caption.slider-scale-text-sale+.slider-caption-foot-notice{display:none}}#pageOverlay{background:radial-gradient(50% 50%, ellipse closest-corner, rgba(0,0,0,0.6) 1%, rgba(0,0,0,0.8) 100%);background-color:rgba(0,0,0,0.8);height:100%;left:0;position:fixed;top:0;width:100%;z-index:2147483647}#pageOverlay #overlayContainer{color:#fff;position:fixed;top:50%;width:100%}#pageOverlay #closeOverlay{color:#fff;cursor:pointer;font-size:30px;opacity:0.6;position:absolute;right:16px;text-decoration:none;top:10px}#pageOverlay #closeOverlay:hover{opacity:0.9}#modelViewer_options-btn{background:#666;left:1em;padding:0 0.75em;position:absolute;top:1em;z-index:50}#modelViewer_options-btn i{margin:0}.vertical-divider{background:rgba(255,255,255,0.25);display:block;height:60%;margin:1em;width:1px}.hide-scroll{overflow:hidden !important}#account-loader,#cart-loader{background:rgba(255,255,255,0.7);display:none;height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity 0.2s;width:100%;will-change:opacity;z-index:500}#account-loader .preloader-wrapper,#cart-loader .preloader-wrapper{display:block;left:50%;margin:auto;margin-left:-32px;margin-top:-32px;position:absolute;top:30%}#account-loader .account-loader-text,#account-loader .cart-loader-text,#cart-loader .account-loader-text,#cart-loader .cart-loader-text{display:block;font-size:18px;left:50%;margin:auto;margin-left:-32px;margin-left:-55px;margin-top:-75px;position:absolute;top:30%;width:200px}#customer_note .card-action{border:1px solid #ccc;border-radius:3px;height:55px;margin:25px}#customer_note .col.s2,#customer_note .s2.card-wrap{margin:0;padding:0;text-align:right}#customer_note .input-field{margin:0}#customer_note .input-field textarea{border:0;box-shadow:none;max-height:30px;min-height:30px;padding:5px}.order-notes #notes-list{margin:0 21px 21px}.order-notes #notes-list .author-aow-icon span,.order-notes #notes-list .author-user-icon span{background-color:#fff;border:50px;border:1px solid #ddd;border-radius:46px;display:block;height:46px;overflow:hidden;width:46px}.order-notes #notes-list .author-aow-icon span{background-image:url(https://static.artofwhere.net/img2/img/dashboard/new-logo-white-font-a1101cdee57fa5158be9.png)}.order-notes #notes-list .author-aow-icon{padding:0}.order-notes #notes-list .author-user-icon{padding:0}.order-notes #notes-list .note-content{border:1px solid #ccc;line-height:24px;padding:15px 13px}.order-notes #notes-list .note-detail span{margin:0 5px 0 0}.order-notes #notes-list .user-note-content{background-color:rgba(30,136,229,0.2);border-color:rgba(30,136,229,0.2);border-radius:15px 0 15px 15px}.order-notes #notes-list .aow-note-content{border-radius:0 15px 15px}.order-notes #notes-list .note-time{color:#9e9e9e}.order-notes .note-status{background-color:#999;border-radius:2px;color:#fff;display:inline-block;font-size:0.7rem;padding:0 0.5rem;text-transform:uppercase}.grecaptcha-badge{left:-1000px;position:absolute;visibility:hidden}#page-cart-pay .info-badge,#page-cart-list .info-badge{margin-bottom:1rem}.container>h1,.h1_wrap .h1_group .container>.breadcrumbs{margin-top:1rem}


/*# sourceMappingURL=master.c186c6b5f3fdabffaca8.css.map*/