/**
 * Calculator price
 * Author: Sergey Dyagovchenko, http://d.sumy.ua/
 * Project: Fotokniga
 * Created: 02.03.2013
 * Updated: 17.06.2014
 */

.calc-price {
	position: absolute;
	top: auto;
	left: 0;
	bottom: 0;

	padding: 10px 9px;
	width: 212px;
	height: 67px;

	background-color: #FFD800;
	margin-bottom: 26px;
}

.calc-price.disabled {
	background-color: #ddd;
	margin-top: 18px;
	text-align: center;
}

.calc-price .calc-headline {
	font: bold 14px/1 'Roboto';
}

.calc-price .calc-price-value {
	font:bold 31px/1 'Roboto';
	position: relative;
	top: 5px;
	left: 5px;
}

.calc-price:not(.disabled) .calc-price-value {
	white-space: nowrap;
	top: 6px !important;
}

.calc-price.disabled .calc-headline {
	padding-bottom: 5px;
}

.calc-price.disabled .calc-price-value {
	font: 11px 'Roboto';
	top: -4px !important;
}

.calc-price .calc-price-per-page {
	display: block;
	font: 12px 'Roboto';
}

.calc-price.disabled .calc-price-per-page {
	display: none;
}

.calc-price .calc-price-per-page .value::before {
	content: '+';
	font-weight: normal;
}

.calc-price .calc-price-per-page .value {
	font-style: normal;
}