@charset "UTF-8";

#bmi-calculator h1 {
	color: var(--black);
}

#bmi-calculator .background-text {
	position: absolute;
	top: 50%;
	width: auto;
	padding: 0 10px;
	overflow: hidden;
	transform-origin: -.5em center;
	transform: rotate(-90deg) translate(calc(-50%),82%);
	font-weight: 900;
	line-height: 1;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(104,104,104,0.2);
	font-family: Montserrat,sans-serif;
	font-size: 190px;
	color: transparent;
	text-transform: uppercase;
	font-size: 190px;
}

#bmi-calculator .form-control,
#bmi-calculator .custom-select {
	height: 49px;
	font-size: 15px;
	color: var(--black);
}

#bmi-calculator table td {
	line-height: 30px;
}

#bmi-calculator strong {
	color: var(--black);
}


/* XS */
@media only screen and (min-width : 0px) {

	#bmi-calculator {
		padding: 30px 0;
		min-height: 0;
	}
	
	#bmi-calculator h1 {
		font-size: 40px;
	}

	#bmi-calculator .background-text {
		display: none;
	}
	
}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) { 
	
}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {
	
}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
	#bmi-calculator {
		padding: 120px 0;
		min-height: 800px;
	}
	
	#bmi-calculator h1 {
		font-size: 55px;
	}

	#bmi-calculator .background-text {
		display: inline-block;
	}
}
