/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */@-webkit-keyframes bounce {
	0%,20%,53%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1);
		transform: translateZ(0)
	}

	40%,43% {
		-webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		transform: translate3d(0,-30px,0)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		transform: translate3d(0,-15px,0)
	}

	90% {
		transform: translate3d(0,-4px,0)
	}
}

@keyframes bounce {
	0%,20%,53%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1);
		transform: translateZ(0)
	}

	40%,43% {
		-webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		transform: translate3d(0,-30px,0)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		animation-timing-function: cubic-bezier(.755,.05,.855,.06);
		transform: translate3d(0,-15px,0)
	}

	90% {
		transform: translate3d(0,-4px,0)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	transform-origin: center bottom
}

@-webkit-keyframes flash {
	0%,50%,to {
		opacity: 1
	}

	25%,75% {
		opacity: 0
	}
}

@keyframes flash {
	0%,50%,to {
		opacity: 1
	}

	25%,75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		transform: scaleX(1)
	}

	50% {
		transform: scale3d(1.05,1.05,1.05)
	}

	to {
		transform: scaleX(1)
	}
}

@keyframes pulse {
	0% {
		transform: scaleX(1)
	}

	50% {
		transform: scale3d(1.05,1.05,1.05)
	}

	to {
		transform: scaleX(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		transform: scaleX(1)
	}

	30% {
		transform: scale3d(1.25,.75,1)
	}

	40% {
		transform: scale3d(.75,1.25,1)
	}

	50% {
		transform: scale3d(1.15,.85,1)
	}

	65% {
		transform: scale3d(.95,1.05,1)
	}

	75% {
		transform: scale3d(1.05,.95,1)
	}

	to {
		transform: scaleX(1)
	}
}

@keyframes rubberBand {
	0% {
		transform: scaleX(1)
	}

	30% {
		transform: scale3d(1.25,.75,1)
	}

	40% {
		transform: scale3d(.75,1.25,1)
	}

	50% {
		transform: scale3d(1.15,.85,1)
	}

	65% {
		transform: scale3d(.95,1.05,1)
	}

	75% {
		transform: scale3d(1.05,.95,1)
	}

	to {
		transform: scaleX(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {
	0%,to {
		transform: translateZ(0)
	}

	10%,30%,50%,70%,90% {
		transform: translate3d(-10px,0,0)
	}

	20%,40%,60%,80% {
		transform: translate3d(10px,0,0)
	}
}

@keyframes shake {
	0%,to {
		transform: translateZ(0)
	}

	10%,30%,50%,70%,90% {
		transform: translate3d(-10px,0,0)
	}

	20%,40%,60%,80% {
		transform: translate3d(10px,0,0)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-webkit-keyframes headShake {
	0% {
		transform: translateX(0)
	}

	6.5% {
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		transform: translateX(2px) rotateY(3deg)
	}

	50% {
		transform: translateX(0)
	}
}

@keyframes headShake {
	0% {
		transform: translateX(0)
	}

	6.5% {
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		transform: translateX(2px) rotateY(3deg)
	}

	50% {
		transform: translateX(0)
	}
}

.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake
}

@-webkit-keyframes swing {
	20% {
		transform: rotate(15deg)
	}

	40% {
		transform: rotate(-10deg)
	}

	60% {
		transform: rotate(5deg)
	}

	80% {
		transform: rotate(-5deg)
	}

	to {
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		transform: rotate(15deg)
	}

	40% {
		transform: rotate(-10deg)
	}

	60% {
		transform: rotate(5deg)
	}

	80% {
		transform: rotate(-5deg)
	}

	to {
		transform: rotate(0deg)
	}
}

.swing {
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		transform: scaleX(1)
	}

	10%,20% {
		transform: scale3d(.9,.9,.9) rotate(-3deg)
	}

	30%,50%,70%,90% {
		transform: scale3d(1.1,1.1,1.1) rotate(3deg)
	}

	40%,60%,80% {
		transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
	}

	to {
		transform: scaleX(1)
	}
}

@keyframes tada {
	0% {
		transform: scaleX(1)
	}

	10%,20% {
		transform: scale3d(.9,.9,.9) rotate(-3deg)
	}

	30%,50%,70%,90% {
		transform: scale3d(1.1,1.1,1.1) rotate(3deg)
	}

	40%,60%,80% {
		transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
	}

	to {
		transform: scaleX(1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		transform: translateZ(0)
	}

	15% {
		transform: translate3d(-25%,0,0) rotate(-5deg)
	}

	30% {
		transform: translate3d(20%,0,0) rotate(3deg)
	}

	45% {
		transform: translate3d(-15%,0,0) rotate(-3deg)
	}

	60% {
		transform: translate3d(10%,0,0) rotate(2deg)
	}

	75% {
		transform: translate3d(-5%,0,0) rotate(-1deg)
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes wobble {
	0% {
		transform: translateZ(0)
	}

	15% {
		transform: translate3d(-25%,0,0) rotate(-5deg)
	}

	30% {
		transform: translate3d(20%,0,0) rotate(3deg)
	}

	45% {
		transform: translate3d(-15%,0,0) rotate(-3deg)
	}

	60% {
		transform: translate3d(10%,0,0) rotate(2deg)
	}

	75% {
		transform: translate3d(-5%,0,0) rotate(-1deg)
	}

	to {
		transform: translateZ(0)
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes jello {
	0%,11.1%,to {
		transform: translateZ(0)
	}

	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		transform: skewX(.39062deg) skewY(.39062deg)
	}

	88.8% {
		transform: skewX(-.19531deg) skewY(-.19531deg)
	}
}

@keyframes jello {
	0%,11.1%,to {
		transform: translateZ(0)
	}

	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		transform: skewX(.39062deg) skewY(.39062deg)
	}

	88.8% {
		transform: skewX(-.19531deg) skewY(-.19531deg)
	}
}

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	transform-origin: center
}

@-webkit-keyframes heartBeat {
	0% {
		transform: scale(1)
	}

	14% {
		transform: scale(1.3)
	}

	28% {
		transform: scale(1)
	}

	42% {
		transform: scale(1.3)
	}

	70% {
		transform: scale(1)
	}
}

@keyframes heartBeat {
	0% {
		transform: scale(1)
	}

	14% {
		transform: scale(1.3)
	}

	28% {
		transform: scale(1)
	}

	42% {
		transform: scale(1.3)
	}

	70% {
		transform: scale(1)
	}
}

.heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {
	0%,20%,40%,60%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}

	20% {
		transform: scale3d(1.1,1.1,1.1)
	}

	40% {
		transform: scale3d(.9,.9,.9)
	}

	60% {
		opacity: 1;
		transform: scale3d(1.03,1.03,1.03)
	}

	80% {
		transform: scale3d(.97,.97,.97)
	}

	to {
		opacity: 1;
		transform: scaleX(1)
	}
}

@keyframes bounceIn {
	0%,20%,40%,60%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}

	20% {
		transform: scale3d(1.1,1.1,1.1)
	}

	40% {
		transform: scale3d(.9,.9,.9)
	}

	60% {
		opacity: 1;
		transform: scale3d(1.03,1.03,1.03)
	}

	80% {
		transform: scale3d(.97,.97,.97)
	}

	to {
		opacity: 1;
		transform: scaleX(1)
	}
}

.bounceIn {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(0,-3000px,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(0,25px,0)
	}

	75% {
		transform: translate3d(0,-10px,0)
	}

	90% {
		transform: translate3d(0,5px,0)
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes bounceInDown {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(0,-3000px,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(0,25px,0)
	}

	75% {
		transform: translate3d(0,-10px,0)
	}

	90% {
		transform: translate3d(0,5px,0)
	}

	to {
		transform: translateZ(0)
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(-3000px,0,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(25px,0,0)
	}

	75% {
		transform: translate3d(-10px,0,0)
	}

	90% {
		transform: translate3d(5px,0,0)
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes bounceInLeft {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(-3000px,0,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(25px,0,0)
	}

	75% {
		transform: translate3d(-10px,0,0)
	}

	90% {
		transform: translate3d(5px,0,0)
	}

	to {
		transform: translateZ(0)
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(3000px,0,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(-25px,0,0)
	}

	75% {
		transform: translate3d(10px,0,0)
	}

	90% {
		transform: translate3d(-5px,0,0)
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes bounceInRight {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(3000px,0,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(-25px,0,0)
	}

	75% {
		transform: translate3d(10px,0,0)
	}

	90% {
		transform: translate3d(-5px,0,0)
	}

	to {
		transform: translateZ(0)
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(0,3000px,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(0,-20px,0)
	}

	75% {
		transform: translate3d(0,10px,0)
	}

	90% {
		transform: translate3d(0,-5px,0)
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes bounceInUp {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}

	0% {
		opacity: 0;
		transform: translate3d(0,3000px,0)
	}

	60% {
		opacity: 1;
		transform: translate3d(0,-20px,0)
	}

	75% {
		transform: translate3d(0,10px,0)
	}

	90% {
		transform: translate3d(0,-5px,0)
	}

	to {
		transform: translateZ(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	20% {
		transform: scale3d(.9,.9,.9)
	}

	50%,55% {
		opacity: 1;
		transform: scale3d(1.1,1.1,1.1)
	}

	to {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}
}

@keyframes bounceOut {
	20% {
		transform: scale3d(.9,.9,.9)
	}

	50%,55% {
		opacity: 1;
		transform: scale3d(1.1,1.1,1.1)
	}

	to {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}
}

.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	20% {
		transform: translate3d(0,10px,0)
	}

	40%,45% {
		opacity: 1;
		transform: translate3d(0,-20px,0)
	}

	to {
		opacity: 0;
		transform: translate3d(0,2000px,0)
	}
}

@keyframes bounceOutDown {
	20% {
		transform: translate3d(0,10px,0)
	}

	40%,45% {
		opacity: 1;
		transform: translate3d(0,-20px,0)
	}

	to {
		opacity: 0;
		transform: translate3d(0,2000px,0)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px,0,0)
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px,0,0)
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px,0,0)
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px,0,0)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px,0,0)
	}

	to {
		opacity: 0;
		transform: translate3d(2000px,0,0)
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px,0,0)
	}

	to {
		opacity: 0;
		transform: translate3d(2000px,0,0)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	20% {
		transform: translate3d(0,-10px,0)
	}

	40%,45% {
		opacity: 1;
		transform: translate3d(0,20px,0)
	}

	to {
		opacity: 0;
		transform: translate3d(0,-2000px,0)
	}
}

@keyframes bounceOutUp {
	20% {
		transform: translate3d(0,-10px,0)
	}

	40%,45% {
		opacity: 1;
		transform: translate3d(0,20px,0)
	}

	to {
		opacity: 0;
		transform: translate3d(0,-2000px,0)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0,-100%,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0,-100%,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0,-2000px,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0,-2000px,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px,0,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0,100%,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0,100%,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0,2000px,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0,2000px,0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,100%,0)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,100%,0)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,2000px,0)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,2000px,0)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(-100%,0,0)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(-100%,0,0)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px,0,0)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px,0,0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(100%,0,0)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(100%,0,0)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(2000px,0,0)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(2000px,0,0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,-100%,0)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,-100%,0)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,-2000px,0)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0,-2000px,0)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	to {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	to {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}

@-webkit-keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		transform: perspective(400px)
	}
}

.flipInX {
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

@-webkit-keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		transform: perspective(400px)
	}
}

.flipInY {
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@-webkit-keyframes flipOutX {
	0% {
		transform: perspective(400px)
	}

	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		transform: perspective(400px)
	}

	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
	0% {
		transform: perspective(400px)
	}

	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		transform: perspective(400px)
	}

	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
	0% {
		transform: translate3d(100%,0,0) skewX(-30deg);
		opacity: 0
	}

	60% {
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		transform: skewX(-5deg)
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes lightSpeedIn {
	0% {
		transform: translate3d(100%,0,0) skewX(-30deg);
		opacity: 0
	}

	60% {
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		transform: skewX(-5deg)
	}

	to {
		transform: translateZ(0)
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		transform: translate3d(100%,0,0) skewX(30deg);
		opacity: 0
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		transform: translate3d(100%,0,0) skewX(30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		transform-origin: center;
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		transform-origin: center;
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		transform-origin: left bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		transform-origin: left bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		transform-origin: right bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		transform-origin: right bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		transform-origin: left bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		transform-origin: left bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		transform-origin: right bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		transform-origin: right bottom;
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1
	}

	to {
		transform-origin: center;
		transform: rotate(200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1
	}

	to {
		transform-origin: center;
		transform: rotate(200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		transform-origin: right bottom;
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		transform-origin: right bottom;
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
	0% {
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,60% {
		transform: rotate(80deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,80% {
		transform: rotate(60deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		transform: translate3d(0,700px,0);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,60% {
		transform: rotate(80deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,80% {
		transform: rotate(60deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		transform: translate3d(0,700px,0);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom
	}

	50% {
		transform: rotate(-10deg)
	}

	70% {
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom
	}

	50% {
		transform: rotate(-10deg)
	}

	70% {
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

.jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%,0,0) rotate(-120deg)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%,0,0) rotate(-120deg)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(100%,0,0) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(100%,0,0) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}

	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	to {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	to {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(-2000px,0,0);
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(-2000px,0,0);
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(2000px,0,0);
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(2000px,0,0);
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	to {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
		animation-timing-function: cubic-bezier(.55,.055,.675,.19)
	}

	to {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
		animation-timing-function: cubic-bezier(.175,.885,.32,1)
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
	0% {
		transform: translate3d(0,-100%,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes slideInDown {
	0% {
		transform: translate3d(0,-100%,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		transform: translate3d(-100%,0,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%,0,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		transform: translate3d(100%,0,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes slideInRight {
	0% {
		transform: translate3d(100%,0,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
	0% {
		transform: translate3d(0,100%,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

@keyframes slideInUp {
	0% {
		transform: translate3d(0,100%,0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(0,100%,0)
	}
}

@keyframes slideOutDown {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(0,100%,0)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(-100%,0,0)
	}
}

@keyframes slideOutLeft {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(-100%,0,0)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(100%,0,0)
	}
}

@keyframes slideOutRight {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(100%,0,0)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(0,-100%,0)
	}
}

@keyframes slideOutUp {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(0,-100%,0)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.animated.delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.animated.delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}

.animated.delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s
}

.animated.delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s
}

.animated.fast {
	-webkit-animation-duration: .8s;
	animation-duration: .8s
}

.animated.faster {
	-webkit-animation-duration: .5s;
	animation-duration: .5s
}

.animated.slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

.animated.slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s
}

@media (prefers-reduced-motion:reduce),(print) {
	.animated {
		-webkit-animation-duration: 1ms!important;
		animation-duration: 1ms!important;
		transition-duration: 1ms!important;
		-webkit-animation-iteration-count: 1!important;
		animation-iteration-count: 1!important
	}
}

@font-face {
	font-family:"configuratoricons";src:url(../../static/media/configuratoricons.87be7d13.eot);src:url(../../static/media/configuratoricons.87be7d13.eot) format("embedded-opentype"),url(../../static/media/configuratoricons.49b47abb.woff) format("woff"),url(../../static/media/configuratoricons.a757cebc.ttf) format("truetype"),url(../../static/media/configuratoricons.721c678e.svg) format("svg");font-weight:400;font-style:normal
}[class*=cficon-]:before {
	display: inline-block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.cficon-check:before {
	content: "\0041"
}

.cficon-chevron-down:before {
	content: "\0042"
}

.cficon-chevron-left:before {
	content: "\0043"
}

.cficon-chevron-up:before {
	content: "\0044"
}

.cficon-chevron-right:before {
	content: "\0045"
}

.cficon-circle-arrow:before {
	content: "\0046"
}

.cficon-close:before {
	content: "\0047"
}

.cficon-collapse:before {
	content: "\0048"
}

.cficon-confirm:before {
	content: "\0049"
}

.cficon-download:before {
	content: "\004a"
}

.cficon-expand:before {
	content: "\004b"
}

.cficon-heart:before {
	content: "\004c"
}

.cficon-heart-outline:before {
	content: "\004d"
}

.cficon-info:before {
	content: "\004e"
}

.cficon-left-arrow-hover:before {
	content: "\004f"
}

.cficon-left-arrow:before {
	content: "\0050"
}

.cficon-radio-active:before {
	content: "\0051"
}

.cficon-radio-inactive:before {
	content: "\0052"
}

.cficon-cancel:before {
	content: "\0053"
}

.cficon-right-arrow-hover:before {
	content: "\0054"
}

.cficon-right-arrow:before {
	content: "\0055"
}

.cficon-search:before {
	content: "\0056"
}

.cficon-truck:before {
	content: "\0057"
}

body.modal-open {
	overflow: hidden
}

#steelcase_configurator_root {
/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
}

#steelcase_configurator_root .row {
	width: auto;
	max-width: none
}

@media (min-width:992px) {
	#steelcase_configurator_root {
		flex-wrap: nowrap
	}
}

#steelcase_configurator_root :root {
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #28a745;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #007bff;
	--secondary: #6c757d;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
	--font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	--font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}

#steelcase_configurator_root *,#steelcase_configurator_root :after,#steelcase_configurator_root :before {
	box-sizing: border-box;
}

#steelcase_configurator_root html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0)
}

#steelcase_configurator_root article,#steelcase_configurator_root aside,#steelcase_configurator_root figcaption,#steelcase_configurator_root figure,#steelcase_configurator_root footer,#steelcase_configurator_root header,#steelcase_configurator_root hgroup,#steelcase_configurator_root main,#steelcase_configurator_root nav,#steelcase_configurator_root section {
	display: block
}

#steelcase_configurator_root body {
	margin: 0;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #fff
}

#steelcase_configurator_root [tabindex="-1"]:focus {
	outline: 0!important
}

#steelcase_configurator_root hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

#steelcase_configurator_root h1,#steelcase_configurator_root h2,#steelcase_configurator_root h3,#steelcase_configurator_root h4,#steelcase_configurator_root h5,#steelcase_configurator_root h6 {
	margin-top: 0;
	margin-bottom: .5rem
}

#steelcase_configurator_root p {
	margin-top: 0;
	margin-bottom: 1rem
}

#steelcase_configurator_root abbr[data-original-title],#steelcase_configurator_root abbr[title] {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none
}

#steelcase_configurator_root address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit
}

#steelcase_configurator_root dl,#steelcase_configurator_root ol,#steelcase_configurator_root ul {
	margin-top: 0;
	margin-bottom: 1rem
}

#steelcase_configurator_root ol ol,#steelcase_configurator_root ol ul,#steelcase_configurator_root ul ol,#steelcase_configurator_root ul ul {
	margin-bottom: 0
}

#steelcase_configurator_root dt {
	font-weight: 700
}

#steelcase_configurator_root dd {
	margin-bottom: .5rem;
	margin-left: 0
}

#steelcase_configurator_root blockquote {
	margin: 0 0 1rem
}

#steelcase_configurator_root b,#steelcase_configurator_root strong {
	font-weight: bolder
}

#steelcase_configurator_root small {
	font-size: 80%
}

#steelcase_configurator_root sub,#steelcase_configurator_root sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline
}

#steelcase_configurator_root sub {
	bottom: -.25em
}

#steelcase_configurator_root sup {
	top: -.5em
}

#steelcase_configurator_root a {
	color: #007bff;
	text-decoration: none;
	background-color: transparent
}

#steelcase_configurator_root a:hover {
	color: #0056b3;
	text-decoration: underline
}

#steelcase_configurator_root a:not([href]):not([tabindex]),#steelcase_configurator_root a:not([href]):not([tabindex]):focus,#steelcase_configurator_root a:not([href]):not([tabindex]):hover {
	color: inherit;
	text-decoration: none
}

#steelcase_configurator_root a:not([href]):not([tabindex]):focus {
	outline: 0
}

#steelcase_configurator_root code,#steelcase_configurator_root kbd,#steelcase_configurator_root pre,#steelcase_configurator_root samp {
	font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
	font-size: 1em
}

#steelcase_configurator_root pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto
}

#steelcase_configurator_root figure {
	margin: 0 0 1rem
}

#steelcase_configurator_root img {
	vertical-align: middle;
	border-style: none
}

#steelcase_configurator_root svg {
	overflow: hidden;
	vertical-align: middle
}

#steelcase_configurator_root table {
	border-collapse: collapse
}

#steelcase_configurator_root caption {
	padding-top: .75rem;
	padding-bottom: .75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom
}

#steelcase_configurator_root th {
	text-align: inherit
}

#steelcase_configurator_root label {
	display: inline-block;
	margin-bottom: .5rem
}

#steelcase_configurator_root button {
	border-radius: 0
}

#steelcase_configurator_root button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color
}

#steelcase_configurator_root button,#steelcase_configurator_root input,#steelcase_configurator_root optgroup,#steelcase_configurator_root select,#steelcase_configurator_root textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit
}

#steelcase_configurator_root button,#steelcase_configurator_root input {
	overflow: visible
}

#steelcase_configurator_root button,#steelcase_configurator_root select {
	text-transform: none
}

#steelcase_configurator_root select {
	word-wrap: normal
}

#steelcase_configurator_root [type=button],#steelcase_configurator_root [type=reset],#steelcase_configurator_root [type=submit],#steelcase_configurator_root button {
	-webkit-appearance: button
}

#steelcase_configurator_root [type=button]:not(:disabled),#steelcase_configurator_root [type=reset]:not(:disabled),#steelcase_configurator_root [type=submit]:not(:disabled),#steelcase_configurator_root button:not(:disabled) {
	cursor: pointer
}

#steelcase_configurator_root [type=button]::-moz-focus-inner,#steelcase_configurator_root [type=reset]::-moz-focus-inner,#steelcase_configurator_root [type=submit]::-moz-focus-inner,#steelcase_configurator_root button::-moz-focus-inner {
	padding: 0;
	border-style: none
}

#steelcase_configurator_root input[type=checkbox],#steelcase_configurator_root input[type=radio] {
	box-sizing: border-box;
	padding: 0
}

#steelcase_configurator_root input[type=date],#steelcase_configurator_root input[type=datetime-local],#steelcase_configurator_root input[type=month],#steelcase_configurator_root input[type=time] {
	-webkit-appearance: listbox
}

#steelcase_configurator_root textarea {
	overflow: auto;
	resize: vertical
}

#steelcase_configurator_root fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0
}

#steelcase_configurator_root legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal
}

#steelcase_configurator_root progress {
	vertical-align: baseline
}

#steelcase_configurator_root [type=number]::-webkit-inner-spin-button,#steelcase_configurator_root [type=number]::-webkit-outer-spin-button {
	height: auto
}

#steelcase_configurator_root [type=search] {
	outline-offset: -2px;
	-webkit-appearance: none
}

#steelcase_configurator_root [type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

#steelcase_configurator_root ::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

#steelcase_configurator_root output {
	display: inline-block
}

#steelcase_configurator_root summary {
	display: list-item;
	cursor: pointer
}

#steelcase_configurator_root template {
	display: none
}

#steelcase_configurator_root [hidden] {
	display: none!important
}

#steelcase_configurator_root .h1,#steelcase_configurator_root .h2,#steelcase_configurator_root .h3,#steelcase_configurator_root .h4,#steelcase_configurator_root .h5,#steelcase_configurator_root .h6,#steelcase_configurator_root h1,#steelcase_configurator_root h2,#steelcase_configurator_root h3,#steelcase_configurator_root h4,#steelcase_configurator_root h5,#steelcase_configurator_root h6 {
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2
}

#steelcase_configurator_root .h1,#steelcase_configurator_root h1 {
	font-size: 2.5rem
}

#steelcase_configurator_root .h2,#steelcase_configurator_root h2 {
	font-size: 2rem
}

#steelcase_configurator_root .h3,#steelcase_configurator_root h3 {
	font-size: 1.75rem
}

#steelcase_configurator_root .h4,#steelcase_configurator_root h4 {
	font-size: 1.5rem
}

#steelcase_configurator_root .h5,#steelcase_configurator_root h5 {
	font-size: 1.25rem
}

#steelcase_configurator_root .h6,#steelcase_configurator_root h6 {
	font-size: 1rem
}

#steelcase_configurator_root .lead {
	font-size: 1.25rem;
	font-weight: 300
}

#steelcase_configurator_root .display-1 {
	font-size: 6rem;
	font-weight: 300;
	line-height: 1.2
}

#steelcase_configurator_root .display-2 {
	font-size: 5.5rem;
	font-weight: 300;
	line-height: 1.2
}

#steelcase_configurator_root .display-3 {
	font-size: 4.5rem;
	font-weight: 300;
	line-height: 1.2
}

#steelcase_configurator_root .display-4 {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2
}

#steelcase_configurator_root hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgba(0,0,0,.1)
}

#steelcase_configurator_root .small,#steelcase_configurator_root small {
	font-size: 80%;
	font-weight: 400
}

#steelcase_configurator_root .mark,#steelcase_configurator_root mark {
	padding: .2em;
	background-color: #fcf8e3
}

#steelcase_configurator_root .list-inline,#steelcase_configurator_root .list-unstyled {
	padding-left: 0;
	list-style: none
}

#steelcase_configurator_root .list-inline-item {
	display: inline-block
}

#steelcase_configurator_root .list-inline-item:not(:last-child) {
	margin-right: .5rem
}

#steelcase_configurator_root .initialism {
	font-size: 90%;
	text-transform: uppercase
}

#steelcase_configurator_root .blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem
}

#steelcase_configurator_root .blockquote-footer {
	display: block;
	font-size: 80%;
	color: #6c757d
}

#steelcase_configurator_root .blockquote-footer:before {
	content: "\2014\00A0"
}

#steelcase_configurator_root .container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

@media (min-width:576px) {
	#steelcase_configurator_root .container {
		max-width: 540px
	}
}

@media (min-width:768px) {
	#steelcase_configurator_root .container {
		max-width: 720px
	}
}

@media (min-width:992px) {
	#steelcase_configurator_root .container {
		max-width: 960px
	}
}

@media (min-width:1200px) {
	#steelcase_configurator_root .container {
		max-width: 1140px
	}
}

#steelcase_configurator_root .container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

#steelcase_configurator_root .row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	padding-top:30px;
}

#steelcase_configurator_root .no-gutters {
	margin-right: 0;
	margin-left: 0
}

#steelcase_configurator_root .no-gutters>.col,#steelcase_configurator_root .no-gutters>[class*=col-] {
	padding-right: 0;
	padding-left: 0
}

#steelcase_configurator_root .col,#steelcase_configurator_root .col-1,#steelcase_configurator_root .col-2,#steelcase_configurator_root .col-3,#steelcase_configurator_root .col-4,#steelcase_configurator_root .col-5,#steelcase_configurator_root .col-6,#steelcase_configurator_root .col-7,#steelcase_configurator_root .col-8,#steelcase_configurator_root .col-9,#steelcase_configurator_root .col-10,#steelcase_configurator_root .col-11,#steelcase_configurator_root .col-12,#steelcase_configurator_root .col-auto,#steelcase_configurator_root .col-lg,#steelcase_configurator_root .col-lg-1,#steelcase_configurator_root .col-lg-2,#steelcase_configurator_root .col-lg-3,#steelcase_configurator_root .col-lg-4,#steelcase_configurator_root .col-lg-5,#steelcase_configurator_root .col-lg-6,#steelcase_configurator_root .col-lg-7,#steelcase_configurator_root .col-lg-8,#steelcase_configurator_root .col-lg-9,#steelcase_configurator_root .col-lg-10,#steelcase_configurator_root .col-lg-11,#steelcase_configurator_root .col-lg-12,#steelcase_configurator_root .col-lg-auto,#steelcase_configurator_root .col-md,#steelcase_configurator_root .col-md-1,#steelcase_configurator_root .col-md-2,#steelcase_configurator_root .col-md-3,#steelcase_configurator_root .col-md-4,#steelcase_configurator_root .col-md-5,#steelcase_configurator_root .col-md-6,#steelcase_configurator_root .col-md-7,#steelcase_configurator_root .col-md-8,#steelcase_configurator_root .col-md-9,#steelcase_configurator_root .col-md-10,#steelcase_configurator_root .col-md-11,#steelcase_configurator_root .col-md-12,#steelcase_configurator_root .col-md-auto,#steelcase_configurator_root .col-sm,#steelcase_configurator_root .col-sm-1,#steelcase_configurator_root .col-sm-2,#steelcase_configurator_root .col-sm-3,#steelcase_configurator_root .col-sm-4,#steelcase_configurator_root .col-sm-5,#steelcase_configurator_root .col-sm-6,#steelcase_configurator_root .col-sm-7,#steelcase_configurator_root .col-sm-8,#steelcase_configurator_root .col-sm-9,#steelcase_configurator_root .col-sm-10,#steelcase_configurator_root .col-sm-11,#steelcase_configurator_root .col-sm-12,#steelcase_configurator_root .col-sm-auto,#steelcase_configurator_root .col-xl,#steelcase_configurator_root .col-xl-1,#steelcase_configurator_root .col-xl-2,#steelcase_configurator_root .col-xl-3,#steelcase_configurator_root .col-xl-4,#steelcase_configurator_root .col-xl-5,#steelcase_configurator_root .col-xl-6,#steelcase_configurator_root .col-xl-7,#steelcase_configurator_root .col-xl-8,#steelcase_configurator_root .col-xl-9,#steelcase_configurator_root .col-xl-10,#steelcase_configurator_root .col-xl-11,#steelcase_configurator_root .col-xl-12,#steelcase_configurator_root .col-xl-auto {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px
}

#steelcase_configurator_root .col {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%
}

#steelcase_configurator_root .col-auto {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%
}

#steelcase_configurator_root .col-1 {
	flex: 0 0 8.33333%;
	max-width: 8.33333%
}

#steelcase_configurator_root .col-2 {
	flex: 0 0 16.66667%;
	max-width: 16.66667%
}

#steelcase_configurator_root .col-3 {
	flex: 0 0 25%;
	max-width: 25%
}

#steelcase_configurator_root .col-4 {
	flex: 0 0 33.33333%;
	max-width: 33.33333%
}

#steelcase_configurator_root .col-5 {
	flex: 0 0 41.66667%;
	max-width: 41.66667%
}

#steelcase_configurator_root .col-6 {
	flex: 0 0 50%;
	max-width: 50%
}

#steelcase_configurator_root .col-7 {
	flex: 0 0 58.33333%;
	max-width: 58.33333%
}

#steelcase_configurator_root .col-8 {
	flex: 0 0 66.66667%;
	max-width: 66.66667%
}

#steelcase_configurator_root .col-9 {
	flex: 0 0 75%;
	max-width: 75%
}

#steelcase_configurator_root .col-10 {
	flex: 0 0 83.33333%;
	max-width: 83.33333%
}

#steelcase_configurator_root .col-11 {
	flex: 0 0 91.66667%;
	max-width: 91.66667%
}

#steelcase_configurator_root .col-12 {
	flex: 0 0 100%;
	max-width: 100%
}

#steelcase_configurator_root .order-first {
	order: -1
}

#steelcase_configurator_root .order-last {
	order: 13
}

#steelcase_configurator_root .order-0 {
	order: 0
}

#steelcase_configurator_root .order-1 {
	order: 1
}

#steelcase_configurator_root .order-2 {
	order: 2
}

#steelcase_configurator_root .order-3 {
	order: 3
}

#steelcase_configurator_root .order-4 {
	order: 4
}

#steelcase_configurator_root .order-5 {
	order: 5
}

#steelcase_configurator_root .order-6 {
	order: 6
}

#steelcase_configurator_root .order-7 {
	order: 7
}

#steelcase_configurator_root .order-8 {
	order: 8
}

#steelcase_configurator_root .order-9 {
	order: 9
}

#steelcase_configurator_root .order-10 {
	order: 10
}

#steelcase_configurator_root .order-11 {
	order: 11
}

#steelcase_configurator_root .order-12 {
	order: 12
}

#steelcase_configurator_root .offset-1 {
	margin-left: 8.33333%
}

#steelcase_configurator_root .offset-2 {
	margin-left: 16.66667%
}

#steelcase_configurator_root .offset-3 {
	margin-left: 25%
}

#steelcase_configurator_root .offset-4 {
	margin-left: 33.33333%
}

#steelcase_configurator_root .offset-5 {
	margin-left: 41.66667%
}

#steelcase_configurator_root .offset-6 {
	margin-left: 50%
}

#steelcase_configurator_root .offset-7 {
	margin-left: 58.33333%
}

#steelcase_configurator_root .offset-8 {
	margin-left: 66.66667%
}

#steelcase_configurator_root .offset-9 {
	margin-left: 75%
}

#steelcase_configurator_root .offset-10 {
	margin-left: 83.33333%
}

#steelcase_configurator_root .offset-11 {
	margin-left: 91.66667%
}

@media (min-width:576px) {
	#steelcase_configurator_root .col-sm {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%
	}

	#steelcase_configurator_root .col-sm-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%
	}

	#steelcase_configurator_root .col-sm-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}

	#steelcase_configurator_root .col-sm-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}

	#steelcase_configurator_root .col-sm-3 {
		flex: 0 0 25%;
		max-width: 25%
	}

	#steelcase_configurator_root .col-sm-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}

	#steelcase_configurator_root .col-sm-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}

	#steelcase_configurator_root .col-sm-6 {
		flex: 0 0 50%;
		max-width: 50%
	}

	#steelcase_configurator_root .col-sm-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}

	#steelcase_configurator_root .col-sm-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}

	#steelcase_configurator_root .col-sm-9 {
		flex: 0 0 75%;
		max-width: 75%
	}

	#steelcase_configurator_root .col-sm-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}

	#steelcase_configurator_root .col-sm-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}

	#steelcase_configurator_root .col-sm-12 {
		flex: 0 0 100%;
		max-width: 100%
	}

	#steelcase_configurator_root .order-sm-first {
		order: -1
	}

	#steelcase_configurator_root .order-sm-last {
		order: 13
	}

	#steelcase_configurator_root .order-sm-0 {
		order: 0
	}

	#steelcase_configurator_root .order-sm-1 {
		order: 1
	}

	#steelcase_configurator_root .order-sm-2 {
		order: 2
	}

	#steelcase_configurator_root .order-sm-3 {
		order: 3
	}

	#steelcase_configurator_root .order-sm-4 {
		order: 4
	}

	#steelcase_configurator_root .order-sm-5 {
		order: 5
	}

	#steelcase_configurator_root .order-sm-6 {
		order: 6
	}

	#steelcase_configurator_root .order-sm-7 {
		order: 7
	}

	#steelcase_configurator_root .order-sm-8 {
		order: 8
	}

	#steelcase_configurator_root .order-sm-9 {
		order: 9
	}

	#steelcase_configurator_root .order-sm-10 {
		order: 10
	}

	#steelcase_configurator_root .order-sm-11 {
		order: 11
	}

	#steelcase_configurator_root .order-sm-12 {
		order: 12
	}

	#steelcase_configurator_root .offset-sm-0 {
		margin-left: 0
	}

	#steelcase_configurator_root .offset-sm-1 {
		margin-left: 8.33333%
	}

	#steelcase_configurator_root .offset-sm-2 {
		margin-left: 16.66667%
	}

	#steelcase_configurator_root .offset-sm-3 {
		margin-left: 25%
	}

	#steelcase_configurator_root .offset-sm-4 {
		margin-left: 33.33333%
	}

	#steelcase_configurator_root .offset-sm-5 {
		margin-left: 41.66667%
	}

	#steelcase_configurator_root .offset-sm-6 {
		margin-left: 50%
	}

	#steelcase_configurator_root .offset-sm-7 {
		margin-left: 58.33333%
	}

	#steelcase_configurator_root .offset-sm-8 {
		margin-left: 66.66667%
	}

	#steelcase_configurator_root .offset-sm-9 {
		margin-left: 75%
	}

	#steelcase_configurator_root .offset-sm-10 {
		margin-left: 83.33333%
	}

	#steelcase_configurator_root .offset-sm-11 {
		margin-left: 91.66667%
	}
}

@media (min-width:768px) {
	#steelcase_configurator_root .col-md {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%
	}

	#steelcase_configurator_root .col-md-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%
	}

	#steelcase_configurator_root .col-md-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}

	#steelcase_configurator_root .col-md-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}

	#steelcase_configurator_root .col-md-3 {
		flex: 0 0 25%;
		max-width: 25%
	}

	#steelcase_configurator_root .col-md-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}

	#steelcase_configurator_root .col-md-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}

	#steelcase_configurator_root .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%
	}

	#steelcase_configurator_root .col-md-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}

	#steelcase_configurator_root .col-md-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}

	#steelcase_configurator_root .col-md-9 {
		flex: 0 0 75%;
		max-width: 75%
	}

	#steelcase_configurator_root .col-md-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}

	#steelcase_configurator_root .col-md-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}

	#steelcase_configurator_root .col-md-12 {
		flex: 0 0 100%;
		max-width: 100%
	}

	#steelcase_configurator_root .order-md-first {
		order: -1
	}

	#steelcase_configurator_root .order-md-last {
		order: 13
	}

	#steelcase_configurator_root .order-md-0 {
		order: 0
	}

	#steelcase_configurator_root .order-md-1 {
		order: 1
	}

	#steelcase_configurator_root .order-md-2 {
		order: 2
	}

	#steelcase_configurator_root .order-md-3 {
		order: 3
	}

	#steelcase_configurator_root .order-md-4 {
		order: 4
	}

	#steelcase_configurator_root .order-md-5 {
		order: 5
	}

	#steelcase_configurator_root .order-md-6 {
		order: 6
	}

	#steelcase_configurator_root .order-md-7 {
		order: 7
	}

	#steelcase_configurator_root .order-md-8 {
		order: 8
	}

	#steelcase_configurator_root .order-md-9 {
		order: 9
	}

	#steelcase_configurator_root .order-md-10 {
		order: 10
	}

	#steelcase_configurator_root .order-md-11 {
		order: 11
	}

	#steelcase_configurator_root .order-md-12 {
		order: 12
	}

	#steelcase_configurator_root .offset-md-0 {
		margin-left: 0
	}

	#steelcase_configurator_root .offset-md-1 {
		margin-left: 8.33333%
	}

	#steelcase_configurator_root .offset-md-2 {
		margin-left: 16.66667%
	}

	#steelcase_configurator_root .offset-md-3 {
		margin-left: 25%
	}

	#steelcase_configurator_root .offset-md-4 {
		margin-left: 33.33333%
	}

	#steelcase_configurator_root .offset-md-5 {
		margin-left: 41.66667%
	}

	#steelcase_configurator_root .offset-md-6 {
		margin-left: 50%
	}

	#steelcase_configurator_root .offset-md-7 {
		margin-left: 58.33333%
	}

	#steelcase_configurator_root .offset-md-8 {
		margin-left: 66.66667%
	}

	#steelcase_configurator_root .offset-md-9 {
		margin-left: 75%
	}

	#steelcase_configurator_root .offset-md-10 {
		margin-left: 83.33333%
	}

	#steelcase_configurator_root .offset-md-11 {
		margin-left: 91.66667%
	}
}

@media (min-width:992px) {
	#steelcase_configurator_root .col-lg {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%
	}

	#steelcase_configurator_root .col-lg-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%
	}

	#steelcase_configurator_root .col-lg-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}

	#steelcase_configurator_root .col-lg-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}

	#steelcase_configurator_root .col-lg-3 {
		flex: 0 0 25%;
		max-width: 25%
	}

	#steelcase_configurator_root .col-lg-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}

	#steelcase_configurator_root .col-lg-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}

	#steelcase_configurator_root .col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%
	}

	#steelcase_configurator_root .col-lg-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}

	#steelcase_configurator_root .col-lg-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}

	#steelcase_configurator_root .col-lg-9 {
		flex: 0 0 75%;
		max-width: 75%
	}

	#steelcase_configurator_root .col-lg-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}

	#steelcase_configurator_root .col-lg-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}

	#steelcase_configurator_root .col-lg-12 {
		flex: 0 0 100%;
		max-width: 100%
	}

	#steelcase_configurator_root .order-lg-first {
		order: -1
	}

	#steelcase_configurator_root .order-lg-last {
		order: 13
	}

	#steelcase_configurator_root .order-lg-0 {
		order: 0
	}

	#steelcase_configurator_root .order-lg-1 {
		order: 1
	}

	#steelcase_configurator_root .order-lg-2 {
		order: 2
	}

	#steelcase_configurator_root .order-lg-3 {
		order: 3
	}

	#steelcase_configurator_root .order-lg-4 {
		order: 4
	}

	#steelcase_configurator_root .order-lg-5 {
		order: 5
	}

	#steelcase_configurator_root .order-lg-6 {
		order: 6
	}

	#steelcase_configurator_root .order-lg-7 {
		order: 7
	}

	#steelcase_configurator_root .order-lg-8 {
		order: 8
	}

	#steelcase_configurator_root .order-lg-9 {
		order: 9
	}

	#steelcase_configurator_root .order-lg-10 {
		order: 10
	}

	#steelcase_configurator_root .order-lg-11 {
		order: 11
	}

	#steelcase_configurator_root .order-lg-12 {
		order: 12
	}

	#steelcase_configurator_root .offset-lg-0 {
		margin-left: 0
	}

	#steelcase_configurator_root .offset-lg-1 {
		margin-left: 8.33333%
	}

	#steelcase_configurator_root .offset-lg-2 {
		margin-left: 16.66667%
	}

	#steelcase_configurator_root .offset-lg-3 {
		margin-left: 25%
	}

	#steelcase_configurator_root .offset-lg-4 {
		margin-left: 33.33333%
	}

	#steelcase_configurator_root .offset-lg-5 {
		margin-left: 41.66667%
	}

	#steelcase_configurator_root .offset-lg-6 {
		margin-left: 50%
	}

	#steelcase_configurator_root .offset-lg-7 {
		margin-left: 58.33333%
	}

	#steelcase_configurator_root .offset-lg-8 {
		margin-left: 66.66667%
	}

	#steelcase_configurator_root .offset-lg-9 {
		margin-left: 75%
	}

	#steelcase_configurator_root .offset-lg-10 {
		margin-left: 83.33333%
	}

	#steelcase_configurator_root .offset-lg-11 {
		margin-left: 91.66667%
	}
}

@media (min-width:1200px) {
	#steelcase_configurator_root .col-xl {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%
	}

	#steelcase_configurator_root .col-xl-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%
	}

	#steelcase_configurator_root .col-xl-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}

	#steelcase_configurator_root .col-xl-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}

	#steelcase_configurator_root .col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%
	}

	#steelcase_configurator_root .col-xl-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}

	#steelcase_configurator_root .col-xl-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}

	#steelcase_configurator_root .col-xl-62 {
		flex: 0 0 20%;
		max-width: 20%
	}
	#steelcase_configurator_root .col-xl-62 .multiple {
		flex: 0 0 50%;
		max-width: 50%
	}
	

	#steelcase_configurator_root .col-xl-6 {
		flex: 0 0 80%;
		max-width: 80%
	}
	#steelcase_configurator_root .col-xl-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}

	#steelcase_configurator_root .col-xl-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}

	#steelcase_configurator_root .col-xl-9 {
		flex: 0 0 75%;
		max-width: 75%
	}

	#steelcase_configurator_root .col-xl-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}

	#steelcase_configurator_root .col-xl-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}

	#steelcase_configurator_root .col-xl-12 {
		flex: 0 0 100%;
		max-width: 100%
	}

	#steelcase_configurator_root .order-xl-first {
		order: -1
	}

	#steelcase_configurator_root .order-xl-last {
		order: 13
	}

	#steelcase_configurator_root .order-xl-0 {
		order: 0
	}

	#steelcase_configurator_root .order-xl-1 {
		order: 1
	}

	#steelcase_configurator_root .order-xl-2 {
		order: 2
	}

	#steelcase_configurator_root .order-xl-3 {
		order: 3
	}

	#steelcase_configurator_root .order-xl-4 {
		order: 4
	}

	#steelcase_configurator_root .order-xl-5 {
		order: 5
	}

	#steelcase_configurator_root .order-xl-6 {
		order: 6
	}

	#steelcase_configurator_root .order-xl-7 {
		order: 7
	}

	#steelcase_configurator_root .order-xl-8 {
		order: 8
	}

	#steelcase_configurator_root .order-xl-9 {
		order: 9
	}

	#steelcase_configurator_root .order-xl-10 {
		order: 10
	}

	#steelcase_configurator_root .order-xl-11 {
		order: 11
	}

	#steelcase_configurator_root .order-xl-12 {
		order: 12
	}

	#steelcase_configurator_root .offset-xl-0 {
		margin-left: 0
	}

	#steelcase_configurator_root .offset-xl-1 {
		margin-left: 8.33333%
	}

	#steelcase_configurator_root .offset-xl-2 {
		margin-left: 16.66667%
	}

	#steelcase_configurator_root .offset-xl-3 {
		margin-left: 25%
	}

	#steelcase_configurator_root .offset-xl-4 {
		margin-left: 33.33333%
	}

	#steelcase_configurator_root .offset-xl-5 {
		margin-left: 41.66667%
	}

	#steelcase_configurator_root .offset-xl-6 {
		margin-left: 50%
	}

	#steelcase_configurator_root .offset-xl-7 {
		margin-left: 58.33333%
	}

	#steelcase_configurator_root .offset-xl-8 {
		margin-left: 66.66667%
	}

	#steelcase_configurator_root .offset-xl-9 {
		margin-left: 75%
	}

	#steelcase_configurator_root .offset-xl-10 {
		margin-left: 83.33333%
	}

	#steelcase_configurator_root .offset-xl-11 {
		margin-left: 91.66667%
	}
}

#steelcase_configurator_root .btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	#steelcase_configurator_root .btn {
		transition: none
	}
}

#steelcase_configurator_root .btn:hover {
	color: #212529;
	text-decoration: none
}

#steelcase_configurator_root .btn.focus,#steelcase_configurator_root .btn:focus {
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

#steelcase_configurator_root .btn.disabled,#steelcase_configurator_root .btn:disabled {
	opacity: .65
}

#steelcase_configurator_root a.btn.disabled,#steelcase_configurator_root fieldset:disabled a.btn {
	pointer-events: none
}

#steelcase_configurator_root .btn-primary {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff
}

#steelcase_configurator_root .btn-primary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc
}

#steelcase_configurator_root .btn-primary.focus,#steelcase_configurator_root .btn-primary:focus {
	box-shadow: 0 0 0 .2rem rgba(38,143,255,.5)
}

#steelcase_configurator_root .btn-primary.disabled,#steelcase_configurator_root .btn-primary:disabled {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff
}

#steelcase_configurator_root .btn-primary:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-primary:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #0062cc;
	border-color: #005cbf
}

#steelcase_configurator_root .btn-primary:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-primary:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(38,143,255,.5)
}

#steelcase_configurator_root .btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

#steelcase_configurator_root .btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62
}

#steelcase_configurator_root .btn-secondary.focus,#steelcase_configurator_root .btn-secondary:focus {
	box-shadow: 0 0 0 .2rem rgba(130,138,145,.5)
}

#steelcase_configurator_root .btn-secondary.disabled,#steelcase_configurator_root .btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

#steelcase_configurator_root .btn-secondary:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-secondary:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #545b62;
	border-color: #4e555b
}

#steelcase_configurator_root .btn-secondary:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-secondary:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(130,138,145,.5)
}

#steelcase_configurator_root .btn-success {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745
}

#steelcase_configurator_root .btn-success:hover {
	color: #fff;
	background-color: #218838;
	border-color: #1e7e34
}

#steelcase_configurator_root .btn-success.focus,#steelcase_configurator_root .btn-success:focus {
	box-shadow: 0 0 0 .2rem rgba(72,180,97,.5)
}

#steelcase_configurator_root .btn-success.disabled,#steelcase_configurator_root .btn-success:disabled {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745
}

#steelcase_configurator_root .btn-success:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-success:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-success.dropdown-toggle {
	color: #fff;
	background-color: #1e7e34;
	border-color: #1c7430
}

#steelcase_configurator_root .btn-success:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-success:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(72,180,97,.5)
}

#steelcase_configurator_root .btn-info {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8
}

#steelcase_configurator_root .btn-info:hover {
	color: #fff;
	background-color: #138496;
	border-color: #117a8b
}

#steelcase_configurator_root .btn-info.focus,#steelcase_configurator_root .btn-info:focus {
	box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
}

#steelcase_configurator_root .btn-info.disabled,#steelcase_configurator_root .btn-info:disabled {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8
}

#steelcase_configurator_root .btn-info:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-info:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-info.dropdown-toggle {
	color: #fff;
	background-color: #117a8b;
	border-color: #10707f
}

#steelcase_configurator_root .btn-info:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-info:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
}

#steelcase_configurator_root .btn-warning {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107
}

#steelcase_configurator_root .btn-warning:hover {
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00
}

#steelcase_configurator_root .btn-warning.focus,#steelcase_configurator_root .btn-warning:focus {
	box-shadow: 0 0 0 .2rem rgba(222,170,12,.5)
}

#steelcase_configurator_root .btn-warning.disabled,#steelcase_configurator_root .btn-warning:disabled {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107
}

#steelcase_configurator_root .btn-warning:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-warning:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-warning.dropdown-toggle {
	color: #212529;
	background-color: #d39e00;
	border-color: #c69500
}

#steelcase_configurator_root .btn-warning:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-warning:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(222,170,12,.5)
}

#steelcase_configurator_root .btn-danger {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

#steelcase_configurator_root .btn-danger:hover {
	color: #fff;
	background-color: #c82333;
	border-color: #bd2130
}

#steelcase_configurator_root .btn-danger.focus,#steelcase_configurator_root .btn-danger:focus {
	box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
}

#steelcase_configurator_root .btn-danger.disabled,#steelcase_configurator_root .btn-danger:disabled {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

#steelcase_configurator_root .btn-danger:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-danger:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #bd2130;
	border-color: #b21f2d
}

#steelcase_configurator_root .btn-danger:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-danger:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
}

#steelcase_configurator_root .btn-light {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

#steelcase_configurator_root .btn-light:hover {
	color: #212529;
	background-color: #e2e6ea;
	border-color: #dae0e5
}

#steelcase_configurator_root .btn-light.focus,#steelcase_configurator_root .btn-light:focus {
	box-shadow: 0 0 0 .2rem rgba(216,217,219,.5)
}

#steelcase_configurator_root .btn-light.disabled,#steelcase_configurator_root .btn-light:disabled {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

#steelcase_configurator_root .btn-light:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-light:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-light.dropdown-toggle {
	color: #212529;
	background-color: #dae0e5;
	border-color: #d3d9df
}

#steelcase_configurator_root .btn-light:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-light:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(216,217,219,.5)
}

#steelcase_configurator_root .btn-dark {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

#steelcase_configurator_root .btn-dark:hover {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124
}

#steelcase_configurator_root .btn-dark.focus,#steelcase_configurator_root .btn-dark:focus {
	box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
}

#steelcase_configurator_root .btn-dark.disabled,#steelcase_configurator_root .btn-dark:disabled {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

#steelcase_configurator_root .btn-dark:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-dark:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #1d2124;
	border-color: #171a1d
}

#steelcase_configurator_root .btn-dark:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-dark:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
}

#steelcase_configurator_root .btn-outline-primary {
	color: #007bff;
	border-color: #007bff
}

#steelcase_configurator_root .btn-outline-primary:hover {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff
}

#steelcase_configurator_root .btn-outline-primary.focus,#steelcase_configurator_root .btn-outline-primary:focus {
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
}

#steelcase_configurator_root .btn-outline-primary.disabled,#steelcase_configurator_root .btn-outline-primary:disabled {
	color: #007bff;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-primary:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-primary:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff
}

#steelcase_configurator_root .btn-outline-primary:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
}

#steelcase_configurator_root .btn-outline-secondary {
	color: #6c757d;
	border-color: #6c757d
}

#steelcase_configurator_root .btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

#steelcase_configurator_root .btn-outline-secondary.focus,#steelcase_configurator_root .btn-outline-secondary:focus {
	box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
}

#steelcase_configurator_root .btn-outline-secondary.disabled,#steelcase_configurator_root .btn-outline-secondary:disabled {
	color: #6c757d;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-secondary:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-secondary:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-secondary.dropdown-toggle {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

#steelcase_configurator_root .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
}

#steelcase_configurator_root .btn-outline-success {
	color: #28a745;
	border-color: #28a745
}

#steelcase_configurator_root .btn-outline-success:hover {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745
}

#steelcase_configurator_root .btn-outline-success.focus,#steelcase_configurator_root .btn-outline-success:focus {
	box-shadow: 0 0 0 .2rem rgba(40,167,69,.5)
}

#steelcase_configurator_root .btn-outline-success.disabled,#steelcase_configurator_root .btn-outline-success:disabled {
	color: #28a745;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-success:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-success:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-success.dropdown-toggle {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745
}

#steelcase_configurator_root .btn-outline-success:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(40,167,69,.5)
}

#steelcase_configurator_root .btn-outline-info {
	color: #17a2b8;
	border-color: #17a2b8
}

#steelcase_configurator_root .btn-outline-info:hover {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8
}

#steelcase_configurator_root .btn-outline-info.focus,#steelcase_configurator_root .btn-outline-info:focus {
	box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

#steelcase_configurator_root .btn-outline-info.disabled,#steelcase_configurator_root .btn-outline-info:disabled {
	color: #17a2b8;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-info:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-info:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-info.dropdown-toggle {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8
}

#steelcase_configurator_root .btn-outline-info:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

#steelcase_configurator_root .btn-outline-warning {
	color: #ffc107;
	border-color: #ffc107
}

#steelcase_configurator_root .btn-outline-warning:hover {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107
}

#steelcase_configurator_root .btn-outline-warning.focus,#steelcase_configurator_root .btn-outline-warning:focus {
	box-shadow: 0 0 0 .2rem rgba(255,193,7,.5)
}

#steelcase_configurator_root .btn-outline-warning.disabled,#steelcase_configurator_root .btn-outline-warning:disabled {
	color: #ffc107;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-warning:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-warning:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-warning.dropdown-toggle {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107
}

#steelcase_configurator_root .btn-outline-warning:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(255,193,7,.5)
}

#steelcase_configurator_root .btn-outline-danger {
	color: #dc3545;
	border-color: #dc3545
}

#steelcase_configurator_root .btn-outline-danger:hover {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

#steelcase_configurator_root .btn-outline-danger.focus,#steelcase_configurator_root .btn-outline-danger:focus {
	box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

#steelcase_configurator_root .btn-outline-danger.disabled,#steelcase_configurator_root .btn-outline-danger:disabled {
	color: #dc3545;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-danger:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-danger:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-danger.dropdown-toggle {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

#steelcase_configurator_root .btn-outline-danger:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

#steelcase_configurator_root .btn-outline-light {
	color: #f8f9fa;
	border-color: #f8f9fa
}

#steelcase_configurator_root .btn-outline-light:hover {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

#steelcase_configurator_root .btn-outline-light.focus,#steelcase_configurator_root .btn-outline-light:focus {
	box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
}

#steelcase_configurator_root .btn-outline-light.disabled,#steelcase_configurator_root .btn-outline-light:disabled {
	color: #f8f9fa;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-light:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-light:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-light.dropdown-toggle {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

#steelcase_configurator_root .btn-outline-light:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
}

#steelcase_configurator_root .btn-outline-dark {
	color: #343a40;
	border-color: #343a40
}

#steelcase_configurator_root .btn-outline-dark:hover {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

#steelcase_configurator_root .btn-outline-dark.focus,#steelcase_configurator_root .btn-outline-dark:focus {
	box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

#steelcase_configurator_root .btn-outline-dark.disabled,#steelcase_configurator_root .btn-outline-dark:disabled {
	color: #343a40;
	background-color: transparent
}

#steelcase_configurator_root .btn-outline-dark:not(:disabled):not(.disabled).active,#steelcase_configurator_root .btn-outline-dark:not(:disabled):not(.disabled):active,.show>#steelcase_configurator_root .btn-outline-dark.dropdown-toggle {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

#steelcase_configurator_root .btn-outline-dark:not(:disabled):not(.disabled).active:focus,#steelcase_configurator_root .btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>#steelcase_configurator_root .btn-outline-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

#steelcase_configurator_root .btn-link {
	font-weight: 400;
	color: #007bff;
	text-decoration: none
}

#steelcase_configurator_root .btn-link:hover {
	color: #0056b3;
	text-decoration: underline
}

#steelcase_configurator_root .btn-link.focus,#steelcase_configurator_root .btn-link:focus {
	text-decoration: underline;
	box-shadow: none
}

#steelcase_configurator_root .btn-link.disabled,#steelcase_configurator_root .btn-link:disabled {
	color: #6c757d;
	pointer-events: none
}

#steelcase_configurator_root .btn-lg {
	padding: .5rem 1rem;
	font-size: 1.25rem;
	line-height: 1.5;
	border-radius: .3rem
}

#steelcase_configurator_root .btn-sm {
	padding: .25rem .5rem;
	font-size: .875rem;
	line-height: 1.5;
	border-radius: .2rem
}

#steelcase_configurator_root .btn-block {
	display: block;
	width: 100%
}

#steelcase_configurator_root .btn-block+.btn-block {
	margin-top: .5rem
}

#steelcase_configurator_root input[type=button].btn-block,#steelcase_configurator_root input[type=reset].btn-block,#steelcase_configurator_root input[type=submit].btn-block {
	width: 100%
}

#steelcase_configurator_root .slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

#steelcase_configurator_root .slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0
}

#steelcase_configurator_root .slick-list:focus {
	outline: none
}

#steelcase_configurator_root .slick-list.dragging {
	cursor: pointer;
	cursor: hand
}

#steelcase_configurator_root .slick-slider .slick-list,#steelcase_configurator_root .slick-slider .slick-track {
	transform: translateZ(0)
}

#steelcase_configurator_root .slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto
}

#steelcase_configurator_root .slick-track:after,#steelcase_configurator_root .slick-track:before {
	content: "";
	display: table
}

#steelcase_configurator_root .slick-track:after {
	clear: both
}

.slick-loading #steelcase_configurator_root .slick-track {
	visibility: hidden
}

#steelcase_configurator_root .slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none
}[dir=rtl] #steelcase_configurator_root .slick-slide {
	float: right
}

#steelcase_configurator_root .slick-slide img {
	display: block
}

#steelcase_configurator_root .slick-slide.slick-loading img {
	display: none
}

#steelcase_configurator_root .slick-slide.dragging img {
	pointer-events: none
}

#steelcase_configurator_root .slick-initialized .slick-slide {
	display: block
}

#steelcase_configurator_root .slick-loading .slick-slide {
	visibility: hidden
}

#steelcase_configurator_root .slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent
}

#steelcase_configurator_root .slick-arrow.slick-hidden {
	display: none
}

#steelcase_configurator_root .slick-next,#steelcase_configurator_root .slick-prev {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	border: none;
	outline: none
}

#steelcase_configurator_root .slick-next:focus,#steelcase_configurator_root .slick-next:hover,#steelcase_configurator_root .slick-prev:focus,#steelcase_configurator_root .slick-prev:hover {
	outline: none;
	background: transparent;
	color: transparent
}

#steelcase_configurator_root .slick-next:focus:before,#steelcase_configurator_root .slick-next:hover:before,#steelcase_configurator_root .slick-prev:focus:before,#steelcase_configurator_root .slick-prev:hover:before {
	opacity: 1
}

#steelcase_configurator_root .slick-next.slick-disabled:before,#steelcase_configurator_root .slick-prev.slick-disabled:before {
	opacity: .25
}

#steelcase_configurator_root .slick-next:before,#steelcase_configurator_root .slick-prev:before {
	font-family: "slick";
	font-size: 20px;
	line-height: 1;
	color: #fff;
	opacity: .75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#steelcase_configurator_root .slick-prev {
	left: -25px
}[dir=rtl] #steelcase_configurator_root .slick-prev {
	left: auto;
	right: -25px
}

#steelcase_configurator_root .slick-prev:before {
	content: "â†"
}[dir=rtl] #steelcase_configurator_root .slick-prev:before {
	content: "â†’"
}

#steelcase_configurator_root .slick-next {
	right: -25px
}[dir=rtl] #steelcase_configurator_root .slick-next {
	left: -25px;
	right: auto
}

#steelcase_configurator_root .slick-next:before {
	content: "â†’"
}[dir=rtl] #steelcase_configurator_root .slick-next:before {
	content: "â†"
}

#steelcase_configurator_root .slick-dotted.slick-slider {
	margin-bottom: 30px
}

#steelcase_configurator_root .slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%
}

#steelcase_configurator_root .slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer
}

#steelcase_configurator_root .slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 5px;
	cursor: pointer
}

#steelcase_configurator_root .slick-dots li button:focus,#steelcase_configurator_root .slick-dots li button:hover {
	outline: none
}

#steelcase_configurator_root .slick-dots li button:focus:before,#steelcase_configurator_root .slick-dots li button:hover:before {
	opacity: 1
}

#steelcase_configurator_root .slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "â€¢";
	width: 20px;
	height: 20px;
	font-family: "slick";
	font-size: 6px;
	line-height: 20px;
	text-align: center;
	color: #000;
	opacity: .25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

#steelcase_configurator_root .slick-dots li.slick-active button:before {
	color: #000;
	opacity: .75
}

@-webkit-keyframes configuratorScaleSize {
	0% {
		transform: scale(2)
	}

	25% {
		transform: scale(2)
	}

	26% {
		transform: scale(1)
	}

	to {
		transform: scale(1)
	}
}

@keyframes configuratorScaleSize {
	0% {
		transform: scale(2)
	}

	25% {
		transform: scale(2)
	}

	26% {
		transform: scale(1)
	}

	to {
		transform: scale(1)
	}
}

#steelcase_configurator_root .configurator-loader-wrap {
	height: 100%;
	display: none
}

#steelcase_configurator_root .configurator-loader-wrap .configurator-spinner {
	width: 100px;
	height: 100%;
	transform: translate(-50%,-50%);
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center
}

#steelcase_configurator_root .configurator-loader-wrap .configurator-spinner i {
	background-color: #6f6f6f;
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	margin-top: -4px;
	-webkit-animation: configuratorScaleSize .8s linear infinite both;
	animation: configuratorScaleSize .8s linear infinite both
}

#steelcase_configurator_root .configurator-loader-wrap .configurator-spinner i.cfg-sq-1 {
	left: 28%
}

#steelcase_configurator_root .configurator-loader-wrap .configurator-spinner i.cfg-sq-2 {
	left: 50%;
	margin-left: -4%;
	-webkit-animation-delay: .2s;
	animation-delay: .2s
}

#steelcase_configurator_root .configurator-loader-wrap .configurator-spinner i.cfg-sq-3 {
	right: 28%;
	-webkit-animation-delay: .4s;
	animation-delay: .4s
}

#steelcase_configurator_root .configurator-loader-wrap {
	display: block
}

#steelcase_configurator_root #configuratorContainer h1 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 24px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.08;
	letter-spacing: normal;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer h3 {
	text-transform: uppercase;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer h3,#steelcase_configurator_root #configuratorContainer h4 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer h4 {
	color: #191919;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .widget h1 {
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer {
	background: #fff
}

#steelcase_configurator_root #configuratorContainer .widget.checkout,#steelcase_configurator_root #configuratorContainer .widget.priceList {
	display: flex
}

#steelcase_configurator_root #configuratorContainer .widget.checkout .btn,#steelcase_configurator_root #configuratorContainer .widget.priceList .btn {
	border-radius: 0;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	line-height: 28px;
	letter-spacing: normal;
	width: 100%;
	height: 40px;
	padding: 6px 12px
}

#steelcase_configurator_root #configuratorContainer .widget.checkout .btn .btn-icon,#steelcase_configurator_root #configuratorContainer .widget.priceList .btn .btn-icon {
	margin-right: 10px;
	height: 16px;
	width: 16px;
	font-size: 16px
}

#steelcase_configurator_root #configuratorContainer .widget.checkout .btn .btn-icon.cficon-heart-outline,#steelcase_configurator_root #configuratorContainer .widget.priceList .btn .btn-icon.cficon-heart-outline {
	position: relative;
	top: 3px
}

#steelcase_configurator_root #configuratorContainer .widget.checkout .btn-grey,#steelcase_configurator_root #configuratorContainer .widget.priceList .btn-grey {
	/*background-color: #6f6f6f;
	color: #fff;
	border: 1px solid #6f6f6f*/
	background-color:#ffffff;
		color:#525459;
		border: 1px solid #FF7F2F;
}

#steelcase_configurator_root #configuratorContainer .widget.checkout.multiple .btn,#steelcase_configurator_root #configuratorContainer .widget.priceList.multiple .btn {
	width: 15%
}

#steelcase_configurator_root #configuratorContainer .widget.checkout.multiple .btn:first-of-type,#steelcase_configurator_root #configuratorContainer .widget.priceList.multiple .btn:first-of-type {
	margin-right: 5px
}

#steelcase_configurator_root #configuratorContainer .widget.checkout.multiple .btn:last-of-type,#steelcase_configurator_root #configuratorContainer .widget.priceList.multiple .btn:last-of-type {
	margin-left: 5px
}

#steelcase_configurator_root #configuratorContainer .widget.productDescription {
	padding-top: 0
}

#steelcase_configurator_root #configuratorContainer .widget .description-container img {
	max-width: 100%;
	height: auto
}

#steelcase_configurator_root #configuratorContainer .widget .selectContainer {
	position: relative;
	border: 1px solid #e0e0e0;
	padding: 13px 28px 11px 12px;
	cursor: pointer
}

#steelcase_configurator_root #configuratorContainer .widget .selectContainer:after {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -6px;
	display: block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	line-height: 8px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\0042";
	font-size: 8px;
	right: 12px;
	z-index: 50
}

#steelcase_configurator_root #configuratorContainer .widget .popoverWidget {
	position: absolute;
	top: -2px;
	left: -1px;
	right: -1px;
	height: 0;
	overflow: hidden;
	box-shadow: 0 1px 5px 1px rgba(25,25,25,.2);
	opacity: 0;
	transition: .25s ease-in-out;
	background-color: #fff;
	border-radius: 4px;
	z-index: 60
}

#steelcase_configurator_root #configuratorContainer .widget .popoverWidget.expanded {
	height: auto;
	box-shadow: 0 1px 5px 1px rgba(25,25,25,.2);
	opacity: 1
}

#steelcase_configurator_root #configuratorContainer .widget .popoverWidget .option {
	padding: 12px 12px 12px 40px;
	position: relative
}

#steelcase_configurator_root #configuratorContainer .widget .popoverWidget .option:hover {
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .widget .popoverWidget .option.selected:before {
	position: absolute;
	left: 14px;
	top: 50%;
	margin-top: -6px;
	display: block;
	content: "";
	width: 10px;
	height: 5px;
	border-color: #6f6f6f;
	border-style: solid;
	border-width: 2px 2px 0 0;
	transform: rotate(135deg);
	transition: .25s ease-in-out
}

#steelcase_configurator_root #configuratorContainer .widget.priceList {
	padding-bottom: 12px
}

#steelcase_configurator_root #configuratorContainer .widget.priceList .priceContainer {
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 48px
}

#steelcase_configurator_root #configuratorContainer .widget.priceList h1 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .widget.priceList h3 {
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f;
	text-transform: none;
	margin: 0
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer {
	position: relative;
	display: block
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover {
	box-shadow: 0 1px 5px 1px rgba(25,25,25,.2);
	position: absolute;
	background: #fff;
	bottom: 0;
	left: 0;
	z-index: 900;
	min-width: 150px;
	border-radius: 3px;
	margin: 0;
	display: block;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: .25s ease-in-out;
	visibility: hidden
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover.expanded {
	visibility: visible;
	max-height: 99999px;
	opacity: 1
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dl {
	margin: 0
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dt {
	text-transform: uppercase;
	background-color: #f0f0f0;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 10px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.6;
	letter-spacing: normal;
	color: #6f6f6f;
	padding: 8px 16px;
	margin-bottom: 6px;
	margin-top: 6px;
	text-align: left
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dt:first-of-type {
	margin-top: 0
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd {
	padding: 6px 16px;
	margin-bottom: 0;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 400
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd .span-link,#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd a {
	display: block;
	white-space: nowrap;
	cursor: pointer
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd .span-link:hover,#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd a:hover {
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd .span-link,#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd a {
	text-decoration: none;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .downloadsContainer .downloadsPopover dd:last-of-type {
	padding-bottom: 12px
}

#steelcase_configurator_root #configuratorContainer .notes a {
	text-decoration: none
}

#steelcase_configurator_root #configuratorContainer .notes a:hover strong {
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .container.lightConfigurator {
	position: relative
}

#steelcase_configurator_root #configuratorContainer .customize-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: hsla(0,0%,100%,.95);
	display: flex;
	align-items: center;
	justify-content: center
}

#steelcase_configurator_root #configuratorContainer .customize-overlay .overlay-content {
	text-align: center;
	width: 100%;
	max-width: 280px
}

#steelcase_configurator_root #configuratorContainer .customize-overlay h2 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #6f6f6f;
	margin-top: 16px
}

@media (max-width:991px) {
	#steelcase_configurator_root #configuratorContainer .customize-overlay {
		align-items: start
	}

	#steelcase_configurator_root #configuratorContainer .customize-overlay .overlay-content {
		margin-top: 64px
	}
}

#steelcase_configurator_root #configuratorContainer .productPreview .product-gallery img {
	max-width: 80px;
	padding: 5px
}

#steelcase_configurator_root #configuratorContainer .quantityField {
	float: right;
	width: 100%;
	max-width: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e0e0e0;
	padding: 12px;
	height: 40px
}

#steelcase_configurator_root #configuratorContainer .quantityField span.quantityText {
	flex-grow: 1;
	font-size: 14px;
	font-stretch: normal;
	font-style: normal;
	line-height: 16px;
	letter-spacing: normal;
	text-align: center;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 400
}

#steelcase_configurator_root #configuratorContainer .quantityField button {
	border: none;
	vertical-align: bottom
}

#steelcase_configurator_root #configuratorContainer .quantityField button span {
	color: #6f6f6f;
	font-size: 10px
}

#steelcase_configurator_root #configuratorContainer .quantityField button span.disabled {
	color: #e3e3e3
}

#steelcase_configurator_root #configuratorContainer .quickship-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center
}

#steelcase_configurator_root #configuratorContainer .quickship-empty .quickship-message h2 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	margin-top: 16px;
	padding: 0 68px;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .previewContainer>header {
	grid-area: previewHeader;
	background-color: #fff;
	padding: 20px
}

#steelcase_configurator_root #configuratorContainer .previewContainer>header .brand {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #191919;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .previewContainer>header .productName {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 24px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.08;
	letter-spacing: normal;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .previewContainer>footer {
	grid-area: previewFooter;
	background-color: #fff
}

#steelcase_configurator_root #configuratorContainer .previewContainer>section {
	grid-area: previewMain;
	background-color: #fff
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer>header {
	grid-area: sidebarHeader;
	z-index: 900
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer section {
	grid-area: sidebarMain;
	height: calc(100vh - 238px);
	overflow-y: auto
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer.condensed .sidebarContentContainer section,#steelcase_configurator_root #configuratorContainer .sidebarContainer .sidebarContentContainer.secondary section {
	height: calc(100vh - 130px)
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .sidebarContentContainer.displaySecondary section {
	height: calc(100vh - 176px)
}

#steelcase_configurator_root #configuratorContainer .extended__footer-ships {
	text-align: center;
	border-top: 1px solid #e0e0e0;
	height: 48px
}

#steelcase_configurator_root #configuratorContainer .extended__footer-ships h4 {
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f;
	margin: 16px 0 0
}

#steelcase_configurator_root #configuratorContainer .image-modal-container {
	height: 100%;
	width: 100%;
	background-color: rgba(25,25,25,.4);
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center
}

#steelcase_configurator_root #configuratorContainer .image-modal-container h1 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 16px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .image-modal-container ul {
	padding-left: 0;
	height: 36px;
	margin-bottom: -1px;
	border-bottom: 1px solid #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .image-modal-container ul li {
	list-style: none;
	display: inline-block;
	padding: 10px 0;
	height: 36px;
	margin: 0 0 0 20px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #191919;
	text-transform: uppercase;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .image-modal-container ul li:first-of-type {
	margin-left: 0
}

#steelcase_configurator_root #configuratorContainer .image-modal-container ul li:hover {
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .image-modal-container ul li.active {
	border-bottom: 2px solid #191919;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .image-modal-container ul li.active:hover {
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .image-modal-container .close-button {
	position: absolute;
	right: 20px;
	top: 20px
}

#steelcase_configurator_root #configuratorContainer .image-modal-container .image-modal {
	background-color: #fff;
	position: relative;
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
	padding: 20px
}

#steelcase_configurator_root #configuratorContainer .image-modal-container .image-modal .image-wrapper {
	margin-top: 20px;
	width: 100%;
	background: #fff
}

#steelcase_configurator_root #configuratorContainer .image-modal-container .image-modal .image-container {
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
	height: 100%;
	width: 100%
}

#steelcase_configurator_root #configuratorContainer .widget-buttons button {
	height: 76px;
	width: 50%;
	border-left: none;
	border-right: none
}

#steelcase_configurator_root #configuratorContainer .widget-buttons button:first-of-type {
	border-right: 1px solid #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .widget-buttons button:hover {
	border-color: #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .previewContainer {
	background-color: #fff;
	grid-area: previewContent;
	display: grid;
	grid-template-areas: "previewHeader" "previewMain" "previewFooter"
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer {
	background-color: #fff;
	grid-area: sidebarContainer;
	display: grid;
	grid-template-areas: "sidebarHeader" "sidebarMain"
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal {
	position: fixed;
	top: 0;
	bottom: 0;
	background: #fff;
	left: 50%;
	top: 50%;
	z-index: 9999
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal .gridContainer {
	overflow: auto;
	height: 100vh;
	display: grid;
	grid-template-columns: auto 417px;
	grid-template-areas: "previewContent sidebarContainer";
	overflow: hidden
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal .slick-slider,#steelcase_configurator_root #configuratorContainer .full-screen-modal .slick-slider .slick-list {
	height: 100%
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .close-button {
	position: absolute;
	left: auto;
	right: 21px;
	top: 21px;
	z-index: 9999
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-arrow {
	position: absolute;
	z-index: 400
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-arrow.slick-prev {
	left: 50%;
	margin-left: -400px
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-arrow.slick-next {
	right: 50%;
	margin-right: -400px
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-track {
	height: 100%;
	text-align: center
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-track .slick-slide>div {
	height: 100%
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-track div,#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-track img {
	margin: 0 auto
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .modal__swatch__item {
	height: 100%;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 400;
	font-size: 12px
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .modal__swatch__item .modal__swatch__item__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%
}

#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .modal__swatch__item img {
	width: 500px;
	height: auto;
	max-width: 100%;
	padding-bottom: 16px
}

@media screen and (max-width:959px) {
	#steelcase_configurator_root #configuratorContainer .full-screen-modal .modal__swatch__item .modal__swatch__item__inner {
		display: block!important;
		max-width: 100%;
		width: 500px;
		padding: 130px 20px;
		margin: 0 auto
	}

	#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch {
		text-align: left
	}

	#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .modal__swatch__item .modal__swatch__item__inner {
		text-align: left!important
	}

	#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-arrow {
		position: absolute;
		z-index: 400
	}

	#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-arrow.slick-prev {
		left: auto;
		right: 0;
		top: auto;
		bottom: 20px;
		margin-right: 70px
	}

	#steelcase_configurator_root #configuratorContainer .full-screen-modal.modal__swatch .slick-arrow.slick-next {
		left: auto;
		right: 0;
		top: auto;
		bottom: 20px;
		margin-right: 20px
	}
}

#steelcase_configurator_root #configuratorContainer .previewContainer {
	grid-template-rows: 70px auto 72px;
	grid-template-columns: 100%;
	height: 100vh
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer {
	grid-template-rows: 48px auto;
	grid-template-columns: 100%;
	height: 100vh;
	overflow: hidden
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .selector {
	margin-top: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .selector .selectContainer {
	margin-bottom: 24px;
	border-radius: 3px;
	height: 40px;
	padding-bottom: 0
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer h3 {
	margin-bottom: 16px
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer h3 .configurator-modal-icon {
	top: -2px;
	position: relative
}

#steelcase_configurator_root #configuratorContainer .sidebarContentContainer {
	display: grid;
	grid-template-rows: auto 190px;
	grid-template-columns: 100%;
	grid-template-areas: "sidebarMain" "sidebarFooter"
}

#steelcase_configurator_root #configuratorContainer .sidebarContentContainer.secondary {
	grid-template-rows: auto 82px
}

#steelcase_configurator_root #configuratorContainer .sidebarContentContainer.displaySecondary {
	grid-template-rows: auto 128px
}

@media screen and (max-width:959px) {
	#steelcase_configurator_root #configuratorContainer .full-screen-modal {
		overflow: auto
	}

	#steelcase_configurator_root #configuratorContainer .sidebarContentContainer {
		grid-template-rows: auto 82px
	}

	#steelcase_configurator_root #configuratorContainer .sidebarContentContainer.displaySecondary {
		grid-template-rows: auto 128px
	}

	#steelcase_configurator_root #configuratorContainer .full-screen-modal .gridContainer {
		grid-template-columns: auto;
		grid-template-rows: auto auto;
		grid-template-areas: "previewContent" "sidebarContainer";
		height: auto;
		min-height: 100vh;
		overflow: auto
	}

	#steelcase_configurator_root #configuratorContainer .previewContainer {
		grid-template-rows: 70px auto 70px;
		height: auto
	}

	#steelcase_configurator_root #configuratorContainer .sidebarContainer,#steelcase_configurator_root #configuratorContainer .sidebarContainer section {
		height: auto
	}
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer {
	border-left: 1px solid #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel {
	border-bottom: 1px solid #e0e0e0;
	padding: 16px 16px 16px 0;
	margin-left: 20px;
	cursor: pointer
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel h1 {
	text-transform: uppercase
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel h2 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 400
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel:hover h1 {
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .popoverContainer {
	position: relative
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget {
	padding: 20px
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget:last-of-type {
	padding-top: 16px
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget h1,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel h1 {
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #191919;
	margin-bottom: 4px
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget h2,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel h2 {
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f;
	margin-bottom: 0
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget.colorPicker h2,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel.colorPicker h2 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 16px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	color: #191919;
	margin-bottom: 12px;
	padding-top: 8px
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget.colorPicker h2 .itemCount,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel.colorPicker h2 .itemCount {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 400;
	font-size: 12px;
	padding-left: 8px;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget.colorPicker.no-search h2,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel.colorPicker.no-search h2 {
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 24px
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget.notePanel,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel.notePanel {
	padding-top: 16px;
	padding-bottom: 14px
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget.notePanel h1,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel.notePanel h1 {
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .sidebarContainer .widget.notePanel h2,#steelcase_configurator_root #configuratorContainer .sidebarContainer .widgetPanel.notePanel h2 {
	margin-bottom: 0
}

#steelcase_configurator_root #configuratorContainer .pricePanel {
	margin: 0;
	list-style: none;
	border-top: 1px solid #e0e0e0;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 20px
}

#steelcase_configurator_root #configuratorContainer .pricePanel.condensed {
	flex-direction: row;
	padding: 0;
	height: auto
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper {
	display: flex;
	align-items: center
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper .priceList {
	flex-grow: 1;
	text-align: left
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper .priceList .priceContainer {
	display: flex;
	flex-grow: 1;
	justify-content: center;
	flex-direction: column;
	min-height: 48px
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper .priceList h1 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper .priceList h3 {
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f;
	text-transform: none;
	margin: 0
}

#steelcase_configurator_root #configuratorContainer .pricePanel li {
	display: inline-block;
	width: 50%;
	text-align: center;
	border-right: 1px solid #e0e0e0;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

#steelcase_configurator_root #configuratorContainer .pricePanel li:last-of-type {
	border-right: none
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricing__label {
	color: #191919;
	margin-top: 2px;
	margin-bottom: 12px
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricing__label,#steelcase_configurator_root #configuratorContainer .pricePanel h2 {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal
}

#steelcase_configurator_root #configuratorContainer .pricePanel h2 {
	margin-top: 12px;
	color: #6f6f6f;
	margin-bottom: 4px
}

#steelcase_configurator_root #configuratorContainer .pricePanel h1 {
	font-size: 16px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: center;
	margin-bottom: 0
}

#steelcase_configurator_root #configuratorContainer .pricePanel .quantityField {
	float: right;
	width: 100%;
	max-width: 120px;
	width: 120px
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper button.btn {
	border: 1px solid #e0e0e0;
	background-color: #fff;
	color: #6f6f6f;
	position: relative;
	height: 40px;
	text-transform: uppercase;
	font-size: 12px;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper button.btn:hover {
	border-color: #266de8
}

#steelcase_configurator_root #configuratorContainer .pricePanel .pricePanel__upper button.btn.secondary {
	color: #fff;
	background-color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer {
	display: flex;
	flex-direction: column
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer button {
	border: 1px solid #e0e0e0;
	background-color: #fff;
	color: #6f6f6f;
	position: relative;
	height: 40px;
	text-transform: uppercase;
	font-size: 12px;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer button:hover {
	border-color: #266de8
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer button.secondary {
	color: #fff;
	background-color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer .buttonContainer__upper {
	margin-top: 20px;
	display: flex
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer .buttonContainer__upper button {
	width: 100%
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer .buttonContainer__upper .cficon-heart-outline {
	padding-right: 8px;
	position: relative;
	top: 1px
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer .buttonContainer__lower {
	margin-top: 10px;
	display: flex;
	justify-content: center
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer .buttonContainer__lower .spacer {
	width: 20px
}

#steelcase_configurator_root #configuratorContainer .pricePanel .buttonContainer .buttonContainer__lower button {
	width: 100%
}

#steelcase_configurator_root #configuratorContainer .displaySecondary .pricePanel {
	height: 82px
}

#steelcase_configurator_root #configuratorContainer .radio-option-container .option {
	position: relative;
	padding-left: 32px;
	padding-bottom: 20px;
	min-height: 20px;
	padding-top: 4px;
	cursor: pointer;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .radio-option-container .option strong {
	color: #191919;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer .radio-option-container .option .priceLabel {
	position: absolute;
	right: 0
}

#steelcase_configurator_root #configuratorContainer .radio-option-container .option .radio-icon {
	display: block;
	height: 20px;
	width: 20px;
	position: absolute;
	left: 0;
	top: 0;
	border: 2px solid #6f6f6f;
	border-radius: 10px
}

#steelcase_configurator_root #configuratorContainer .radio-option-container .option.selected .radio-icon {
	border-color: #266de8
}

#steelcase_configurator_root #configuratorContainer .radio-option-container .option.selected .radio-icon:after {
	content: "";
	display: block;
	height: 12px;
	width: 12px;
	border-radius: 6px;
	background-color: #266de8;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -6px;
	margin-left: -6px
}

#steelcase_configurator_root #configuratorContainer .radio-option-container .option:hover .radio-icon {
	border-color: #266de8
}

#steelcase_configurator_root #configuratorContainer .previewContainer .button-container {
	text-align: center;
	position: relative;
	padding-left: 64px;
	padding-right: 64px;
	margin-top: 12px
}

#steelcase_configurator_root #configuratorContainer .previewContainer .downloads-wrapper {
	position: absolute;
	left: 20px;
	top: 7px;
	display: block
}

#steelcase_configurator_root #configuratorContainer .previewContainer .btn-secondary.complete {
	padding-left: 58px;
	padding-right: 58px;
	margin: 0 auto;
	display: inline-block
}

#steelcase_configurator_root #configuratorContainer .previewContainer .btn-secondary.complete span {
	position: relative;
	top: 2px
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper {
	width: 100%;
	border: 1px solid #e0e0e0;
	padding: 12px 12px 0;
	position: relative;
	border-radius: 3px;
	height: 40px
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper .icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	height: 16px;
	width: 16px;
	overflow: hidden
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper .icon.left {
	left: 12px
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper .icon.right {
	right: 12px
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper .inputContainer {
	margin-left: 22px;
	margin-right: 32px
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper input {
	display: block;
	width: 100%;
	border: none;
	background-color: transparent;
	padding: 0;
	height: auto
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper input::-webkit-input-placeholder {
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper input::-moz-placeholder {
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper input:-ms-input-placeholder {
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper input:-moz-placeholder {
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .searchField .inputWrapper input:focus {
	outline: 0
}

#steelcase_configurator_root #configuratorContainer .extended-mode-selector-wrapper .extended-mode-selector-container {
	padding: 0;
	border-bottom: 1px solid #e0e0e0;
	margin: 0 0 -1px
}

#steelcase_configurator_root #configuratorContainer .extended-mode-selector-wrapper .extended-mode-selector-container li {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 50%;
	border-bottom: 2px solid transparent;
	position: relative;
	bottom: -1px
}

#steelcase_configurator_root #configuratorContainer .extended-mode-selector-wrapper .extended-mode-selector-container li button {
	width: 100%;
	background: transparent;
	border: none;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #191919;
	text-transform: uppercase;
	color: #6f6f6f;
	padding: 16px
}

#steelcase_configurator_root #configuratorContainer .extended-mode-selector-wrapper .extended-mode-selector-container li button:hover {
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .extended-mode-selector-wrapper .extended-mode-selector-container li.active {
	border-bottom: 2px solid #191919
}

#steelcase_configurator_root #configuratorContainer .extended-mode-selector-wrapper .extended-mode-selector-container li.active button {
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .configurator-icon-close {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzZGNkY2RiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTguNTA1IDcuMTkyTDEzLjY5NyAxMmw0LjgwOCA0LjgwOC0xLjY5NyAxLjY5N0wxMiAxMy42OTdsLTQuODA4IDQuODA4LTEuNjk3LTEuNjk3TDEwLjMwMyAxMiA1LjQ5NSA3LjE5MmwxLjY5Ny0xLjY5N0wxMiAxMC4zMDNsNC44MDgtNC44MDggMS42OTcgMS42OTd6Ii8+PC9zdmc+");
	display: block;
	height: 24px;
	width: 24px;
	cursor: pointer
}

#steelcase_configurator_root #configuratorContainer .configurator-icon-zoomIn {
	height: 16px;
	width: 16px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%236F6F6F' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99M8.001 1.012v13.977'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root #configuratorContainer .configurator-icon-zoomIn:hover {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%23266DE8' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99M8.001 1.012v13.977'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root #configuratorContainer .configurator-icon-zoomOut {
	height: 16px;
	width: 16px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%236F6F6F' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root #configuratorContainer .configurator-icon-zoomOut:hover {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%23266DE8' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root #configuratorContainer .configurator-modal-icon {
	cursor: pointer
}

#steelcase_configurator_root #configuratorContainer .configurator-icon .configurator-confirm {
	height: 24px;
	width: 24px;
	display: block;
	margin: 0 auto
}

#steelcase_configurator_root #configuratorContainer .configurator-icon .configurator-confirm:after {
	position: absolute;
	display: block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	font-size: 24px;
	content: "\0049"
}

#steelcase_configurator_root #configuratorContainer .configurator-icon .configurator-cancel {
	height: 24px;
	width: 24px;
	display: block;
	margin: 0 auto;
	position: relative
}

#steelcase_configurator_root #configuratorContainer .configurator-icon .configurator-cancel:after {
	position: absolute;
	display: block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	font-size: 24px;
	content: "\0053"
}

#steelcase_configurator_root #configuratorContainer .configurator-icon .configurator-warranty {
	height: 16px;
	width: 16px;
	display: inline-block
}

#steelcase_configurator_root #configuratorContainer .configurator-icon .configurator-warranty:after {
	display: inline-block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\0046";
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .configurator-icon:hover .configurator-cancel:after,#steelcase_configurator_root #configuratorContainer .configurator-icon:hover .configurator-confirm:after,#steelcase_configurator_root #configuratorContainer .configurator-icon:hover .configurator-warranty:after {
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .slick-arrow {
	height: 40px;
	width: 40px;
	background: transparent
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev {
	left: -50px
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev:after {
	display: inline-block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\0050";
	font-size: 40px;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev:hover:after {
	content: "\004f"
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev.slick-disabled,#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev.slick-disabled:hover {
	cursor: default
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev.slick-disabled:after,#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev.slick-disabled:hover:after {
	content: "\0050";
	color: #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-prev:before {
	display: none
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next {
	right: -50px
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next:after {
	display: inline-block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\0055";
	font-size: 40px;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next:hover:after {
	content: "\0054"
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next.slick-disabled,#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next.slick-disabled:hover {
	cursor: default
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next.slick-disabled:after,#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next.slick-disabled:hover:after {
	content: "\0055";
	color: #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .slick-arrow.slick-next:before {
	display: none
}

#steelcase_configurator_root #configuratorContainer button:focus {
	outline: none;
	box-shadow: none
}

#steelcase_configurator_root #configuratorContainer .btn-secondary {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	color: #6f6f6f;
	background: #fff;
	/*border: 1px solid #e0e0e0;*/
	border: 1px solid #ffffff;
	padding: 12px;
	text-transform: uppercase
}

#steelcase_configurator_root #configuratorContainer .btn-secondary:hover {
	/*border-color: #266de8*/
	border-color:#FF7F2F;
}

#steelcase_configurator_root #configuratorContainer .wrapper:last-of-type {
	/*padding-bottom: 30px*/
}

#steelcase_configurator_root #configuratorContainer .wrapper:first-of-type {
	border-bottom: 1px solid #e0e0e0;
	padding-top: 24px
}

#steelcase_configurator_root #configuratorContainer .widget:last-of-type {
	border-bottom: none;
	padding-top: 16px;
}

#steelcase_configurator_root #configuratorContainer button {
	background: transparent
}

#steelcase_configurator_root #configuratorContainer .widget {
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 16px;
	padding-top: 16px;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .widget strong {
	color: #191919;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer .widget.category-selector {
	border-bottom: none
}

#steelcase_configurator_root #configuratorContainer .widget .btn-secondary {
	width: 100%
}

#steelcase_configurator_root #configuratorContainer .widget.last-child {
	border-bottom: none
}

#steelcase_configurator_root #configuratorContainer .notes {
	padding-top: 16px;
	padding-bottom: 16px;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .notes strong {
	color: #191919;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer .widget.colorPicker h3 {
	margin-bottom: 4px
}

#steelcase_configurator_root #configuratorContainer .widget.widget.colorPicker .swatch__header p {
	margin: 0
}

#steelcase_configurator_root #configuratorContainer .widget.widget.colorPicker .swatch__header button {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	border: none;
	color: #266de8;
	padding: 0;
	margin: 8px 0 0
}

#steelcase_configurator_root #configuratorContainer .widget.widget.colorPicker .swatch__header button:hover {
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .swatch_modal_control {
	display: none
}

@media (max-width:991px) {
	#steelcase_configurator_root #configuratorContainer .swatch_modal_control {
		display: block
	}
}

#steelcase_configurator_root #configuratorContainer .swatch_container {
	display: inline-block;
	position: relative
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard {
	display: none;
	padding-bottom: 16px;
	z-index: 9999;
	position: absolute;
	width: 138px;
	bottom: 50px;
	left: 50%;
	margin-left: -69px
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard .swatch_hovercard__inner {
	min-height: 168px;
	background: #fff;
	padding: 10px 16px 16px;
	border: 1px solid #e3e3e3;
	text-align: center;
	background-color: #fff
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard.swatch__left {
	left: 0;
	margin-left: 0
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard.swatch__right {
	right: 0;
	left: auto;
	margin-left: 0
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard div.swatch__image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard p {
	padding: 6px 0 16px;
	margin: 0
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard button {
	border: none;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	color: #266de8;
	font-size: 12px;
	font-weight: 700;
	padding: 0
}

#steelcase_configurator_root #configuratorContainer .swatch_container .swatch_hovercard button:hover {
	color: #6f6f6f
}

@media (min-width:992px) {
	#steelcase_configurator_root #configuratorContainer .swatch_container:hover .swatch_hovercard {
		/*display: block*/
	}
}

#steelcase_configurator_root #configuratorContainer .widget.colorPicker .colors .color {
	display: inline-block;
	height: 50px;
	width: 50px;
	background: #fff;
	border-radius: 25px;
	position: relative;
	cursor: pointer;
	margin-top: 8px;
	border-color: transparent;
	margin-right: 8px
}

#steelcase_configurator_root #configuratorContainer .widget.colorPicker .colors .color.selected,#steelcase_configurator_root #configuratorContainer .widget.colorPicker .colors .color:hover {
	border: 2px solid #FD7F3C
}

#steelcase_configurator_root #configuratorContainer .widget.colorPicker .colors .color:focus {
	background: rgba(38,109,232,.5)
}

#steelcase_configurator_root #configuratorContainer .widget.colorPicker .colors .color .swatch {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background: #f0f0f0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px
}

@media screen and (max-width:1200px) {
	#steelcase_configurator_root #configuratorContainer .widget.colorPicker .colors .color {
		margin-right: 8px
	}
}

@media screen and (max-width:768px) {
	#steelcase_configurator_root #configuratorContainer .widget.colorPicker .colors {
		/*white-space: nowrap;*/
		overflow: auto
	}
}

#steelcase_configurator_root #configuratorContainer .quickSelect {
	padding-top: 20px;
	/*padding-bottom: 20px;*/
	position: relative
}

#steelcase_configurator_root #configuratorContainer .quickSelect>div>div {
	/*padding-left: 50px;
	padding-right: 50px*/
}

#steelcase_configurator_root #configuratorContainer .quickSelect>div>div .slick-slide>div {
	line-height: 0
}

#steelcase_configurator_root #configuratorContainer .quickSelectContainer {
	padding-right: 10px;
	padding-left: 10px;
	height:120px;
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height: 100px;
	cursor: pointer;
	border: 1px solid #e0e0e0;
	background-color: #fff;
	border-radius: 3px;
	text-align: center;
	padding: 16px;
	position: relative;
	transform: scale(.8);
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem.selected {
	border: 1px solid #E9E9E9;
	box-shadow: 0px 9px 13px 0px rgba(4, 0, 0, 0.11);
	/*padding: 15px;
	border-color: #6f6f6f;
	border-width: 2px*/
	transform: scale(1);
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem.selected .productTitle {
	color: #191919;
	bottom: 15px

}

#steelcase_configurator_root #configuratorContainer .quickSelectItem:hover {
	/*border: 2px solid #6f6f6f;*/
	border: 1px solid #E9E9E9;
	box-shadow: 0px 9px 13px 0px rgba(4, 0, 0, 0.11);
	/*padding: 15px*/
	transform: scale(1);
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem:hover .productTitle {
	bottom: 15px
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem img {
	max-width: 44px;
	max-height: 48px;
	display: block;
	margin: 0 auto
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem .productTitle {
	bottom: 16px;
	font-weight: 400;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem .productTitle,#steelcase_configurator_root #configuratorContainer .quickSelectItem .productTitle .item-tag {
	position: absolute;
	left: 0;
	right: 0;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	display: block;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem .productTitle .item-tag {
	font-weight: 400;
	top: -16px;
	margin: 0 auto;
	text-align: center;
	width: 100%
}

#steelcase_configurator_root #configuratorContainer .quickSelectItem.bestseller .productTitle:before {
	display: block;
	width: 100%;
	content: "Bestseller";
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .carousel-top-wrapper {
	border-bottom: 1px solid #e0e0e0;
	text-align: center
}

#steelcase_configurator_root #configuratorContainer .carousel-top-wrapper .carousel-type-selector {
	padding: 0;
	list-style: none;
	display: block;
	margin: 0 0 -1px;
	line-height: 0
}

#steelcase_configurator_root #configuratorContainer .carousel-top-wrapper .carousel-type-selector li {
	display: inline-block;
	margin: 0
}

#steelcase_configurator_root #configuratorContainer .carousel-top-wrapper .carousel-type-selector li a {
	height: 24px;
	text-transform: uppercase;
	color: #6f6f6f;
	border-bottom: 2px solid transparent;
	padding-bottom: 16px;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 12px;
	display: block
}

#steelcase_configurator_root #configuratorContainer .carousel-top-wrapper .carousel-type-selector li a:first-of-type {
	margin-right: 20px
}

#steelcase_configurator_root #configuratorContainer .carousel-top-wrapper .carousel-type-selector li:hover a {
	text-decoration: none;
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .carousel-top-wrapper .carousel-type-selector li.active a {
	text-decoration: none;
	color: #191919;
	border-bottom: 2px solid #191919
}

#steelcase_configurator_root #configuratorContainer .expandable-control {
	padding-left: 0;
	padding-right: 16px;
	position: relative;
	display: inline-block;
	border: none;
	color: #6f6f6f;
	text-align: left
}

#steelcase_configurator_root #configuratorContainer .expandable-control:hover {
	text-decoration: none;
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .expandable-control:after {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -6px;
	display: block;
	font-family: "configuratoricons";
	font-style: normal;
	font-weight: 400;
	line-height: 8px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\0042";
	font-size: 8px
}

#steelcase_configurator_root #configuratorContainer .expandable-control.expanded:after {
	content: "\0044"
}

#steelcase_configurator_root #configuratorContainer .description-container {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: .25s ease-in-out
}

#steelcase_configurator_root #configuratorContainer .description-container img {
	margin-top: 14px;
	margin-bottom: 8px;
	border-radius: 3px
}

#steelcase_configurator_root #configuratorContainer .description-container p {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-size: 12px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #6f6f6f;
	line-height: 16px;
	margin-top: 8px;
	margin-bottom: 8px;
	display: none
}

#steelcase_configurator_root #configuratorContainer .description-container p strong {
	color: #191919;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700
}

#steelcase_configurator_root #configuratorContainer .description-container.expanded {
	max-height: 1000px;
	opacity: 1
}

#steelcase_configurator_root #configuratorContainer .description-container.expanded p {
	display: block
}

#steelcase_configurator_root #configuratorContainer .downloads-wrapper .downloadButton {
	background: transparent;
	display: block;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0
}

#steelcase_configurator_root #configuratorContainer .priceAdjust {
	color: #6f6f6f
}

#steelcase_configurator_root #configuratorContainer .productPreview {
	height: 500px;
	margin-bottom: 30px
}

#steelcase_configurator_root #configuratorContainer .productPreview.noVisualization,#steelcase_configurator_root #configuratorContainer .productPreview.noVisualization .img-wrap {
	height: auto
}

#steelcase_configurator_root #configuratorContainer .productPreview .img-wrap,#steelcase_configurator_root #configuratorContainer .productPreview iframe {
	height: 500px;
	text-align: center
}

#steelcase_configurator_root #configuratorContainer .productPreview img {
	max-width: 100%;
	height: auto;
	max-height: 100%
}

#steelcase_configurator_root #configuratorContainer .productPreview .controls {
	display: flex;
	flex-direction: row;
	align-items: center
}

#steelcase_configurator_root #configuratorContainer .productPreview .controls button {
	border: none;
	background: transparent;
	text-transform: uppercase;
	margin-right: 2px;
	border-radius: 3px;
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	font-size: 12px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #191919;
	height: 40px;
	width: 40px;
	line-height: 40px;
	color: #6f6f6f;
	margin-top: 20px
}

#steelcase_configurator_root #configuratorContainer .productPreview .controls button:hover {
	background-color: #f0f0f0;
	color: #266de8
}

#steelcase_configurator_root #configuratorContainer .productPreview .controls button.active {
	background-color: #f0f0f0;
	border-radius: 3px;
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .productPreview .controls button.active:hover {
	color: #191919
}

#steelcase_configurator_root #configuratorContainer .tooltip-theme {
	font-family: "Helvetica Neue","Helvetica W01",Helvetica,sans-serif;
	font-weight: 700;
	color: #fff!important;
	padding: 8px 8px 4px!important;
	background-color: #6f6f6f!important;
	line-height: 12px
}

#steelcase_configurator_root #configuratorContainer .tooltip-theme.place-top:after {
	border-top: 6px solid #6f6f6f!important
}

#steelcase_configurator_root #configuratorContainer .controls button.downloadsButton,#steelcase_configurator_root #configuratorContainer button.downloadsButton {
	position: relative;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	background: transparent;
	border: none;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDE2djE2SDB6Ii8+PHBhdGggc3Ryb2tlPSIjNkY2RjZGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIGQ9Ik0xNC42NjcgMTJ2MS4zMzNjMCAuNzM0LS42IDEuMzM0LTEuMzM0IDEuMzM0SDIuNjY3Yy0uNzM0IDAtMS4zMzQtLjYtMS4zMzQtMS4zMzRWMTIiLz48cGF0aCBmaWxsPSIjMDAwIiBkPSJNOCAxMC42NDFWMS4zMzMiLz48cGF0aCBzdHJva2U9IiM2RjZGNkYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTggMTAuNjQxVjEuMzMzTTQuODM1IDhsMy4xNiAzLjE1MSAzLjE3LTMuMTQiLz48L2c+PC9zdmc+");
	background-position: 50%;
	background-repeat: no-repeat
}

#steelcase_configurator_root #configuratorContainer .controls button.downloadsButton:after,#steelcase_configurator_root #configuratorContainer .controls button.downloadsButton:before,#steelcase_configurator_root #configuratorContainer button.downloadsButton:after,#steelcase_configurator_root #configuratorContainer button.downloadsButton:before {
	display: block;
	content: "";
	background-color: #e0e0e0;
	height: 30px;
	width: 1px;
	position: absolute;
	top: 50%;
	margin-top: -15px
}

#steelcase_configurator_root #configuratorContainer .controls button.downloadsButton:before,#steelcase_configurator_root #configuratorContainer button.downloadsButton:before {
	left: -10px
}

#steelcase_configurator_root #configuratorContainer .controls button.downloadsButton:after,#steelcase_configurator_root #configuratorContainer button.downloadsButton:after {
	right: -10px
}

#steelcase_configurator_root #configuratorContainer .controls button.downloadsButton.expanded,#steelcase_configurator_root #configuratorContainer .controls button.downloadsButton:hover,#steelcase_configurator_root #configuratorContainer button.downloadsButton.expanded,#steelcase_configurator_root #configuratorContainer button.downloadsButton:hover {
	background-color: #f0f0f0;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDE2djE2SDB6Ii8+PHBhdGggc3Ryb2tlPSIjMTkxOTE5IiBzdHJva2UtbGluZWNhcD0icm91bmQiIGQ9Ik0xNC42NjcgMTJ2MS4zMzNjMCAuNzM0LS42IDEuMzM0LTEuMzM0IDEuMzM0SDIuNjY3Yy0uNzM0IDAtMS4zMzQtLjYtMS4zMzQtMS4zMzRWMTIiLz48cGF0aCBmaWxsPSIjMDAwIiBkPSJNOCAxMC42NDFWMS4zMzMiLz48cGF0aCBzdHJva2U9IiMxOTE5MTkiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTggMTAuNjQxVjEuMzMzTTQuODM1IDhsMy4xNiAzLjE1MSAzLjE3LTMuMTQiLz48L2c+PC9zdmc+")
}

#steelcase_configurator_root #configuratorContainer button.downloadsButton {
	top: 0;
	z-index: 800
}

#steelcase_configurator_root #configuratorContainer button.downloadsButton:after,#steelcase_configurator_root #configuratorContainer button.downloadsButton:before {
	background: transparent
}

#steelcase_configurator_root div.zoomControls {
	display: flex;
	flex-direction: column;
	width: 40px;
	position: absolute;
	z-index: 999
}

#steelcase_configurator_root div.zoomControls button.zoomButton {
	border: 1px solid #e0e0e0;
	height: 40px;
	color: #6f6f6f;
	width: 40px;
	box-shadow: none;
	background: #fff!important
}

#steelcase_configurator_root div.zoomControls button.zoomButton.configurator-zoom-in div.configurator-icon {
	height: 16px;
	width: 16px;
	margin: 0 auto;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%236F6F6F' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99M8.001 1.012v13.977'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root div.zoomControls button.zoomButton.configurator-zoom-in:hover div.configurator-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%23266DE8' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99M8.001 1.012v13.977'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root div.zoomControls button.zoomButton.configurator-zoom-out div.configurator-icon {
	height: 16px;
	width: 16px;
	margin: 0 auto;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%236F6F6F' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root div.zoomControls button.zoomButton.configurator-zoom-out:hover div.configurator-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%23266DE8' stroke-linecap='round' stroke-width='2' d='M1.013 8H14.99'/%3E%3C/g%3E%3C/svg%3E")
}

#steelcase_configurator_root div.zoomControls button.zoomButton:first-of-type {
	border-bottom: none;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

#steelcase_configurator_root div.zoomControls button.zoomButton:last-of-type {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px
}

#steelcase_configurator_root .img-wrap .iconButton {
	top: 0;
	left: 0;
	background: #fff;
	border: 1px solid #e0e0e0;
	height: 40px;
	color: #6f6f6f;
	width: 40px;
	box-shadow: none;
	background: #fff!important;
	position: absolute
}

#steelcase_configurator_root .img-wrap .iconButton:first-of-type {
	border-bottom: none;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

#steelcase_configurator_root .img-wrap .iconButton:last-of-type {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	top: 41px
}

#steelcase_configurator_root .react-transform-wrapper {
	width: 100%
}

#steelcase_configurator_root .react-transform-wrapper .react-transform-component,#steelcase_configurator_root .react-transform-wrapper .react-transform-component img {
	margin: 0 auto
}

#steelcase_configurator_root .full-screen-modal .zoomControls {
	left: 20px
}
/*# sourceMappingURL=main.2171e7bd.chunk.css.map */