.calc-item {
	margin: 20px 0;
}
.calc-item .calc-title {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}
.calc-item .calc-block {
	display: grid;
	grid-template-columns: 1fr 4fr;
	gap: 60px;
}
.calc-item .calc-right {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.calc-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.calc-item .calc-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	margin: 10px;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
.calc-item .calc-input label {
	flex: 0 0 50%;
	max-width: 50%;
}
.calc-item .calc-input select {
	appearance: auto;
}
.calc-item .calc-result {
	font-size: 18px;
	text-align: center;
	margin-top: auto;
}
.calc-item .calc-result span {
	font-weight: 700;
}

@media all and (max-width:1024px) {
  .calc-item .calc-block {
    gap: 20px;
  }
}
@media all and (max-width:768px) {
  .calc-item .calc-block {
    grid-template-columns: auto;
  }
  .calc-item img {
    max-width: 220px;
    margin: auto;
  }
}
@media all and (max-width:460px) {
  .calc-item .calc-input {
    font-size: 14px;
  }
}