@import url('../fonts/script/script.css');

:root {
	--style-cols: 2;
	--margin-header-lg: 32px;
	--builder-gutter: 16px;
	--filter-panel-width: 240px;
}

* {
	box-sizing: border-box;
}

body {
	padding-top: 0;
}

nav.navbar, .site-nav {
	transform: translateY(-60px);
	-webkit-transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);
	transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);
}
.nav-toggle {
	z-index: 9;
	position: absolute;
	width: 44px;
	height: 44px;
	top: 0;
	left: 0.25rem;
	background: transparent url(../../../das4/assets/imgs/caret-down.svg) no-repeat center center;
	background-size: 16px;
	transform: translateY(0px);
	-webkit-transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);
	transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);
}
.mob-nav-visible nav.navbar, .mob-nav-visible .site-nav {
	transform: translateY(0px);
}
.mob-nav-visible .nav-toggle {
	transform: translateY(60px) rotate(180deg);
}
#main-panel, #main-content {
	margin-top: 0;
}

#builder {
  padding-top: 0;
}

.builder a {
	text-decoration: none;
}
.builder h4, .builder h5, .builder h6 {
	font-weight: 500;
}

.builder select {
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px !important;
  letter-spacing: 0px!important;
  padding: 10px 27px 10px 12px;
  border: 1px solid #bbb;
  border-radius: 3px;
  background: #fff url(../../../images/icons/select-arrows.svg) no-repeat right center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
  background-size: 18px;
  height: auto !important;
}

:focus:not(:focus-visible) { outline: none }

.builder nav {
	position: fixed;
	right: 0;
	left: 0;
	background: #fff;
	align-items: center;
	align-content: center;
	justify-content: center;
	border-bottom: 1px solid #ddd;
	z-index: 1;
	top: 60px;
	display: none;
}
.builder nav div {
	display: flex;
}
.builder nav div:last-child {
	justify-content: center;
	flex: 1 auto;
}
.builder .step-nav a {
	font-size: 12px;
	font-weight: 500;
	padding: 0 1.25rem;
	color: #757575;
	text-transform: uppercase;
	letter-spacing: var(--type--caps-tracking);
	overflow: hidden;
}
.builder .step-nav a span {
	display: inline-block;
	padding: 0.85rem 0;
	height: 50px;
	position: relative;
}
.builder .step-nav a:hover {
	color: #333;
}
.builder .step-nav a span:before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0;
    will-change: transform;
    transform: translateY(110%);
    -webkit-transition: transform .25s cubic-bezier(.77, 0, .125, 1);
    transition: transform .25s cubic-bezier(.77, 0, .125, 1);
}
.builder .step-nav a.is-active {
	color: #000;
}
.builder .step-nav a.is-active span:before {
	transform: translateY(0);
}
@keyframes modify-pulse {
    from { opacity: 0.6 }
    to { opacity: 1 }
}
.modifying-tag {
	animation-name: modify-pulse;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	align-self: flex-start;
	flex: 1 auto;
	padding: 6px 6px 6px 8px;
}
.modifying-tag__actions {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	align-self: flex-end;
	flex: 1 auto;
	padding: 6px 6px 6px 8px;
}
.modifying-tag a, .modifying-tag__actions a {
	padding: 0;
	font-size: 0.85rem;
	color: #fff;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	border-radius: 3px;
}
.modifying-tag span, .modifying-tag__actions span {
	padding: 0.35rem 0.75rem;
	background: #C0C0C5;
	background: linear-gradient(0deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1)),linear-gradient(90deg, #454B61 0, #333A50 100%);
	box-shadow: 0 4px 32px rgba(0,0,0,0.25);
	font-size: 90%;
	border-radius: 3px;
}
.modifying-tag span:first-child {
	border-left: 1px solid #fff;
}
.modifying-tag span:nth-child(2) {
	border-left: 1px solid #fff;
}
.modifying-tag span:last-child {
	border-left: 1px solid #fff;
}
.modifying-tag a span:last-child:hover {
	background: #aaa;
}
.edit-mode .modifying-tag span {
	/*background: #ccc;
	color: #555;*/
	border-radius: 3px;
}
.edit-mode .modifying-tag__actions span {
	/*background: #ccc;
	color: #555;*/
	border-radius: 0px;
}
.edit-mode .modifying-tag__actions span:first-child {
	border-radius: 3px 0 0 3px;
}
.edit-mode .modifying-tag__actions span:last-child {
	border-radius: 0 3px 3px 0;
}
.is-edit-mode .builder {
	padding-top: 60px;
}
.is-edit-mode .edit-mode__nav {
	background: #F0F0F0;
	padding: 1rem;
	max-height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.edit-mode__nav p {
	color: #000;
	font-size: 15px;
	position: relative;
	top: 3px;
}

.snapshot {
	position: absolute;
	right: 6px;
	left: auto;
	bottom: 4px;
	background: none;
	padding: 6px;
}

@keyframes loader {
    0% { opacity: 1; transform: translateY(-34px); }
    5% { opacity: 1; transform: translateY(-34px); }
    45% { opacity: 1; transform: translateY(88px); }
    55% { opacity: 1; transform: translateY(88px); }
    95% { opacity: 1; transform: translateY(-34px); }
    100% { opacity: 1; transform: translateY(-34px); }
}

.config {
	background: #F0F0F0;
	min-height: 100px;
	min-height: 51vh;
	padding: 0.75rem var(--builder-gutter);
	z-index: 9;
	text-align: left;
	width: 100%;
	border-top: 1px solid rgba(0,0,0,.1);
	overflow-x: hidden;
	overflow: visible;
}

.shirt {
	background: #fff;
	position: relative;
	left: 0;
	width: 100%;
	padding: 1rem;
	max-height: 50vh;
}
.render {
	margin-top: -1rem;
}

@media screen and (min-width: 56.25em) {
	:root {
		--builder-gutter: 32px;
	}
	body {
		overflow: hidden;
		padding-top: 20px;
	}
	#main-panel, #main-content {
		margin-top: 40px;
	}
	.nav-toggle {
		display: none;
	}
	nav.navbar, .site-nav {
		transform: unset;
	}
	.edit-mode__nav p {
		font-size: 18px;
		top: 0;
	}
	#builder {
	  padding-top: 50px;
	}
	.builder nav {
		display: block;
	}
	.is-edit-mode .builder {
		padding-top: 0px;
	}
	.render-grab-handle {
		display: none;
	}
	.mod-diff-msg {
		padding: 1rem 1.25rem;
	}
	.mod-diff-msg p {
		font-size: 15px;
	}
	.shirt {
		position: fixed;
		width: 50%;
		left: 0;
		height: 100vh;
		height: calc(100vh - 110px);
		min-height: calc(100vh - 110px);
		max-height: calc(100vh - 110px);
	}
	.config {
		width: 50%;
		position: fixed;
		min-height: calc(100vh - 140px);
		top: 110px;
		bottom: 0;
		right: 0;
		padding: 2rem var(--builder-gutter);
		overflow: scroll;
		overflow-x: hidden;
		border-top: none;
	}
}

@media screen and (min-width:87.5em) {
	.config {
		padding: 36px var(--builder-gutter);
	}
}
@media screen and (min-width:112.5em) {
	:root {
		--builder-gutter: 48px;
	}
}


.builder .close {
	float: none;
	text-shadow: none;
	font-size: 36px;
	font-weight: 100;
	line-height: 1;
	color: #000;
	opacity: .5;
	position: relative;
	top: -0.5rem;
	right: -0.5rem;
}
.builder .close:hover {
	opacity: 1;
}

.shirt .loader {
	position: absolute;
	top: 50%;
	left: 1rem;
	width: 6px;
	height: 96px;
	margin-top: -32px;
	overflow: hidden;
	border-radius: 6px;
	background: #eee;
	opacity: 0;
	visibility: hidden;
	transition: .05s ease;
	z-index: 9999;
}
.shirt .loader span {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	display: block;
	height: 42px;
	width: 6px;
	border-radius: 6px;
	animation-name: loader;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-transition: cubic-bezier(0,.7,.1,1);
	animation-play-state: paused;
}
.shirt .render-error {
	position: fixed;
  bottom: 1rem;
  left: 1rem;
  text-align: center;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .1s ease .3s;
  transition: .1s ease .3s;
  display: inline-block;
  background: rgba(230,50,50,0.3);
  border-radius: 4rem;
  padding: .3rem .75rem .25rem;
  width: auto;
  font-size: 12px;
}
.shirt .render-error.is-visible {
	opacity: 1;
	visibility: visible;
}
.render-unavailable {
	position: fixed;
	top: 28%;
	left: 50%;
	text-align: center;
	padding: .5rem;
	-webkit-transition: .1s ease .3s;
	transition: .1s ease .3s;
	background: rgba(220,220,220,0.8);
	border-radius: 3px;
	padding: 1.5rem;
	width: auto;
	font-size: 12px;
	width: 320px;
	height: 140px;
	margin: -70px auto 0 -160px;
	display: inline-block;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

canvas {
	width: 100%;
	height: auto;
	margin: 0 auto;
	transition: opacity .1s ease 0;
	transform: scale(0.75);
}
@supports (object-fit: cover) {
	.render canvas {
		max-height: 78vh;
		object-fit: contain;
	}
}
.shirt.is-loading canvas {
	opacity: 0.6;
	transition: opacity .25s ease 1s;
}
.shirt.is-loading .loader {
	opacity: 1;
	visibility: visible;
	transition: .05s ease 0.15s;
}
.shirt.is-loading .loader span {
	animation-play-state: running;
}

.render {
	transition: transform .3s cubic-bezier(0,.7,.1,1);
	transform: translateX(0);
}
.render-grab-handle {
	position: absolute;
	left: 6px;
	width: 4px;
	height: 36px;
	background: rgba(0,0,0,.25);
	border-radius: 6px;
	visibility: hidden;
}
.is-scrolled .render {
	position: fixed;
	right: -1px;
	bottom: 160px;
	height: 190px;
	width: 150px;
	z-index: 98;
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 0.5rem 0 0 0.5rem;
	box-shadow: 0 0 24px rgba(0,0,0,.1);
	will-change: transform;
	animation-name: render-slide;
	animation-duration: 0.5s;
	/*animation-iteration-count: once;*/
	animation-transition: cubic-bezier(0,.7,.1,1);
	animation-play-state: play;
}
.is-scrolled .render canvas {
	transform: scale(1);
}
.is-scrolled .render .monogram {
	visibility: hidden;
}
.is-scrolled .render-grab-handle {
	/*visibility: visible;*/
	visibility: hidden;
}
@keyframes render-slide {
    0% { transform: translateX(105%); }
    100% { transform: translateX(0); }
}

#canvas-zoom {
	margin: 4rem auto;
	width: auto;
	max-width: 888px;
	height: 90%;
	position: relative;
	top: 0;
	left: 0;
	right: auto;
	transition: opacity .1s ease;
	transform: scale(1);
}

.monogram {
	position: absolute;
	border-radius: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 44px;
	letter-spacing: 4px;
	left: 50%;
	top: 50%;
	width: 13rem;
	height: 13rem;
	overflow: hidden;
	margin: -6.5rem auto 0 -6.5rem;
	text-rendering: optimizeLegibility;
	border-style: solid;
	border-color: #fff;
	vertical-align: middle;
	text-shadow: 0px 1px 1.5px rgba(0,0,0,.4), 1.5px 1.5px 3px rgba(0,0,0,.15);
	transition: opacity .15s ease;
	background-position: 30% center;
	background-size: 1400px;
	box-shadow: 16px 16px 64px rgba(0,0,0,.1);
}
.monogram span {
	position: relative;
	top: 0.2rem;
	text-transform: uppercase;
	transition: color .1s ease;
}

/* Block */
.monogram[data-font="0"] {
	font-family: 'Arial';
	font-weight: 500;
}
/* Script */
.monogram[data-font="1"] {
	font-family: 'PC Script';
	font-weight: 500;
	letter-spacing: 2px;
}
/* Serif */
.monogram[data-font="2"] {
	font-family: 'American Typewriter';
	font-weight: 500;
}
/* Diamond */
.monogram[data-font="3"] {
	font-family: 'Arial';
}

.monogram[data-length="5"] {
	font-size: 28px!important;
	letter-spacing: 3px;
	background-size: 1200px!important;
}
.monogram[data-font="1"][data-length="5"] {
	letter-spacing: 1.5px;
}

label {
	display: flex;
	font-size: 15px;
}
label input {
	width: 16px;
}

.step__title {
	font-family: var(--font-serif);
	font-size: 28px;
	line-height: 1.1;
	color: var(--color-gray-dark);
	text-transform: none;
	letter-spacing: -0.3px;
	margin: 0;
}

.overview { display: flex; flex-direction: column; margin-top: 1.5rem; margin-bottom: 0rem; }
.overview .steps div { 
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #ccc;
	padding: 12px 0;
	cursor: pointer;
	color: var(--color-gray-dark);
	position: relative;
}
.overview .steps div span:first-child { 
	font-size: 15px;
    color: var(--color-gray); 
}
.overview .steps div:hover { color: #000; }
.overview .steps div:last-child { 
	border-bottom: 1px solid #ccc; 
}

.overview div > span:last-child::after {
  content: '';
  background: url('data:image/svg+xml,%3Csvg width="9" height="6" viewBox="0 0 9 6" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.5 1L4.5 5L8.5 1" stroke="black" stroke-opacity="1"/%3E%3C/svg%3E%0A') no-repeat;
  height: 12px;
  width: 12px;
  pointer-events: none;
  position: relative;
  opacity: 1;
  display: inline-block;
  transform: rotate(-90deg);
  margin-left: 12px;
  opacity: 0.5;
}
.overview div:hover > span:last-child::after {
  opacity: 1;
}

.fabric-search, .style-presets {
	flex: 1 0 auto;
	margin-left: auto;
	text-align: right;
	/*position: relative;
	top: -0.5rem;*/
}
.style-presets {
	display: flex;
	/* align-items: flex-start; */
	justify-content: space-between;
	max-width: 100%;
}
.style-preset-select-wrap {
	margin-right: 0.5rem;
	flex: 1 1 auto;
}
.style-presets select {
	flex: 1;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 12px 27px 12px 12px;
  border-radius: 3px;
  font-size: 12px!important;
}
.style-presets .reset {
	display: block;
	width: 27px;
	height: 40px;
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
	background: url(../imgs/reset.svg) no-repeat left center;
	background-size: 75% 75%;
	position: relative;
	top: 2px;
	margin-right: 0.75rem;
	-webkit-transform-origin: 41.5% 51%;
	transform-origin: 41.5% 51%;
	flex: 0 0;
	flex: 0 0 27px;
	position: absolute;
	top: -8px;
	right: -20px;
}
.style-presets .reset.spin {
  transform: rotate(-360deg);
  transition: .3s ease;
}
.preset__dd {
	display: flex;
	padding: 8px 20px 8px 10px;
	align-items: center;
	border-radius: 4px;
	border: 1px dashed rgba(0, 0, 0, 0.20);
	position: relative;
	/* background: #FFF; */
}
.preset__dd__tag {
	padding: 2px 10px;
	border-radius: 3px;
	background: rgba(0, 0, 0, .1);
	color: #444;
	font-size: 11.5px;
	margin-right: 10px;
}
.preset__dd__title {
	flex: 1;
	text-align: left;
}
.preset__dd__opts {
	position: absolute;
	top: 8px;
	left: -8px;
	background: white;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, .1);
	z-index: 10;
	width: 100%;
	border-radius: 6px;
}

.save-btns {
	width: auto;
  display: block;
}
.step__sizes .save-btns {
  margin-left: 8px;
  position: relative;
  top: -0.5rem;
}
.save-btns .btn {
	font-weight: 300;
	/*padding: 9px 10px 8px;
	background: #333;*/
	text-transform: none;
	letter-spacing: 0;
	border-radius: 3px;
}
.save-btns .btn-group {
	display: flex;
	height: 100%;
}
.save-btns .btn-group .dropdown-toggle {
	border-radius: 0 3px 3px 0;
	margin-left: 2px;
	min-width: 35px;
}
.save-btns .dropdown-menu {
	right: 0;
	left: auto;
	margin-top: 2px;
	min-width: 117px;
	border-radius: 0 0 4px 4px;
	padding: 0;
	text-align: left;
}
[data-step="style"] .save-btns .dropdown-menu {
	min-width: 122px;
}
.save-btns .dropdown-menu a{
	font-size: 12px;
	font-weight: 300;
	padding-left: 12px;
}
.save-btns .dropdown-menu a:hover {
	cursor: pointer;
	text-decoration: none;
}

.is-edit-mode .apply-changes .btn-secondary {
	min-width: 24%;
}

.changed-list {
	display: flex;
	justify-content: flex-start;
	font-size: 14px;
}
.changed-list i {
	display: inline-block;
	font-style: normal;
	width: 22.5%;
}
.changed-list span {
	display: inline-block;
	color: #333;
	margin-left: 0.25rem;
}
.changed-list span:after {
	content: ', ';
}
.changed-list span:last-child:after {
	content: '';
}
.changed-list .reset, .edit-mode__cancel .reset {
	display: block;
	width: 27px;
	min-width: 27px;
	height: 40px;
	flex: 0 auto;
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
	background: url(../imgs/reset.svg) no-repeat center center;
	background-size: 20px 20px;
	position: relative;
	-webkit-transform-origin: 51.5% 53%;
	transform-origin: 51.5% 53%;
	position: absolute;
	right: 1rem;
	top: 0.35rem;
	cursor: pointer;
}

.shirt-details > div { display: flex; align-content: baseline; border-bottom: 1px solid #ddd; padding: 10px 0 0; line-height: 1.5; }
.shirt-details > div div:first-child { width: 20%; position: relative; top: 4px; min-width: 75px; padding-right: 8px; }
.edit-mode .shirt-details > div div:first-child { width: 25%; }
.shirt-details > div div:last-child { width: 80%; flex: 1 auto; }
.shirt-details > div:last-child { border-bottom: none; }
.edit-mode .shirt-details > div div:last-child { width: 75%; }
.shirt-details > div { font-size: 0.8rem; }
.shirt-details > div span {
	max-width: 100%;
}
.shirt-details > div span a {
	position: relative;
  display: inline-flex;
  padding: 4px 8px;
  margin-right: 4px;
  margin-bottom: 8px;
  background: #e6e2e2;
  border-radius: 3px;
  text-decoration: none;
  color: #555;
  white-space: nowrap;
  max-width: 100%;
  transition: .05s ease;
  align-items: center;
}
.shirt-details > div span a span:not(.add-on) {
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.shirt-details > div span a.is-changed {
	background: #b4d6b7;
}
.shirt-details > div span a.is-warning {
	background: #ad423f;
	color: #fff;
}
.shirt-details > div span a:hover {
	background: #ccc;
	color: #000;
	transition: 0s ease;
}
.shirt-details > div span a.is-warning:hover {
	background: #963633;
	color: #fff;
}
.shirt-details .add-on:not(:empty) {
	display: inline-block;
	padding: 0 0 0 5px;
	margin-left: 6px;
	border-left: 1px solid #bbb;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
}

.shirt-actions .btn {
	flex: 1 auto;
}

.selected-panel {
	border-top: 1px solid rgba(0,0,0,.15);
	background: #F0F0F0;
	background: rgba(245, 245, 245, 0.96);
	box-shadow: 0 -1px 0 1px rgba(0,0,0,.025);
	padding: 0.75rem var(--builder-gutter);
	position: fixed;
	bottom: 67px;
	border-radius: 0;
	width: auto;
	right: 0;
	left: 0;
  z-index: 99;
  transform: translateY(110%);
  -webkit-transition: transform .3s cubic-bezier(0.35, 0.35, 0, 1.0);
  transition: transform .3s cubic-bezier(0.35, 0.35, 0, 1.0);
}
.selected-panel > div {
	transition: .25s ease;
	opacity: 0.01;
}
.selected-panel.is-visible.is-slid {
	transform: translateY(0);
}
.selected-panel.is-visible.is-slid > div {
	opacity: 1;
}
@media(min-width: 56.25em) {
	.selected-panel.is-visible {
		transform: translateY(0);
	}
	.selected-panel.is-visible > div {
		opacity: 1;
	}
}
.selected-panel h3 {
	margin-bottom: 0.25rem;
	line-height: 1.4;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 0.9rem;
}
.selected-panel h3 a {
	color: inherit;
}
.selected-panel h4 {
	text-transform: none;
	font-weight: 300;
	letter-spacing: 0.25px;
}
.selected-panel ul {
	padding-top: 12px;
	padding-bottom: 4px;
	display: none;
}
.selected-panel li {
	padding-top: .3rem;
	padding-bottom: .125rem;
}
.selected-panel li *, .selected-style-panel li * {
	font-size: 13px;
}
.selected-panel .sku {
	display: none;
}
.selected-panel .btn-sm {
	padding-top: .35rem;
	padding-bottom: .35rem;
}
.selected-panel--style .sugg-style {
	margin: 11px 0 0 0;
	text-align: right;
	color: #999;
	font-weight: 300;
	font-size: 12px;
	align-self: flex-start;
}
.selected-panel--style .sugg-style span {
	color: #555;
  font-size: 13px;
  display: block;
  font-weight: 400;
  line-height: 1.4;
}
.fabric-price-diff {
	display: inline;
	border: 1px solid transparent;
	background: rgba(0,0,0,.075);
	padding: 4px 6px;
	margin: 0 0.25rem;
	font-size: 12px;
	border-radius: 3px;
	letter-spacing: 0;
}
.selected-panel .progress {
	width: 100%;
	height: 2px;
	background-color: #ddd;
	border-radius: 2px;
	margin-bottom: 0;
}
.selected-panel .progress-bar {
	background-color: #333;
	-webkit-transition: width .3s cubic-bezier(0.6, 0, 0, 1);
	transition: width .3s cubic-bezier(0.6, 0, 0, 1);
}
.on-sale .orig span {
	text-decoration: line-through;
}
.on-sale .sale {
	color: var(--color-gray);
	margin-left: 0.25rem;
}

.selected-panel--style {
	display: block;
}
.selected-panel--style h3 {
	margin-bottom: 0.25rem;
	display: none;
}
.selected-panel--style a {
	/*color: #000;
	border-bottom: 1px solid #ccc;
	display: inline-block;*/
	cursor: default;
}
.selected-panel--style[data-style="collar"] a[data-style-name] {
	color: #000;
	border-bottom: 1px solid #ccc;
	display: inline-block;
}
.selected-panel--style a[data-style-name]:hover {
	border-bottom: 1px solid #000;
}
.selected-panel--style h3 span {
	color: #000;
	display: inline-block;
}
.selected-panel--style .btn {
	display: inline-flex;
	align-content: center;
	justify-content: center;
	opacity: 1;
	font-family: monospace;
	text-transform: lowercase;
	font-size: 14px;
	background: #F5F5F5;
	height: 34px;
	width: 34px;
	padding: 4px;
	color: #757575;
	border-radius: 100%;
	position: absolute;
	top: -1rem;
	right: 1.5rem;
	border: 1px solid rgba(0, 0, 0, .15);
}
.selected-panel--style .btn:hover {
	color: #000;
	background: #ccc;
}
.details-btn-wrap {
	align-self: center;
  position: relative;
  margin: 0;
  padding: 0;
}
.details-btn-wrap .btn {
	text-transform: none;
	letter-spacing: 0;
}

.mop-note, .mop-note--mob, .style-note, .style-note--mob {
	padding: 0.3rem 0.5rem;
	background: #e4e4e4;
	color: #952D2A;
	border-radius: 3px;
	font-size: 12px;
	display: inline-block;
	margin: 0.4rem auto 0;
}
.style-note {
	background: rgba(0,0,0,.04);
	color: var(--color-gray-light);
}
.style-note--mob {
	color: var(--color-gray-light);
}
.mop-note--mob, .style-note--mob {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 76px;
	z-index: 100;
	padding: 0.6rem;
	border: 1px solid rgba(0,0,0,.3);
	display: none;
}

.build-footer {
	position: fixed;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	background: #000;
	padding: 12px 12px 18px 12px;
	z-index: 9999;
	width: 100%;
}
.is-edit-mode .build-footer {
	justify-content: flex-end;
}
.build-footer * {
	margin: 0;
}
.build-footer .ml-auto {
	margin-left: auto;
}
.build-footer div {
	display: flex;
	align-items: center;
	align-content: center;
}
.build-footer .btn {
	background: #fff;
	color: #000;
	padding: 11px 24px;
}
@keyframes pulse {
    from { opacity: 0.7 }
    to { opacity: 1 }
}
.build-footer .btn.is-pulsing {
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.build-footer .btn.disabled {
	cursor: not-allowed;
}
.build-footer .btn-primary.disabled:active, .build-footer .btn-primary.disabled:focus {
	background: #fff;
	color: #000;
}
.build-footer .modify-label {
	margin-right: 12px;
	font-weight: 400;
	font-size: 0.85rem;
	white-space: nowrap;
	line-height: 1.2;
}
.build-footer .prev-step, .build-footer .cancel-edit {
	background: #333;
	color: #fff;
}
.build-footer .cancel-edit {
	padding: 12px 12px;
	line-height: 1rem;
	font-size: 1.8rem;
	font-weight: 100;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.build-footer .price {
	color: #fff;
	font-size: 1.3rem;
	margin-left: auto;
	margin-right: auto;
	white-space: nowrap;
}

.is-edit-mode .build-footer .btn {
	margin-left: 1rem;
}
.is-edit-mode .build-footer .btn span {
	display: none;
}

.mod-diff-msg {
	position: absolute;
	right: 0.75rem;
	bottom: 100%;
	margin-bottom: 1rem;
	background: #fff;
	background: rgba(255,255,255,.95);
	padding: 0.75rem 1rem;
	max-width: 250px;
	border: 1px solid #ddd;
	border-radius: 3px;
	visibility: hidden;
	opacity: 0;
	transform: scale(0.5);
	transform-origin: 90% 100%;
	transition: .3s cubic-bezier(.175, .885, .32, 1.275);
	box-shadow: 0 0 36px rgba(0,0,0,.1);
}
.mod-diff-msg:after {
	content: '';
	width: 0; 
	height: 0; 
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-top: 8px solid #FEFEFE;
	position: absolute;
	bottom: -7px;
	right: 1.25rem;
}
.mod-diff-msg p {
	font-size: 14px;
	text-align: right;
}
.mod-diff-msg.is-visible {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

/* iPad Only Fix */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .render {
        margin-top: -2rem;
    }
    .render canvas { max-height: 66vh; }
}

@media screen and (min-width: 48em) {
	canvas {
		width: 90%;
	}
	.render canvas {
	    max-height: 60vh;
	}
	#canvas-zoom {
		width: 100%;
		max-width: 1776px;
		height: auto;
	}
}

@media screen and (min-height: 45em) {
	.selected-panel--style h3 {
		display: block;
	}
}

@media screen and (min-width: 56.25em) {
	canvas {
		width: 100%;
	}
	.render canvas {
		max-height: 85vh;
		transform: scale(1);
	}
	@supports (object-fit: cover) {
		.render canvas {
			max-height: 70vh;
		}
	}
	.shirt .loader {
		left: 2rem;
	}
	.selected-panel {
		width: auto;
	  	left: 50%;
  		padding: 1rem var(--builder-gutter) 1rem;
  	    bottom: 61px;
    	border-radius: 0;
		z-index: 99;
		border-top: 1px solid rgba(0,0,0,.15);
		right: 0;
		margin-left: 0;
	}
	.selected-panel--style {
		display: block;
	}
	.selected-panel--style[data-style="collar"] p {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.selected-panel h3 {
		white-space: normal;
		text-overflow: unset;
		overflow: auto;
		font-size: 1rem;
	}
	.selected-panel .sku {
		display: block;
		letter-spacing: 1px;
		color: #6d6d6d;
		margin-bottom: 0.2rem;
	}
	.selected-panel .btn-sm {
		/* padding-top: .5rem;
		padding-bottom: .5rem; */
	}
	.selected-panel ul {
	  display: block;
	}
	.details-btn-wrap {
		align-self: center;
	  position: absolute;
	  margin-top: -1rem;
	  padding: 0.25rem 1rem 0 0;
	}
	.overview { margin-top: 0; }

	.overview .steps div {
		padding: 16px 0;
	}
	.overview .steps div:after {
		content: '';
		position: absolute;
		top: 1px;
		left: 0;
		right: 0;
		bottom: 1px;
		background: linear-gradient(to left, #F0F0F0, #FFF);
		background: #f0f0f0;
		background: linear-gradient(90deg, #f0f0f0 0, #fff 25%, #fff 50%, #fff 75%, #f0f0f0 100%);
		will-change: opacity;
		opacity: 0;
		transition: 1.5s ease;
		z-index: -1;
	}
	.overview .steps div.is-active:after {
		opacity: 1;
	}

	.style-presets {
		margin-top: -0.5rem;
		max-width: 75%;
		position: relative;
		justify-content: flex-end;
	}

	.style-presets .reset {
		/*position: relative;
		top: 0;
		right: 0;*/
		position: absolute;
		left: -32px;
		top: 0px;
	}

	.shirt-details a.tag:after {
		content: 'Edit';
		font-size: 11px;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: rgba(0,0,0,.75);
    z-index: 9;
    color: #fff;
    padding: 0.125rem 0.5rem;
    border-radius: 3px;
    margin: 0 0 4px 0;
    opacity: 0;
    visibility: hidden;
	}
	.shirt-details a.tag.is-none:after {
		content: 'Add';
	}
	.shirt-details a.tag:hover:after {
		opacity: 1;
		visibility: visible;
	}

	.build-footer {
		width: 50%;
		padding: 12px;
	}
	.build-footer .price {
		margin-right: 1rem;
	}
	.is-edit-mode .build-footer .btn span {
		display: inline;
	}
	.details-btn-wrap .btn {
		/* text-transform: uppercase; */
		/* letter-spacing: 2px; */
	}
	.monogram {
		top: 34%;
		left: 20.5%;
		width: 10rem;
		height: 10rem;
		font-size: 36px;
	}
	.render-unavailable {
		top: 50%;
		left: 27.5%;
	}
}

@media screen and (min-width: 80em) {
	@supports (object-fit: cover) {
		.render canvas {
			max-height: 75vh;
		}
	}
}

.config .fabrics, .accent-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
}

[data-step="fabric"] .options div .filter-count {
	border: none;
	position: relative;
	top: 2px;
	margin-right: 0.5rem;
	font-weight: 100;

	/*display: inline-block;
	padding: 4px 4px;
	background: #e6e2e2;
	border-radius: 3px;*/

}

.filter-icon {
	margin-right: 12px;
	/*background: transparent url(../../../images/icons/filter2.svg) no-repeat left center;
	background-size: 32px;*/
	display: inline-block;
  width: 30px;
  height: 1.5rem;
  opacity: .5;
  position: relative;
  top: -2px;
}

.filter-icon circle {
  will-change: transform;
  transition: transform .3s cubic-bezier(0.35, 0.62, 0, 1), opacity .1s ease;
}
.filter-icon rect {
	will-change: transform;
  transform-origin: 50% 50%;
  transition: transform .3s cubic-bezier(0.35, 0.62, 0, 1);
}
.filter-icon:hover .fltr-crcl1 {
  transform: translateX(6px);
}
.filter-icon:hover .fltr-crcl2 {
  transform: translateX(-6px)
}
.is-active .filter-icon circle {
  opacity: 0;
}
.is-active .filter-icon .fltr-line1 {
  transform: rotate(45deg) translateY(5.5px);
}
.is-active .filter-icon .fltr-line2 {
  transform: rotate(-45deg) translateY(-4.5px);
}

.filter h5 {
	font-size: 12px;
	margin-bottom: 12px;
}

.style-steps--mob {
	position: relative;
	padding: 0;
	margin: -0.75rem -0.75rem 0.75rem -0.75rem;
	box-shadow: 0 8px 16px rgba(0,0,0,.1);
}
.style-steps--mob > div {
	overflow-y: hidden;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	padding: 0.75rem 4rem 0.75rem 0.75rem;
	margin: 0;
}
.style-steps--mob:after {
	content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 9;
  display: block;
  width: 3rem;
  background: -moz-linear-gradient(left, rgba(240,240,240,0) 0, #F0F0F0 100%);
  background: -webkit-linear-gradient(left, rgba(240,240,240,0) 0, #F0F0F0 100%);
  background: linear-gradient(to right, rgba(240,240,240,0) 0, #F0F0F0 100%);
  pointer-events: none;
}
.style-steps--mob::-webkit-scrollbar {
  display: none;
  height: 0px;
  background: transparent;
}

.style-steps {
	margin: 0;
	margin-right: 1.5rem;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	justify-content: flex-start;
	/*-webkit-transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);
	transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);*/
	-webkit-transition: .25s cubic-bezier(0.49, 0.02, 0, 1);
	transition: .25s cubic-bezier(0.49, 0.02, 0, 1);
}
.style-steps.is-visible {
	opacity: 1;
	transform: translateX(0px);
}
.style-steps span {
	color: #757575;
	display: block;
	padding: 0.25rem 1rem;
	font-size: 0.9rem;
	position: relative;
	border-radius: 4px;
}
.style-steps .is-current span {
	color: #fff;
	display: inline-block;
	background: #000;
}
.style-steps li {
	display: inline-block;
	flex: 0 0 auto;
	order: 2;
}
.style-steps li:last-child {
	order: 1;
}
.style-steps li.is-current span:before {
	opacity: 1;
	transform: translateX(0%);
}

/* MOBILE ONLY*/
@media screen and (max-width: 899px) {
	.style-steps {
		display: none;
	}
	.style-steps--mob .style-steps {
		display: flex;
	}
	.style-steps--mob li.spacer {
		display: inline-block;
		background: none;
		flex: 0 0 3rem;
		width: 3rem;
	}
	.mop-note--mob, .style-note--mob {
		display: block;
	}
	.filter-wrap {
		position: absolute;
		z-index: -1;
	}
	.filter-wrap .filter-panel {
		visibility: hidden;
		opacity: 0;
	}
	.filter {
	    top: 0;
	    padding-top: 45px;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    margin-top: 0;
	    margin-left: auto;
	    margin-right: auto;
	    width: 100%;
	    border: none;
	    z-index: 999999;
	    background: rgba(226,226,228,0.97);
	    visibility: hidden;
	    opacity: 0;
	    -webkit-transition: .3s ease;
	    transition: .3s ease;
	    -webkit-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	}

	.is-visible .filter {
		position: fixed;
		visibility: visible;
		opacity: 1;
	}
	.filter-panel .filter-close {
		position: fixed;
	  /*top: 60px;*/
	  bottom: 16px;
    color: #000;
    width: 84%;
    margin: 0 auto;
    letter-spacing: 1.5px;
	}

	.filter-panel {
	  width: 100%;
	  height: 100%;
	  border: none;
	  z-index: 9999;
	  background: rgba(226, 226, 228, 0.95);
	  visibility: hidden;
	  opacity: 0;
	  -webkit-transition: 0.2s ease;
	  transition: 0.2s ease;
	}

	.filter-wrap.is-visible {
		position: relative;
		z-index: unset;
	}

	.filter-wrap.is-visible .filter-panel {
	  visibility: visible;
	  opacity: 1;
	}

	.filter-panel .filter-inner {
	  position: absolute;
	  background: #fff;
	  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
	  border-radius: 4px 4px 0 0;
	  left: 4%;
	  right: 4%;
	  top: 30px;
	  bottom: 0;
	  width: 92%;
	  padding: 32px 0 50px 0;
	  -webkit-transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	  -webkit-transform: translate3d(0, 100px, 0);
	  transform: translate3d(0, 100px, 0);
	  will-change: transform;
	  overflow-x: hidden;
	  overflow-y: scroll;
	  -webkit-overflow-scrolling: touch;
	}

	.filter-wrap.is-visible .filter-panel .filter-inner {
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}

	.filter-panel .filter-inner::-webkit-scrollbar {
	  display: none;
	}

	.filter-panel h5 {
	  font-size: 15px;
	  font-weight: 500;
	  letter-spacing: 1.5px;
	}
	.filter-panel .filter-group {
	  margin-bottom: 20px;
	  margin-left: 30px;
	  text-align: left;
	}
	.filter-panel .filter-group:last-child {
		margin-bottom: 50px;
	}

	.filter-panel .filter-group .radio input[type="radio"],
	.filter-panel .filter-group .radio-inline input[type="radio"],
	.filter-panel .filter-group .checkbox input[type="checkbox"],
	.filter-panel .filter-group .checkbox-inline input[type="checkbox"] {
	  margin-left: -25px;
	}
	.filter-panel .filter-group .radio,
	.filter-panel .filter-group .checkbox {
	  margin-bottom: 5px;
	  width: 100%;
	}
	.filter-panel .filter-group label {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 4px 0 4px 2.5rem;
		margin-left: -2.5rem;
	  font-size: 15px;
	  font-weight: 300;
	  display: block;
	  color: #757575;
	  -webkit-touch-callout: none;
	  -webkit-user-select: none;
	  user-select: none;
	}
	.filter-panel .filter-group input:checked ~ span {
	  color: #000;
	}
	.filter-panel .filter-group .control-indicator {
		display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    order: 2;
	  border-radius: 50%;
	  border: 1px solid #bbb;
	  position: absolute;
	  left: auto;
	  right: 0;
	}
	.filter-panel .filter-group .control input:checked ~ .control-indicator {
	  color: #fff;
	  background-color: transparent;
	}
	.filter-panel .filter-group .control input:active ~ .control-indicator {
	  color: #000;
	  background-color: transparent;
	}
	.filter-panel .filter-group .checkbox input:checked ~ .control-indicator {
	  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZlcnNpb249IjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOmZpZ21hPSJodHRwOi8vd3d3LmZpZ21hLmNvbS9maWdtYS9ucyI+PHRpdGxlPlZlY3RvciAyPC90aXRsZT48ZGVzYz5DcmVhdGVkIHVzaW5nIEZpZ21hICg5MDAwKTwvZGVzYz48dXNlIHhsaW5rOmhyZWY9IiNhIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxLjUgMS41KSIgc3R5bGU9Im1peC1ibGVuZC1tb2RlOm5vcm1hbCIgZmlnbWE6dHlwZT0idmVjdG9yIi8+PGRlZnM+PHBhdGggaWQ9ImEiIGQ9Ik05LjcwNy43MDdMMTAuNDE0IDAgOS0xLjQxNGwtLjcwNy43MDdMOS43MDcuNzA3ek0yLjUgNi41bC0uNzA3LjcwNy43MDcuNzA3LjcwNy0uNzA3TDIuNSA2LjV6TS43MDcgMy4yOTNMMCAyLjU4Ni0xLjQxNCA0bC43MDcuNzA3TC43MDcgMy4yOTN6bTcuNTg2LTRsLTYuNSA2LjUgMS40MTQgMS40MTQgNi41LTYuNUw4LjI5My0uNzA3em0tNS4wODYgNi41bC0yLjUtMi41LTEuNDE0IDEuNDE0IDIuNSAyLjUgMS40MTQtMS40MTR6Ii8+PC9kZWZzPjwvc3ZnPg==);
	  background-repeat: no-repeat;
	  background-position: center center;
	  background-size: 45% 40%;
	  background-color: #ddd;
	}
	.filter-panel .filter-group .clear-filter {
	  float: right;
	  margin: 0px 32px 0 10px;
	  color: #999;
	  background: #eee;
	  padding: 4px 5px 3px 6px;
	  text-align: center;
	  display: inline-block;
	  border-radius: 1px;
	  text-transform: none;
	  letter-spacing: 0;
	  font-size: 13px;
	  font-weight: 300;
	  cursor: pointer;
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transition: 0.15s ease;
	  transition: 0.15s ease;
	}
	.filter-panel .filter-group .clear-filter:hover {
	  background: #fff;
	}
	.filter-panel .filter-group .clear-filter.show {
	  opacity: 1;
	  visibility: visible;
	}
	.filter .filter-group.color .color-wrap {
	  display: flex;
	  flex-wrap: wrap;
	  width: 90%;
	}
	.filter-panel .filter-group.color label {
	  height: 44px;
	  width: 44px;
	  border-radius: 50%;
	  position: relative;
	  margin: 0 16px 16px 0;
	  padding: 0;
	}
	.filter-panel .filter-group.color label[data-filter="white"] {
	  border: 1px solid #ccc;
	}
	.filter-panel .filter-group.color label span {
	  display: block;
	  text-indent: 100%;
	  white-space: nowrap;
	  overflow: hidden;
	  position: absolute;
	  border-radius: 50%;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	  background-size: 100% 100%!important;
	}
	.filter-panel .filter-group.color input {
	  appearance: none;
	  -webkit-appearance: none;
	}
	.filter-panel .filter-group.color input:checked + span {
	  border-radius: 50%;
	  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px #000;
	}
	.filter-panel .filter-group.color .tooltip {
	  display: none!important;
	}

	@media (max-width: 800px) {
	  .filter-panel {
	    bottom: 72px;
	  }
	}

}

/* DESKTOP ONLY*/
@media screen and (min-width: 900px) {
	.config .fabrics, .accent-grid {
		min-height: 0;
	}
	.filter-wrap {
		position: fixed;
	  top: 111px;
	  bottom: 0;
	  left: 50%;
	  margin-left: calc(var(--filter-panel-width) * -1);
	  width: var(--filter-panel-width);
	  background: #e2e2e4;
	  border: 8px solid #fff;
	  padding: 35px 10px 35px 5px;
	  z-index: 8;
	  overflow: hidden;
	  -webkit-transform: translate3d(var(--filter-panel-width), 0, 0);
	  transform: translate3d(var(--filter-panel-width), 0, 0);
	  -webkit-transition: .25s cubic-bezier(0.6, 0, 0, 1);
	  transition: .25s cubic-bezier(0.6, 0, 0, 1);
	  display: block;
	}
	.filter-wrap.is-visible {
		-webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	  visibility: visible;
	  opacity: 1;
	}
	.filter .filter-inner {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 108%;
		opacity: 0.01;
		padding: 27px 0 20px 0;
		border-radius: 4px 0 0 4px;
		transition: .5s ease .1s;
		overflow-x: hidden;
		overflow-y: scroll;	
	}
	.filter-wrap.is-visible .filter .filter-inner {
		opacity: 1;
	}
	.filter-panel .filter-close {
	  display: none;
	}
	.filter .filter-group {
		max-width: 180px;	
	}
	.filter-wrap:before, .filter-wrap:after {
	    content: '';
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    height: 30px;
	    background: -moz-linear-gradient(top, #e2e2e4 0, rgba(226,226,228,0) 100%);
	    background: -webkit-linear-gradient(top, #e2e2e4 0, rgba(226,226,228,0) 100%);
	    background: linear-gradient(to bottom, #e2e2e4 0, rgba(226,226,228,0) 100%);
	    z-index: 9;
	    -webkit-touch-callout: none;
	    -webkit-user-select: none;
	    -khtml-user-select: none;
	    -moz-user-select: none;
	    -ms-user-select: none;
	    user-select: none;
	    pointer-events: none;
	}
	.filter-wrap:after {
		top: auto;
	  bottom: 0;
	  background: -moz-linear-gradient(top, rgba(226,226,228,0) 0, #e2e2e4 100%);
	  background: -webkit-linear-gradient(top, rgba(226,226,228,0) 0, #e2e2e4 100%);
	  background: linear-gradient(to bottom, rgba(226,226,228,0) 0, #e2e2e4 100%);
	}
	.filter .filter-group .control-indicator {
		background-size: 30% 30%;
		left: 9px;
	}

	.style-steps--mob {
		display: none;
	}
	.style-steps {
		position: fixed;
		top: 108px;
		bottom: 0;
		right: 50%;
		text-align: right;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		flex-wrap: wrap;
		/*justify-content: space-between;*/
		list-style: none;
		opacity: 0.3;
		transform: translateX(101%);
		margin-right: 0rem;
		white-space: normal;
		/*-webkit-transition: transform .25s cubic-bezier(.77, 0, .125, 1);
		transition: transform .25s cubic-bezier(.77, 0, .125, 1);*/
		-webkit-transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);
		transition: transform .25s cubic-bezier(0.35, 0.35, 0, 1.0);
		/*display: none;*/
	}
	.style-steps.is-visible {
		opacity: 1;
		transform: translateX(0px);
	}
	.style-steps span {
		color: #757575;
		display: block;
		padding: 0.5rem var(--builder-gutter);
		font-size: 0.9rem;
		position: relative;
		clip-path: 0 0, 100% 0, 100% 100%, 0 100%;
	}
	.style-steps span:before {
		content: '';
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 4px;
		background: #000;
		opacity: 0;
		border-radius: 2px 0 0 2px;
		/*transform: translateX(100%);*/
		-webkit-transition: transform .3s cubic-bezier(0,.7,.1,1);
		transition: transform .3s cubic-bezier(0,.7,.1,1);
	}
	.style-steps .is-current span {
		color: #000;
		background: none;
	}
	.style-steps li {
		cursor: pointer;
		display: block;
	}
	.style-steps li:hover span:before {
		opacity: 0.2;
		transform: translateX(0%);
	}
	.style-steps li.is-current span:before {
		opacity: 1;
		transform: translateX(0%);
	}
	.style-steps span:hover {
		color: #000;
	}
	.style-steps li:last-child {
		order: 9;
	}
}

@media screen and (min-width: 900px) and (min-height: 660px) {
	.style-steps span {
		padding: 0.75rem var(--builder-gutter);
	}
}

@media screen and (min-width: 900px) and (max-height: 550px) {
	.style-steps li:last-child { display: none; }
}
@media screen and (min-width: 900px) and (max-height: 500px) {
	.style-steps { display: none; }
}


.options header {
	display: none;
}
.options header button.back {
	padding: 10px 16px;
	border-radius: var(--btn-radius);
	min-width: 30px;
	max-height: 36px;
	color: #6d6d6d;
	background: #E4E4E4;
	position: absolute;
	left:0;
	top: 0;
	opacity: 0;
	width: auto;
	-webkit-transition: .5s cubic-bezier(0.35, 0.35, 0, 1.0) .25s;
	transition: .5s cubic-bezier(0.35, 0.35, 0, 1.0) .25s;
}

.options header .style-filter__toggle {
	padding: 0.65rem 0.9rem 0.5rem 1rem;
	color: #6d6d6d;
	background: #E4E4E4;
	background: transparent url(../../../images/icons/filter2.svg) no-repeat center center;
	background-size: 32px;
	position: absolute;
	border: none;
	right: 0;
	top: -0.5rem;
	width: 40px;
	height: 32px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 400%;
	display: block;
	opacity: 0.5;
}
.options header .style-filter__toggle:hover {
	opacity: 1;
}

.style-filter {
	display: flex;
	margin: 1rem 0.25rem;
	justify-content: space-between;
	background: #ddd;
	border-radius: 3px;
	padding: 1px;
}
.options .style-filter span { 
  padding: 0.5rem;
  color: #6d6d6d;
  border: none;
  flex: 1 0 20%;
  width: auto;
  font-size: 0.8rem;
  border-radius: 2px;
  cursor: pointer;
}
.options .style-filter span:hover { color: #333; background: rgba(255,255,255,.2); }
.options .style-filter span.is-current { color: #000; background: #fff; }

.options header .style-info {
	padding: 0.65rem 0.9rem 0.5rem 1rem;
	color: #6d6d6d;
	background: #E4E4E4;
	position: absolute;
	text-transform: lowercase;
	right:0;
	top: -0.5rem;
	font-family: monospace;
}
.is-active header button.back {
	opacity: 1;
	transform: translateX(0);
}
.options header button.back:hover {
	background: #ddd;
}
.options header h5 {
	align-self: center;
}
.options header span {
	font-size: 0.6rem;
	letter-spacing: 2px;
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 3px;
}

.option-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(var(--style-cols, 3), 1fr);
	flex-wrap: wrap;
	padding: 1rem 0 0 0;
	overflow: visible;
}
.options .option-grid label {
	min-width: 185px;
	min-width: 44vw;
	/* flex: 0 0 auto; */
	
}
.options .option-grid label span {
	font-size: 0.8rem;
}

.single-fabric__info, .single-fabric__fave {
	display: none;
}

.single-fabric__fave {
	display: inline-block;
	position: absolute;
	right: 8px;
	bottom: 8px;
  background: rgba(240, 240, 240, .85);
  font-family: monospace;
  font-size: 12px;
  height: 29px;
  width: 29px;
  min-width: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem;
  border-radius: 3px;
  border: 1px solid #555;
  transition: .2s ease;
  width: auto;
  z-index: 2;
}
.single-fabric__fave {
	left: 8px;
	right: unset;
	background: rgba(240, 240, 240, 0);
	border: 1px solid rgba(0,0,0,0);
	visibility: hidden;
	opacity: 0;
}
.is-saved .single-fabric__fave {
	visibility: visible;
	opacity: 1;
}
.single-fabric__fave svg {
	width: 20px;
	height: auto;
}
.single-fabric__fave path {
	fill: rgba(255,255,255,.2);
	stroke: #999;
	transition: .1s ease;
}
.single-fabric__fave:active svg {
	transform: scale(0.9);
	transform-origin: 50% 50%;
}
.single-fabric__fave:active path, .is-saved .single-fabric__fave path, .is-saved .single-fabric__fave:hover path {
	stroke: #eee;
	fill: #fff;
}
.single-fabric__fave:hover {
	background: rgba(240, 240, 240, 0);
	border-color: rgba(0,0,0,0);
}
/*.single-fabric__fave:hover path {
	stroke: #ccc;
	fill: rgba(255,255,255,.6);
	transition: 0s ease;
}*/

.info-btn {
	position: absolute;
  background: #F0F0F0;
  font-family: monospace;
  font-size: 11px;
  padding: 0.75rem 0.5rem;
  border-radius: 0 0 3px 3px;
  top: 100%;
  bottom: auto;
  border: 1px solid #ccc;
  left: -1px;
  right: -1px;
  margin-left: 0;
  width: auto;
  margin-top: -1px;
  z-index: 2;
  opacity: 0;
  display: none;
}
.options label:hover .info-btn {
	/*opacity: 1;*/
}
.options label:hover input:checked ~ span .info-btn {
	border-color: #000;
}

.restriction-msg {
	position: absolute;
	z-index: 1030;
	display: block;
	visibility: visible;
	font-size: 12px;
	line-height: 1.4;
	opacity: 0;
	top: 50%;
  left: 10%;
  right: 10%;
  background: rgba(255,255,255,0.9);
  padding: 15px;
  border-radius: 3px;
  transform: translateY(-58%);
  color: #000;
  font-style: normal;
  border: 1px solid rgba(50,50,50,0.2);
  margin-top: -3px;
}
.options label:hover .restriction-msg {
	opacity: 1;	
}

.change-msg {
    background: rgba(255,255,255,0.95);
    border: 1px solid #ddd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 1rem;
    display: flex;
    width: auto;
    position: fixed;
    right: 0.5rem;
    bottom: 76px;
    left: 0;
    margin-left: 0.5rem;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 50%, 0);
    -webkit-transition: .15s ease;
    transition: .15s ease;
}
.change-msg.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}
.change-msg p {
	font-size: 13px;
	flex: 1 auto;
	flex: 1 auto 0;
	color: #777;
	margin-bottom: 0;
}
.change-msg p + p {
	margin-top: 0.5rem;
}
.change-msg p span {
	color: #000;
}

.options header > h5 {
	font-family: var(--font-sans);
	font-size: 21px;
	font-weight: 500;
	letter-spacing: -0.2px;
	text-transform: none;
	margin: 0;
}

.style-single > header { 
	margin-bottom: 24px;
}

/*.style-single {
	position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 70px 0;
  text-align: center;
  -webkit-transition: .4s cubic-bezier(.77, 0, .125, 1);
  transition: .4s cubic-bezier(.77, 0, .125, 1);
  -webkit-transform: translate3d(40%, 0, 0);
  transform: translate3d(40%, 0, 0);
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;	
}
.style-single .inner {
    padding: 0 25px 60px;
    position: relative;
    height: 100%;
    overflow: auto;
}
.style-single .inner:after {
		content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 1px;
    background: none;
}*/

.fabric-search {
	/*width: 44%;*/
	display: flex;
	flex: 1 0 auto;
	margin-left: auto;
	align-items: flex-start;
	justify-content: flex-end;
	width: 75%;
}

.step__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: var(--margin-header-lg);
}

.fabrics__header {
	background: #f1f1f1;
	padding: 0.75rem;
	margin: -0.75rem -0.75rem 1rem -0.75rem;
	align-items: center;
	box-shadow: 0 4px 12px rgba(0,0,0,.05);
	z-index: 9;
}
.fabrics__header h5 {
	margin-bottom: 0;
}

.fabric-search button {
	background: none;
	/*padding: 8px 16px;
	margin-right: 4px;*/
	padding: 8px 8px;
	margin-right: 0;
	color: #999;
	text-transform: none;
	letter-spacing: 0;
	font-size: 14px;
	font-weight: 400;
	display: flex;
	align-items: center;
	width: auto;
}
.fabric-search button:focus {
	outline: none;
}
.fabric-search button:hover i, .fabric-search button:focus i {
	opacity: 1;
}
.fabric-search__form {
	width: 50%;
	position: relative;
}
.fabric-search .clear-search {
	border: none;
	position: absolute;
	right: 0.66rem;
	top: 0.66rem;
	width: auto;
	opacity: 0.75;
	cursor: pointer;
	visibility: hidden;
}
.fabric-search--accent .clear-search {
	right: 0.25rem;
	top: -.025rem;
}
.fabric-search .clear-search:hover {
	opacity: 1;
}
.fabric-search .is-active .clear-search {
	visibility: visible;
}
.fabric-search .clear-search svg {
	stroke: #757575;
}

.fabric-search input[type="text"] {
	letter-spacing: 0px!important;
	font-size: 14px !important;
	border: none;
	background: rgba(0,0,0,.05);
	box-shadow: none;
	width: 100%;
	font-weight: 300;
	padding: 12px 16px;
	max-height: 42px;
	border-radius: 4px;
	transition: .1s ease;
}
.fabric-search input[type="text"]:focus {
	border-color: #777;
}

.fabric-search ::placeholder { color: #bbb; }
.fabric-search ::-webkit-input-placeholder { color: #bbb; }
.fabric-search ::-ms-input-placeholder { color: #bbb; }

.fabric-search__none, .fabric-accents-search__none, .fabric-filter__none {
	text-align: center;
	color: #757575;
	margin-top: -4rem;
	margin-bottom: 8rem;
	display: none;
}
.fabric-search__none h3, .fabric-accents-search__none h3, .fabric-filter__none h3 {
	font-size: 1.2em;
}

.options div input[type="radio"], .options div input[type="checkbox"] { display: none; }
.options div label { 
	border: none; 
	padding: 0;
	/* padding: .25rem;  */
	margin: 0;
	position: relative; 
}
.options div span { 
	border: 1px solid #ccc; 
	padding: 0.75rem 0.5rem;
	display: block; 
	width: 100%; 
	text-align: center; 
	border-radius: 8px;
	font-size: 0.9rem;
	position: relative;
}
.options .monogram-options div span { 
	border-radius: 4px;
}


.options div .input__label {
	flex: 1;
	margin-right: auto;
}

.options div .icon--info {
	top: 0;
	height: 18px;
	width: 18px;
	background-size: 18px;
	z-index: 10;
}

.options .config__opt-detail {
	position: absolute;
	top: 100%;
	left: -1px;
	width: calc(100% + 2px);
	border: 1px solid rgba(0,0,0,.2);
	margin-top: 12px;
	background: white;
	font-size: 13px;
	padding: 16px;
	border-radius: 4px;
	color: var(--color-gray);
	z-index: 10;
	box-shadow: 0 6px 24px rgba(0,0,0,.1);
	visibility: hidden;
	opacity: 0;
}
.options [data-count="1"] .config__opt-detail {
	right: -1px;
	left: auto;
	max-width: 50%;
}
.options .config__opt-detail * {
	font-size: 12px;
	margin: 0;
}
.options .config__opt-detail *+* {
	margin-top: 12px;
}
.options .config__opt-detail table {
	width: 100%;
}
.options .config__opt-detail td {
	padding: 8px 0;
	width: 32.5%;
	line-height: 1.25;
	color: var(--color-gray-light);
}
.options .config__opt-detail td:first-child {
	width: 45%;
}
.options .config__opt-detail tr:not(:last-child) td {
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.options .icon--info:hover ~ .config__opt-detail {
	visibility: visible;
	opacity: 1;
}

.options div i.add-on {
    display: inline;
    border: 1px solid transparent;
    background: rgba(0,0,0,.1);
    padding: 3px 5px;
	margin: 0 6px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}
.options div i.check-indicator {	
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	flex: 0 0 20px;
	font-size: 100%;
	color: #eee;
	text-align: center;
	border-radius: 3px;
	background-color: none;
	background-size: 50% 50%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-right: 12px;
	border: 1px solid #aaa;
}
.options div input:checked ~ span .check-indicator {
	color: #fff;
	border-color: #111;
	background-color: #111;
    background-image: var(--icon-corner-check);
}

/* .options {
	--switch-height-base: 24px;
	--switch-width-base: 44px;
	--switch-dot-size: 18px;
	--switch-dot-offset: 2px;
	--switch-off-color: rgba(0, 0, 0, 0.05);
	--switch-on-color: rgba(255, 255, 255, 0.65);
	--switch-dot-on-color: #111;
}
.options div i.check-indicator {
	height: var(--switch-height-base);
	width: var(--switch-width-base);
	flex: 0 0 var(--switch-width-base);
	border-radius: var(--switch-height-base);
	border: 1px solid rgba(0,0,0,.15);
	background: var(--switch-off-color);
	display: grid;
}
.options div input:checked ~ span .check-indicator {
	background: var(--switch-on-color);
	border-color: rgba(0,0,0,0);
}
.options div i.check-indicator::after {
	content: '';
	border-color: var(--switch-dot-on-color);
	background: white var(--icon-corner-check) no-repeat 50% 50% / 50%;
	height: var(--switch-dot-size);
	width: var(--switch-dot-size);
	border-radius: var(--switch-dot-size);
	grid-column: 1 / 1;
	grid-row: 1 / 1;
	margin: var(--switch-dot-offset);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
	transition: .125s cubic-bezier(0.19, 0.28, 0.02, 0.99);
}
.options div input:checked ~ span .check-indicator::after {
	background-color: var(--switch-dot-on-color);
	transform: translateX(calc(calc( var(--switch-width-base) - var(--switch-dot-size)) - 6px));
} */



.options div input[disabled] ~ span {
	color: #aaa;
}
.options div input[disabled] ~ span .check-indicator {
	opacity: 0.65;
	pointer-events: none;
}

[data-step="fabric"] .options div span, [data-style="accents"] .accent-grid span {
	padding: 0;
}
[data-step="fabric"] .options figure, [data-style="accents"] .accent-grid figure {
	margin: 0;
}
[data-step="fabric"] .options span img, [data-style="accents"] .accent-grid span img { 
	border: 1px solid #fff;
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

[data-step="fabric"] .options .single-fabric:hover span, [data-style="accents"] .accent-grid .single-fabric:hover span,
[data-step="fabric"] .options .single-fabric:hover span img, [data-style="accents"] .accent-grid .single-fabric:hover span img {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

[data-style="accents"] .fabric-search__form {
	width: 100%;
}
[data-style="accents"] .fabric-search button {
	padding: 8px 0;
	margin-left: -6px;
}

[data-style="accents"] .spinner {
	top: 20em;
}

.segmented-control {
	padding: 0 0.5rem;
	margin-bottom: 1.5rem;
}
.options div.segmented-control label {
	/* margin-left: -1px; */
}
.options div.segmented-control label:first-child {
	margin-left: 0;
}
.options div.segmented-control label span {
	border-radius: 0;
}
.options div.segmented-control label input:checked ~ span {
	z-index: 1;
}
.options div.segmented-control label span:before {
	display: none;
}
.options div.segmented-control label:first-child span {
	border-radius: 3px 0 0 3px;
}
.options div.segmented-control label:last-child span {
	border-radius: 0 3px 3px 0;
}

.config-el {
	margin: 0 0 32px;
}

.config-el .flex {
	display: grid;
	gap: 12px;
	margin: 0;
}
.config-el .flex .checkbox-toggle {
	padding: 0;
}
.config-el .flex .checkbox-toggle span {
	border: 1px solid #ccc;
	border-radius: var(--btn-radius);
	color: var(--color-gray);
	min-width: 36px;
	line-height: 1;
	font-size: 14px;
	font-weight: 300;
	text-align: left;
	padding: 14px;
}
[data-step] .options .config-el h5 {
	text-align: left;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: var(--type--caps-tracking);
	color: var(--color-gray);
	padding: 2px 0 8px;
	margin: 0 0 8px;
	transition: .1s ease;
	position: relative;
	display: block;
}

.sleeve-length label {
	font-size: 0.95rem;
}

.options .checkbox-toggle, .options .checkbox-toggle > span {
	display: flex;
	align-items: center;
}

.options .checkbox-toggle span {
	border: 1px solid #ddd; 
	padding: 0.75rem 0.5rem;
	background: none;
}
.options .checkbox-toggle input + span.b--transparent {
	border-color: transparent;
}
.options .checkbox-toggle input:checked + span.b--transparent {
	border-color: black;
}

.options div span span { 
	border: none; 
	/*padding: 0 0 0.5rem;*/
	padding: 0;
	display: block;
	width: 100%;
	/*cursor: help;*/
}
.options div span img + span {
	padding: 0 0 0.25rem;
}

[data-step="style"] .option-grid {
	--style-cols: 2;
}

[data-step="style"] .options div span img { 
	width: 75%;
	margin: 0 auto 1rem;
}
[data-step="style"] .options div.accent-grid span img { 
	width: 100%;
	margin-bottom: 0;
}
.options div [type="radio"] ~ span {
	color: #666;
}
.options div [type="radio"] ~ span:before {
	content: '';
	position: absolute;
	top: -6px;
	right: -6px;
	height: 20px;
	width: 20px;
	border-radius: 20px;
	background: var(--corner-check);
	opacity: 0;
	z-index: 9;
	-webkit-transform: scale(.2);
	-ms-transform: scale(.2);
	transform: scale(.2);
	-webkit-transition: .3s cubic-bezier(.175, .885, .32, 1.275);
	transition: .3s cubic-bezier(.175, .885, .32, 1.275);
}
.options div span:after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	box-shadow: 0 6px 24px rgba(0,0,0,.1);
	opacity: 0;
	transition: .02s;
}

.options div [type="checkbox"]:checked ~ span, .options div label [type="checkbox"]:checked ~ span { 
	border: 1px solid #000;
	background: #E4E4E4;
	color: #000;
}
.options div [type="radio"]:checked ~ span {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}
.options div [type="checkbox"]:checked ~ span i.add-on { 
	background: #F0F0F0;
}
/*.options div label:hover [type="radio"]:checked ~ span:after {
	opacity: 0.2;
}*/
.options div label:hover [type="radio"][disabled] ~ span:after {
	opacity: 0;
	visibility: hidden;
}
.options div [type="radio"]:checked ~ span:after {
	opacity: 1;
}
.options div [type="radio"]:checked ~ span:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s cubic-bezier(.175, .885, .32, 1.275);
  transition: .3s cubic-bezier(.175, .885, .32, 1.275);
}
.options div.fabrics label:hover [type="radio"]:checked ~ span:before {
  background-color: #555;
}

[type="checkbox"]:checked ~ span .restriction-msg { 
  top: 100%;
  transform: translateY(0);
  margin-top: 1rem;
  z-index: 9999;
  background: rgba(255,255,255,1);
}
[type="checkbox"]:checked ~ span .restriction-msg:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #D6D6D6;
	top: 0;
	left: 50%;
	margin-left: -8px;
	top: -8px;
}

.style-prefs__opt {
	flex: 1;
	width: 100%;
	margin: 0;
}

.style-prefs .style-prefs__opt [type="radio"] {
	display: none;
}
.style-prefs .style-prefs__opt>.style-prefs__opt__primary {
	display: flex;
	align-items: center;
	padding: 13px 16px;
	border-radius: 4px;
	border: 1px solid #CCC;
	color: var(--color-gray-light);
	font-size: 15px;
	font-style: normal;
	font-weight: 300;
	position: relative;
	z-index: 1;
	text-align: left;
	width: auto;
}
.style-prefs .style-prefs__opt input:checked+.style-prefs__opt__primary {
	border-color: black;
	background: white;
	color: black;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.075);
}
.style-prefs .style-prefs__opt>.style-prefs__opt__primary:before {
	content: '';
	display: inline-block;
	border-radius: 100%;
	height: 20px;
	width: 20px;
	flex: 0 0 20px;
	background: #f7f7f7;
	background: white;
	border: 1px solid #ccc;
	margin-right: 12px;
}
.style-prefs .style-prefs__opt input[type="checkbox"]+.style-prefs__opt__primary:before {
	border-radius: 3px;
}
.style-prefs .style-prefs__opt input:checked+.style-prefs__opt__primary:before {
	background: var(--corner-check);
	background-color: var(--color-size-active, black);
	border-color: var(--color-size-active-border, black);
}
.style-prefs .style-prefs__opt__name {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.style-prefs .style-prefs__opt__name__meta {
	padding-left: 6px;
	margin-left: auto;
}
.style-prefs .style-prefs__opt__detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: var(--color-gray);
	margin-top: -4px;
	border-radius: 0px 0px 4px 4px;
	padding: 18px 16px 14px 16px;
	background: linear-gradient(270deg, #EBEBEB 0%, rgba(235, 235, 235, 0.5) 100%);
	display: none;
}






@media(max-width: 37.5em) {
	.options .fabrics label.w-33 {
	  /* min-width: 50%;
	  width: 50%; */
	}
	[data-step="fabric"] .options div figure, [data-style="accents"] .accent-grid figure {
		max-height: 120px;
		overflow: hidden;
	}
}

@media(min-width: 56.25em) {
	
	.option-grid {
		flex-wrap: wrap;
		padding-top: 1rem;
		padding: 0;
		overflow: visible;
		-webkit-overflow-scrolling: auto;
	}
	[data-step="style"] .option-grid {
		--style-cols: 3;
	}
	.options div label {
		/* padding: .25rem; */
	}
	.options .option-grid label {
		min-width: 33%;
		flex: unset;
		/* padding: 0.25rem; */
	}
	.options .option-grid label span {
		font-size: 0.9rem;
	}
	.segmented-control {
	    padding: 0;
	}
	.fabrics__header {
    	background: none;
    	align-items: flex-start;
    	padding: 0;
    	margin: 0 0 var(--margin-header-lg) 0;
    	box-shadow: none;
    	position: relative;
	}
	.fabric-search {
		position: relative;
		top: -0.5rem;
	}
	.options header {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 32px;
	}
	/* nested hovers cause a problem in iOS, so we have in a hover supported query */
	@media (hover) {
		[data-step="fabric"] .options label:hover span, [data-style="accents"] .accent-grid label:hover span { 
			border-color: #000;
		}
		[data-step="fabric"] .options div label:hover:after, .options[data-style="accents"] .accent-grid label:hover:after {
			content: attr(data-name);
		  background: var(--color-primary);
		  color: #fff;
		  padding: 8px 12px;
		  position: absolute;
		  bottom: 100%;
		  left: 0px;
		  right: 0px;
		  z-index: 9;
		  font-size: 12px;
		  border-radius: 6px 6px 0 0;
		  margin-bottom: -1px;
		  pointer-events: none;
		  line-height: 1.3;
		}
		.options div > label:hover span {
			background: #f5f5f5;
			border-color: #ccc;
			cursor: pointer;
			-webkit-touch-callout: none;
			  -webkit-user-select: none;
			     -moz-user-select: none;
			      -ms-user-select: none;
			          user-select: none;
		}
		.options div > label:hover input[disabled] ~ span {
		    background: none;
		    border-color: #ccc;
		    cursor: not-allowed;
		}
		.options div > label:hover span span { 
			background: none;
		}
		.options label:hover [type="radio"]:checked ~ span {
			border: 1px solid #000;
			background: #fff;
			position: relative;
			color: #000;
			z-index: 10;
		}
		.single-fabric__info:hover, .single-fabric__fave:hover {
		  background: #F0F0F0;
		  color: #333;
		  transition: .1s ease;
		}
		.single-fabric:hover .single-fabric__info {
			opacity: 1;
			visibility: visible;
			transition: 0s;
		}
		.single-fabric:hover .single-fabric__fave {
			visibility: visible;
			opacity: 1;
		}
		.single-fabric:hover .single-fabric__fave:hover {
			/*background: rgba(240, 240, 240, .95);*/
			background: rgba(240, 240, 240, 0);
			border-color: rgba(0,0,0,0);
		}
	}
	.change-msg {
    padding: 2rem;
    left: 50%;
    margin-left: 0.75rem;
    right: 0.75rem;
    bottom: 82px;
	}
	.change-msg p {
		font-size: 15px;
	}
	.accent-grid {

	}
	.single-fabric__info, .single-fabric__fave {
		display: inline-block;
		position: absolute;
		right: 6px;
		bottom: 6px;
	  background: rgba(240, 240, 240, .85);
	  font-family: monospace;
	  font-size: 12px;
	  height: 29px;
	  width: 29px;
	  min-width: 29px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 0.1rem;
	  border-radius: 100%;
	  border: 1px solid #555;
	  transition: .2s ease;
	  width: auto;
	  z-index: 2;
	}
	.single-fabric__info {
		opacity: 0;
		visibility: hidden;
	}
	.single-fabric__fave {
		left: 6px;
		right: unset;
		background: rgba(240, 240, 240, 0);
		border: 1px solid rgba(0,0,0,0);
		visibility: hidden;
		opacity: 0;
	}
	.is-saved .single-fabric__fave {
		visibility: visible;
		opacity: 1;
	}
	.single-fabric__fave svg {
		width: 14px;
		height: auto;
	}
	.single-fabric__fave path {
		fill: rgba(255,255,255,.2);
		stroke: #999;
		transition: .1s ease;
	}
	.single-fabric__fave:active svg {
		transform: scale(0.9);
		transform-origin: 50% 50%;
	}
	.single-fabric__fave:active path, .is-saved .single-fabric__fave path, .is-saved .single-fabric__fave:hover path {
		stroke: #eee;
		fill: #fff;
	}
	.single-fabric__fave:hover path {
		stroke: #ccc;
		fill: rgba(255,255,255,.6);
		transition: 0s ease;
	}
}

@media(min-width: 70em) {
	.option-grid {
		
	}
	.options div label {
		/* padding: .4rem; */
	}
	.options div label.single-fabric {
		padding: 0;
	}
	.options .option-grid label {
		/* padding: 0.4rem; */
	}
}
/*@media(min-width: 106.25em) {*/
@media(min-width: 75em) {
	.options .option-grid label.w-50 {
	  /* min-width: 33%;
	  width: 33%; */
	}
	.render {
		max-width: 550px;
	}
	.config-el .flex {
		grid-template-columns: repeat(var(--style-cols, 2), 1fr);
	}
	.config-el .flex[data-count="1"] {
		grid-template-columns: 1fr;
	}
}
@media(min-width: 122.5em) {
	.config .fabrics, .accent-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

[data-step="style"] {
	min-height: 70vh;
	min-height: calc(100vh - 330px);
}
[data-step="style"] .options, [data-step="style"] .overview {
	max-height: 0;
	height: 0;
	overflow: hidden;
}
[data-step="style"] .options > div, [data-step="style"] .overview > div {
	position: relative;
	/*display: none;*/
	padding-bottom: 120px;
	-webkit-transition: .125s cubic-bezier(.77, 0, .125, 1);
	transition: .125s cubic-bezier(.77, 0, .125, 1);
	-webkit-transform: translateX(15%);
	transform: translateX(15%);
	opacity: 0;
	visibility: hidden;
}
[data-step="style"] .options > div {
	padding-bottom: 260px;
}
[data-step="style"] .overview > div {
	-webkit-transform: translateX(-30%);
	transform: translateX(-30%);
}
[data-step="style"] .options.is-active > div, [data-step="style"] .overview.is-active > div {
	opacity: 1;
  visibility: visible;
  z-index: 9;
  /*-webkit-transition: .25s cubic-bezier(0.35, 0.35, 0, 1.0);
  transition: .25s cubic-bezier(0.35, 0.35, 0, 1.0);*/
  -webkit-transition: .25s cubic-bezier(0.49, 0.02, 0, 1);
  transition: .25s cubic-bezier(0.49, 0.02, 0, 1);
	-webkit-transform: translateX(0);
	transform: translateX(0);
	/*display: block;*/
}
[data-step="style"] .options.is-active, [data-step="style"] .overview.is-active {
	max-height: none;
	height: auto;
	overflow: visible;
}
[data-step="style"] .overview h5 {
	padding-right: 48px;
}
[data-step="style"] .options h5 {
	text-align: center;
}
.options div input[disabled] + span span, .options div input[disabled] + span img {
	opacity: 0.5;
	pointer-events: none;
}

.monogram {
	opacity: 0;
	visibility: hidden;
	transition: .2s;
}
.monogram.is-visible {
	opacity: 1;
	visibility: visible;
}

.monogram-options.disabled {
	opacity: 0.2;
	pointer-events: none;
}
.monogram-option__header {
	position: relative;
	margin: 3rem auto 1rem;
}
.monogram-option__header .btn {
	position: absolute;
  right: 0.5rem;
  top: -0.25rem;
  opacity: 1;
  font-family: monospace;
  text-transform: lowercase;
  font-size: 0.825rem;
  background: #d8d8d8;
  height: auto;
  height: 1.75rem;
  width: 1.75rem;
  line-height: 1.75rem;
  padding: 0;
  color: #757575;
  border-radius: 2px;
}
.options .monogram-options.disabled [name="monogram-color"] + span {
	background: transparent!important;
	color: #333!important;
}

.monogram-options [name="monogram-color"] + span {
	min-height: 2.5rem;
}
.monogram-options [name="monogram-color"] + span .monogram-color__name {
	color: #fff;
	color: rgba(255,255,255,.85);
}
.monogram-options [name="monogram-color"] + span .monogram-color__name--dark { color: #333; }
.options .monogram-options [name="monogram-color"]:checked + span .monogram-color__name { color: #fff; }
.options .monogram-options [name="monogram-color"]:checked + span .monogram-color__name--dark { color: #333; }

.monogram-options p {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: var(--type--caps-tracking);
	font-weight: 400;
	font-size: .875rem;
}
.monogram-initials {
	padding-bottom: 2rem;
	border-bottom: 1px solid #ccc;
}

.monogram-initials__input {
	position: relative;
	width: 60%;
	margin: 0 auto;
}
.monogram-initials__input em {
	position: absolute;
	right: 0;
	top: 10px;
	color: #676767;
	font-size: 12.5px;
}

.monogram-initials label { display: block; font-size: 1rem; }
.monogram-initials input {
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 3em!important;
	width: 100%;
	background: transparent;
	border: none;
	font-weight: 100;
	text-transform: uppercase;
	border: 1px solid rgba(0,0,0,.2);
}
.monogram-initials input:focus {
	border: 1px solid rgba(0,0,0,1);
}
.monogram-initials ::placeholder { color: #ddd; }
.monogram-initials ::-webkit-input-placeholder { color: #ddd; }
.monogram-initials ::-ms-input-placeholder { color: #ddd; }

.shipping-bar {
	margin-bottom: 5rem;
}

.shipping-bar p {
	font-size: 0.85rem;
}
.shipping-bar a {
	color: #555;
}
.shipping-bar img {
	display: block;
	width: 32px;
	margin-top: 0.25rem;
	margin-bottom: 0.85rem;
	position: relative;
	left: -0.125rem;
	opacity: 0.5;
}
.shipping-bar i {
	display: block;
	width: 24px;
	height: 24px;
	background: #aaa;
	border-radius: 50%;
	margin-top: 0.25rem;
	margin-bottom: 0.85rem;
	position: relative;
	left: -0.125rem;
	opacity: 0.5;
}

.sizes__header {
	background: #f1f1f1;
	padding: 0.75rem 0.75rem 0;
	margin: -0.25rem -0.75rem 1rem -0.75rem;
	align-items: center;
	/*box-shadow: 0 4px 12px rgba(0,0,0,.05);*/
	z-index: 9;
}

.step__sizes .most-pop {
	position: relative;
	top: -2px;
	display: inline-block;
	color: #999;
	padding: .2rem 0.5rem .15rem;
	border: 1px solid #ccc;
	border-radius: 2px;
	font-size: 11px;
	margin-left: 0.5rem;
}
.have-a-size {
	position: relative;
	align-self: baseline;
}

.have-a-size .btn-sm {
	width: auto;
	padding: .5rem .5rem;
	display: inline-block;
	margin-left: 0.5rem;
}
.have-a-size p {
	margin-top: -0.25rem;
	margin-bottom: 0;
}

.other-methods a {
	font-size: 16px;
	color: #757575;
	border-top: 1px solid #ccc;
	width: 100%;
	padding: 0.75rem 0;
	display: flex;
	flex-wrap: wrap;
}
.other-methods a:hover {
	color: #000;
}
.other-methods a span:first-child {
	flex: 1 auto;
}
.other-methods a span:last-child {
	margin-left: auto;
	transition: .1s ease;
	opacity: 0;
}
.other-methods a:hover span:last-child {
	margin-left: auto;
	opacity: 1;
}


.step--summary h3 {
	margin-top: 0.25rem;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	font-size: 1.3rem;
}
.step--summary .warn {
	color: #952D2A;
  margin: 0 auto;
  font-weight: 400;
  font-size: 1em;
}
.step--summary .warn a {
	color: #611d1b;
	border-bottom: 1px solid #bbb;
	display: inline-block;
}

.debugg {
	font-size: 12px;
	font-family: monospace;
}
.debugg ul {
	padding-left: 0;
}
.debugg li {
	display: flex;
	justify-content: space-between;
	padding: 3px 0;
	border-bottom: 1px dashed #ddd;
}
.debugg li span {
	width: 175px;
	flex: 1 0 auto;
}

.zoom-layer {
	z-index: 9998;
	overflow: hidden;
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: .15s ease;
	transition: .15s ease;
}
.zoom-layer.is-visible {
	opacity: 1;
	visibility: visible;
}

.zoom {
	z-index: 1000;
	position: absolute;
	width: 55px;
	height: 55px;
	/*top: 0.5rem;*/
	/*left: 0.5rem;*/
	top: 0.25rem;
	right: 0.25rem;
	background: none;
	border-radius: 50%;
	padding: 0.5rem;
	outline: none;
	/*display: none;*/
}
.zoom:focus {
	outline: none;
}
.zoom svg { position: relative; top: 1px; }
/*.zoom path, .zoom circle { stroke: #999; }*/
.zoom path { transition: .1s ease }
/*.zoom .handle { fill: #999; }*/
.zoom:hover { background: none; }
/*.zoom:hover path, .zoom:hover circle { stroke: #000; }*/
.zoom:hover .mag-glass { fill: #000; }
.zoom:hover .zoom-in, .zoom:focus .zoom-in, .zoom:hover .zoom-out { fill: #000; }
/*.zoom:hover .handle { fill: #000; }*/

.is-zoomed .zoom-in { display: none; }
.is-zoomed .zoom-out { display: block; }
.is-zoomed .help { opacity: 0 }
.is-zoomed .style-single, .is-zoomed .overview, .is-zoomed .filter-wrap.is-visible .filter .filter-inner { opacity: 0.5; }
.is-zoomed .config, .is-zoomed .filter-wrap, .is-zoomed .style-steps { display: none; }
.is-zoomed .shirt {
	width: 100%!important;
}
.is-zoomed .zoom {
	z-index: 9999;
}

.hotspots { width: 100%; height: 100%; display: none; }
/*.hotspots div { text-align: center; background: rgba(200,200,255,.3); position: absolute; padding: 16px; }*/
.hotspots div { text-align: center; position: absolute; padding: 16px; cursor: pointer; }
.hotspots div { opacity: 0; transition: .1s ease; }
.hotspots span {
	position: absolute;
  top: 50%;
  left: -15%;
  font-size: 14px;
  margin-top: -3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  /*background: rgba(40,40,40,.8);
  color: #fff;*/
  background: rgba(255,255,255,.9);
  color: #333;
  pointer-events: none;
  border: 1px solid rgba(0,0,0,.1);
  pointer-events: none;
}
.hotspots [data-spot="yoke-r"] span, .hotspots [data-spot="pocket"] span {
	right: -15%;
	left: auto;
}
.hotspots [data-spot="buttons1"] span, .hotspots [data-spot="buttons2"] span {
	right: auto;
	left: 50%;
	margin-left: -40px;
	margin-top: -3.5rem;
}
.hotspots [data-spot="placket"] span {
	top: 25%;
	left: 45%;
}
[data-spot="collar"] {
	top: 0%;
	left: 27%;
	right: 31%;
	height: 43%;
	border-radius: 40% 40% 0 0;
}
[data-spot="cuff"] {
	top: 64%;
	left: 14%;
	right: 60%;
	height: 34%;	
}
[data-spot="placket"] {
	top: 42.5%;
	left: 43%;
	right: 45%;
	height: 57%;
}
[data-spot="pocket"] {
	top: 80%;
	left: 60%;
	right: 19%;
	height: 20%;
}
[data-spot="yoke-l"] {
	top: 10%;
	left: 15%;
	right: 74%;
	height: 32%;
}
[data-spot="yoke-r"] {
	top: 10%;
	left: 70%;
	right: 19%;
	height: 32%;
}
[data-spot="buttons1"], [data-spot="buttons2"] {
	border-radius: 9999px;
	top: 60.125%;
	left: 45.25%;
	right: 48%;
	height: 6.25%;
}
[data-spot="buttons2"] {
	top: 84.5%;
}
[data-placket="12"] [data-spot="buttons1"] { top: 60.75%; }
[data-placket="12"] [data-spot="buttons2"] { display: none; }
[data-placket="13"] [data-spot="buttons1"] { top: 51.125%; }
[data-placket="13"] [data-spot="buttons2"] { top: 65.75%; }
[data-placket="12"] [data-spot="placket"], [data-placket="13"] [data-spot="placket"] { height: 43%; }

.hotspots div:hover { opacity: 1; }
/*.hotspots div { opacity: 1; }*/

@media(min-width: 56.25em) {
	.zoom { 
		display: block; 
		top: 0.5rem;
		right: auto;
		left: 0.5rem;
	}
	.zoom-layer {
		position: absolute;
	}
	.hotspots { display: block; }
	[data-step="style"] .options > div, [data-step="style"] .overview > div {
		padding-bottom: 14rem;
	}
	[data-step="style"] {
		min-height: 88.5vh;
		min-height: calc(100vh - 180px);
	}
	.step--summary h3 {
		margin-top: 0;
		font-size: 1.5rem;
	}
	.sizes__header {
		margin: -0.75rem -0.75rem 1rem -0.75rem;
		/*padding: 0.75rem 0.75rem 0;
		margin: -0.75rem -0.75rem 1rem -0.75rem;*/
	}
	.have-a-size {
		position: relative;
	}
}

/*Fabric Modal*/

.specs {
	min-width: 160px;
}
._modal h3 {
	padding-right: 4rem;
	margin: 1rem 0 .25rem 0;
	line-height: 1.3;
}
._modal .specs ul {
	margin-right: 0;
	padding-left: 0;
}
._modal .pcf {
	font-size: 85%;
	letter-spacing: .05em;
	margin-left: 1rem;
}
._modal .specs li {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	border-bottom: 1px solid #ddd;
	padding: 0.75rem 0 0.65rem;
	margin-bottom: 0;
}
.specs li:first-child {
	padding-top: 0;
}
.specs li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.specs li span:first-child {
	color: #999;
	font-size: 0.85em;
	flex: 1 auto;
}
.specs li span:last-child {
	color: #333;
	font-size: 1em;
	line-height: 1.4;
	flex: 1 auto;
	text-align: right;
}
[data-modal="fabric"] .stars {
	align-items: center;
}
[data-modal="fabric"] .stars img {
	margin-right: 6px;
	width: 24px;
}
[data-modal="fabric"] #fmRatingStars {
	white-space: nowrap;
}
.fabric__description h2, .fabric__description h3, .fabric__description p {
	font-size: 1.1em;
	font-feature-settings: 'salt' 1;
	margin-bottom: 1rem;
}
.fabric__description p a {
	color: #333;
	text-decoration: underline;
}

@media(min-width: 56.25em) {
	._modal .specs li {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.specs li span:first-child {
		order: 2;
		color: #999;
		font-size: 0.85em;
		flex: 1 0 100%;
	}
	.specs li span:last-child {
		order: 1;
		color: #333;
		font-size: 1em;
		flex: 1 0 100%;
		margin-bottom: 0.1rem;
		text-align: left;
	}
	.fabric__description p, .fabric__description h2, .fabric__description h3 {
		padding-right: 2rem;
	}
	.fabric__description {
		margin-bottom: 2rem;
	}
}

/*Style Detail Modal*/
[data-modal="style-detail"] ._modal-content {
	min-height: 450px;
	width: calc(100% - 48px);
	max-width: 95em;
}
[data-modal="style-detail"] .btn-primary {
	width: 16rem;
}
[data-modal="style-detail"] .btn-primary .add-on {
	display: inline;
	background: rgba(255,255,255,.25);
	padding: 7px 6px 6px 5px;
	margin-left: 0.5rem;
	font-size: 13px;
	font-weight: 500;
	border-radius: 3px;
	letter-spacing: 0.5px;
}
.style__description h5 {
	font-size: 12px;
	color: #999;
	margin-bottom: 0.5rem;
}
.style__description, .style__description p {
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}
.style__description > div + div {
	margin-top: 1rem;
}
[data-modal="style-detail"] .modal__slider {
	min-height: 190px;
}
.detail-change > span {
	height: 1.5rem;
	width: 1.5rem;
	text-align: center;
	position: relative;
	top: 18px;
	font-size: 12px;
	line-height: 1.6rem;
	background: transparent url(../../../images/icons/caret-down.svg) no-repeat center center;
	background-size: 12px 12px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.detail-change h3 {
	border-bottom: 1px dashed transparent;
	padding-right: 0.25rem;
}
.detail-change:hover h3 {
	border-bottom: 1px dashed #aaa;
}
.style-detail__dropdown {
	position: absolute;
  top: 100%;
  left: -0.5rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  visibility: hidden;
  opacity: 0;
  width: 230px;
  max-height: 340px;
  z-index: 99;
  overflow-y: scroll;
  transform-origin: 5% 0;
  -webkit-transition: .1s cubic-bezier(.175, .885, .32, 1.275);
  -o-transition: .1s cubic-bezier(.175, .885, .32, 1.275);
  transition: .1s cubic-bezier(.175, .885, .32, 1.275);
  -webkit-transform: scale(.85);
  -ms-transform: scale(.85);
  transform: scale(.85);
}
.style-detail__dropdown-toggle {
	display: none;
}
.style-detail__dropdown-toggle:checked ~ .style-detail__dropdown {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .2s cubic-bezier(.175, .885, .32, 1.275);
	-o-transition: .2s cubic-bezier(.175, .885, .32, 1.275);
	transition: .2s cubic-bezier(.175, .885, .32, 1.275);
}
.style-detail__dropdown-toggle:checked ~ .detail-change > span {
	transform: rotate(180deg);
}
.style-detail__dropdown a {
    font-size: 14px;
    display: block;
    color: #757575;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.15rem 2rem 0.15rem 1rem;
    text-decoration: none;
}
.style-detail__dropdown a:hover {
    background: #eee;
}
.style-detail__dropdown a::before {
	background: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4 7L10 1' stroke='black'/%3E%3C/svg%3E%0A") no-repeat 0 85%;
	content: '';
	display: inline-block;
	width: 16px;
	height: 1em;
	margin-right: 0.5rem;
	visibility: hidden;
}
.style-detail__dropdown a[disabled] {
	opacity: 0.3;
	pointer-events: none;
}
.style-detail__dropdown a.is-active {
	color: black;
}
.style-detail__dropdown a.is-active::before {
	visibility: visible;
}
.style-detail__dropdown a.is-viewing {
  color: #fff;
  background: #333;
}
.style-detail__dropdown a.is-viewing.is-active::before {
  background: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4 7L10 1' stroke='white'/%3E%3C/svg%3E%0A") no-repeat 0 85%;
}
/*.style-detail__images {
	overflow: hidden;
}
.style-detail__images .slide:not(:first-child) {
	visibility: hidden;
}
.style-detail__images .slick-initialized .slide:not(:first-child) {
	visibility: visible;
}*/
@media screen and (min-width: 56.25em) {
	.style-detail__images {
		position: -webkit-sticky;
		position: sticky;
		top: 1rem;
		max-width: 600px;
	}
	.style-detail__images img {
		width: 100%;
		height: auto;
	}
	.style__description > div {
		padding-right: 2rem;
	}
}

._modal {
	z-index: 9999;
	overflow: auto;
	overflow-y: scroll;
	position: fixed;
	overflow: touch-scroll;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}
._modal-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(230,230,230,.85);
}
._modal-content {
  background: #fff;
  padding: 1rem 1rem 1rem;
  margin: 3rem auto 0;
  position: relative;
  max-width: 30em;
  overflow: auto;
  overflow-x: hidden;
  /*max-height: 90vh;*/
  border-radius: 4px;
  box-shadow: 0 8px 128px rgba(0,0,0,.07);
}
._modal-content--xwide {
	max-width: 50em;
}
._modal figure {
	padding: 0;
	margin: 0;
}
._modal ul {
	padding-left: 1rem;
	color: #757575;
}
._modal li {
	line-height: 1.5;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}
._modal-close {
  cursor: pointer;
  margin-left: 2rem;
}
._modal-close {
	cursor: pointer;
	margin-left: 2rem;
	height: 20px;
	width: 20px;
	position: absolute;
  top: 1.5rem;
  right: 1.5rem;
	background: transparent url(../imgs/close.svg) no-repeat center center;
	background-size: 20px 20px;
	text-indent: 100%;
	z-index: 99;
	white-space: nowrap;
	overflow: hidden;
}
@media(max-width: 56.25em) {
	[data-modal=fabric] ._modal-close {
		height: 36px;
		width: 36px;
		background-color: rgba(255,255,255,.8);
		border-radius: 50%;
	}
}
._modal-header h5 a {
	color: #757575;
}
._modal .slick-prev, ._modal .slick-next {

}
._modal .slick-prev, ._modal .slick-prev:active {
	left: -10px;
}
._modal .slick-prev:active {
	transform: translateX(-1px);
}
._modal .slick-next, ._modal .slick-next:active {
	right: -10px;
}
._modal .slick-next:active {
	transform: translateX(1px);
}
._modal .slick-prev:hover, ._modal .slick-next:hover {
	background: transparent url(/images/icons/nav-carets.png) no-repeat 0 -398px;
	background-size: 180px 500px;
	color: transparent;
	outline: none;
	opacity: 1;
}
._modal .slick-next:hover {
	background-position: 100% -398px;
}
._modal .slick-dots {
    position: relative;
    bottom: 0;
    z-index: 99;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: center;
}
._modal .slick-dots li {
    position: relative;
    display: inline-block;
    width: 15%;
    height: 4px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    margin: 1rem 0 0 0;
}
._modal .slick-dots li:first-child {
    border-radius: 2px 0 0 2px;
    overflow: hidden;
}
._modal .slick-dots li:last-child {
    border-radius: 0 2px 2px 0;
    overflow: hidden;
}
._modal .slick-dots li button {
    display: block;
    width: 100%;
    height: 4px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    background: rgba(0,0,0,.2);
    border-radius: 0;
}
._modal .slick-dots li.slick-active button {
    background: rgba(0,0,0,1);
}
._modal .slick-dots li button:before {
    display: none;
}
@media screen and (min-width: 56.25em) {
	._modal-content {
	  background: #fff;
	  padding: 1.25rem 2rem 2rem;
	  left: auto;
	  right: auto;
	  position: relative;
	  margin: 3rem auto 0;
	  max-width: 42em;
	  border-radius: 4px;
	  box-shadow: 0 8px 128px rgba(0,0,0,.07);
	}
	._modal-content--wide {
		max-width: 80em;
	}
	._modal-content--xwide {
		max-width: 96%;
	}
	[data-modal="monogram-style"] ._modal-content--wide {
		max-width: 56em;
	}
}

[data-modal=fabric] .btn {
	width: 100%;
	display: block;
}
[data-modal] .btn--with-check {
	background: none;
	border: 2px solid #ccc;
	color: #000;
	cursor: default;
}
[data-modal] .btn--with-check:hover {
	background-color: transparent;
	border-color: #ccc;
	color: #000;
}
[data-modal] .btn--with-check:focus {
	background-color: transparent;
	border-color: #999;
	color: #000;
}
[data-modal] .btn--with-check:active {
	box-shadow: none;
}
.btn--with-check span:before {
	content: '';
	display: inline-block;
	margin: 0 10px 0 -2px;
	width: 14px;
	height: 12px;
	background: url(../imgs/check.svg) no-repeat center center;
	background-size: 14px 12px;
	position: relative;
	top: 1px;
}
.fabric-links {
	width: 100%;
  text-align: center;
  justify-content: center;
  margin: 1rem auto 0;
  align-content: center;
}
.fabric-links a {
	color: #333;
	border-bottom: 1px solid #777;
	font-size: 15px;
	align-self: center;
}
.fabric-links a:hover {
	color: #000;
	border-color: #000;
	text-decoration: none;
}

@media screen and (min-width: 1120px) {
	[data-modal=fabric] .btn {
		width: auto;
		display: inline-block;
	}
	.fabric-links {
		width: auto;
	  text-align: right;
	  justify-content: flex-end;
	  align-content: right;
	  margin: 0 0 0 auto;
	}
}

[data-modal="monogram-style"] .is-current p {
	border: 1px solid #000;
}
[data-modal="monogram-style"] .is-current p:after {
	content: '';
	position: absolute;
	top: 4px;
	right: -28px;
	height: 20px;
	width: 20px;
	border-radius: 20px;
	background: var(--corner-check);
}

.help {
  background: #ddd;
  color: #555;
  height: 40px;
  width: 40px;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  position: fixed;
  text-decoration: none;
  bottom: 25px;
  left: 25px;
  z-index: 1;
  -webkit-transition: .15s ease;
  transition: .15s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.help-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,.6);
	z-index: 9;
	min-height: 100px;
	z-index: 99;
}
.panel-inner {
	padding: 3rem;
}
.panel-inner img {
	max-width: 200px;
}

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

[v-cloak] {
  display: none;
}

/* SIZE STUFF */

.tip[data-toggle="popover"] {
	position: relative;
	background: #E4E4E4;
	color: #777;
	margin: -3px 0 0 15px;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	line-height: 32px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: .15s ease;
}
.tip[data-toggle="popover"]:hover {
	background: #ddd;
}
.tip[data-toggle="popover"]:before {
	content: " ";
	position: absolute;
	top: 100%;
	right: 7px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 8px 8px;
	border-color: transparent transparent rgba(0,0,0,.85) transparent;
	margin-top: 0.22rem;
	visibility: hidden;
	opacity: 0;
}
.tip[data-toggle="popover"]:after {
	content: attr(data-content);
	background: rgba(0,0,0,.85);
	padding: 1rem;
	font-weight: 300;
	line-height: 1.5;
	border-radius: 4px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	width: 190px;
	display: block;
	position: absolute;
	top: 100%;
	right: -2px;
	/*right: -36px;*/
	text-align: right;
	color: #fff;
	margin: 0.75rem 0 0 0;
	z-index: 9;
  visibility: hidden;
  opacity: 0;
}
.tip[data-toggle="popover"]:hover:before, .tip[data-toggle="popover"]:hover:after, .tip[data-toggle="popover"]:focus:before, .tip[data-toggle="popover"]:focus:after {
	visibility: visible;
	opacity: 1;
}

.size-method header h5 {
	/*text-transform: none;*/
	letter-spacing: .1rem;
	/*font-size: 1.25em;*/
	/*font-weight: 300;*/
}
.dimension-table__header h3 {
	font-size: .875rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	font-weight: 500;
}

.size-method .back-to-sizes span:first-child {
	display: inline-block;
	padding: 0.4rem 0.5rem 0.3rem 0.6rem;
	border-radius: 3px;
	color: #777;
	background: #E4E4E4;
	transition: .1s ease;
}
.size-method .back-to-sizes:hover span:first-child {
    background: #ddd;
}
.size-method .back-to-sizes {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.size-single {
	display: flex;
	flex-wrap: wrap;
}
.size-single ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.size-single > .size-options {
	padding-right: 0;
	flex: 1 0 100%;
}
.size-single > div.size--details {
	flex: 1 0 100%;
	padding-top: 2rem;
	padding-bottom: 5rem;
}
.size--details:before {
	content: '';
	position: absolute;
	background: #E4E1E1;
	top: 0rem;
	bottom: -3rem;
	left: -2rem;
	right: -2rem;
	z-index: -1;
}
.size--details {
	position: relative;
}
.size--details .reset {
	display: block;
	width: 27px;
	height: 36px;
	flex: 0 auto;
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
	background: url(../imgs/reset.svg) no-repeat center center;
	background-size: 20px 20px;
	position: relative;
	-webkit-transform-origin: 51.5% 50.5%;
	transform-origin: 51.5% 50.5%;
	position: relative;
	top: -8px;
	right: 0;
	visibility: hidden;
	opacity: 0;
}
.size--details .reset.is-visible {
	visibility: visible;
	opacity: 1;
}
.size--details .reset.spin {
  transform: rotate(-360deg);
  transition: .3s ease;
}
.size-single select {
	display: block;
	width: 100%;
	font-size: 13px!important;
	transition: .1s ease;
}

.size--details .buttons-info {
  position: relative;
}

.dimension-table .buttons-info__toggle {
	text-transform: none;
	color: #333;
	font-weight: 300;
	background: rgba(0,0,0,0.06);
	font-size: 13px;
	padding: 10px 12px;
	margin-left: 0.5rem;
	position: relative;
	top: 2px;
}
.dimension-table .buttons-info__toggle:hover {
  background: rgba(0, 0, 0, 0.12);
}
.dimension-table .buttons-info__toggle:focus {
  outline: none;
}
.dimension-table .buttons-info__popover li {
  border-top: 1px solid #ddd;
  padding: 4px 0;
}
.dimension-table .buttons-info__popover.is-visible {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.dimension-table .buttons-info__popover input {
	box-shadow: none;
	border: none;
	padding-right: 0;
}

.size--saved li a, .size--standard li a, .size--standard li > span {
	display: block;
	color: #777;
	padding: 0 4px 4px 0;
}
.size--saved li, .size--standard li {
	margin-bottom: 1rem;
}

.size--details .dimension-details {
	/*background: #E4E1E1;*/
	background: none;
	padding: 0;
	border-radius: 0;
	font-size: 13px;
	width: 100%;
}
.size--details .dimension-table {
	font-size: 13px;
}
.dimension-table__header {
	display: flex;
	justify-content: space-between;
	padding-right: 0.25rem;
}
.size--details .dimension-details li {
	border-top-color: transparent;
}
.size--details .dimension-details input, .size--details .dimension-details select {
	font-size: 13px!important;
}
.size--details .dimension-details select {
	/*min-width: 210px;*/
	width: 140px;
	padding: 7px 27px 7px 10px;
}
.size--details .dimension-details ul a {
	flex: 1 auto;
}
.size-detail-form li a[class*="specifiable"] {
	font-size: 13px;
	display: inline-block;
	margin-left: .5rem;
	cursor: pointer!important;
}
.size-detail-form li.size-warning a {
	color: #A00C1D;
}
.size--details .warning-icon {
  position: relative;
  margin-right: 0.5rem;
  background: #A00C1D;
  padding: 1px 9px;
  color: #fff;
  border-radius: 3px;
  font-weight: bold;
  cursor: help;
}
.size--details .warning-icon:hover {
	color: #fff;
}

.details-divider {
	margin: 1rem 0;
	border: none;
	border-top: 1px solid rgba(0,0,0,.15);
}

.size--details .size-detail-form li:hover a {
	color: #000;
}
.size-single li a:hover {
	cursor: help;
	text-decoration: underline;
}
.size--details .size-detail-form input {
	max-width: 62px;
}
.builder .size-detail-form select {
	background-color: rgba(255,255,255,.35);
	box-shadow: none;
	padding-top: 8px;
	padding-bottom: 8px;
	border-color: rgba(0,0,0,.125);
	max-width: 160px;
}
.builder .size-detail-form .form-group {
	max-width: 160px;
}
.builder .size-detail-form select:hover {
	background-color: rgba(255,255,255,.5);
	border-color: rgba(0,0,0,.2);
}
.size-detail-form li {
	padding: 4px 0;
	border-top: 1px solid rgba(0,0,0,0.75);
	border-top: transparent;
	border-bottom: transparent!important;
}
.size-detail-form .toggle-more {
	font-size: 12px;
}
div[id^="unit-footnote-config"] {
	margin-top: 0;
}

@media screen and (min-width: 1080px) {
	.size-single {
		flex-wrap: nowrap;
	}
	.size-options > div {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}
	.size-single > .size-options {
		flex: 1 0 40%;
		min-width: 200px;
	}
	.size-single > .size-options {
		padding-right: 3rem;
	}
	.size-single > div.size--details {
		flex: 1 0 50%;
		padding-top: 0;
		min-height: calc(100vh - 120px);
	}
	.size--details:before {
	  top: -3rem;
	  bottom: -3rem;
	  left: -1.5rem;
	  right: -3rem;
	}
	.size--details .warning-icon {
	  position: absolute;
	  left: -1.825rem;
	  top: 0.6rem;
	  padding: 2px 6px;
	  margin-right: 0;
	}
	.tip[data-toggle="popover"]:after {
		right: -36px;
	}
	.size-single .unit-footnote {
		display: block;
		border-top: 1px solid #ccc;
		padding-top: 0.5rem;
		margin-top: 0.5rem;
	}
}

/* TODO - Refactor to Global */
.size--details .plus, .size--details .minus {
  padding: 13px 11px;
  font-size: 20px;
  font-weight: 300;
  line-height: 8px;
  background: #999;
  color: #fff;
  border-radius: 3px;
  outline: none;
  margin-left: 4px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: auto;
  transition: .1s ease;
}
.size--details .minus {
	border-radius: 3px 0 0 3px;
}
.size--details .plus {
	border-radius: 0 3px 3px 0;
}
.size--details .plus:hover, .size--details .minus:hover {
    background: #333;
    transition: 0s;
}
.size--details .plus.disabled, .size--details .minus.disabled {
    opacity: 0.4;
    filter: alpha(opacity=40);
}
.size--details .plus.disabled:hover, .size--details .minus.disabled:hover {
    background: #999;
    transition: 0s;
}
.size--details .plus.visible-hidden, .size--details .minus.visible-hidden {
	display: none;
}

/* EDIT MODE */

.is-edit-mode .site-nav {
	background: transparent;
}
.edit-mode__cancel {
	display: flex;
	align-items: flex-start;
}
.edit-mode__cancel button {
	text-transform: none;
	letter-spacing: 0;
	background: #757575;
	color: white;
	font-weight: 300;
	display: inline-flex;
}
.edit-mode__cancel button i {
	font-size: 17px;
	position: relative;
	line-height: 1;
	top: 0px;
	margin-right: 0.4rem;
}
.edit-mode__cancel .reset {
	position: relative;
	top: -4px;
	right: auto;
	margin-right: 1rem;
	transition: .2s ease;
	opacity: 0;
	visibility: hidden;
}
.edit-mode__cancel .reset.is-visible {
	opacity: 1;
	visibility: visible;
}
.is-zoomed .edit-mode__cancel .reset.is-visible {
	opacity: 0;
	visibility: hidden;
}

.cancel-dialog {
	z-index: 9999;
}
.cancel-dialog > div {
	position: fixed;
	right: 1rem;
	top: 60px;
	margin-top: 1rem;
	background: #fff;
	padding: 1.5rem;
	max-width: 320px;
	z-index: 9999;
	border: 1px solid #ddd;
	border-radius: 3px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0 0 36px rgba(0,0,0,.1);
}
.cancel-dialog p {
	font-size: 15px;
}
.cancel-dialog p:first-child {
	color: #333;
}
.cancel-dialog .btn {
	text-transform: none;
	letter-spacing: 0;
	flex: 1;
	font-weight: 300;
	width: auto;
}
.cancel-dialog__bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(230,230,230,.85);
	display: none;
}
.cancel-dialog.is-visible > div {
	visibility: visible;
	opacity: 1;
}
.cancel-dialog.is-visible + .cancel-dialog__bg {
	display: block;
}

/* LEGACY MODALS */

.modal-backdrop {
	background: rgba(230,230,230,.85);
}
.modal-backdrop.in {
	opacity: 1;
}

.modal .modal-dialog {
	 opacity: 0;
	 position: relative;
	 transform-origin: center center;
}
 .modal.in .modal-dialog {
	 opacity: 1;
}
 .modal .close {
	 outline: none;
	 z-index: 99;
	 cursor: pointer;
	 margin-left: 2rem;
	 height: 20px;
	 width: 20px;
	 position: absolute;
	 top: 1.5rem;
	 right: 1.5rem;
	 background: transparent url(../imgs/close.svg) no-repeat center center;
	 background-size: 20px 20px;
	 text-indent: 100%;
	 white-space: nowrap;
	 overflow: hidden;
}
 .modal .modal-content {
	 background-color: #fcfcfc;
	 border: none;
	 border-radius: 4px;
	 box-shadow: 0 8px 128px rgba(0,0,0,.07);
}
 .modal .modal-body .msr-help {
	 margin-top: -100px;
	 padding-top: 62px;
	 /*background: #eaeaed;*/
	 background: #ececec;
	 padding-left: 50px;
	 padding-right: 50px;
	 box-shadow: inset 2px 0 40px rgba(10,10,10,0.01);
	 position: absolute;
	 top: 0;
	 left: 42.5%;
	 right: 0;
	 bottom: 0;
}
 .modal .modal-body .msr-help h2 {
	 color: #444;
	 font-family: var(--font-sans);

}
 .modal .modal-body .msr-help p {
	 font-size: 14px;
	 color: #777;
}
 .modal .modal-body .msr-help ul {
	 padding-left: 1em;
	 margin-bottom: 1em;
}
 .modal .modal-body .msr-help ul li {
	 list-style: disc;
	 font-weight: 300;
	 font-size: 14px;
}
 .modal .modal-body .msr-help img {
	 width: 100%;
	 height: auto;
}
 .modal .modal-body .msr-help .video {
	 margin: 2em auto;
}

.smart-size-modal {
	 position: fixed;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 background: rgba(80,80,80,0.6);
	 z-index: 999999;
	 display: block;
	 text-align: center;
	 display: none;
}
 .smart-size-modal h4 {
	 color: #fff;
	 font-size: 13px;
	 margin-top: 17px;
	 position: relative;
}
 .smart-size-modal .close-modal {
	 color: #fff;
	 font-size: 28px;
	 position: absolute;
	 top: 7px;
	 right: 10%;
}
 .smart-size-modal .modal {
	 padding: 50px;
	 display: block;
	 background: #fff;
	 border-radius: 0px;
	 width: 80%;
	 height: 88vh;
	 margin: 70px auto;
	 text-align: left;
}
 .smart-size-modal .modal img {
	 display: block;
	 margin: 0 auto;
}
 .smart-size-modal .modal .progress {
	 position: absolute;
	 top: 0px;
	 left: 0;
	 right: 0;
	 height: 10px;
	 margin: 0;
	 background: #D8D8D8;
	 z-index: 99;
	 border-radius: 0 0 2px 2px;
}
 .smart-size-modal .modal .progress-bar {
	 will-change: width;
	 background: #949CB3;
	 -webkit-transition: .3s cubic-bezier(.55,0,0,1);
	 transition: .3s cubic-bezier(.55,0,0,1);
}
 #ss-modal .block-messages {
	 display: none !important;
	 opacity: 0;
}
 #ss-modal .block-messages + .spacer {
	 display: none !important;
}
 .ss-modal-active {
	 overflow: hidden;
}
 .ss-modal-active .smart-size-modal {
	 display: block;
}
 .ss-modal-active .navbar a {
	 opacity: 0;
}
 .ss-modal-active .build-panel {
	 overflow: hidden;
}
 .msr-body-modal .tip, .msr-shirt-modal .tip {
	 position: absolute;
	 top: 30px;
	 left: 40%;
	 margin-left: -40px;
	 background: #EAE9E8;
}
 .msr-body-modal .modal-content, .msr-shirt-modal .modal-content {
	 overflow: hidden;
}
 .msr-body-modal p, .msr-body-modal li, .msr-shirt-modal p, .msr-shirt-modal li {
	 font-weight: 300;
	 font-size: 15px;
}
 .msr-body-modal ul.size-form, .msr-shirt-modal ul.size-form {
	 padding-bottom: 0em;
	 padding-left: 0;
	 padding-right: 30px;
	 margin-bottom: 0em;
}
 .msr-body-modal ul.size-form p, .msr-body-modal ul.size-form li, .msr-body-modal ul.size-form a, .msr-shirt-modal ul.size-form p, .msr-shirt-modal ul.size-form li, .msr-shirt-modal ul.size-form a {
	 font-weight: 400;
	 font-size: 13px;
	 color: #777;
}
 .msr-body-modal ul.size-form .btn, .msr-body-modal ul.size-form .btn-default-grey, .msr-shirt-modal ul.size-form .btn, .msr-shirt-modal ul.size-form .btn-default-grey {
	 width: 100%;
	 max-width: auto;
	 display: block;
	 margin-top: 1em;
}
 .msr-body-modal ul.size-form input[type="text"] + .input-group-addon, .msr-shirt-modal ul.size-form input[type="text"] + .input-group-addon {
	 position: relative;
}
 .msr-body-modal ul.size-form input[type="text"] + .input-group-addon span, .msr-shirt-modal ul.size-form input[type="text"] + .input-group-addon span {
	 opacity: 1;
	 position: relative;
	 display: block;
}
 .msr-body-modal ul.size-form input[type="text"] + .input-group-addon:before, .msr-shirt-modal ul.size-form input[type="text"] + .input-group-addon:before {
	 background: #933B34;
	 opacity: 0;
	 width: 7px;
	 content: '';
	 position: absolute;
	 top: 0;
	 left: -4px;
	 bottom: 0;
	 right: auto;
	 line-height: 1.5;
	 color: #000;
	 font-size: 18px;
}
 .msr-body-modal ul.size-form input[type="text"] + .input-group-addon:after, .msr-shirt-modal ul.size-form input[type="text"] + .input-group-addon:after {
	 background: #1B2953;
	 opacity: 0;
	 width: 7px;
	 content: '';
	 position: absolute;
	 top: 0;
	 left: -4px;
	 bottom: 0;
	 right: auto;
	 line-height: 1.5;
	 color: #000;
	 font-size: 18px;
}
 .msr-body-modal ul.size-form input[type="text"].is-valid + .input-group-addon, .msr-shirt-modal ul.size-form input[type="text"].is-valid + .input-group-addon {
	 position: relative;
}
 .msr-body-modal ul.size-form input[type="text"].is-valid + .input-group-addon:after, .msr-shirt-modal ul.size-form input[type="text"].is-valid + .input-group-addon:after {
	 opacity: 1;
}
 .msr-body-modal ul.size-form input[type="text"].not-valid, .msr-shirt-modal ul.size-form input[type="text"].not-valid {
	 border-color: #952D2A;
	 box-shadow: 0 0 5px rgba(255,0,0,0.3);
}
 .msr-body-modal ul.size-form input[type="text"].not-valid + .input-group-addon, .msr-shirt-modal ul.size-form input[type="text"].not-valid + .input-group-addon {
	 border-color: #952D2A;
	 position: relative;
}
 .msr-body-modal ul.size-form input[type="text"].not-valid + .input-group-addon:before, .msr-shirt-modal ul.size-form input[type="text"].not-valid + .input-group-addon:before {
	 opacity: 1;
}
 .msr-body-modal .btn, .msr-shirt-modal .btn {
	 text-align: center;
	 display: block;
	 margin: 0 auto;
}
 .msr-body-modal .btn, .msr-body-modal .btn-default-grey, .msr-shirt-modal .btn, .msr-shirt-modal .btn-default-grey {
	 width: 100%;
	 max-width: auto;
	 display: block;
}
 .msr-body-modal li, .msr-shirt-modal li {
	 margin-bottom: .75em;
	 position: relative;
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
}
 .msr-body-modal li a, .msr-shirt-modal li a {
	 color: #777;
	 line-height: 1.2;
	 display: inline-block;
	 padding: 9px 0 2px;
	 border-bottom: 1px solid transparent;
	 text-decoration: none;
}
 .msr-body-modal li a.twoline, .msr-shirt-modal li a.twoline {
	 margin-top: -5px;
}
 .msr-body-modal li a:hover, .msr-shirt-modal li a:hover {
	 color: #000;
	 border-bottom-color: #aaa;
}
 .msr-body-modal li.size-warning .warning-icon, .msr-shirt-modal li.size-warning .warning-icon {
	 position: absolute;
	 top: 0px;
	 left: -15px;
	 height: 30px;
	 width: 22px;
	 font-size: 20px;
	 line-height: 34px;
	 margin-left: -17px;
	 border-radius: 3px;
	 background: #952D2A;
	 color: #fff;
	 text-align: center;
	 box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
 .msr-body-modal form, .msr-shirt-modal form {
	 width: 55%;
	 text-align: right;
}
 .msr-body-modal select, .msr-shirt-modal select {
	 width: 100%;
	 height: 44px;
	 font-size: 16px !important;
	 -webkit-appearance: none;
	 appearance: none;
	 border-radius: 2px;
	 box-shadow: 0 1px 0px rgba(0,0,0,0.1);
	 padding-right: 25px;
	 background: #fff url(../../../images/icons/select-arrows.svg) no-repeat right center;
	 background-size: 18px;
}
 .msr-body-modal .input-group-addon, .msr-shirt-modal .input-group-addon {
	 border: none;
	 border: 1px solid #ccc;
	 border-left: none;
	 padding-left: 20px;
	 padding-right: 20px;
	 background: #fff;
	 color: #bbb;
	 font-size: 12px;
}
 .msr-body-modal input[type="text"], .msr-shirt-modal input[type="text"] {
	 width: 100%;
	 padding: 0;
	 text-align: center;
	 font-size: 18px !important;
	 border: 1px solid #ccc;
	 border-radius: 3px 0 0 3px;
	 background: #fff !important;
	 cursor: default !important;
}
 .msr-body-modal input[type="text"]:focus, .msr-shirt-modal input[type="text"]:focus {
	 border-color: #000;
	 border-right-color: #ccc;
}
 .msr-body-modal input[type="text"]:focus + .input-group-addon, .msr-shirt-modal input[type="text"]:focus + .input-group-addon {
	 border-color: #000;
}
 .msr-body-modal input:read-only, .msr-shirt-modal input:read-only {
	 background: #fff !important;
	 cursor: default !important;
}
 .msr-body-modal .size-warning input[type="text"], .msr-shirt-modal .size-warning input[type="text"] {
	 border: 2px solid #952D2A;
}
 .msr-body-modal .plus, .msr-body-modal .minus, .msr-shirt-modal .plus, .msr-shirt-modal .minus {
	 padding: 13px 11px;
	 font-size: 26px;
	 line-height: 8px;
	 background: #bbb;
	 color: #fff;
	 border-radius: 3px 0 0 3px;
	 outline: none;
	 margin-left: 4px;
}
 .msr-body-modal .plus.plus, .msr-body-modal .minus.plus, .msr-shirt-modal .plus.plus, .msr-shirt-modal .minus.plus {
	 border-radius: 0 3px 3px 0;
	 margin-left: -2px;
}
 .msr-body-modal .plus:hover, .msr-body-modal .minus:hover, .msr-shirt-modal .plus:hover, .msr-shirt-modal .minus:hover {
	 background: #999;
}
 .msr-body-modal .plus:focus, .msr-body-modal .minus:focus, .msr-shirt-modal .plus:focus, .msr-shirt-modal .minus:focus {
	 outline: none;
	 background: #bbb;
}
 .msr-body-modal .plus:active, .msr-body-modal .minus:active, .msr-shirt-modal .plus:active, .msr-shirt-modal .minus:active {
	 background: #333;
}
 .msr-body-modal .plus.disabled, .msr-body-modal .minus.disabled, .msr-shirt-modal .plus.disabled, .msr-shirt-modal .minus.disabled {
	 opacity: .4;
}
 .msr-body-modal .size-details select, .msr-shirt-modal .size-details select {
	 height: 40px;
	 width: 166px;
	 font-size: 13px !important;
}
 /*@media (max-width: 640px) {*/
@media (max-width: 53.1875em) {
	 .msr-body-modal ul.size-form, .msr-shirt-modal ul.size-form {
		 padding-left: 0;
		 padding-right: 0;
		 padding-top: 20px;
		 padding-bottom: 20px;
		 /*min-height: 80vh;*/
	}
	 .msr-body-modal .modal-body .msr-help, .msr-shirt-modal .modal-body .msr-help {
		 /*display: none;*/
		 position: relative;
     left: 0;
     margin: 0;
     display: block;
     padding: 2rem;
     margin: 0 -2rem;
	}
}
 .mail-shirt-modal .col-md-7 {
	 padding-right: 70px;
}
 .mail-shirt-modal ol {
	 padding: 0 0 0 20px;
	 margin: 2em 0 4em;
	 color: #999;
	 border-left: 1px solid #ddd;
	 padding: 0px 50px;
}
 .mail-shirt-modal ol li {
	 padding-left: 25px;
}
 .mail-shirt-modal ol a {
	 color: #000;
	 border-bottom: 1px solid #000;
	 text-decoration: none;
}
 .mail-shirt-modal li {
	 margin: 0;
	 font-weight: 300;
	 font-size: 15px;
	 padding: 4px 0 4px 10px;
	 list-style: decimal;
}
 .mail-shirt-modal li:before, .mail-shirt-modal li:after {
	 display: none;
}
 .mail-shirt-modal .address {
 	 display: inline-block;
	 border: 1px solid #ddd;
	 margin: 0 0 1.5em;
	 padding: 1.5rem 5rem 1.5rem 2rem;
	 border-radius: 0.5em;
}
.mail-shirt-modal .row {
	clear: both;
}
 @media (max-width: 640px) {
	 .mail-shirt-modal ol {
		 margin-bottom: 2em;
	}
	 .mail-shirt-modal .btn.btn-default {
		 margin-bottom: 3em;
		 width: 90%;
		 max-width: 90%;
	}
	 .mail-shirt-modal .col-md-7 {
		 margin-bottom: 2em;
		 padding-left: 0px !important;
		 padding-right: 0px !important;
	}
	 .mail-shirt-modal .col-md-5 {
		 padding-left: 0px !important;
	}
	 .mail-shirt-modal .col-md-5 ol {
		 padding-left: 15px;
		 padding-right: 0;
		 border-left: 0;
	}
}



.module-ss .progress-bar.at-top {
	position: fixed;
	top: 0;
	left: 0;
	height: 5px;
	width: 100%;
	background: #D7D7D7;
}
.progress-bar.at-top span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 9%;
    background: #949CB3;
}
.module-ss .modal-content {
	background: #F5F5F5;
}
.module-ss .size-survey, .module-ss .register, .module-ss .ss-results {
	padding: 0 0 60px;
}
.module-ss .register {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}
.module-ss .ss-results {
	position: absolute;
}
.module-ss .ss-results h5 {
	color: #777;
}
.module-ss .ss-results > .inner {
  max-width: 100%;
  padding: 0 30px;
}
.module-ss .ss-results .ss-answers {
	padding: 0 30px;
}
.module-ss .answer {
	margin-bottom: 5px;
}
/* Hide CSS Loading FOUC */
.register, .ss-results { visibility: hidden; opacity: 0; }
.ss-app .size-survey { visibility: hidden; opacity: 0; transition: .2s ease; }
.ss-app.is-ready .size-survey { visibility: visible; opacity: 1; }
.flex-col .answer {
	-webkit-box-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}
.flex-col.lg-2-col .answer {
    width: 50%;
}
.answer span {
    color: #777;
    display: block;
    border: 1px solid #bbb;
    border-radius: 3px;
    width: 100%;
    height: 100%;
}
.is-reviewing .ss-results {
	position: relative!important;
	padding-left: 0!important;
	padding-right: 0!important;
}
.ss-app.is-ready.is-reviewing .size-survey {
	display: none;
}

@media screen and (min-width: 56.25em) {
	.module-ss .progress-bar.at-top {
		top: 30px;
	}
	.module-ss .size-survey, .module-ss .register, .module-ss .ss-results {
		padding: 0 30px 60px;
	}
	.ss-results .panel {
		max-height: unset!important;
	}
}


