.configurator {
	position: relative;
	height: 600px;
}

.configurator-intro, .configurator-form {
	background: wheat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}
.configurator-intro {
	z-index: 10;
}
 

.configurator.open .configurator-intro {
	opacity: 0;
	visibility: hidden;
}


.card {
	position: absolute;
	left: 50%;
	right: 0;
	top: 0;
	bottom: 0;
	background: white;
	transition: transform .3s ease-in-out;
}

.card.first-card {
	left: 0%;
	right: 50%;
}

.card.first-step.active {
	z-index: 4;
}


.card.first-step.dog.active {
	transform: none;
	z-index: 6;
}

.card.active {
	z-index: 2;
}
.card.passed {
	z-index: 3;
	transform: translateX(-100%);
	
}
.card.passed, .card.passed * {
	pointer-events: none !important;
}

.go-forward {
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

.go-forward.go-visible {
	opacity: 1;
	visibility: visible;
}


.configurator-intro {
	background-color: white;
	background-image: url(/Content/images/divisorioprato.jpg);
	background-size: contain;
	background-position: bottom center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.configurator {
	overflow: hidden;
}

.configurator-intro > * {
	width: 50%;
}

.intro-img-container {
	display: inline-block;
}

.flex-right {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding-bottom: 100px;
}

.why-row {
	margin-bottom: 100px;
}

.configurator ~ .prato-categorie {
	display: none;
}

.step-selected label {
	pointer-events: none;
}

.comic {
	background: url('/Content/images/comic.png?v=1');
	width: 280px;
	height: 170px;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: "Reis", sans-serif;
	font-size: 26px;
	line-height: 31px;
	padding: 40px 50px;
	padding-bottom: 55px;
	background-repeat: no-repeat;
	color: black;
}

.cloud {
	background: url('/Content/images/cloud.png');
	width: 371px;
	height: 179px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Reis", sans-serif;
	font-size: 26px;
	line-height: 31px;
	padding: 50px 110px 30px 90px;
	color: black;
	text-align: center;
	position: absolute;
	right: -200px;
	top: -10px;
}


.intro-img-container .comic {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 85px;
}

.configurator-intro .title {
	font-size: 64px;
	line-height: 77px;
	color: #333333;
	margin-bottom: 30px;
}

.configurator-intro p {
	font-family: Arial;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	color: #666666;
	margin-bottom: 40px;
	max-width: 620px;
}

.configurator .btn-primary {
	background: #C54A2B;
	border-radius: 4px;
	padding: 11px 40px;
	font-weight: 600;
}

.card.first-step.dog {
	background: #E5E5E5;
}

.card.first-step.cat {
	background: #CBE1E1;
}


.card.first-step {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	justify-content: center;
	padding: 0 135px;
}

.card.first-step.first-card-target {
	align-items: flex-start;
}

.first-card .comic {
	background-image: url("/content/images/comic-inv.png");
}

.animal-img {
	border-radius: 1000px;
	overflow: hidden;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	background-color: white;
	border:  5px solid  transparent;
	transition: all .3s ease-in-out;
	width: 210px;
	height: 210px;
}


.first-step .animal-img {
	width: 284px;
	height: 284px;
}

.animal-img img {
	max-height: 100%;
	width: auto;
}

.dog input:checked ~ .animal-img {
	border-color: #E65939;
}

.cat input:checked ~ .animal-img {
	border-color: #6B96DD;
}

.step-selected input:checked ~ .animal-img {
	border-color: transparent;
}

.configurator input {
	display: none;	
}

.first-step label {
	position: relative;
	width: 100%;
	max-width: 456px;
	display: flex;
	align-items: center;
	flex-flow: column;
	font-weight: 300;
	cursor: pointer;
}



.animal-title {
	background: url("/content/images/red-stripe.png");
	width: 100%;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	line-height: 36px;
	font-family: "Reis", sans-serif;
	color: #FFFFFF;
	font-weight: 100;
	margin-top: -20px;
	background-repeat: no-repeat;
}

.first-step .animal-title {
	height: 90px;
	font-size: 70px;
	line-height: 84px;
}
.animal-title.cat {
	background-image: url("/content/images/blue-stripe.png");
}

.first-step .comic {
	position: absolute;
	top: -45px;
	left: -15px;
}

.first-step.first-card-target .comic {
	left: auto;
	right: -15px;
}

.first-step .go-forward {
	position: absolute;
	bottom: 30px;
	right: 30px;
}

.go-forward:after {
	content: '';
	display:inline-block;
	background: url("/content/images/arrow.png");
	width: 87px;
	height: 32px;
	vertical-align: middle;
	margin-left: 20px;
}

.go-forward {
	vertical-align: middle;
}


.comic {
	opacity: 0;
	visibility: hidden;
	transition: all .15s ease-in-out;
}

input:checked ~ .comic {
	opacity: 1;
	visibility: visible;
}


.card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 56px;
	padding-left: 120px;
}

.card .flex-container {
	width: 100%;
	max-width: 580px;
}



.card.first-step:before {
	content: none;
}

.card-content {
	display: flex;
	flex-flow: column;
	flex: 1;
	justify-content: center;
	padding-bottom: 30px;
}


.space-between {
	justify-content: space-between;
}

.card .title {
	font-size: 26px;
	line-height: 31px;
	margin-bottom: 30px;
	text-align: center;
}

.card-content {
	max-width: 570px;
	width: 100%;
}

.animal-radio {
	width: 266px;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.animal-radio:first-child {
	margin-right: 30px;
}

.animal-radio .animal-title {
	background-size: 100% 100%;
}

.go-back {
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	text-decoration-line: underline;
	color: #828282;
	cursor: pointer;
}

.card.first-step.first-card-target {
	z-index: 5;
}

.first-card-target.passed label {
	margin-left: auto;
}

.step-selected input:checked ~ .comic {
	opacity: 0;
	visibility: hidden;
}

.step-selected input:checked ~ .comic.go-visible {
	opacity: 1;
	visibility: visible;
}

.radio {
	background-image: url("/content/images/yes.png?v=4");
	background-size: 110%;
	width: 86px;
	height: 86px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 1000px;
	font-family: 'Reis', sans-serif;
	font-size: 30px;
	line-height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
	border: 4px solid transparent;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

.cat input:checked ~ .radio {
	border-color: #6B96DD;
}

.radio.no {
	background-image: url("/content/images/no.png?v=2");
	color: white;
	margin-left: 40px;
	background-size: 112%
}

.go-forward.btn:after {
	content: none;
}

.card .title.big {
	font-size: 30px;
	line-height: 36px;
}

.cloud {
	transition: all .3s ease-in-out;
}

.step-selected .cloud {
	opacity: 0;
	visibility: hidden;
}

.animal-options.small {
	display: flex;
	flex-wrap: wrap;
}

.animal-options.small .animal-radio {
	width: 153px;
	margin-bottom: 25px;
}
.animal-options.small.animal-options.small .animal-0radio:last-nth-child(1), .animal-radio:last-nth-child(2) {
	margin-bottom: 0;
}


.animal-options.small .animal-radio:nth-child(odd) {
	margin-right: 25px;
}


.animal-options.small {
	max-width: 371px;
	margin: auto;
}

.animal-options.small .animal-img {
	width: 130px;
	height: 130px;
}

.animal-options.small .animal-title {
	height: 35px;
	font-size: 24px;
	line-height: 29px;
}

.animal-options.medium {
	display: flex;
	flex-wrap: wrap;
}

.animal-options.medium .animal-radio {
	width: 153px;
	margin-right: 25px;
}


.animal-options.medium .animal-radio:last-child {
	margin-right: 0;
}


.animal-options.medium .animal-img {
	width: 130px;
	height: 130px;
}

.animal-options.medium .animal-title {
	height: 35px;
	font-size: 24px;
	line-height: 29px;
}

.simple-radio {
	border: 5px solid white;
box-sizing: border-box;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	width: 30px;
height: 30px;
	display: inline-block;
	border-radius: 100px;
	vertical-align: middle;
	margin-right: 20px;
	transition: all .15s ease-in-out;
	cursor: pointer;
}

.simple-radio-container {
	margin-bottom: 15px;
	font-weight: 300;
}

input:checked ~ .simple-radio {
	background: #E65737;
}
.title.text-left {
	text-align: left;
}
input:checked ~ span {
	font-weight: 600;
}

.dog.step-selected.go-active ~ .cat ~ .cat {
	opacity: 0;
	visibility: hidden;
}

.menu {
	max-width: 600px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
}

.tag {
	height: 25px;
	border-radius: 2px;
	background: #ccc;
	margin-right: 10px;
	padding: 0 10px;
	line-height: 25px;
	font-weight: bold;
	color: white;
	margin-bottom: 10px;
	font-size: 14px;
	font-family: Arial;
}

.tag.green {
	background: #8FBF8E;
}

.product-title {
	font-family: "Reis", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 50px;
	line-height: 1.3;
	color: #000000;
	margin-bottom: 20px;
}

.product-title:after {
	width: 160px;
	height: 6px;
	content: '';
	display: block;
	margin-top: -7px;
}
.product-title.green:after {
	background: #8FBF8E;
}

.menu {
	width: 100%;
}

.menu > .flex-container {
	justify-content: stretch;
	width:  100%;
	max-width: none;
}

.menu .text-container, .menu .img-container {
	max-width: 300px;
	width: 100%;
}

.product-description {
	font-size: 14px;
	line-height: 16px;
	color: #828282;
	margin-bottom: 10px;
}

.menu .info {
	font-size: 14px;
	line-height: 16px;
	text-decoration: underline;
	color: #828282;
	font-weight: 700;
	margin-bottom: 30px;
	display: block;
}

.menu .btn .icon.icon-cariola {
	position: static;
	vertical-align: middle;
	margin-top: -5px;
	display: inline-block;
	margin-right: 20px;
}

.menu .btn {
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 20px;
	padding-right: 30px;
}

.menu .btn span {
	vertical-align: middle;
}

.menu .title {
	text-align: left;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 12px;
}

.menu .subtitle {
	font-size: 16px;
	line-height: 18px;
	color: #828282;
	margin-bottom: 30px;
}

.double-product .tags {
	margin-bottom: 30px;
}

.menu .products {
	display: flex;
	align-items: flex-start;
}

.double-img-container {
	width: 100px;	
	min-width: 100px;
	margin-right: 10px;
}

.double-img-container img {
	max-width: 100%;
}

.double-product .product-title {
	font-size: 40px;
	line-height: 48px;
}

.product-title.pink:after {
	background: #E89BE5;
}

.double-product .product-title:after {
	width: 50px;
height: 4px;
	margin-top: 0;
}

.double-product .btn {
	margin-top: 20px;
	padding: 11px 21px;
}


.double-product .product:first-child {
	margin-right: 40px;
}

.double-product.multiple .products{
	flex-wrap: wrap;
}

.double-product.multiple .product-title {
	font-size: 24px;
line-height: 29px;
	flex-basis: calc(33% - 20px);
	margin-right: 20px;
	margin-bottom:24px;
}

.double-product.multiple .btn {
	margin-top: -8px;
	padding-left: 28px;
	padding-right: 28px;
}

.menu ~ .go-back {
	margin-top: auto;
}






.double-product.multiple:after {
	content: '';
	position: absolute;
	background: url('/content/images/bassotto.png?v=1');
	width: 341px;
	height: 128px;
	bottom: 0;
	right: 0;
}

.double-product .product {
	padding-bottom: 20px;
}

@media (max-width: 1499px) {
	.animal-img {
		width: 150px;
		height: 150px;
	}
	.animal-radio {
		width: 180px;
	}
	.animal-options {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.card {
		padding-left: 50px;
	}
	.card.first-step {
		padding: 50px;
		align-items: center;
	}
	.card.first-step.first-card-target {
		align-items:center;
	}
	.first-card-target.passed label {
		margin-left: 0;
	}
	.animal-options.medium .animal-radio {
		margin-bottom: 20px;
	}
	.animal-title {
	    background-size: 100% 100%;
	}
}

.configurator-intro .comic {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 991px) {
	.configurator {
		height: 100vh;
	}
	.configurator-intro .text .title, .configurator-intro .text p {
		display: none;
	}
	
	.configurator-intro > * {
		width: auto;
	}
	
	.configurator-intro {
		flex-direction: column;
		background: white;
	}
	.flex-right {
		padding-bottom: 0;
		margin-bottom: 40px;
	}
	
	.card.first-card {
		right: 0%;
		bottom: calc(50% - 83px);
		justify-content: stretch;
	}
	.first-card .cloud {
		background: none;
		padding: 0;
		height: 167px;
		width: auto;
		font-size: 36px;
		line-height: 43px;
	}
	
	.card {
		left: 0%;
		padding: 0;
	}
	.card.first-card-target {
		top: calc(50% + 83px);
	}
	
	.card.first-step {
		padding: 15px;
	}
	.card.first-step.dog {
		background: white;
	}
	
	.comic {
		display: none;
	}
	
	.cloud {
		position: static;
	}
	
	.first-step .animal-img {
		width: 250px;
		height: 250px;
	}
	
	.first-step .animal-title {
		height: 66px;
		max-width: 340px;
		font-size: 44px;
		line-height: 41px;
	}
	
	.first-step label {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	
	.card.first-step.dog.active.step-selected {
		transform: translateX(-100%);
	}
	
	.card-content {
		max-width: none;
	}
	
	.card .title {
		height: 200px;
		background: #E5E5E5;
	}

	.card .title span {
		width: 375px;
		height: 200px;
		background: url('/content/images/comic-mobile.png');
		margin: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 50px 30px;
	}
	
	.card.cat .title span {
		background: url('/content/images/cloud-mobile.png?v=3');
		padding: 40px 20px 10px;
	}
	
	.card.cat .title {
		background: #CBE1E1;
	}
	
	.card .flex-container {
		max-width: none;
	}
	
	.card > .flex-container {
		padding: 20px 25px;
	}
	
	.animal-options.medium {
		height: 100%;
	}
	.simple-radio-container {
		padding: 0 20px;
	}
	.options-container {
		max-height: 280px;
	}
	
	.card .title.visible-mobile {
		margin-top: auto;
		font-size: 30px;
line-height: 36px;
		margin-bottom: 40px;
	}
	.simple-radio-container:last-of-type {
		margin-bottom: auto;
	}
	.card .visible-mobile.title {
		background: none;
		height: auto;
		text-align: left;
		padding: 0 50px;
	}
	.animal-options, .sterilized {
		height: 100%;
	}
	
	.testata-prod {
		height: 250px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #CBE1E1;
	}
	
	.testata-prod .animal-radio {
		margin-bottom: 0;
		position: relative;
		left: 30px;
	}
	
	.testata-prod .img-container {
		max-width: 160px;
		position: relative;
	}
	
	.img-container img {
		max-width: 100%;	
	}
	
	.menu-single.flex-container {
		display: block;
		padding: 0 27px;
	}
	
	
	
	.menu-single .product-title {
		font-size: 50px;
line-height: 60px;
	}
	
	.menu-single .product-title:after {
		width: 104px;
		height: 6px;
		margin-top: 3px;
	}
	
	.menu .menu-single .text-container, .menu .menu-single .img-container {
		max-width: none;
	}
	.menu .menu-single .img-container {
		display: none;
	}
	
	.menu .menu-single .info {
		margin-top: 20px;
	}
	
	.menu .menu-single .btn {
		margin-top: 20px;
	}
	.card .title {
		position: relative;
	}
	.card .title:first-of-type:after {
		content: '';
		display: block;
		background: url("/content/images/dog-mobile.png");
		width: 142px;
		height: 100px;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	
	.card.cat .title:first-of-type:after {
		background: url("/content/images/cat-mobile.png");
		height: 32px;
		width: 85px;
		bottom: -32px;
		right: 10px;
	}
	.menu {
		max-width: none;
	}
	.double-product.multiple:after {
		display: none;
	}
	.double-product.multiple .products {
		display: flex;
	}
	.double-product.multiple .product-title {
		flex-basis: calc(50% - 20px);
		margin-bottom: 10px;
	}
	.double-product.multiple .tags {
		margin-bottom: 30px;
	}
	.go-forward:after {
		width: 57px;
		height: 22px;
		background-size: contain;
		background-repeat: no-repeat;
		margin-left: 0;
	}
	
	.card-content {
		padding-bottom: 0;
	}
	.simple-radio {
		min-width: 30px;
	}
	
	.simple-radio-container {
		display: flex;
		align-items: center;
		line-height: 18px;
		margin-bottom: 10px;
	}
	
	.first-step .go-forward {
		bottom: 15px;
		right: 15px;
	}
	
	.animal-options {
		padding-top: 30px;
	}
	
	.card .title {
		margin-bottom: 0;
	}
	
	.menu .subtitle {
		display: none;
	}
	
	.menu .tags {
		margin-bottom: 0;		
		padding: 15px 27px;
		padding-bottom: 5px;
	}
	
	.menu .products {
		display: block;
		padding: 0 27px;
	}
	
	.double-product .product {
		padding-bottom: 15px;
	}
	
	.double-product .product:first-child {
		margin-right: 0;
	}
	.double-img-container {
		display: none;
	}
	
	.menu .info {
		margin-bottom: 0;
	}
	
	.double-product .product-title {
		margin-bottom: 10px;
	}
	.double-product .btn {
		margin-top: 15px;
		height: 36px;
		padding-top: 7px;
	}
	
	.double-product .product-title {
		font-size: 30px;
		line-height: 36px;
	}
	
	.menu ~ .go-back {
		margin-bottom:15px;
		margin-left: 27px;
	}
	.configurator-intro { 
		justify-content: center;
	}
	
	.configurator-intro .comic {
		display: block;
	}
	.intro-img-container .comic {
		top: 20px;
	}
	
	.configurator-intro img {
		max-width: 100%;
	}
	
	.menu-single .tags {
		padding-left: 0;
		padding-right: 0;
	}
	
}

@media (max-width: 991px) and (min-width: 768px) {
	.animal-options.small .animal-radio {
		width: 200px;
		margin-bottom: 50px;
	}
	
	.animal-options.small {
		max-width: 500px;
	}
	.animal-options.small .animal-radio:nth-child(odd) {
		margin-right: 50px;
	}
	
	.menu {
		flex: 1;
	}
	.menu-single {
		height: calc(100% - 270px);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.menu .menu-single .text-container {
		flex: 1;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	
	.double-product.multiple {
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	.double-product.multiple .tags {
		margin-top: auto;
	}
	.double-product.multiple .products {
		margin-bottom: auto;
	}
	.double-product .double-img-container {
		display: block;
	}
	
	.menu .double-product .products {
		display: flex;
		margin-bottom: auto;
	}
	.double-product {
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	
	.double-product .tags {
		margin-top: auto;
	}
}

@media (max-width: 767px) {
	.first-step .animal-img {
		width: 150px;
		height: 150px;
	}
	
	.first-step .animal-title {
		height: 46px;
		max-width: 240px;
		font-size: 34px;
		line-height: 41px;
	}
	
	.animal-options:not(.small):not(.medium) {
		flex-direction: column;
	}
	
	.animal-radio:first-child {
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.animal-title {
		height: 45px;
	}
	.menu .menu-single .text-container {
		margin-top: 20px;
	}
}

@media (max-width: 1320px ) and (min-width: 768px) {
	.menu .btn .icon.icon-cariola {
		display: none;
	}
	.menu .btn {
		padding: 8px 10px;
		margin-bottom: 20px;
	}

}
@media (min-width: 992px) {
	.testata-prod, .visible-mobile {
		display: none;
	}

}


.configurator p {
	margin: 0;
}

.sterilized label:first-child {
	margin-right: 40px;
}

.simple-radio-container {
	display: flex;
}

.simple-check {
	width: 30px;
	height: 30px;
	border: 1px solid #E5E5E5;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	margin-right: 20px;
	cursor: pointer;
}

input[type=checkbox]:checked~.simple-check {
	background: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
input[type=checkbox]:checked~.simple-check:after {
	content: '';
	display: block;
	width: 10px;
	height: 14px;
	transform: rotate(45deg);
	border-bottom: 4px solid #C44A2B;
	border-right: 4px solid #C44A2B;
	margin-top: -4px;
}

.options-container {
	display: flex;
	flex-wrap: wrap;
	max-height: 350px;
    flex-direction: column;
}

.options-container .simple-radio-container {
	flex-basis: 50%;
}
.line {
	width: 160px;
	height: 6px;
}

.configurator-intro .flex-right {
	background: #B5CCC2;
}

.configurator-intro .text {
	padding-left: 100px;
}

.configurator-intro {
	background: white;
}

.configurator-intro .btn {
	margin-top: 40px;
}

.intro-img-container {
	margin-right: 100px;
}

.intro-img-container .comic {
	margin-right: 0;
	top: 105px;
}

.first-step .comic {
		top: -75px;
	}

.double-product .tags {
	margin-bottom: 20px;
}

.double-product .product-title {
	margin-bottom: 10px;
}

.menu .double-product .subtitle {
	margin-bottom: 15px;
}

@media (max-width: 991px) {
	.configurator-intro .text {
		padding-left: 0;
	}
	.intro-img-container {
		margin-right: auto;
		margin-left: auto;		
		overflow: hidden;
		height: 100%;
	}
	.intro-img-container img {
		max-height: 100%;
		height: 100%;
		width: auto;
		max-width: none;
		display: block;
		margin-top: -100px;
	}

	.configurator-intro .flex-right {
		width: 100%;
		max-height: calc(100vh - 100px);
	}
	
	.configurator-intro .btn {
		margin-top: 0;
	}
	.intro-img-container .comic {
		margin-right: auto;
		top: 0;
		margin-top: -20px;
		position: relative;
	}
	.card .title.visible-mobile {
		margin-top: 40px;
	}
	
}

.not-required .go-forward {
	opacity: 1;
	visibility: visible;
}