.detail-top__header {
	padding: 0;
	margin: 0 0 20px 0;
	font-size: 30px;
	line-height: 34px;
}

.detail-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.detail-top__price {
	font-family: var(--body-font);
	background-color: green;
	color: var(--white-color);
	position: relative;
	padding: 17px 36px;
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	text-transform: uppercase;
	z-index: 2;
	border-radius: 4px;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	border: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	text-align: center;
}

.detail-top__right {
	display: flex;
	align-items: center;
	gap: 30px;
}

.detail-socials__whatsapp {
	font-size: 50px;
	line-height: 1;
	color: #2cb742;
}

@media(max-width: 600px){
	.detail-top__right {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-left:  10px;
	}

	.detail-top__price sup {
		top: -10px;
	}
}

@media(max-width: 360px){
	.detail-top__price {
		flex: 0 0 100%;
		padding: 17px 20px;
	}
	
	.detail-top {
		flex-wrap: wrap;
		gap: 10px;
	}

	
	.detail-top__right {
		margin: 0;
		flex: 0 0 100%;
	}
	
	
	.detail-top__right .th-btn {
		width: 100%;
		padding: 17px 20px;
	}
}
