.buyersPage-title {
	padding: 0;
	margin: 40px 0 0 0;
	font-size: 56px;
	line-height: 56px;
	font-weight: normal;
	color: rgb(39, 42, 46);
}
@media (max-width: 999px) {
	.buyersPage-title {
		font-size: 24px;
		line-height: 24px;
	}
}

.buyersPage-block {
	margin-top: 40px;
}
@media (max-width: 999px) {
	.buyersPage-block {
		padding: 24px;
		background-color: white;
		border-radius: 12px;
	}
}

.buyersPageBlock-tabs {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
@media (min-width: 1000px) {
	.buyersPageBlock-tabs {
		display: none;
	}
}

.buyersPageBlock-tab {
	padding: 8px 20px;
	width: 50%;
	max-width: 150px;
	background-color: rgb(244, 245, 246);
	font-size: 12px;
	line-height: 16px;
	color: rgb(27, 25, 24);
	text-align: center;
	cursor: pointer;
}
.buyersPageBlock-tab:first-child {
	border-radius: 12px 0 0 12px;
}
.buyersPageBlock-tab:last-child {
	border-radius: 0 12px 12px 0;
}

.buyersPageBlock-tab.active {
	background-color: rgb(39, 42, 46);
	color: white;
	cursor: default;
}

.buyersPageBlock-wrapper {
	display: flex;
	gap: 24px;
}
@media (max-width: 999px) {
	.buyersPageBlock-wrapper {
		margin-top: 32px;
		gap: 0;
	}
}

.buyersPageBlock-column {
	padding: 40px;
	width: calc(100% / 2 - 12px);
	background-color: white;
	border-radius: 12px;
	font-size: 14px;
	line-height: 20px;
	color: rgb(39, 42, 46);
}
@media (max-width: 999px) {
	.buyersPageBlock-column {
		padding: 0;
		width: 100%;
		background-color: transparent;
		font-size: 12px;
		line-height: 16px;
	}
	.buyersPageBlock-column:not(.active) {
		display: none;
	}
}

.buyersPageBlock-column p {
	margin: 24px 0 0 0;
	padding: 0;
}
.buyersPageBlock-column p:first-child {
	margin-top: 0;
}

.buyersPageBlock-column p.buyersPage-text {
	font-size: 16px;
	line-height: 24px;
}
@media (max-width: 999px) {
	.buyersPageBlock-column p.buyersPage-text {
		font-size: 14px;
		line-height: 20px;
	}
}

.buyersPage-subtitle {
	position: relative;
	padding: 40px 0 0 0;
	margin: 40px 0 0 0;
	font-size: 32px;
	line-height: 32px;
	font-weight: normal;
	color: rgb(39, 42, 46);
}
@media (max-width: 999px) {
	.buyersPage-subtitle {
		font-size: 24px;
		line-height: 24px;
	}
}

.buyersPage-subtitle:first-child {
	margin-top: 0;
	padding-top: 0;
}

.buyersPage-subtitle:before {
	position: absolute;
	top: 0;
	right: -40px;
	left: -40px;
	display: block;
	content: '';
	height: 1px;
	background-color: rgb(210, 216, 221);
}
.buyersPage-subtitle:first-child:before {
	display: none;
}

.buyersPageBlock-dates {
	margin-top: 40px;
	display: flex;
	gap: 16px;
}
@media (max-width: 999px) {
	.buyersPageBlock-dates {
		margin-top: 24px;
	}
}
@media (max-width: 499px) {
	.buyersPageBlock-dates {
		flex-direction: column;
		gap: 0;
	}
}

.buyersPageBlock-date {
	padding: 24px;
	width: calc(100% / 2 - 8px);
	border: 1px solid rgb(210, 216, 221);
	border-radius: 12px;
}
@media (max-width: 499px) {
	.buyersPageBlock-date {
		width: 100%;
	}
	.buyersPageBlock-date:first-child {
		border-radius: 12px 12px 0 0;
	}
	.buyersPageBlock-date:nth-child(n + 2) {
		border-top: none;
	}
	.buyersPageBlock-date:last-child {
		border-radius: 0 0 12px 12px;
	}
}

.buyersPageBlockDate-title {
	font-size: 32px;
	line-height: 32px;
	color: rgb(39, 42, 46);
}
@media (max-width: 999px) {
	.buyersPageBlockDate-title {
		font-size: 24px;
		line-height: 24px;
	}
}

.buyersPageBlockDate-text {
	margin-top: 33px;
	font-size: 16px;
	line-height: 24px;
	color: rgb(39, 42, 46);
}
@media (max-width: 999px) {
	.buyersPageBlockDate-text {
		margin-top: 24px;
		font-size: 14px;
		line-height: 20px;
	}
}

.buyersPage-note {
	margin-top: 40px;
	padding: 24px;
	border: 1px solid rgb(210, 216, 221);
	border-radius: 12px;
	background-color: rgb(244, 245, 246);
	font-size: 16px;
	line-height: 24px;
}
@media (max-width: 999px) {
	.buyersPage-note {
		margin-top: 24px;
		font-size: 14px;
		line-height: 20px;
	}
}