/*
TODO: Revisit styles from design.
*/

.calculator-container {
	padding-top: 64px;
	padding-bottom: 64px;
}

.radio-header {
	font-size: 16px;
	margin-bottom: 12px;
}

.radio-header {
	margin-bottom: 5px !important;
}

.form-group {
	margin-bottom: 36px !important;
}
.form-container {
	z-index: 1050;
}

.result-box {
	border: 1px solid rgba(255, 255, 255, 0.25);
	width: 100%;
	height: 234px;
}

.total-storage-result {
	font-size: 110px !important;	
	letter-spacing: -1.72px !important;
line-height: 1;
    margin-top: -33px;
    margin-bottom: 12px;
}

table td {
	color: white;
}

@media screen and (min-width: 992px) {
	.form-control {
		width: 64px !important;
	}
}

.increment-wrap {
	border: 1px solid hsla(0, 0%, 100%, 0.25);
}
.increment-wrap input {
	border: none;
	text-align: center;
	width: 72px !important;
}

.increment {
	min-width: 60px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background-color: #343434;
}
.increment path {
	stroke: #fff;
}

.increment.disabled path {
	stroke: rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 576px) {
	.increment {
		height: 40px;
	}
}
@media screen and (min-width: 992px) {
	.increment {
		min-width: 40px;
	}
}

.increment:hover {
	background-color: #232323;
}

.button-wrap {
	position: relative;
	z-index: 1050;
	min-height: 40px;
}

.float-button.floating {
	position: fixed;
	top: 15px;
	left: -15px;
	z-index: 1050;
}

.bg-dark .table-bordered td:first-child,
.bg-dark .table-bordered th:first-child {
	border-left: 1px solid hsla(0, 0%, 100%, 0.1);
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .table-bordered td:last-child,
.bg-dark .table-bordered th:last-child {
	border-right: 1px solid hsla(0, 0%, 100%, 0.1);
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgba(255, 255, 255, 0.1);
}

.calculate-wrap {
	position: fixed;
	bottom: 0;
	background-color: #090909;
	width: 100%;
	padding: 16px 0;
}

.bg-dark .btn.btn-toggle:hover {
    background-color: transparent;
}