.hardness-converter {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.hardness-converter.section {
	padding-bottom: 60px;
}
@media (max-width: 991px) {
	.hardness-converter.section {
		padding-bottom: 48px;
	}
}
.hardness-converter.section .section__title-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.hardness-converter.section .section__title-wrapper.center,
.hardness-converter.section
	.section__title-wrapper.center
	.section__title-text {
	align-items: center;
	text-align: center;
}
.hardness-converter.section .section__title-text {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	line-height: 30px;
}
.hardness-converter__main {
	display: flex;
	align-items: stretch;
	gap: 24px;
}
@media (max-width: 1200px) {
	.hardness-converter__main {
		flex-direction: column;
		gap: 16px;
	}
}
.hardness-converter__calculator-wrapper {
	width: 60%;
	padding: 24px;
	border-radius: 8px;
	background-color: #f6f9ff;
	box-shadow: 0 0 8px 0 rgba(35, 37, 39, 0.16);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (max-width: 1440px) {
	.hardness-converter__calculator-wrapper {
		width: 85%;
	}
}
@media (max-width: 1200px) {
	.hardness-converter__calculator-wrapper {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.hardness-converter__calculator-wrapper {
		padding: 8px;
		gap: 24px;
	}
}
.hardness-converter__calculator-text {
	color: #8495a3;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
}
.hardness-converter__groups {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (max-width: 768px) {
	.hardness-converter__groups {
		gap: 24px;
	}
}
.hardness-converter__group {
	display: flex;
	align-items: center;
	gap: 16px;
}
@media (max-width: 768px) {
	.hardness-converter__group {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}
.hardness-converter__group h5 {
	color: #092c47;
	font-family: Open Sans;
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	width: 80px;
}
@media (max-width: 768px) {
	.hardness-converter__group h5 {
		width: 100%;
	}
}
.hardness-converter__inputs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	flex: 1;
}
@media (max-width: 768px) {
	.hardness-converter__inputs {
		width: 100%;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px 20px;
	}
}
.hardness-converter__inputs .number-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100%;
}
.hardness-converter__inputs .number-field label {
	padding: 0 8px;
	color: #0e6aed;
	font-family: Open Sans;
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	white-space: nowrap;
}
.hardness-converter__inputs .number-field .number-wrapper {
	position: relative;
}
.hardness-converter__inputs
	.number-field
	.number-wrapper:has(
		.spin-up:hover,
		.spin-down:hover,
		.spin-up:focus,
		.spin-down:focus
	)
	input {
	border-color: #0e6aed;
	outline: none;
}
.hardness-converter__inputs .number-field .number-wrapper input {
	width: 100%;
	padding: 6px 30px 6px 7px;
	border-radius: 4px;
	border: 1px solid #d1d6dc;
	background-color: #fff;
	color: #22445f;
	font-family: Open Sans;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	transition: all 0.3s ease-in-out;
}
.hardness-converter__inputs .number-field .number-wrapper input:focus,
.hardness-converter__inputs .number-field .number-wrapper input:hover {
	border-color: #0e6aed;
	outline: none;
}
.hardness-converter__inputs .number-field .number-wrapper input::placeholder {
	color: #a9b3bc;
	font-family: Open Sans;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}
.hardness-converter__inputs .number-field .number-wrapper .spin-buttons {
	position: absolute;
	right: 1px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	height: calc(100% - 2px);
	border-radius: 0 4px 4px 0;
	background-color: #f6f7f8;
}
.hardness-converter__inputs .number-field .number-wrapper .spin-down,
.hardness-converter__inputs .number-field .number-wrapper .spin-up {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 50%;
	background-color: transparent;
	border: 0;
	border-left: 1px solid #d1d6dc;
	outline: none;
	transition: all 0.3s ease-in-out;
}
.hardness-converter__inputs
	.number-field
	.number-wrapper
	.spin-down:focus
	svg
	path,
.hardness-converter__inputs
	.number-field
	.number-wrapper
	.spin-down:hover
	svg
	path,
.hardness-converter__inputs
	.number-field
	.number-wrapper
	.spin-up:focus
	svg
	path,
.hardness-converter__inputs
	.number-field
	.number-wrapper
	.spin-up:hover
	svg
	path {
	fill: #0e6aed;
}
.hardness-converter__inputs .number-field .number-wrapper .spin-down svg path,
.hardness-converter__inputs .number-field .number-wrapper .spin-up svg path {
	fill: #76838f;
	transition: all 0.3s ease-in-out;
}
.hardness-converter__inputs .number-field .number-wrapper .spin-up {
	border-bottom: 1px solid #d1d6dc;
	border-radius: 0 4px 0 0;
}
.hardness-converter__inputs .number-field .number-wrapper .spin-down {
	border-radius: 0 0 4px 0;
}
.hardness-converter__demo-wrapper {
	width: 38%;
	padding: 24px 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
@media (max-width: 1200px) {
	.hardness-converter__demo-wrapper {
		width: 100%;
	}
}
.hardness-converter__demo-title {
	color: #0e6aed;
	font-family: Open Sans;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
}
.hardness-converter__demo-text {
	margin-bottom: 8px;
}
.hardness-converter__demo-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 20px;
}
@media (max-width: 1200px) {
	.hardness-converter__demo-images {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 768px) {
	.hardness-converter__demo-images {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 16px;
		gap: 8px;
	}
}
.hardness-converter__demo-images img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media (max-width: 768px) {
	.hardness-converter__demo-images img {
		width: 102px;
		height: 73px;
	}
}
@supports not selector(::-webkit-scrollbar-thumb) {
	.hardness-converter__demo-images {
		scrollbar-color: #0e6aed #f6f7f8;
		scrollbar-width: thin;
	}
}
.hardness-converter__demo-images::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}
.hardness-converter__demo-images::-webkit-scrollbar-track {
	background-color: #f6f7f8;
}
.hardness-converter__demo-images::-webkit-scrollbar-thumb {
	background-color: #0e6aed;
	border-radius: 4px;
}
.hardness-converter .converter__warning {
	width: 100%;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid #f9ae00;
	background-color: #fff8e7;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 16px;
	line-height: 28px;
}
.hardness-converter .converter__warning h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #f9ae00;
	font-size: 16px;
	font-weight: 600;
	line-height: 28px;
}
.hardness-converter .converter__warning h3 img {
	width: 32px;
	height: 32px;
}
.hardness-converter .converter__warning ul {
	list-style: disc;
	padding-left: 24px;
}
.hardness-converter .converter__warning ul li {
	list-style: disc;
}
.hardness-converter .converter__warning strong {
	font-weight: 700;
}
.hardness-test {
	position: relative;
}
.hardness-test__small-slider {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: #fff;
	padding: 20px 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 16px;
}
@media (max-width: 768px) {
	.hardness-test__small-slider {
		gap: 8px;
	}
}
.hardness-test__small-slider-next,
.hardness-test__small-slider-prev {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #0e6aed;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	outline: none;
	transition: all 0.35s ease-in-out;
}
.hardness-test__small-slider-next:hover,
.hardness-test__small-slider-prev:hover {
	background-color: #1a5ade;
}
.hardness-test__small-slider-next:focus,
.hardness-test__small-slider-prev:focus {
	background-color: #4b91f5;
}
.hardness-test__small-slider-next:disabled,
.hardness-test__small-slider-prev:disabled {
	background-color: #e6e9ec;
	pointer-events: none;
}
.hardness-test__small-slider-list {
	display: flex;
	flex-wrap: nowrap;
	overflow: auto;
	gap: 12px;
}
@media (max-width: 768px) {
	.hardness-test__small-slider-list {
		gap: 8px;
	}
}
.hardness-test__small-slider-list::-webkit-scrollbar {
	display: none;
}
.hardness-test__small-slider-item {
	cursor: pointer;
	padding: 6px 8px;
	border-radius: 4px;
	border: 1px solid #8495a3;
	white-space: nowrap;
	color: #476175;
	font-family: Open Sans;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px;
	transition: all 0.35s ease-in-out;
	max-width: none !important;
	width: auto !important;
}
@media (max-width: 768px) {
	.hardness-test__small-slider-item {
		white-space: wrap;
	}
}
.hardness-test__small-slider-item.active,
.hardness-test__small-slider-item.swiper-slide-thumb-active,
.hardness-test__small-slider-item:focus,
.hardness-test__small-slider-item:hover {
	color: #0e6aed;
	border: 1px solid #0e6aed;
}
.hardness-test__slider {
	width: 100%;
}
.hardness-test__slider-item {
	width: 100%;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-radius: 8px;
	background-color: #f6f9ff;
	box-shadow: 0 0 8px 0 rgba(35, 37, 39, 0.16);
}
@media (max-width: 768px) {
	.hardness-test__slider-item {
		padding: 8px;
	}
}
.hardness-test__slider-item-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hardness-test__slider-item-title {
	padding: 7px 8px;
	color: #0e6aed;
	font-family: Open Sans;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
}
.hardness-test__slider-item-chars {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
@media (max-width: 768px) {
	.hardness-test__slider-item-chars {
		gap: 8px;
	}
}
.hardness-test__slider-item-char {
	padding: 4px 8px;
	border-radius: 4px;
	border: 1px solid #86b5f8;
	color: #092c47;
	font-family: Open Sans;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.hardness-test__slider-item-main {
	display: flex;
	align-items: center;
	gap: 40px;
}
@media (max-width: 991px) {
	.hardness-test__slider-item-main {
		flex-direction: column;
		gap: 8px;
	}
}
.hardness-test__slider-item-image {
	width: 49%;
	height: auto;
	object-fit: contain;
}
@media (max-width: 991px) {
	.hardness-test__slider-item-image {
		width: 100%;
	}
}
.hardness-test__slider-item-formula {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
@media (max-width: 991px) {
	.hardness-test__slider-item-formula {
		flex-direction: row;
		gap: 24px;
	}
}
@media (max-width: 768px) {
	.hardness-test__slider-item-formula {
		flex-direction: column;
		gap: 12px;
	}
}
.hardness-test__slider-item-formula-img {
	height: 80px;
	width: auto;
	object-fit: contain;
}
@media (max-width: 768px) {
	.hardness-test__slider-item-formula-img {
		height: 60px;
	}
}
.hardness-test__slider-item-formula-text {
	color: #092c47;
	font-family: Open Sans;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.hardness-test__slider-item-formula-text ul {
	padding-left: 20px;
}
.hardness-test__slider-item-formula-text li,
.hardness-test__slider-item-formula-text ul {
	list-style: disc;
}
.hardness-test__slider-item-footer {
	display: flex;
	gap: 8px;
	padding: 8px;
	border-radius: 8px;
	background-color: #e6f0fd;
	max-width: 800px;
}
.hardness-test__slider-item-footer svg {
	margin: 3px 1px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.hardness-test__slider-item-footer p {
	color: #22445f;
	font-family: Open Sans;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
}
.faq {
	margin-bottom: 48px;
}
.faq__title.h2 {
	margin-bottom: 16px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq__item {
	border-radius: 8px;
	background-color: #f6f9ff;
	transition: all ease-in-out 350ms;
}

.faq__item:hover {
	box-shadow: 0px 0px 8px 0px rgba(35, 37, 39, 0.16);
}

.faq__item.opened {
	padding-bottom: 8px;
	box-shadow: none;
}

.faq__item.opened .faq__item-question {
	margin-bottom: 20px;
	padding-bottom: 0;
}

.faq__item.opened .faq__item-question img {
	transform: rotate(0);
}

.faq__item.opened .faq__item-answer-wrapper {
	grid-template-rows: 1fr;
	opacity: 1;
}

.faq__item-question {
	padding: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
}

.faq__item-question img {
	width: 24px;
	height: 24px;
	transition: all ease-in-out 350ms;
	transform: rotate(-180deg);
}

.faq__item-answer-wrapper {
	padding: 0 8px;
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	opacity: 0;
	transition: all ease-in-out 350ms;
	margin: 0;
	width: 100%;
	max-width: 100%;
}

.faq__item-answer {
	min-height: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.faq__item-title.h3 {
	font-size: 16px;
	line-height: 20px;
}
@media only screen and (min-width: 577px) {
	.faq__item-title.h3 {
		font-size: 20px;
		line-height: 28px;
	}
	.faq__item-question {
		padding: 16px;
	}
}
@media only screen and (min-width: 720px) {
	.faq__list {
		gap: 24px;
	}

	.faq__item.opened {
		padding-bottom: 16px;
	}

	.faq__item-question {
		padding: 20px;
	}
	.faq__item.opened .faq__item-question {
		margin-bottom: 24px;
	}

	.faq__item-answer-wrapper {
		padding: 0 16px;
	}

	.faq__item-answer {
		gap: 24px;
	}
}
/*# sourceMappingURL=style.bundle.css.map*/
