.rdc-calculator{
  max-width:520px;
  margin:16px auto;
  padding:16px;
  border:1px solid #eee;
  border-radius:8px;
  background:#fafafa;
  font-family:inherit;
}
.rdc-controls label{
  display:block;
  font-weight:600;
  margin:8px 0 4px;
}
.rdc-row{
  margin:10px 0;
}
.rdc-controls input[type="text"],
.rdc-controls input[type="number"],
.rdc-controls select{
  width:100%;
  padding:8px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
}
#rdc-map{
  height:260px;
  margin-top:8px;
  margin-bottom:12px;
  border-radius:8px;
  overflow:hidden;
}
.rdc-suggestions{
  border:1px solid #ccc;
  border-top:none;
  border-radius:0 0 6px 6px;
  max-height:200px;
  overflow-y:auto;
  background:#fff;
  display:none;
  position:relative;
  z-index:10;
}
.rdc-suggestion-item{
  padding:6px 8px;
  cursor:pointer;
}
.rdc-suggestion-item:hover{
  background:#f0f0f0;
}
.rdc-error{
  color:#c00;
  font-size:12px;
  margin-top:4px;
  min-height:14px;
}
.rdc-result-main{
  margin-top:16px;
  font-size:18px;
  font-weight:700;
}
.rdc-result-sub{
  margin-top:4px;
  font-size:13px;
  color:#555;
  font-style:italic;
}
