.pricelist-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.pricelist-trigger::after {
	content: '';
	background: url(/images/arrow-down.svg) no-repeat center center;
	display: block;
	width: 36px;
	height: 36px;
}

.pricelist-trigger_on::after {
	transform: rotate(180deg);
}

.pricelist-wrap {
	display: none;
}

.pricelist-wrap_visible {
	display: block;
}

.pricelist {
	text-align: left;
	border-collapse: collapse;
	border-radius: 24px;
	overflow: hidden;
	width: 100%;
}

.pricelist_margin-top {
	margin-top: 40px;
}

.pricelist th {
	padding: 30px 20px;
	background-color: #d6c7b1;
}

.pricelist__th-small {
	padding: 20px;
}

.pricelist__heading {
	font-family: 'Halvar Breitschrift';
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.33;
	color: #000;
}

.pricelist__subheading {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.07;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.7);
	margin: 0;
}

.pricelist__tbody tr {
	background-color: #eaebeb;
	display: flex;
	flex-direction: column;
}

.pricelist__tbody tr:nth-child(2n) {
	background-color: #eff0f0;
}

.pricelist__tbody td {
	padding: 30px 20px 20px;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.41;
	color: rgba(0, 0, 0, 0.7);
}

.pricelist__tbody tr td:last-child {
	padding-top: 0;
	padding-bottom: 30px;
}

.pricelist-undertable {
	margin-top: 40px;
	text-align: center;
}

.pricelist-undertable__text {
	font-size: 17px;
	line-height: 1.41;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
}

.pricelist-undertable__button {
	font-size: 15px;
	line-height: 1.6;
	text-transform: uppercase;
	padding: 16px 24px;
	border-radius: 28px;
	background-color: #bda10f;
}


@media screen and (min-width: 768px) {

	.pricelist th {
		padding: 40px 30px;
	}

	.pricelist__th-small {
	padding: 20px 30px;
}

	.pricelist__tbody tr {
		display: table-row;
	}

	.pricelist__tbody td, .pricelist__tbody tr td:last-child {
		padding: 40px 30px;
		font-size: 24px;
		line-height: 1.2;
	}
	.pricelist__tbody tr td:last-child {
		white-space: nowrap;
	}


	.pricelist-trigger::after {
		width: 48px;
		height: 48px;
	}

	.pricelist-undertable {
		text-align: left;
	}
}

@media screen and (max-width: 767px) {
	.pricelist-container {
		width: 100% !important;
		padding: 0 !important;
	}
}