.input-data {
	display: flex;
	flex-direction: column;
	gap: 42px;
	align-items: flex-start;
}

.toggle-button, .inp-addition-group .addition {
	display: inline-flex;
	border-radius: 0px 8px 8px 0;
	position: relative;
	left: -8px;
}

.inp-addition-group .addition {
	height: 40px;
	line-height: 38px;
	padding: 0 14px;
	border: 1px solid #e9e9e9;
  background-color: #e9e9e9;
  color: #555;
}

.inp-addition-group > :first-child {
	position: relative;
	z-index: 1;
	width: 170px;
}

.input-data input,
.input-data select {
	border-radius: 6px;
	border: 1px solid var(--black-300, #cbcbcb);
	background: var(--White, #fff);
	height: 40px;
	color: #979898;
	padding: 0 12px;
}

#qt {
	position: relative;
	z-index: 1;
	width: 170px;
}

.input-data input::placeholder {
	color: #aebccf;
}

.input-data select {
	background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.27246 9L12.2725 15L18.2725 9" stroke="%23979898" stroke-width="1.13" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-repeat: no-repeat;
	background-size: 24px 24px;
	background-position: calc(100% - 8px) center;
	width: 180px;
}

.input-data > div {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.input-data label {
	color: #000;
	font-weight: 400;
	margin-bottom: 0;
}

.input-data .toggle-group, .inp-addition-group {
	display: flex;
	gap: 0;
}

.qt-calc .result {
	color: #fff;
	background-color: #00938b;
	padding: 12px 24px;
	box-sizing: border-box;
	border-radius: 12px;
	margin-top: 24px;
	font-size: 16px;
}

.qt-about .slide-btns {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin-bottom: 30px;
}

.qt-about .slide-btns button {
	width: 100%;
	border-radius: 0;
}

.qt-about .slide-btns button:first-of-type {
	border-radius: 25px 0 0 25px;
	border-right: 0;
}

.qt-about .slide-btns button:last-of-type {
	border-radius: 0 25px 25px 0;
	border-left: 0;
}

@media (max-width: 576px) {
	.qt-about .slide-btns {
		width: 100%;
		background-color: #aab7c929;
		flex-direction: column;
		overflow: hidden;
		border-radius: 12px;
		margin-bottom: 48px;
		margin-top: 18px;
	}

	.qt-about .slide-btns button {
		border: 0;
		text-align: left;
		justify-content: flex-start;
		padding-left: 12px;
		border-radius: 0 !important;
	}
}

.qt-about .slides > div {
	display: none;
}

.qt-about .slides > div.active {
	display: block;
}

.qt-about li {
	margin-bottom: 2px;
}

.qt-about li > ul {
	margin-top: 4px;
}

.qt-calc {
	margin-bottom: 32px;
}

#paperSpeed, #formula {
	height: 40px;
	width: 200px;
	display: flex;
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

#paperSpeed div, #formula div {
	height: 100%;
	border: 1px solid #00938b;
	color: #00938b;
	text-align: center;
	line-height: 40px;
	width: 100%;
	cursor: pointer;
}

#paperSpeed div:first-child {
	border-radius: 8px 0 0 8px;
	border-right: 0;
}

#paperSpeed div:last-child {
	border-radius: 0 8px 8px 0;
}

#paperSpeed div.active, #formula div.active {
	background: #00938b;
	color: #fff;
}

#formula {
	flex-direction: column;
	height: auto;
	width: 120px;
	min-width: 102px;
}

.formula-list-wrap {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
}

.formula-list-wrap .instruction h5 {
	margin-bottom: 0;
}

.formula-list-wrap .instruction p {
	margin: 0;
	margin-bottom: 5px;
}

#formula div {
	border-top-width: 0;
	text-align: left;
	padding-left: 12px;
}

#formula div:first-child {
	border-radius: 8px 8px 0 0;
	border-top-width: 1px;
}

#formula div:last-child {
	border-radius: 0 0 8px 8px;
}

.single .tools .content {
	padding: 0;
}