html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
color:#333;
margin-bottom:30px;
margin-top:30px;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}


body{
	font-family: "Montserrat";
	background:#fff;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}



.element{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	flex-direction: column;
}


.calculator{

	box-shadow: 0px 0px 3px 1px #ddd;
	background: #eee;
	margin-top:20px;
	padding:40px;
	padding-top:25px;
	padding-bottom:20px;
	margin-bottom:40px;
   border: 1px solid #bbb;
}

h1{
	text-align: center;
	font-weight: bold;
	font-size:24px;


}


table{
	width:100%;
	text-align: center;
	margin-bottom: 10px;

}
table td{
	border:1px solid #333;
	padding: 5px;
}
table td:nth-child(1){
	text-align: left;
}
table th{
	font-weight: bold;
}
select{

	text-align-last: center;

}

input{

	text-align: center;

}
input[type="number"],input[type="text"]{

padding: 8px;
font-size: 18px;
color:#333;

border: 1.0px solid #ddd;
border-left:10px solid #ddd;
transition:all ease 0.4s;
margin-top:6px;
border-radius: 4px;
background: #fff;

box-shadow: inset 0px 0px 2px 1px #ddd;
}

input[type="number"]:hover,input[type="text"]:hover{
	color:#00AADC;
	border-left: 10px solid #00AADC;
}


input[type="number"]:focus,input[type="text"]:focus{
	color:#00AADC;
	border-left: 10px solid #00AADC;

}
.element label{
	font-size:16px;
	margin-left: 4px;
	margin-bottom: 4px;
	font-weight: bold;
}

#tooltip
{
    text-align: center;
    color: #fff;
    background: #00AADC;
    position: absolute;
    z-index: 100;
    padding: 15px;
}

    #tooltip:after /* triangle decoration */
    {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #111;
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        margin-left: -10px;
    }

        #tooltip.top:after
        {
            border-top-color: transparent;
            border-bottom: 10px solid #111;
            top: -20px;
            bottom: auto;
        }

        #tooltip.left:after
        {
            left: 10px;
            margin: 0;
        }

        #tooltip.right:after
        {
            right: 10px;
            left: auto;
            margin: 0;
		}


		.section{

    padding-bottom: 20px;
    padding-top: 20px;
		}



		.labelwithtooltip{
			display: flex;

			position: relative;
		}

		.sectionheadingwithtooltip{
			display: flex;
			border-bottom: 1.5px solid #ddd;
			font-size:22px;
			padding-bottom: 10px;

		}
		.sectionheadingwithtooltip 	h2{
			font-weight: bold;
			margin-left: 4px;
		}


		.tooltip{
			padding: 2px;
			border-radius: 30px;
			background: #00AADC;
			width: 13px;
			height:13px;
			text-align: center;
			color: #fff;
			font-weight: bold;
			font-size: 13px;
			top:2px;
			position: relative;

		}

		.labelwithtooltip .tooltip{
			top:0px;
		}


		button{

            border: none;
			background: #00AADC;
			padding: 8px;
			font-size: 18px;
			color:#fff;
			margin: auto;
			transition: all ease 0.3s;
			width: 200px;
			border-radius: 4px;
		}

		button:hover{
			background: #0088bb;
		}

		button:focus{
			background: #0088bb;
		}

		.element2{

			display: flex;
			justify-content: flex-start;
			flex-wrap: wrap;
		}

			.element2 input[type="radio"]{
				display: none;

			}



			.element2 label{

				position: relative;
				color: #fff;
				background-color: #44eeFF;
				font-size: 18px;
				text-align: center;

				padding: 10px;

				cursor: pointer;

				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				transition:background 0.5s ease;
				margin-top:7px;
				border-radius: 4px;

			}
			.element2 input:checked+label{

				background-color: #00AADC;

			}
			.element2 input:hover + label{
				background-color: #00AADC;
			}
			.element2 input:checked:hover + label{
				background-color: #0099CC;

			}


			.chartdiv{
				margin:auto;
			}


			.container-flex{
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;

			}

			.column-third{
				width: 28%;

				min-width: 200px;
			}


			@media screen and (max-width: 800px) {

				.column-third{
					width: 100%;
				}

			}
			#resultdiv .element{
				flex-direction: row;
			}
#resultdiv .element label:nth-child(1){

}

#resultdiv .element label:nth-child(1){

}



.chartcontainer{
	height: 400px;
}
@media screen and (max-width: 1000px) {
.chartcontainer{
	height: 400px;
}

}


