#products {
	
}

#products .selectors {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	gap: 30px;
}

@media screen and (max-width: 768px) {
	#products .selectors {
		margin-bottom: 20px;
		gap: 15px;
	}
}

#products .selectors .btn-selector {
	display: flex;
	align-items: center;
	background: transparent;
	border-radius: 50px;
	padding: 6px 20px;
	border: 2px solid #FFF;
	color: #FFF;
	font-size: 20px;
}

@media screen and (max-width: 768px) {
	#products .selectors .btn-selector {
		font-size: 16px;
		padding: 0px 10px;
	}
}

#products .selectors .btn-selector:hover {
	cursor: pointer;
	color: #013131;
	background: #85FFC7;
	border: 2px solid #85FFC7;
}

#products .selectors .btn-selector.active {
	color: #85FFC7;
	border: 2px solid #85FFC7;
}

#products .selectors .btn-selector.active:hover {
	color: #013131;
}

#products .selectors .btn-selector svg {
	display: inline-block;
	margin-right: 10px;
	max-width: 40px;
	max-height: 40px
}

@media screen and (max-width: 768px) {
	#products .selectors .btn-selector svg {
		margin-right: 0!important;
		max-width: 50px;
		max-height: 50px
	}
	#products .selectors .btn-selector .label {
		display: none;
	}
}

#products .selectors .btn-selector.active svg {
	fill: #85FFC7!important;
}

#products .selectors .btn-selector:hover svg {
	fill: #013131!important;
}

#products .items .item {
	display: none;
	align-items: center;
	background: rgba(231, 246, 241, 0.20);
	border-radius: 25px;
	padding: 48px;
	max-width: 85%;
	margin: 0 auto;
}

@media screen and (max-width: 980px) {
	#products .items .item {
		flex-direction: column;
		padding: 35px;
		max-width: 100%;
	}
}

#products .items .item.active {
	display: flex;
}

#products .items .item .item__thumbnail {
	width: 300px;
	border-radius: 25px;
	margin-right: 80px;
}

@media screen and (max-width: 780px) {
	#products .items .item .item__thumbnail {
		margin-right: 0;
		margin-bottom: 30px;
	}
}

#products .items .item  .item__content {
	font-size: 20px;
	line-height: 28px;
	text-align: left;
}