.best-offers__show-more-btn {
	margin: 0 auto;
}

.best-offer__tab {
	display: none;
}

.best-offer__tab_active {
	display: block;
}

.best-offers__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.best-offers__tab-btns {
	display: flex;
}

.best-offers__tab-btn {
	padding: 0px 20px;
	cursor: pointer;
	color: #000;
	height: 25px;
}

.best-offers__tab-btn_active {
	background-color: #5be103;
	color: #fff;
	border-radius: 4px;
}

.new.best-offers__tab-btn_active {
	background-color: #ff4d00;
	color: #fff;
	border-radius: 4px;
}

.best-offers__title {
	font-size: 2rem;
  	line-height: 2.375rem;
  	font-family: "Euclid Circular A", "Sans-serif";
	font-weight: 500;
	color: #000;
}

.best-offers__show-more-btn {
	background-color: #009de0;
	color: #fff;
	padding: 5px 30px;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
}

.best-offers__show-more-btn:hover {
	background-color: #5bceff;
  	border-color: #5bceff;
  	box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
}

.best-offers__title.mobile{
	display: none;
}
@media screen and (max-width: 768px) {
	.best-offers__head {
		flex-direction: column;
	}

	.best-offers__title {
		margin-bottom: 20px;
	}
	.best-offers__title.mobile{
		display: block;
		margin-bottom: 0;
	}
}