	/* Skinmatch */
	.skinmatch-toggle {cursor: pointer; margin-bottom: 18px; display: inline-block;}
	#skinmatch-popup {display: none;}
	#skinmatch-popup.active {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0,0,0,0.5);
		z-index: 99;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#skinmatch-popup .inner {
		background: #fff;
		color: #221F20;
		padding: 15px;
		/*margin: 0 1rem;*/
		width: 850px;
		height: 650px;
		max-width: 90vw;
		max-height: 100%;
		overflow: hidden;
		border-radius: 6px;
		position: relative;
		display: flex;
		flex-direction: column;
	}
	#skinmatch-popup .inner .close-popup {
		position: absolute;
		top: 5px;
		right: 5px;
		cursor: pointer;
		color: #221F20;
		padding: 3px 5px;
		font-size: 1.5em;
		font-weight: 300;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#skinmatch-popup .inner .close-popup::after {
		font-family: "FontAwesome-5-Pro";
		content: '\ea78';
	}
	#skinmatch-popup .inner .smt-holder {
		flex: 1;
		max-height: 100%;
    	overflow-y: auto;
	}
	#skinmatch-popup .inner .infotext {
		font-size: 12px;
		padding-top: 30px;
	}

	.skinmatch-open {overflow-y: hidden !important;}

	/* alt version */
	.skincare-quiz.skinmatch-toggle {margin: 5px 0; background-color: #E7B5C1; color: #fff; font-weight: 600; padding: 10px 8px; text-align: center; cursor: pointer; display: block; transition: background-color 0.1s ease-out; text-transform: uppercase;}
	.skincare-quiz.skinmatch-toggle:hover {background-color: #e097a8;}
	#skinmatch-popup .inner.quiz {padding-top: 40px;}

	@media only screen and (max-width: 1050px) {
		#skinmatch-popup.active {
			padding-top: var(--header-height, 100px);
		}
	}

	/* Skinmatch */