@charset "UTF-8";
.calculator:not(:first-child),
.calculator-label-choose:not(:first-child)
{
	margin-top: 1em;
}
.calculator-item {
	position: relative;
	padding-right: 40px;
}
.calculator-item:not(:first-child)
{
	margin-top: 1em;
	border-top: 1px dashed #aaa;
	padding-top: 1em;
}
.calculator-selector
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.calculator-choice
{
	margin-top: 1em;
	flex-grow: 1;
	max-width: 100%;
}
.calculator-add
{
	margin-top: 1em;
	margin-left: 1em;
}
.calculator-total {
	font-size: 1.5em;
	font-weight: bold;
}
.calculator-total:not(:first-child)
{
	margin-top: 1em;
	border-top: 1px solid #242424;
	padding-top: .7em;
}
.calculator-item-title
{
	font-weight: bold;
}
.calculator-item-remove
{
	position: absolute;
	right: 0;
	top: calc(50% + 6pt);
	background: transparent;
	color: inherit;
	transition: color 200ms ease-out;
	padding: .2em;
	border: none;
	font: normal normal normal 26px/1 "Material Design Icons";
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	transform: translateY(-50%);
}
.calculator-item-remove:hover,
.calculator-item-remove:focus
{
	color: #bd0000;
}
.calculator-option-input
{
	width: 7em;
}
.calculator-sep
{
	margin-top: 1em;
}
.calculator-item-subtype:not(:first-child),
.calculator-item-pictures:not(:first-child)
{
	margin-top: .5em;
}
.calculator-item-pictures > img {
	height: 100px;
	object-fit: contain;
}
@media all and (min-width: 750px) {
	.calculator-item-pictures > img:not(:first-child) {
		margin-left: 2em;
	}
}
@media not all and (min-width: 750px) {
	.calculator-item-pictures > img {
		display: block;
		margin-top: .5em;
	}
}
