.js-modal {
	margin-top: 0;
}

.js-modal-content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(10, 10, 10, 0.37);
	z-index: 99999999999;
}

.js-modal-content-inner {
	position: relative;
	width: 95%;
}

.js-modal--show-all-inclusions .js-modal-content-inner {
	width: 100%;
}

.js-modal-content-inner>:first-child {
	margin-top: 0
}

.js-modal-content-inner>:last-child {
	margin-bottom: 0
}

.modal-close-btn {
	position: absolute;
	right: 20px;
	top: 20px;
	padding: 7px;
	color: #224940;
	font-family: inherit;
	font-weight: 400;
	font-size: 26px;
	line-height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	min-height: 42px;
	border-radius: 16px;
	z-index: 100;
}

.js-modal .filter-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 12px;
	min-width: 106px;
}

.js-modal--filters .js-modal-content-inner {
	width: 100%;
}


@media (min-width: 1000px) {
	.js-modal-content-inner {
		width: 60%;
	}

	.js-modal--filters .js-modal-content-inner {
		width: 600px;
	}

	.js-modal--show-all-inclusions .js-modal-content-inner {
		width: 60%;
	}

}

@media (max-width: 767px) {
	.js-modal--show-all-inclusions .js-modal-content {
		padding-top: 0;
	}
}

@media (max-width: 1000px) {
	.js-modal--filters .js-modal-content {
		padding: 0;
	}

}