/**
 * Calculator
 */
.pricing-calculator {
	position: absolute;
	top: 0;
	left: 0;
	width: 360px;
	background: #fff;
	box-shadow: 0px 0px 8px 5px rgb(51 45 34 / 8%);
	padding: 30px;
	z-index: 99;
	text-align: left;
	display: none;
}

.pricing-calculator .close-calculator {
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}

.calc-form {
	margin: 10px 0 25px;
}

.calc-form select {
	-webkit-appearance: auto;
}

.calc-form .row {
	margin-bottom: 10px;
}

.calc-form input,
.calc-form select {
	width: 100%;
	border: 1px solid #ddd;
	padding: 5px;
}

.calculator-toggle {
	position: relative;
	margin-top: -5px;
}

.pricing-category {
	border: 1px solid #eaeaea;
	padding: 15px;
	margin-bottom: 15px;
}

.pricing-category .row {
	margin: 4px 0;
	gap: 10px;
	justify-content: space-between;
}

.pricing-category .row > div {
	padding: 0!important;
}

.pricing-category .row > div:last-child:not(.col-12) {
	text-align: right;
}

.fee-label {
	padding-left: 15px;
	color: #888;
}

.calculator-screen {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 30px 0;
	justify-content: center;
}

.loading-screen {
	padding: 50px;
}

.loading-screen img {
	max-width: 40px;
}

.no-results-screen {
	display: none;
}

.pricing-calculator .cta-buttons {
	margin: 0 -15px -15px;
}

.pricing-calculator .cta-buttons a {
	width: 100%;
	background: var(--primary-color);
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	padding: 13px;
	position: relative;
	font-size: 20px;
}

.pricing-calculator .cta-buttons a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0%;
	transition: all 0.3s;
	background-color: var(--secondary-color);
}

.pricing-calculator p {
	margin-bottom: 10px;
}

.pricing-calculator .cta-buttons a span {
	position: relative;
	z-index: 1;
}

.pricing-calculator .cta-buttons a:hover::before {
	width: 100%;
}