#calculator{
	padding:30px 15px;
	margin:0 0 20px 0;
	border-radius:3px;
    background-color: #d6faff;
    font-size:15px;
    font-family:'Open Sans',sans-serif;
}

.headerCalc{
    font-size:18px;
    font-family: 'Europe Bold';
	color:#00bbff;
    margin:0 0 20px 0;
}


#calculator .label-calc{
    font-size:15px;
}

#result{
    margin:20px 0 0 0;
    padding:20px;
    background:white;
    border-radius: 5px;
    border:1px solid silver;
    display: none;
    font-size:14px;
}

#result a{
    text-decoration: underline;
}

.output{
    margin:10px 0;
}

.icon-calc{
    background-image:url('/calculators/icon-calc.svg');
    background-size:100% 100%;
    background-repeat: no-repeat;
    height: 90px;
    width: 105px;
    margin:40px 0 20px 0;
}

#calculator input{
	padding:2px 10px;
	margin:5px 0;
	border-radius:5px;
	font-size:14px;
	border:1px solid silver;
	width:100%;
    height: 35px;
}

#calculator input:focus{
    outline: 0;
}

#calculator select{
	width:75px;	
}

#calculator button{
	font-size:16px;
	color: white;
	border:0;
	padding:8px 15px;
    background-color:#00bce2;
	border-radius: 5px;
    margin:10px 0;
    outline:none; 
}

#calculator button:hover{
	background-color:#35ceec;
}

#calculator .listing{
    margin:10px 0;
    padding:15px 0 0 0;
}

#calculator .listing span{
    border-bottom:1px dashed #008fab;
    padding:1px 0;
    margin-right: 17px;
    color: #008fab;
    font-size:13px;
}

#calculator .listing span:hover{
    cursor: pointer;
}

#calculator .headerTable{
    font-size:16px;
    text-align:center;
    margin-bottom:20px;
}
#calculator .tablePravila{
    width:100%;
}

#calculator .tablePravila td{
    padding:10px;
    border:1px solid silver;
}