@charset "utf-8";
/* CSS Document */
.h300{min-height:300px;border-right: solid 4px #FE5800}

.input-container {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.input-field {
  width: 100%;
  padding: 10px;
  outline: none;
}

.input-field:focus {
  border: 2px solid #FE5800;
}

.icon {
  padding: 10px;
  background: #FE5800;
  color: white;
  min-width: 50px;
  text-align: center;
}

.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 50px;
  background: #C60C31;
  outline: none;
  opacity: 1;
  -webkit-transition: .3s;
  transition: transform .3s; 
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FE5800;
  border: solid 15px #FFF;
  box-shadow: 0 0 0 2px #FE5800;
  cursor: pointer;
  transition: transform .3s; 
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}