/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
#calculator {
  font-family: Arial, sans-serif;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

#calculator .inputField {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

#calculator .inputField label {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

#calculator .inputField .tooltip {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('info-icon.png') no-repeat;
  cursor: pointer;
}

#calculator .inputField .tooltip-content {
  display: none;
  width: 120px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 5px;
  position: absolute;
  z-index: 10;
}

#calculator .inputField .tooltip:hover + .tooltip-content {
  display: block;
}

#calculator .inputField input, 
#calculator .inputField select {
  width: 60%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

#calculator .inputField button {
  width: 100%;
  padding: 15px;
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #333;
  cursor: pointer;
}

#calculator #results {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
