.param-container {
  font-size: 14px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  padding: 3px 4%;

  border-bottom: .5px solid rgba(225, 228, 241, .75);
}

.range-slider {
  margin: 60px 0 0 0;
}

.range-slider {
  width: 100%;
}

.range-slider__range {
  width: 400px;
  height: 10px;
  margin: 0 5px 0 0;
  padding: 0;

  border-radius: 5px;
  outline: none;
  background: #D7DCDF;

  -webkit-appearance: none;
}

.range-slider__range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;

  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
          transition: background .15s ease-in-out;

  border-radius: 50%;
  background: #2C3E50;

  -webkit-appearance: none;
}

.range-slider__range::-webkit-slider-thumb:hover {
  background: #558ACE;
}

.range-slider__range:active::-webkit-slider-thumb {
  background: #558ACE;
}

.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;

  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
          transition: background .15s ease-in-out;

  border: 0;
  border-radius: 50%;
  background: #2C3E50;
}

.range-slider__range::-moz-range-thumb:hover {
  background: #558ACE;
}

.range-slider__range:active::-moz-range-thumb {
  background: #558ACE;
}

.range-slider__value {
  line-height: 20px;

  position: relative;

  display: inline-block;

  width: 100px;
  padding: 5px 10px;

  text-align: center;

  color: #FFF;
  border: none;
  border-radius: 3px;
  background: #2C3E50;
}

.range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -7px;

  width: 0;
  height: 0;

  content: '';

  border-top: 7px solid transparent;
  border-right: 7px solid #2C3E50;
  border-bottom: 7px solid transparent;
}

::-moz-range-track {
  border: 0;
  background: #D7DCDF;
}

input::-moz-focus-inner, input::-moz-focus-outer {
  border: 0;
}

.label-param {
  width: 100%;
  padding: 13px 4%;

  background-color: rgb(233, 233, 233);
}

.label-param h3 {
  font-size: 16px;
  font-weight: bold;

  margin: 5px 0;
}

.input-text-param {
  width: 300px !important;
}

.param-container span {
  margin-right: auto;
}

.maxmin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;

  min-width: 80px;
  margin: 0 10px;
}

.maxmin span {
  font-size: 10px;

  color: rgb(118, 117, 117);
}

.param-info-img {
  height: 14px;

  cursor: help;
}

.param-label {
  font-size: 14px;

  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}

.param-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-preferred-size: 53%;
  flex-basis: 53%;

  min-height: 30px;
}

.param-comments {
  font-size: 12px;

  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;

  text-align: right;

  color: rgb(118, 117, 117);
}

.select-param {
  min-width: 80px;
  height: 30px;

  color: #FFF;
  border: none;
  border-radius: 3px !important;
  background: #2C3E50;
}

.select-param::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;

  padding: 0 1em;

  content: '\25BC';
  pointer-events: none;

  background: #34495E;
}

.param-container textarea {
  max-width: 100% !important;
  max-height: 2000px;
}

div[class^='radio-option-'] {
  display: inline-block;

  padding: 10px 15px 10px 0;
}

.parameters-description {
  display: block;

  margin-bottom: 5px;
  padding: 5px 10px;

  border: 1px solid #BCBCBC;
  border-radius: 3px;
}
