/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
/****************************************/
/* Calculator CSS
/****************************************/
input,select {
  border: 1px solid #ddd;
  color: #888;
  padding: 9px 10px;
  width: 100%;
  box-sizing: border-box;
}

input:focus,select:focus {
  border: 0px solid #c4c4c4;
  outline: 0;
}
#calculator {
  display: flex;
  flex-flow: column;
}

.form-group {
  display: flex;
  flex-flow: column;
}

.-inline {
  flex-flow: row;
}

.-right {
  margin-left: auto;
}

#calculator input[type=number],select {
  margin-top: 5px;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 18px;
}

#calculator input:last-child {
  margin-right: 0;
}

#gender-container {
  margin: 5px 0 20px;
}

#calculator label {
  margin-right: 5px;
}

#calculator #results {
  display: flex;
  flex-flow: column;
  margin: 20px 0;
}

#calculator #result-items {
  display: flex;
  justify-content: space-between;
}

#results .result-item {
  text-align: center;
}

#results .result-item>span {
  font-size: 32px;
}

#results .result-item>.subtext {
  font-size: 16px;
  color: #90cabc;
}

#results #total-calories {
  text-align: center;
  margin-top: 30px;
}

.results-graph {
  text-align: center;
  margin: 20px 0;
}

input[type=checkbox] {
  width: auto;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}

.dropdown select {
  background-color: #fff;
  color: #242424;
  padding: .5em;
  padding-right: 2.5em;
  border: 1px solid #ddd;
  border-radius: 0;
  text-indent: .01px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.dropdown::after,.dropdown::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dropdown::after {
  content: "\25BC";
  color: #90cabc;
  height: 1em;
  font-size: .625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -1em;
}

.slider-container {
  width: 100%;
}

.slider-container .slider {
  appearance: none;
  padding: 0;
  -webkit-appearance: none;
  height: 10px;
  background: #eee;
  outline: 0;
}

.slider-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #88cfe0;
  cursor: pointer;
}

.slider-container .slider::-moz-range-thumb {
  background: #88cfe0;
  cursor: pointer;
  height: 20px;
  width: 10px;
}