/* ========= INFORMATION ============================
	- document:  Credit Calculators!
	- author:    Dmytro Lobov
	- version:   1.0
	- email:     support@wow-company.com
==================================================== */
.calculator{
	width: 100%;
	margin: 0 auto;
	border: 1px solid #cccccc;
	background: #ffffff;
	font-size: 1em;
	color:#19191d;
	border-radius: 4px;
}
.calculator .c-data {
	display: flex;
	justify-content: space-around;
}
.calculator .c-data .element {
	width: 100%;
	padding:10px;
}
.calculator .c-button {
	display: flex;
	justify-content: center;
	padding:10px;
}
.calculator .c-result {
	display: flex;
	justify-content: space-around;
	font-weight: 700;
}
.calculator .c-result .element {
	width: 100%;
	padding:10px;
}
.calculator input[type=text], .calculator select, .calculator textarea {
	font-size: 1rem;
	border: 1px solid #cecece;
	background: #efefef;
	padding: 10px;
	width: 100%;
	color:#000;
	border-radius: 4px;
}
.calculator button,.calculator input[type=button],.calculator input[type=submit], .calculator input[type=reset] {
	text-align:center;
	font-size:1.2rem;
	border: 1px solid #cecece;
	border-radius: 4px;
	font-weight:500;
	padding:1rem 2rem;
	cursor:pointer;
	color:#ffffff;
}
.calculator button,.calculator input[type=button],.calculator input[type=submit]{
	background: #83b554;
}
.calculator button:hover,.calculator input[type=button]:hover,.calculator input[type=submit]:hover{
	background: #ebebeb;
}
.calculator input[type=reset]{
	background: #8b8c8f;
}
.calculator input[type=reset]:hover{
	background: #eceded;
}
#c-error {
	font-size:0.75em;
	font-weight:400;
	color: red;
	text-align:center;
	display:none;
}
@media only screen and (max-width: 680px) {
	.calculator .c-data, .calculator .c-result {
		flex-wrap: wrap;
	}
}