.white-shirts {
	background: #f5f5f5;
}

.white-shirts footer.footer {
	display: none!important;
	visibility: hidden;
}

.white-shirts [v-cloak] {
	display: none;
}

.white-shirts * {
	-webkit-backface-visibility: hidden;
}

.white-shirts .intro {
	text-align: center;
	/*background: #F5DA6C url(/images/guides/white-shirt/pws20/pws-bg.jpg) no-repeat center center;*/
/*	background: #C1BAA5 url(/images/guides/white-shirt/pws20/pws-bg-21.jpg) no-repeat center center;*/
	background: #eee;
	background-size: cover;
	position: fixed;
	overflow: hidden;
	top: 60px;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	z-index: 98;
	opacity: 1;
	visibility: visible;
	will-change: transform;
	-webkit-transition: .5s ease 0s;
	transition: .5s ease 0s;
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
	display: grid;
	grid-template-columns: 50% 50%;
}

.white-shirts .intro a.link-wrap {
	display: block;
	text-decoration: none;
	color: black;
}

.white-shirts .intro a.link-wrap:hover {
	text-decoration: none;
}

.white-shirts .intro .text-block {
	width: 100%;
	margin: 0 auto;
}

.white-shirts .intro .intro__img {
	margin-top: 2rem;
	margin-right: 5rem;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.white-shirts .intro .intro__img img {
	width: auto;
	height: auto;
	max-height: 600px;
	max-height: 70vh;
	margin: auto;
}

.white-shirts .intro .icon {
	height: 60px;
	width: 60px;
	background: url(/images/guides/white-shirt/pws20/pws-icons.png) no-repeat 0 50%;
	background-size: 240px 60px;
	position: absolute;
	top: 10px;
	left: 50px;
	opacity: 0;
	animation: fadeup 0.75s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-webkit-animation: fadeup 0.75s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-moz-animation: fadeup 0.75s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-ms-animation: fadeup 0.75s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	animation-play-state: paused;
	display: none;
}

.white-shirts .intro .icon--martini {
	left: 33.5%;
	background-position: 0 0;
	animation-delay: 0.3s;
}

.white-shirts .intro .icon--briefcase {
	left: 45.25%;
	background-position: -61px 50%;
	animation-delay: 0.6s;
}

.white-shirts .intro .icon--sun {
	left: 56%;
	background-position: -119px 50%;
	animation-delay: 0.9s;
}

.white-shirts .intro .icon--tie {
	left: 67%;
	background-position: -176px 50%;
	animation-delay: 1.2s;
}

.white-shirts .intro .intro__text {
	text-align: left;
	z-index: 99;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #111;
	padding: 48px;
}

.white-shirts .intro .intro__text h5,
.white-shirts .intro .intro__text h2 {
	color: #fff;
}

.white-shirts .intro .intro__text p {
	font-size: 17px;
	max-width: 24em;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 auto 5rem 0;
}

.white-shirts .intro .intro__text h5 {
	text-align: left;
	font-size: 16px;
	letter-spacing: 2.5px;
	margin-top: -1em;
	margin-bottom: 0.5rem;
	display: inline-block;
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	transition: 0.75s cubic-bezier(0.53, 0, 0, 1) 0.1s;
}

.white-shirts .intro .intro__text h2 {
	font-family: var(--font-sans);
	font-size: 38px;
	font-size: 3.3vw;
	font-weight: 100;
	line-height: 1.025;
	margin: 0 0 5rem;
	letter-spacing: -0.7px;
	color: #ddd;
}

.white-shirts .intro .intro__text h2 span {
	display: block;
	font-weight: 500;
	color: white;
}

.white-shirts .intro .intro__text .btn {
	font-size: 15px;
	letter-spacing: 2.5px;
	margin-top: -4px;
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
	transition: 0.75s cubic-bezier(0.53, 0, 0, 1) 0.1s;
}

.white-shirts .intro .intro__text .btn:hover {
	border-color: rgba(0, 0, 0, 0.8);
	background: rgba(0, 0, 0, 0.8);
}

@keyframes pulse-x {
	0% {
		transform: translateX(0px);
	}

	30% {
		transform: translateX(4px);
	}

	60% {
		transform: translateX(0px);
	}
}

@keyframes pulse-y {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-3px);
	}

	100% {
		transform: translateY(0px);
	}
}

.white-shirts .intro .intro__text .cta-start {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	padding: 2rem 0;
	font-weight: 600;
	color: #fff;
}

.white-shirts .intro .intro__text .cta-start:hover {
	text-decoration: none;
}

.white-shirts .intro .intro__text .cta-start:after {
	content: '';
	display: inline-block;
	height: 50px;
	width: 50px;
	background: url(/images/guides/white-shirt/pws20/cta-arrow.png) no-repeat center top;
	background-size: 75% 75%;
	margin: -4rem 0 -2.6rem 1.5rem;
	transition: .4s ease;
	animation: pulse-x 2.5s ease infinite;
}

.white-shirts .intro.is-hidden {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	-webkit-transform: scale(1.07);
	transform: scale(1.07);
	-webkit-user-select: none;
	user-select: none;
}

.white-shirts .intro.is-hidden .text {
	opacity: 0;
	-webkit-transform: translateY(-49%) scale(1.05);
	transform: translateY(-49%) scale(1.05);
	visibility: hidden;
}

@media (max-width: 1120px) {
	.white-shirts .intro .intro__img {
		margin-right: 3rem;
	}

	.white-shirts .intro .intro__img img {
		max-height: 600px;
		max-height: 75vh;
	}
}

@media (max-width: 851px) {
	.white-shirts .intro {
		padding: 0;
		grid-template-columns: 1fr;
	}

	.white-shirts .intro .intro__img {
		margin-right: auto;
		margin-top: 0;
		order: 2;
		flex: 1 0 100%;
	}

	.white-shirts .intro .intro__img img {
		position: relative;
		left: -0.5rem;
		max-width: 70%;
	}

	.white-shirts .intro .intro__text {
		order: 1;
		flex: 1 0 100%;
		text-align: center;
		margin-top: 0;
		margin-bottom: 0;
	}

	.white-shirts .intro .intro__text p {
		margin: 0 auto 3rem auto;
	}

	.white-shirts .intro .intro__text h2 {
		font-family: var(--font-sans);
		font-size: 32px;
	}

	.white-shirts .intro .intro__text .cta-start:after {
		height: 50px;
		width: 50px;
		margin: -2rem 0 -2.5rem 1rem;
	}

	.white-shirts .intro .cta-start {
		margin-left: auto;
		margin-right: auto;
	}

	.white-shirts .intro .icon {
		display: none;
	}
}

.white-shirts.is-ready .intro .text h5,
.white-shirts.is-ready .intro .text h2 {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.white-shirts.is-ready .intro .text .btn {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.white-shirts.is-ready .questions {
	opacity: 1;
}
.white-shirts.is-ready.answers-shown .questions {
	opacity: 0.33;
	transition: .3s ease 0s;
}

.white-shirts.is-ready .intro .icon {
	animation-play-state: running;
}

.white-shirts .fade-enter-active,
.white-shirts .fade-leave-active {
	transition: opacity 0.1s;
}

.white-shirts .fade-enter,
.white-shirts .fade-leave-to {
	opacity: 0;
}

.white-shirts .question label {
	cursor: pointer;
	position: relative;
	transition: .15s ease;
	opacity: 1;
}

@media (max-width: 1030px) {
	.white-shirts .question label {
		display: block;
		width: 100%;
		margin-bottom: 16px;
	}
}

.white-shirts .question label input {
	display: none;
	cursor: pointer;
}

.white-shirts .question label span {
	padding: 16px 32px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	cursor: pointer;
	color: #444;
/*	background: rgba(255, 255, 255, 0.8);*/
	background: #F2F2F2;
	display: block;
	margin-right: 12px;
	margin-bottom: 12px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0);
	transition: .35s ease;
}

@media (max-width: 1030px) {
	.white-shirts .question label span {
		display: block;
		width: 100%;
		padding: 12px 24px;
	}
}

.white-shirts .question label span:hover {
	background: #fff;
	color: #000;
	border-color: rgba(0, 0, 0, 0.8);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: .02s ease;
}

.white-shirts .question label.has-tip {
	position: relative;
}

.white-shirts .question label.has-tip i {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -100px;
	margin-bottom: 36px;
	background: #fff;
	border-radius: 6px;
	min-height: 200px;
	width: 200px;
	padding: 22px 24px;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	transform: translateY(16px) scale(0.9);
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
	transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.white-shirts .question label.has-tip i img {
	width: 100%;
	height: auto;
}

.white-shirts .question label.has-tip:hover i {
	z-index: 9;
	opacity: 1;
	transform: translateY(0px) scale(1);
	visibility: visible;
}

.white-shirts .question label input:checked + span {
	background-color: #000;
	color: #fff;
}

.white-shirts .questions {
	text-align: center;
	background: url(/images/guides/white-shirt/w23/shirt-macro0.jpg) no-repeat center center;
	background-size: cover;
	position: fixed;
	overflow: hidden;
	top: 60px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	width: auto;
	opacity: 0;
	transition: .3s ease 0s;
}

.white-shirts .question-wrap {
	border-left: 1px solid #444;
	position: fixed;
	top: 120px;
	bottom: 60px;
	left: 50%;
	right: 0;
	z-index: 10;
}

.white-shirts .questions .question {
	padding: 24px 48px;
	font-size: 15px;
	margin-bottom: 2em;
	user-select: none;
	-webkit-user-select: none;
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	text-align: left;
	will-change: transform;
	transform-origin: 0 50%;
	-webkit-backface-visibility: hidden;
}

.white-shirts .questions .question p {
	margin: 0 auto 10px 0;
	font-size: 28px;
	font-family: var(--font-serif);
	font-family: var(--font-sans);
	max-width: 600px;
	line-height: 1.2;
}

.white-shirts .questions .question p:last-of-type {
	margin-bottom: 36px;
}

.white-shirts .questions .question p + p {
	font-size: 14px;
	font-family: var(--font-sans);
}

@media (max-width: 1030px) {
	.white-shirts .questions {
		top: 60px;
	}

	.white-shirts .questions .question {
		top: 50%;
		padding: 16px 24px;
		margin-bottom: 0;
		font-size: 14px;
	}

	.white-shirts .questions .question:after {
		display: none;
	}

	.white-shirts .questions .question:before {
		display: none;
	}

	.white-shirts .questions .question p {
		font-size: 28px;
	}

	.white-shirts .questions .question p:last-of-type {
		margin-bottom: 24px;
	}
}

.white-shirts .img-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../../images/guides/white-shirt/w23/shirt-macro2.jpg) no-repeat center center;
	background-size: cover;
	opacity: 0;
	transition: .5s ease;
}

.white-shirts .img-bg.two {
	background-image: url(../../images/guides/white-shirt/w23/shirt-macro3.jpg);
}

.white-shirts .img-bg.three {
	background-image: url(../../images/guides/white-shirt/w23/shirt-macro5-tux.jpg);
}

.white-shirts .img-bg.four {
	background-image: url(../../images/guides/white-shirt/w23/shirt-macro6-biz.jpg);
}

.white-shirts .img-bg.is-shown {
	opacity: 1;
}

@-webkit-keyframes fadein {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30%) scale(1.1);
		transform: translateY(30%) scale(1.1);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(-50%) scale(1);
		transform: translateY(-50%) scale(1);
		visibility: visible;
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30%) scale(1.1);
		transform: translateY(30%) scale(1.1);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(-50%) scale(1);
		transform: translateY(-50%) scale(1);
		visibility: visible;
	}
}

@-webkit-keyframes fadeup {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes fadeup {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@-webkit-keyframes fadeout {
	0% {
		opacity: 1;
		-webkit-transform: translateY(-50%) scale(1);
		transform: translateY(-50%) scale(1);
	}

	10% {
		opacity: 1;
		-webkit-transform: translateY(-50%) scale(1);
		transform: translateY(-50%) scale(1);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-80%) scale(0.85);
		transform: translateY(-80%) scale(0.85);
		visibility: hidden;
	}
}

@keyframes fadeout {
	0% {
		opacity: 1;
		-webkit-transform: translateY(-50%) scale(1);
		transform: translateY(-50%) scale(1);
	}

	10% {
		opacity: 1;
		-webkit-transform: translateY(-50%) scale(1);
		transform: translateY(-50%) scale(1);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-80%) scale(0.85);
		transform: translateY(-80%) scale(0.85);
		visibility: hidden;
	}
}

.white-shirts .questions .question.is-hidden {
	visibility: hidden;
	-webkit-transform: translateY(30%) scale(1.1);
	transform: translateY(30%) scale(1.1);
	opacity: 0;
}

.white-shirts .questions .question.is-current {
	z-index: 99;
	animation: fadein 0.5s 0.01s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-webkit-animation: fadein 0.5s 0.01s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-moz-animation: fadein 0.5s 0.01s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-ms-animation: fadein 0.5s 0.01s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.white-shirts .questions .question.answered {
	transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
	animation: fadeout 0.5s 0s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-webkit-animation: fadeout 0.5s 0s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-moz-animation: fadeout 0.5s 0s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
	-ms-animation: fadeout 0.5s 0s 1 cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.white-shirts .questions .question.answered label {
	opacity: 0;
}

.white-shirts .count {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding: 48px;
	transition: .3s ease;
}
.white-shirts.answers-shown .count-scroll {
	opacity: 0;
}
.white-shirts.answers-shown .results-text {
	opacity: 1;
	visibility: visible;
}
.results-text {
	position: absolute;
	left: 48px;
	top: 50%;
	font-size: 21px;
	text-align: left;
	font-weight: 300;
	white-space: nowrap;
	transform: translateY(-50%);
	transition: .3s ease .15s;
	opacity: 0;
	visibility: hidden;
}
.white-shirts .count::before {
	content: '';
	height: 1px;
	background: #444;
	width: 24px;
	position: absolute;
	left: 0;
	top: 50%;
}
.white-shirts .count > div {
	height: 50px;
	overflow: hidden;
}
.white-shirts .count > div > div {
	display: flex;
	flex-direction: column;
	transform: translateY(var(--count-y-offset));
	transition: transform .45s cubic-bezier(0.83, -0.04, 0.16, 1), opacity .3s ease;
}
.white-shirts .count span {
	font-size: 21px;
	font-variant-numeric: tabular-nums slashed-zero;
	font-size: 21px;
	min-height: 50px;
	display: flex;
  justify-content: center;
  align-items: center;
  line-height: 50px;
}

.white-shirts .clear-all {
	display: inline-block;
	margin-bottom: 0;
	font-weight: 300;
	text-align: center;
	padding: 6px 12px;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border-radius: 3px;
	white-space: nowrap;
	text-transform: unset;
	font-size: 12px;
	letter-spacing: 0;
	line-height: 1.8;
	background: none;
	border-color: #fff;
	border: none;
	position: fixed;
	color: #777;
	top: 92px;
	left: 32px;
	z-index: 10;
	border-radius: 3px;
	visibility: hidden;
	opacity: 0;
	transition: .2s ease;
}

.white-shirts .clear-all.show {
	opacity: 1;
	visibility: visible;
}

.white-shirts .clear-all span {
	display: inline-block;
}

.white-shirts .clear-all span.icon {
	display: inline-block;
	background: url(/images/icons/reset.svg) no-repeat left center;
	background-size: 16px;
	width: 16px;
	height: 16px;
	position: relative;
	top: 3px;
	margin-right: 12px;
}

.white-shirts .clear-all:hover {
	background: #fff;
	color: #333;
}

.white-shirts .clear-all:active,
.white-shirts .clear-all:focus {
	background: none;
	color: #333;
	box-shadow: none;
}

@media (max-width: 1030px) {
	.white-shirts .clear-all {
		top: 80px;
		left: 17px;
	}

	.white-shirts .clear-all span:last-of-type {
		display: none;
	}

	.white-shirts .clear-all span.icon {
		top: 2px;
		margin-right: 0;
	}
}

.white-shirts .debug {
	position: fixed;
	top: 92px;
	right: 32px;
	text-align: right;
	z-index: 99;
	opacity: .3;
}

.white-shirts .debug:hover {
	opacity: 1;
}

@media (max-width: 1030px) {
	.white-shirts .debug {
		display: none;
	}
}

.white-shirts .prev {
	display: inline-block;
	margin-bottom: 0;
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: none;
	border-radius: 2px;
	white-space: nowrap;
	background: transparent;
	color: #757575;
	position: fixed;
	left: 50%;
	top: 92px;
	margin-left: -48px;
	z-index: 10;
	font-size: 13px;
	visibility: hidden;
	opacity: 0;
	transition: .2s ease;
}

@media (max-width: 1030px) {
	.white-shirts .prev {
		top: 80px;
		margin-left: -28px;
	}

	.white-shirts .prev span {
		display: none;
	}
}

.white-shirts .prev.show {
	opacity: 1;
	visibility: visible;
}

.white-shirts .prev:hover {
	background: #fff;
	color: #333;
}

.white-shirts .prev:active,
.white-shirts .prev:focus {
	background: none;
	color: #333;
	box-shadow: none;
}

.white-shirts .answers {
	position: absolute;
	z-index: 9;
	background: #fff;
	top: 50%;
	right: 48px;
	left: 50%;
	bottom: auto;
	margin: auto;
	height: auto;
	max-height: calc(100vh - 156px);
	overflow: scroll;
	padding: 24px;
	z-index: 10;
	border: 1px solid #444;
	box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
	transform: translateY(-30%);
	visibility: hidden;
	opacity: 0;
	transition: .5s ease;
	will-change: transform;
}

.white-shirts .answers.is-shown {
	transform: translateY(-50%);
	opacity: 1;
	visibility: visible;
}

.white-shirts .answers img {
	display: none;
}

.white-shirts .answers img.is-shown {
	display: block;
}

.white-shirts .answers ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	-webkit-column-gap: 16px;
	-webkit-row-gap: 16px;
	justify-content: center;
	padding: 0;
	margin: 0;
}

.white-shirts .answers .shirt {
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	flex: 1 0 50%;
	max-width: 48%;
}

.white-shirts .answers .shirt-block {
	padding: 16px;
	text-align: center;
	display: block;
	height: 100%;
	border: 1px solid #ddd;
	text-decoration: none;
}

.white-shirts .answers .shirt-block:hover {
	border-color: #aaa;
}

.white-shirts .answers .shirt-block img {
	width: 280px;
	margin: 20px auto 32px;
	width: 80%;
	height: auto;
}

.white-shirts .answers .shirt-block h5 {
	margin: 0 auto 8px;
	color: #333;
	max-width: 280px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 300;
}

.white-shirts .answers .shirt-block p {
	color: #757575;
}

.white-shirts .answers > p {
	font-size: 17px;
	margin: 24px 0;
	color: #757575;
	max-width: 40ch;
}

@media (max-width: 1030px) {
	.white-shirts .question-wrap {
		left: 75px;
	}
	.white-shirts .answers {
		padding: 16px;
		transform: translateY(10%);
		top: 146px;
		right: 5%;
		left: 5%;
		bottom: auto;
		width: 90%;
		margin-bottom: 24px;
		overflow: visible;
		max-height: unset;
	}
	.white-shirts .answers.is-shown {
		transform: translateY(0);
	}
	/*.white-shirts .answers ul {
		margin-top: 24px;
	}*/
	.white-shirts .answers .shirt {
		flex: 1 100%;
		width: 100%;
		max-width: 100%;
		padding-top: 0;
	}

	.white-shirts .count {
		padding: 16px 28px;
		top: 140px;
	}
	.white-shirts .count::before {
		width: 12px;
	}
	.white-shirts .count span {
		font-size: 16px;
	}
	.results-text {
		display: none;
	}

}

.white-shirts .answers-log {
	position: fixed;
	z-index: 9;
	background: rgba(255, 255, 255, 0.7);
	top: 70vh;
	right: 24px;
	bottom: 24px;
	width: 250px;
	overflow: scroll;
	padding: 20px;
	border: 1px solid #aaa;
	visibility: hidden;
}

.white-shirts .answers-log ul {
	padding-left: 10px;
	margin-left: 0;
}

.white-shirts .answers-log li {
	margin-bottom: 4px;
}

.white-shirts .answers-log h5 {
	margin: 0;
	font-size: 11px;
	line-height: 1.2;
}

.white-shirts .answers-log p {
	color: #757575;
	font-size: 12px;
}

.white-shirts .answers-log img {
	display: none;
}

.white-shirts .answers-log img.is-shown {
	display: block;
}

.white-shirts .answers-log.is-shown {
	visibility: visible;
}

.white-shirts.answers-shown .questions div {
	opacity: 0;
}