.invisible {
  visibility: hidden;
  display: none;
}
.mdn-bg {
  background: #F2F5F7;
  margin: 0;
  padding: 0;
}
.modern-forms, .modern-forms * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.modern-forms {
  line-height: 1.231;
  font-weight: normal;
  font-size: 16px;
  color: #282828;
  text-align: left;
}
.modern-container {
  margin: 50px auto;
  max-width: 700px;
  background: #fff;
  padding: 50px 40px;
}
.modern-forms .mdn-shadow {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15), 0 2px 10px 0 rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15), 0 2px 10px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15), 0 2px 10px 0 rgba(0, 0, 0, .15);
}
.modern-forms .mc1 {
  max-width: 1024px;
}
.modern-forms .mc2 {
  max-width: 540px;
}
.modern-forms .field-group {
  display: block;
  position: relative;
  margin-bottom: 50px;
}
.modern-forms select {
  width: 100%;
}
/*  all elements inputs | textarea | selects | buttons 
------------------------------------------------------------- */
/* @element general styling :: fonts :: adjust accordingly
------------------------------------------------------------- */
.modern-forms label {
  user-select: none;
}
.modern-forms :not(output):-moz-ui-invalid, .modern-forms input:invalid {
  box-shadow: none;
}
.modern-forms label, .modern-forms input, .modern-forms button, .modern-forms select, .modern-forms textarea {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  color: #282828;
  outline: none;
}
/* @remove browser specific styling
----------------------------------------------- */
.modern-forms .mdn-input, .modern-forms .mdn-textarea, .modern-forms .mdn-select > select, .modern-forms input[type="button"], .modern-forms input[type="submit"], .modern-forms input[type="search"], .modern-forms .mdn-selectmulti select {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* @basic styling for inputs 
----------------------------------------------------------- */
.modern-forms .mdn-input, .modern-forms .mdn-textarea, .modern-forms .mdn-select > select, .modern-forms .mdn-select-multiple select {
  position: relative;
  font-family: inherit;
  background: none;
  position: relative;
  vertical-align: top;
  border: 1px solid #DBDBDB;
  border-width: 0 0 1px 0;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  color: #282828;
  outline: none;
  height: 42px;
  width: 100%;
  *zoom: 1;
}
/* @select multiple element
------------------------------------------------ */
.modern-forms .mdn-select-multiple select {
  width: 100%;
  height: 110px;
  padding: 10px 0;
}
/* @select element
------------------------------------------------ */
.modern-forms .mdn-select:after {
  content: ' ';
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  border-top-color: #B5B5B5;
  border-width: 7px;
  z-index: 2;
  bottom: 10px;
  right: 5px;
  height: 0;
  width: 0;
}
.modern-forms .mdn-textarea {
  resize: none;
  line-height: 19px;
  overflow: auto;
  max-width: 100%;
  padding: 12px 0;
  height: 80px;
}
.modern-forms .mdn-bar {
  width: 100%;
  position: absolute;
  display: block;
  bottom: 0;
}
.modern-forms .mdn-bar:before, .modern-forms .mdn-bar:after {
  content: '';
  bottom: -1px;
  position: absolute;
  background: #e74c3c;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
  height: 2px;
  width: 0;
  opacity: 0
}
/* @file inputs 
-------------------------------------------------------- */
.modern-forms .mdn-upload {
  display: block;
  width: 100%;
}
.modern-forms .mdn-upload .mdn-file {
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 8px 10px;
  position: absolute;
  -moz-opacity: 0;
  opacity: 0;
  z-index: 11;
  bottom: 0;
  right: 0;
}
.modern-forms .mdn-upload .mdn-button {
  position: absolute;
  top: 2px;
  right: 0;
  float: none;
  height: 38px;
  line-height: 38px;
  padding: 0 16px;
  z-index: 10;
}
/* @radio and checkbox options
----------------------------------------------------- */
.modern-forms .mdn-option {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.modern-forms .mdn-option > input {
  position: absolute;
  height: inherit;
  width: inherit;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  opacity: 0;
  left: 0;
}
.modern-forms .mdn-checkbox, .modern-forms .mdn-radio {
  position: relative;
  margin-right: 2px;
  display: inline-block;
  border: 2px solid #B5B5B5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  outline: none;
  height: 21px;
  width: 21px;
  top: 5px;
}
.modern-forms .mdn-checkbox:before, .modern-forms .mdn-radio:before {
  content: '';
  display: block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: all .25s;
  -moz-transition: all .25s;
  transition: all .25s;
  padding: 0;
  margin: 0;
  height: 0;
  width: 0;
  opacity: 0;
}
.modern-forms input[type="radio"] {
  display: none;
}
.modern-forms .mdn-checkbox:before {
  width: 0;
  height: 0;
  -webkit-transition: -webkit-transform .33s cubic-bezier(.55, 0, .1, 1);
  -moz-transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  -ms-transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  -o-transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.modern-forms input:checked + .mdn-checkbox:before {
  position: absolute;
  top: 4px;
  left: 3px;
  width: 8px;
  height: 3px;
  border: solid #fff;
  border-width: 0 0 3px 3px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 1;
}
.modern-forms input:checked + .mdn-checkbox, .modern-forms input:checked + .mdn-radio {
  border: 2px solid #e74c3c;
}
.modern-forms input:checked + .mdn-checkbox {
  background: #e74c3c;
}
.modern-forms .mdn-radio {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}
.modern-forms input + .mdn-radio:before {
  width: 11px;
  height: 11px;
  margin: 3px;
  background: #e74c3c;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}
.modern-forms input:checked + .mdn-radio:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/* @radio and checkbox hover and focus
--------------------------------------------------- */
.modern-forms input:hover + .mdn-radio, .modern-forms input:focus + .mdn-radio, .modern-forms input:hover + .mdn-checkbox, .modern-forms input:focus + .mdn-checkbox {
  border-color: #e74c3c;
}
.modern-forms input:focus + .mdn-radio:before {
  background: #e74c3c;
}
.modern-forms input:focus + .mdn-checkbox:before {
  border-color: #fff;
}
.modern-forms .option-tick .mdn-checkbox {
  -webkit-transition: -webkit-transform .33s cubic-bezier(.55, 0, .1, 1);
  -moz-transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  -ms-transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  -o-transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  transition: transform .33s cubic-bezier(.55, 0, .1, 1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
.modern-forms .option-tick input:checked + .mdn-checkbox {
  background: none;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  border: 0;
}
.modern-forms .option-tick .mdn-checkbox:before, .modern-forms .option-tick input:checked + .mdn-checkbox:before {
  width: 18px;
  height: 8px;
  border-color: #e74c3c;
  border-width: 0 0 2px 2px;
  top: 0;
}
/* @options ripple 
---------------------------------------------------- */
.modern-forms .mdn-radio:after, .modern-forms .mdn-checkbox:after {
  content: '';
  width: 18px;
  height: 18px;
  background: none;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  left: 0;
  top: 0;
}
.modern-forms .mdn-radio:active:after, .modern-forms .mdn-checkbox:active:after, .modern-forms .mdn-option:active .mdn-radio:after, .modern-forms .mdn-option:active .mdn-checkbox:after, .modern-forms input[disabled]:checked + .mdn-radio:active:after, .modern-forms input[disabled]:checked + .mdn-checkbox:active:after, .modern-forms input[disabled]:checked + .mdn-option:active .mdn-radio:after, .modern-forms input[disabled]:checked + .mdn-option:active .mdn-checkbox:after {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(128, 128, 128, 0.1);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(128, 128, 128, 0.1);
  -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(128, 128, 128, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(128, 128, 128, 0.1);
}
.modern-forms input:checked + .mdn-radio:active:after, .modern-forms input:checked + .mdn-checkbox:active:after, .modern-forms input:checked + .mdn-option:active .mdn-radio:after, .modern-forms input:checked + .mdn-option:active .mdn-checkbox:after {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(0, 150, 136, 0.2);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(0, 150, 136, 0.2);
  -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(0, 150, 136, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0), 0 0 0 24px rgba(0, 150, 136, 0.2);
}
/* @toggle switch  
--------------------------------------------------- */
.modern-forms .mdn-switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  cursor: pointer;
}
.modern-forms .mdn-switch input {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: inherit;
  width: inherit;
  opacity: 0;
  left: 0;
}
.modern-forms .mdn-switch .switch-label {
  display: inline-block;
  position: relative;
  top: 2px;
}
.modern-forms .mdn-switch > .switch-label {
  padding-right: 5px;
}
.modern-forms .mdn-switch .switch-toggle + .switch-label {
  padding-left: 5px;
}
.modern-forms .mdn-switch .switch-toggle {
  width: 44px;
  height: 16px;
  background: #B5B5B5;
  position: relative;
  display: inline-block;
  background: rgba(0, 0, 0, 0.26);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 1px rgba(255, 255, 255, 0.5);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 1px rgba(255, 255, 255, 0.5);
  -o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 1px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 1px rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  vertical-align: middle;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.modern-forms .mdn-switch .switch-toggle::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -4px;
  width: 26px;
  height: 26px;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -o-border-radius: 26px;
  border-radius: 26px;
}
.modern-forms .mdn-switch input:checked + .switch-toggle {
  background: #e74c3c;
}
.modern-forms .mdn-switch input:checked + .switch-toggle::before {
  left: 20px;
  background: #e74c3c;
}
.modern-forms .mdn-switch input:disabled + .switch-toggle {
  background: #A2A2A2;
  pointer-events: none;
}
.modern-forms .mdn-switch input:disabled + .switch-toggle::before {
  background: #bcbdbc;
}
.modern-forms .mdn-switch input:disabled + .switch-toggle + .switch-label {
  color: #A2A2A2;
}
.modern-forms .modern-switch .switch-toggle {
  width: 40px;
  height: 24px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.modern-forms .modern-switch .switch-toggle::before {
  width: 22px;
  height: 22px;
  bottom: 1px;
  left: 1px;
  top: 1px;
}
.modern-forms .modern-switch input:checked + .switch-toggle::before {
  left: 17px;
  background: #f5f5f5;
}
.modern-forms .modern-switch input:disabled + .switch-toggle::before {
  background: #f5f5f5;
}
/* @switch ripple 
--------------------------------------------------------------------- */
.modern-forms .mdn-switch:active .switch-toggle::before, .modern-forms .mdn-switch .switch-toggle:active::before, .modern-forms .mdn-switch:active input[disabled]:checked + .switch-toggle::before, .modern-forms .mdn-switch input[disabled]:checked + .switch-toggle:active::before {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
  -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}
.modern-forms .mdn-switch:active input:checked + .switch-toggle::before, .modern-forms .mdn-switch input:checked + .switch-toggle:active::before {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
  -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}
/* @switch morph animate 
--------------------------------------------------------------------- */
.modern-forms .morph-switch:active .switch-toggle:before, .modern-forms .morph-switch .switch-toggle:active::before, .modern-forms .morph-switch:active input:checked + .switch-toggle::before, .modern-forms .morph-switch input:checked + .switch-toggle:active::before {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  -webkit-transform: scale(1.15, 0.85);
  -moz-transform: scale(1.15, 0.85);
  -ms-transform: scale(1.15, 0.85);
  -o-transform: scale(1.15, 0.85);
  transform: scale(1.15, 0.85);
}
/* @animated form element bar 
------------------------------------------------ */
.modern-forms .mdn-bar:before {
  left: 50%;
}
.modern-forms .mdn-bar:after {
  right: 50%;
}
.modern-forms .mdn-file:focus ~ .mdn-bar:after, .modern-forms .mdn-file:focus ~ .mdn-bar:before, .modern-forms .mdn-input:focus ~ .mdn-bar:after, .modern-forms .mdn-input:focus ~ .mdn-bar:before, .modern-forms .mdn-textarea:focus ~ .mdn-bar:after, .modern-forms .mdn-textarea:focus ~ .mdn-bar:before, .modern-forms .mdn-select > select:focus ~ .mdn-bar:after, .modern-forms .mdn-select > select:focus ~ .mdn-bar:before, .modern-forms .mdn-select-multiple select:focus ~ .mdn-bar:after, .modern-forms .mdn-select-multiple select:focus ~ .mdn-bar:before {
  width: 50%;
  opacity: 1;
}
/* @all labels above the inputs
------------------------------------------------ */
.modern-forms .field-group .mdn-label {
  width: 100%;
  position: absolute;
  margin-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #292929;
  top: 12px;
  left: 0;
}
.modern-forms .field-group .mdn-label, .modern-forms .mdn-label-pos .mdn-label, .modern-forms .mdn-input:focus + .mdn-label, .modern-forms .mdn-input .stepper:focus + .mdn-label, .modern-forms .mdn-textarea:focus + .mdn-label, .modern-forms .mdn-input[placeholder] + .mdn-label, .modern-forms .mdn-textarea[placeholder] + .mdn-label, .modern-forms .mdn-select > select:focus + .mdn-label, .modern-forms .mdn-select > select + .mdn-label, .modern-forms .mdn-select-multiple select:focus + .mdn-label, .modern-forms .mdn-select-multiple select + .mdn-label {
  top: -20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
}
.modern-forms .mdn-label-pos {
  position: relative;
}
.modern-forms .mdn-label-pos .mdn-label {
  position: absolute;
  margin-bottom: 2px;
  color: #292929;
}
/* @all borders  below non linear inputs
---------------------------------------------------- */
.modern-forms .mdn-bottom-border {
  border: 1px solid #DBDBDB;
  border-width: 0 0 1px 0;
  height: 46px;
}
.modern-forms .mdn-bottom-border .mdn-option {
  top: 4px;
}
.modern-forms .mdn-auto {
  height: auto;
  padding-bottom: 20px;
}
.modern-forms .mdn-auto .option-label {
  line-height: 22px;
}
/* @input focus state 
------------------------------------------------ */
.modern-forms .mdn-input:focus + .mdn-label, .modern-forms .mdn-textarea:focus + .mdn-label, .modern-forms .mdn-select > select:focus + .mdn-label, .modern-forms .mdn-select-multiple select:focus + .mdn-label, .modern-forms .mdn-upload .mdn-file:focus ~ .mdn-label {
  color: #e74c3c;
}
/* @inputs disabled state
------------------------------------------------ */
.modern-forms .mdn-input[disabled], .modern-forms .mdn-textarea[disabled], .modern-forms .mdn-select > select[disabled], .modern-forms .mdn-select-multiple select[disabled], .modern-forms .mdn-upload .mdn-file[disabled] + .mdn-input {
  color: #A2A2A2;
  border-color: #A2A2A2;
  border-style: dotted;
}
.modern-forms .mdn-input[disabled] ~ .mdn-bar, .modern-forms .mdn-textarea[disabled] ~ .mdn-bar, .modern-forms .mdn-select > select[disabled] ~ .mdn-bar, .modern-forms .mdn-select-multiple select[disabled] ~ .mdn-bar, .modern-forms .mdn-upload .mdn-file[disabled] + .mdn-input ~ .mdn-bar {
  display: none;
}
.modern-forms .mdn-input[disabled] ~ .mdn-icon svg, .modern-forms .mdn-textarea[disabled] ~ .mdn-icon svg, .modern-forms .mdn-select > select[disabled] ~ .mdn-icon svg, .modern-forms .mdn-upload .mdn-file[disabled] ~ .mdn-icon svg {
  fill: #A2A2A2;
}
.modern-forms .mdn-input[disabled] + .mdn-label, .modern-forms .mdn-textarea[disabled] + .mdn-label, .modern-forms .mdn-select > select[disabled] + .mdn-label, .modern-forms .mdn-upload .mdn-file[disabled] ~ .mdn-label, .modern-forms .mdn-select-multiple select[disabled] + .mdn-label {
  color: #A2A2A2;
}
.modern-forms input:disabled::-webkit-input-placeholder {
  color: #A2A2A2;
}
.modern-forms input:disabled:-ms-input-placeholder {
  color: #A2A2A2;
}
.modern-forms input:disabled::-moz-placeholder {
  color: #A2A2A2;
}
.modern-forms input:disabled:-moz-placeholder {
  color: #A2A2A2;
}
.modern-forms textarea:disabled::-webkit-input-placeholder {
  color: #A2A2A2;
}
.modern-forms textarea:disabled:-ms-input-placeholder {
  color: #A2A2A2;
}
.modern-forms textarea:disabled::-moz-placeholder {
  color: #A2A2A2;
}
.modern-forms textarea:disabled:-moz-placeholder {
  color: #A2A2A2;
}
.modern-forms .mdn-upload .mdn-file[disabled] + input:-moz-placeholder {
  color: #A2A2A2;
}
.modern-forms .mdn-upload .mdn-file[disabled] + input::-moz-placeholder {
  color: #A2A2A2;
}
.modern-forms .mdn-upload .mdn-file[disabled] + input:-ms-input-placeholder {
  color: #A2A2A2;
}
.modern-forms .mdn-upload .mdn-file[disabled] + input::-webkit-input-placeholder {
  color: #A2A2A2;
}
/* @disabled state checkbox and radio 
--------------------------------------------------------- */
.modern-forms input:disabled + .mdn-radio, .modern-forms input:disabled + .mdn-checkbox, .modern-forms .option-tick input:checked:disabled + .mdn-checkbox:before {
  border-color: #A2A2A2;
}
.modern-forms input:checked:disabled + .mdn-checkbox, .modern-forms input:checked:disabled + .mdn-radio:before {
  background: #A2A2A2;
}
.modern-forms input:disabled + .mdn-radio + .option-label, .modern-forms input:disabled + .mdn-checkbox + .option-label {
  color: #A2A2A2;
}
.modern-forms .option-tick input:checked:disabled + .mdn-checkbox {
  background: none;
  border: 0;
}
/* @rating widget
------------------------------------------------ */
.modern-forms .mdn-rating {
  position: relative;
  margin: 10px 0;
  display: block;
}
.modern-forms .mdn-rating label {
  color: #BBBBBB;
}
.modern-forms .mdn-rating label i {
  font-size: 17px;
  text-align: center;
  color: inherit;
}
.modern-forms .mdn-rating label span {
  font: 22px/22px Times, Serif;
}
.modern-forms .star-l {
  margin-left: 4px;
}
.modern-forms .star-i {
  position: absolute;
  left: -9999px;
  top: auto;
}
.modern-forms .mdn-rating:hover .star-l:hover, .modern-forms .mdn-rating:hover .star-l:hover ~ .star-l, .modern-forms .star-i:checked ~ .star-l {
  color: #2BBBAD;
}
.modern-forms .star-l, .modern-forms .mdn-rating:hover .star-l {
  width: 18px;
  float: right;
  display: block;
  cursor: pointer;
  color: #BBBBBB;
}
.modern-forms .mdn-rating:before, .modern-forms .mdn-rating:after {
  line-height: 0;
  display: table;
  content: "";
}
.modern-forms .mdn-rating:after {
  clear: both;
}
.modern-forms .mdn-rating .mdn-rating-label {
  font-size: 14px;
  font-family: 'robotoregular', Arial, Helvetica, sans-serif;
  display: inline-block;
  font-weight: 400;
  float: left;
}
.modern-forms .mdn-rating-widget {
  position: relative;
  display: inline-block;
  float: right;
  margin-top: 0;
}
.modern-forms .mdn-rating label span {
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 0 1px rgba(255, 255, 255, 0);
  -webkit-transition: margin 0.6s, opacity 0.6s;
  -moz-transition: margin 0.6s, opacity 0.6s;
  -ms-transition: margin 0.6s, opacity 0.6s;
  -o-transition: margin 0.6s, opacity 0.6s;
  transition: margin 0.6s, opacity 0.6s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  white-space: nowrap;
  position: absolute;
  padding: 5px 10px;
  font-weight: bold;
  background: #282828;
  font-size: 11px;
  margin-left: -5px;
  margin-bottom: 15px;
  display: block;
  left: -9999px;
  color: #fff;
  opacity: 0;
  z-index: 10;
}
.modern-forms .mdn-rating label:hover span {
  opacity: 1;
  left: auto;
  bottom: 100%;
  margin-bottom: 5px;
}
.modern-forms .mdn-rating label span:before {
  content: '';
  position: absolute;
  border-top: 4px solid #282828;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  left: 8px;
  top: 100%;
}
/* @buttons 
--------------------------------------------- */
.modern-forms .mdn-button {
  border: 0;
  height: 46px;
  color: #243140;
  line-height: 1;
  font-size: 14px;
  cursor: pointer;
  padding: 0 30px;
  background: none;
  text-align: center;
  position: relative;
  vertical-align: top;
  display: inline-block;
  -webkit-user-drag: none;
  text-transform: uppercase;
  transition: all .55s ease-out;
  -moz-transition: all .55s ease-out;
  -webkit-transition: all .55s ease-out;
  text-shadow: 0 1px rgba(255, 255, 255, 0.2);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
/* @basic button states 
------------------------------------------------- */
.modern-forms .mdn-button:hover, .modern-forms .mdn-button:active, .modern-forms .mdn-upload .mdn-file:hover ~ .mdn-button {
  color: #1d2938;
  background: #EBEBEB;
}
/* button disabled 
-------------------------------------------------- */
.modern-forms .mdn-button[disabled], .modern-forms .mdn-button[disabled]:hover, .modern-forms .mdn-button[disabled]:active, .modern-forms .mdn-upload .mdn-file[disabled] ~ .mdn-button, .modern-forms .mdn-upload .mdn-file[disabled]:hover ~ .mdn-button {
  color: #A2A2A2;
  background: none;
}
.modern-forms a.mdn-button, .modern-forms span.mdn-button, .modern-forms label.mdn-button {
  line-height: 46px;
  text-decoration: none;
}
.modern-forms .mdn-button i {
  font-size: 14px;
}
.modern-forms .mdn-button-list .mdn-button {
  margin-bottom: 5px;
}
/* @flat button 
------------------------------------------------ */
.modern-forms .btn-flat {
  color: #7BC6BF;
}
.modern-forms .btn-flat:hover, .modern-forms .btn-flat:active {
  color: #e74c3c;
  background: #EBEBEB;
}
/* @flat button disabled 
------------------------------------------------ */
.modern-forms .btn-flat[disabled], .modern-forms .btn-flat[disabled]:hover, .modern-forms .btn-flat[disabled]:active, .modern-forms .mdn-upload .mdn-file[disabled] ~ .btn-flat, .modern-forms .mdn-upload .mdn-file[disabled]:hover ~ .btn-flat {
  color: #A4D9D3;
  background: none;
}
/* @primary button 
------------------------------------------------ */
.modern-forms .btn-primary {
  color: #fff;
  background-color: #2BBBAD;
  text-shadow: 0 1px rgba(0, 0, 0, 0.08);
}
.modern-forms .btn-primary:hover, .modern-forms .btn-primary:focus, .modern-forms .btn-primary:active, .modern-forms .mdn-upload .mdn-file:hover ~ .btn-primary {
  background-color: #e74c3c;
  color: #fff;
}
/* @button raised  
---------------------------------------------------------------- */
.modern-forms .btn-raised {
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 2px rgba(0, 0, 0, .2);
  -o-box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 2px rgba(0, 0, 0, .2);
}
.modern-forms .btn-raised:hover, .modern-forms .btn-raised:active {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  -o-box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
}
/* @ primary button disabled
---------------------------------------------------------------- */
.modern-forms .btn-primary[disabled], .modern-forms .btn-primary[disabled]:hover, .modern-forms .btn-primary[disabled]:focus, .modern-forms .btn-primary[disabled]:active, .modern-forms .mdn-upload .mdn-file[disabled] ~ .btn-primary, .modern-forms .mdn-upload .mdn-file[disabled]:hover ~ .btn-primary {
  background-color: #A4D9D3;
  color: #fff;
}
.modern-forms .btn-raised[disabled], .modern-forms .btn-raised[disabled]:hover, .modern-forms .btn-raised[disabled]:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
/* @info / tooltip input messages
-------------------------------------------------------  */
.modern-forms .mdn-msg {
  position: absolute;
  bottom: -22px;
  font-size: .7em;
  line-height: 24px;
  transition: all .55s ease-out;
  -moz-transition: all .55s ease-out;
  -webkit-transition: all .55s ease-out;
}
.modern-forms .mdn-msg.right {
  right: 0;
}
.modern-forms .mdn-input:focus ~ .mdn-msg, .modern-forms .mdn-textarea:focus ~ .mdn-msg, .modern-forms .mdn-select > select:focus ~ .mdn-msg, .modern-forms .mdn-select-multiple select:focus ~ .mdn-msg, .modern-forms .mdn-upload .mdn-file:focus ~ .mdn-msg {
  color: #e74c3c;
}
.modern-forms .mdn-input[disabled] ~ .mdn-msg, .modern-forms .mdn-textarea[disabled] ~ .mdn-msg, .modern-forms .mdn-select > select[disabled] ~ .mdn-msg, .modern-forms .mdn-select-multiple select[disabled] ~ .mdn-msg, .modern-forms .mdn-upload .mdn-file[disabled] ~ .mdn-msg {
  color: #A2A2A2;
}
.modern-forms .msg-hidden {
  opacity: 0;
  bottom: -42px;
}
.modern-forms .mdn-input:focus ~ .msg-hidden, .modern-forms .mdn-textarea:focus ~ .msg-hidden, .modern-forms .mdn-select > select:focus ~ .msg-hidden, .modern-forms .mdn-select-multiple select:focus ~ .msg-hidden, .modern-forms .mdn-upload .mdn-file:focus ~ .msg-hidden {
  opacity: 1;
  bottom: -22px;
}
/* @icon append (right) :: prepend (left)
------------------------------------------------- */
.modern-forms .append-icon, .modern-forms .prepend-icon {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
}
.modern-forms .append-icon .mdn-icon, .modern-forms .prepend-icon .mdn-icon {
  top: 10px;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: inherit;
  position: absolute;
  text-align: left;
  pointer-events: none;
}
.modern-forms .append-icon .mdn-icon svg, .modern-forms .prepend-icon .mdn-icon svg {
  position: relative;
  fill: #BDBDBD;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.modern-forms .prepend-icon .mdn-icon {
  left: 0;
}
.modern-forms .append-icon .mdn-icon {
  right: 0;
}
.modern-forms .prepend-icon > input, .modern-forms .prepend-icon > select, .modern-forms .prepend-icon > textarea {
  padding-left: 25px;
}
.modern-forms .append-icon > input, .modern-forms .append-icon > textarea {}
.modern-forms .mdn-select .mdn-icon {
  line-height: 42px;
  z-index: 99 !important;
}
.modern-forms .mdn-input:focus ~ .mdn-icon svg, .modern-forms .mdn-textarea:focus ~ .mdn-icon svg, .modern-forms .mdn-select > select:focus ~ .mdn-icon svg, .modern-forms .mdn-upload .mdn-file:focus ~ .mdn-icon svg {
  fill: #e74c3c;
}
/* error + success states 
------------------------------------------------------------ */
.modern-forms .mdn-error .mdn-file ~ .mdn-bar:after, .modern-forms .mdn-error .mdn-file ~ .mdn-bar:before, .modern-forms .mdn-error .mdn-input ~ .mdn-bar:after, .modern-forms .mdn-error .mdn-input ~ .mdn-bar:before, .modern-forms .mdn-error .mdn-textarea ~ .mdn-bar:after, .modern-forms .mdn-error .mdn-textarea ~ .mdn-bar:before, .modern-forms .mdn-error.mdn-select > select ~ .mdn-bar:after, .modern-forms .mdn-error.mdn-select > select ~ .mdn-bar:before, .modern-forms .mdn-error.mdn-select-multiple select ~ .mdn-bar:after, .modern-forms .mdn-error.mdn-select-multiple select ~ .mdn-bar:before, .modern-forms .mdn-error .mdn-file:focus ~ .mdn-bar:after, .modern-forms .mdn-error .mdn-file:focus ~ .mdn-bar:before, .modern-forms .mdn-error .mdn-input:focus ~ .mdn-bar:after, .modern-forms .mdn-error .mdn-input:focus ~ .mdn-bar:before, .modern-forms .mdn-error .mdn-textarea:focus ~ .mdn-bar:after, .modern-forms .mdn-error .mdn-textarea:focus ~ .mdn-bar:before, .modern-forms .mdn-error.mdn-select > select:focus ~ .mdn-bar:after, .modern-forms .mdn-error.mdn-select > select:focus ~ .mdn-bar:before, .modern-forms .mdn-error.mdn-select-multiple select:focus ~ .mdn-bar:after, .modern-forms .mdn-error.mdn-select-multiple select:focus ~ .mdn-bar:before, .modern-forms .mdn-success .mdn-file ~ .mdn-bar:after, .modern-forms .mdn-success .mdn-file ~ .mdn-bar:before, .modern-forms .mdn-success .mdn-input ~ .mdn-bar:after, .modern-forms .mdn-success .mdn-input ~ .mdn-bar:before, .modern-forms .mdn-success .mdn-textarea ~ .mdn-bar:after, .modern-forms .mdn-success .mdn-textarea ~ .mdn-bar:before, .modern-forms .mdn-success.mdn-select > select ~ .mdn-bar:after, .modern-forms .mdn-success.mdn-select > select ~ .mdn-bar:before, .modern-forms .mdn-success.mdn-select-multiple select ~ .mdn-bar:after, .modern-forms .mdn-success.mdn-select-multiple select ~ .mdn-bar:before, .modern-forms .mdn-success .mdn-file:focus ~ .mdn-bar:after, .modern-forms .mdn-success .mdn-file:focus ~ .mdn-bar:before, .modern-forms .mdn-success .mdn-input:focus ~ .mdn-bar:after, .modern-forms .mdn-success .mdn-input:focus ~ .mdn-bar:before, .modern-forms .mdn-success .mdn-textarea:focus ~ .mdn-bar:after, .modern-forms .mdn-success .mdn-textarea:focus ~ .mdn-bar:before, .modern-forms .mdn-success.mdn-select > select:focus ~ .mdn-bar:after, .modern-forms .mdn-success.mdn-select > select:focus ~ .mdn-bar:before, .modern-forms .mdn-success.mdn-select-multiple select:focus ~ .mdn-bar:after, .modern-forms .mdn-success.mdn-select-multiple select:focus ~ .mdn-bar:before {
  width: 50%;
}
.modern-forms .mdn-error .mdn-icon svg, .modern-forms .mdn-error .mdn-icon svg {
  fill: #F44336;
}
.modern-forms .mdn-error .mdn-input + .mdn-label, .modern-forms .mdn-error .mdn-textarea + .mdn-label, .modern-forms .mdn-error.mdn-select > select + .mdn-label, .modern-forms .mdn-error.mdn-select-multiple select + .mdn-label, .modern-forms .mdn-error.mdn-upload .mdn-file ~ .mdn-label {
  color: #F44336;
}
.modern-forms .mdn-error .mdn-input:focus ~ .mdn-icon svg, .modern-forms .mdn-error .mdn-textarea:focus ~ .mdn-icon svg, .modern-forms .mdn-error.mdn-select > select:focus ~ .mdn-icon svg, .modern-forms .mdn-error.mdn-upload .mdn-file:focus ~ .mdn-icon svg {
  fill: #F44336;
}
.modern-forms .mdn-error .mdn-msg, .modern-forms .mdn-error .mdn-input:focus ~ .mdn-msg, .modern-forms .mdn-error .mdn-textarea:focus ~ .mdn-msg, .modern-forms .mdn-error.mdn-select > select:focus ~ .mdn-msg, .modern-forms .mdn-error.mdn-select-multiple select:focus ~ .mdn-msg, .modern-forms .mdn-error.mdn-upload .mdn-file:focus ~ .mdn-msg {
  color: #F44336;
}
.modern-forms .mdn-error .mdn-bar:after, .modern-forms .mdn-error .mdn-bar:before, .modern-forms .mdn-error.mdn-upload .btn-primary, .modern-forms .mdn-error.mdn-upload .mdn-file:hover ~ .btn-primary {
  background: #F44336;
}
.modern-forms .mdn-error.mdn-select:after {
  border-top-color: #F44336;
}
.modern-forms .mdn-error.mdn-upload .mdn-file:focus ~ .btn-primary, .modern-forms .mdn-error.mdn-upload .mdn-file:hover ~ .btn-primary {
  background: #D61B0C;
}
.modern-forms .mdn-error .mdn-radio, .modern-forms .mdn-error .mdn-checkbox, .modern-forms .mdn-error input:hover + .mdn-radio, .modern-forms .mdn-error input:focus + .mdn-radio, .modern-forms .mdn-error input:hover + .mdn-checkbox, .modern-forms .mdn-error input:focus + .mdn-checkbox {
  border-color: #F44336;
}
.modern-forms .mdn-success .mdn-icon svg, .modern-forms .mdn-success .mdn-icon svg {
  fill: #2ECC71;
}
.modern-forms .mdn-success .mdn-input + .mdn-label, .modern-forms .mdn-success .mdn-textarea + .mdn-label, .modern-forms .mdn-success.mdn-select > select + .mdn-label, .modern-forms .mdn-success.mdn-select-multiple select + .mdn-label, .modern-forms .mdn-success.mdn-upload .mdn-file ~ .mdn-label {
  color: #2ECC71;
}
.modern-forms .mdn-success .mdn-input:focus ~ .mdn-icon svg, .modern-forms .mdn-success .mdn-textarea:focus ~ .mdn-icon svg, .modern-forms .mdn-success.mdn-select > select:focus ~ .mdn-icon svg, .modern-forms .mdn-success.mdn-upload .mdn-file:focus ~ .mdn-icon svg {
  fill: #2ECC71;
}
.modern-forms .mdn-success .mdn-bar:after, .modern-forms .mdn-success .mdn-msg, .modern-forms .mdn-success .mdn-input:focus ~ .mdn-msg, .modern-forms .mdn-success .mdn-textarea:focus ~ .mdn-msg, .modern-forms .mdn-success.mdn-select > select:focus ~ .mdn-msg, .modern-forms .mdn-success.mdn-select-multiple select:focus ~ .mdn-msg, .modern-forms .mdn-success.mdn-upload .mdn-file:focus ~ .mdn-msg {
  color: #2ECC71;
}
.modern-forms .mdn-success .mdn-bar:after, .modern-forms .mdn-success .mdn-bar:before, .modern-forms .mdn-success.mdn-upload .btn-primary, .modern-forms .mdn-success.mdn-upload .mdn-file:hover ~ .btn-primary {
  background: #2ECC71;
}
.modern-forms .mdn-success.mdn-select:after {
  border-top-color: #2ECC71;
}
.modern-forms .mdn-success.mdn-upload .mdn-file:focus ~ .btn-primary, .modern-forms .mdn-success.mdn-upload .mdn-file:hover ~ .btn-primary {
  background: #26AC60;
}
.modern-forms .mdn-success .mdn-radio, .modern-forms .mdn-success .mdn-checkbox, .modern-forms .mdn-success input:hover + .mdn-radio, .modern-forms .mdn-success input:focus + .mdn-radio, .modern-forms .mdn-success input:hover + .mdn-checkbox, .modern-forms .mdn-success input:focus + .mdn-checkbox {
  border-color: #2ECC71;
}
/* @form rows || colms
--------------------------------------------------------- */
.modern-forms .form-row:before, .modern-forms .form-row:after {
  line-height: 0;
  display: table;
  content: "";
}
.modern-forms .form-row:after {
  clear: both;
}
.modern-forms .form-row .fr {
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  float: left;
}
.modern-forms .form-row .fr_1 {
  width: 8.33%;
}
.modern-forms .form-row .fr_2 {
  width: 16.66%;
}
.modern-forms .form-row .fr_3 {
  width: 25%;
}
.modern-forms .form-row .fr_4 {
  width: 33.33%;
}
.modern-forms .form-row .fr_5 {
  width: 41.66%;
}
.modern-forms .form-row .fr_6 {
  width: 50%;
}
.modern-forms .form-row .fr_7 {
  width: 58.33%;
}
.modern-forms .form-row .fr_8 {
  width: 66.66%;
}
.modern-forms .form-row .fr_9 {
  width: 75%;
}
.modern-forms .form-row .fr_10 {
  width: 83.33%;
}
.modern-forms .form-row .fr_11 {
  width: 91.66%;
}
.modern-forms .form-row .fr_12 {
  width: 100%;
}
.modern-forms .form-row .fr_1_1 {
  width: 4.33%;
  text-align: center;
  line-height: 2.7em;
}
.modern-forms .form-row .fr_1_5 {
  width: 20%;
}
.modern-forms .form-row .fr_1_8 {
  width: 12.5%;
}
.modern-forms .form-row .fr_3_1 {
  width: 18.66%;
}
/* @basic support styles 
---------------------------------------------------------------------*/
.modern-forms fieldset {
  border: none;
  padding: 0;
  margin: 0 0 30px;
}
.modern-forms fieldset legend {
  position: static;
  width: 100%;
  border: none;
  color: #7b7b7b;
  font-size: 18px;
  padding-bottom: 5px;
  margin-bottom: 50px;
  border-bottom: 4px solid #b7b7b7;
  font-weight: bold;
}
.modern-forms fieldset fieldset legend {
  border-bottom: 2px solid #292929;
  font-weight: normal;
}
.modern-forms fieldset fieldset fieldset legend {
  border-bottom: 1px solid #292929;
  font-weight: normal;
  font-size: 15px;
}
.modern-forms .mdn-footer {
  display: block;
  position: relative;
}
.modern-forms .mdn-footer .mdn-button {
  margin-bottom: 0;
}
.modern-forms .block-group .mdn-option {
  display: block;
  padding-bottom: 8px;
}
.modern-forms .block-label {
  padding-bottom: 20px;
}
.modern-forms .block-label .mdn-label {
  top: -10px;
}
.modern-forms .mdn-section {
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 30px;
}
.modern-forms .block-group .mdn-switch {
  display: block;
  padding: 5px 0;
  height: 34px;
}
.modern-forms .pad-r {
  padding-right: 40px;
}
.modern-forms .pad-l {
  padding-left: 40px;
}
.new_im .field-group {
  margin-bottom: 10px;
}
/*---[ Rangeslider ]---*/
output {
  width: 150px;
  font-size: 38px;
  font-weight: normal;
  border: none;
  color: #e74c3c;
  background: none;
  margin: -7px 0 0;
  padding: 0
}
.rangeslider--horizontal {
  margin-top: 50px;
}
.rangeslider, .rangeslider__fill {
  display: block;
  border-radius: 10px;
}
.rangeslider {
  background: #e6e6e6;
  position: relative;
}
.rangeslider--horizontal {
  height: 20px;
  width: 100%;
}
.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}
.rangeslider--disabled {
  opacity: 0.4;
}
.rangeslider__fill {
  background: #e74c3c;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}
.rangeslider__handle {
  background: #fff;
  border: 3px solid #e74c3c;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  border-radius: 50%;
}
.rangeslider__handle:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
}
.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
}
.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}
/*---[ ФАЙЛОВЫЙ ЗАГРУЗЧИК ]---*/
.drpld {
  margin: 0 auto
}
.drp {
  margin-top: 10px;
  border: 6px dashed #e7e7e7;
  text-align: center;
  text-transform: uppercase;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZlcnNpb249IjEuMSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIHZpZXdCb3g9IjAgMCAzMDAwIDMwMDAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCjxwYXRoIGZpbGw9IiNmMGYwZjAiIGQ9Ik0xMTI3IDIxODZjMCw4MyAtNSw1MDYgMSw1NDkgMjAsMTM0IDE0NiwyNjUgMjg2LDI2NWwxMzAwIDBjMTQwLDAgMjg3LC0xNDggMjg3LC0yODdsMCAtMTMwMGMwLC0xNjIgLTE2MSwtMjg4IC0zMTYsLTI4NyAtMjAxLDEgLTQwMiwwIC02MDMsMCA1NDYsODI2IC0zNjUsMTMxMSAtOTU0LDEwNjB6bTUyMSAtMTE1M2MwLDQ4IDgyLDg0IDMyLDE0MCAtNjgsNzQgLTE1MSwtODcgLTIwMSwtODcgLTU1LDAgLTEzOSw1OSAtMTcsMTY0IDcwLDYwIDM5LDEyMyAtMjksMTIzIC02NywwIC05NSwtMTI5IC0xODcsLTEyOSAtNDUsMCAtMTA1LDcyIC0yNiwxMzcgMjgsMjMgMTU1LDE1MiAxNTUsMTY3IDAsMzMgLTMsNjQgLTU5LDY0IC02NiwwIC0xNjUsLTE2NCAtMjIyLC0xNjQgLTc0LDAgLTEwNCw3MyAtNTcsMTIyIDM4LDM4IDQ4NCw0MDQgMjgwLDQwNCAtMTExLDAgLTg5LC0xNjIgLTE4NywtMTMzIC01MSwzMiAtMTAsMTQ4IDMxLDIwMyAzMzMsMzUwIDE0MTAsLTE1MiA4MzEsLTg0MyAtOTUsLTc5IC0xNzksLTIzOCAtMjc3LC0yMzkgLTM0LDAgLTY0LDM2IC02NCw3MHptMTAwIC01MjdjMCw3MiAtMTcsMTgxIDcwLDE4MSA3OCwwIDU5LC0xMjMgNTksLTE5OSAwLC03MCAtMTI5LC04NyAtMTI5LDE4em0tNDMzIC00MzljMCw4MiAxMjksNjQgMTgxLDY0IDEwMiwwIDkxLC0xMjkgMTgsLTEyOSAtNjAsMCAtMTk5LC0yMyAtMTk5LDY0em0tODc4IDE3MzljMCwxMDEgMTIwLDcwIDE5Myw3MCA3MSwwIDkyLC0xMjkgLTE4LC0xMjkgLTYyLDAgLTE3NiwtMTUgLTE3Niw1OXptLTE3OCA2M2MzNSwtNiA4MSwtNjQgMzMsLTExMSAtMjYsLTI2IC00MCwtNiAtOTksLTUzIC0yMywtMTggLTYxLC00OCAtMTAxLC04IC03Nyw3OSAxMTAsMTgyIDE2NiwxNzJ6bTY4MSAtMTgxOWMwLDk4IDYyLDgyIDE3Niw4MiAxMDcsMCA5MCwtMTI5IDE4LC0xMjkgLTQ0LDAgLTE5MywtMTcgLTE5Myw0N3ptLTUwNCAxMmMwLC03MCAtOTIsLTU5IC0xNDEsLTU5IC0xMzcsMCAtMTM5LDExMyAtNzQsMTMyIDQzLDEyIDIxNCwxMSAyMTQsLTc0em0tNDE3IDExMTRjMjYsMzAgMTEzLDI3IDExMywtNjAgMCwtNzcgMTcsLTE3NiAtNzAsLTE3NiAtMjksMCAtNTksMjkgLTU5LDU5IDAsNDAgLTksMTQ4IDE2LDE3N3ptNTQwIC0xMTE0YzAsODcgOTMsNzAgMTc2LDcwIDEwNSwwIDk1LC0xMjkgMTgsLTEyOSAtNTYsMCAtMTkzLC0yMSAtMTkzLDU5em0tNDk4IDc1NWMxMDQsMCA3MiwtMjA5IDU1LC0yMzAgLTQzLC01NCAtMTEzLC0xNCAtMTEzLDMxIDAsNTUgLTIxLDE5OSA1OSwxOTl6bS01OSAtNDQ3YzksODkgMTI5LDExOCAxMjksLTU3IDAsLTMzIDMzLC0xMjkgLTY0LC0xMjkgLTc2LDAgLTY0LDEzMiAtNjQsMTg2em0xNjk5IC0xODFjNjEsNzQgMjQsMTE4IDExNiwxMTggMTUsMCA0MywtMjEgNTAsLTUwIDksLTQzIC0zOCwtMTEyIC02MiwtMTQyIC03MiwtOTIgLTE3NSwtMTEgLTEwNCw3NXptLTE2OTkgMTMyMGM5LDY2IDgyLDgzIDExNSwzNiAxNSwtMjIgNDQsLTIyNiAtNDUsLTIyNiAtNDAsMCAtNzAsMTcgLTcwLDU5bDAgMTMxem04NjYgMzY2YzUzLDAgMTM1LDE0IDEzNSwtNjQgMCwtODMgLTE3MCwtODggLTE4OSwtMTMgLTgsMzMgMTQsNzggNTUsNzh6bTg5NiAtMTAzMGM1NSwxMyA3MiwzOCAxMTEsNjQgMCwtNTAgMywtNzIgLTMzLC05MCAtMzEsLTE1IC03MCwtNiAtNzgsMjZ6Ii8+PC9zdmc+') center center / 100px auto no-repeat rgba(249, 249, 249, .50)
}
.drp a {
  width: 100%;
  background: transparent;
  padding: 65px 10px;
  color: #282828;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transition: all .2s ease
}
.drp a:hover {
  color: #e74c3c
}
.drp input {
  display: none
}
.drpld .fls {
  list-style: none;
  margin: 0;
  padding: 0
}
.drpld .fls .pic {
  height: 50px;
  padding: 10px 15px;
  position: relative;
  border-radius: 3px;
  box-sizing: content-box;
}
.drpld .fls .pic:nth-child(2n) {
  background: rgba(249, 249, 249, .50);
}
.drpld .fls .pic input {
  display: none
}
.drpld .fls .pic p {
  position: relative;
  left: 50px;
  width: calc(100% - 90px);
  display: block;
  color: #282828;
  font-size: 14px;
  margin: 8px 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drpld .fls .pic i {
  font-weight: normal;
  font-style: normal;
  color: #e74c3c;
  display: block
}
.drpld .fls .pic canvas {
  position: absolute;
  top: 20px;
}
.drpld .fls .pic span {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 25px;
  right: 10px;
  cursor: pointer
}
.drpld .fls .pic span svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #282828;
  padding: 4px;
}
.drpld .fls .pic span svg:hover {
  fill: #e74c3c
}
.drpld .fls .pic.working span {
  height: 16px;
  background-position: 0 -12px
}
.drpld .fls .pic.error p {
  color: #282828
}
/*-------------- КАЛЕНДАРЬ --------------*/
.dropdown-menu.datepicker:not(.notfi-dropdown):not([role="combobox"]) {
  padding: 0;
  display: none;
  visibility: visible;
  opacity: .95;
  transition: none;
}
.dropdown-menu:not(.notfi-dropdown):not([role="combobox"]) {
  transition: all .15s ease;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  padding: 8px 0;
  margin-top: 1px;
  transform-origin: right top;
  display: block;
  opacity: 0;
  visibility: hidden;
  border: 0;
}
.dropdown-menu:not(.notfi-dropdown):not([role="combobox"]) {
  padding: 0;
}
.datepicker {
  width: 330px;
}
.dropdown-menu, .timeselect ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 180px;
  padding: 5px 0;
  font-size: 13px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
  user-select: none;
}
.dropdown-menu, .modal-content {
  -webkit-background-clip: padding-box;
}
.btn-group > .btn-group, .btn-toolbar .btn-group, .btn-toolbar .input-group, .dropdown-menu {
  float: left;
}
.datepicker:before, .timeselect ul:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  border-bottom-color: #fff;
  position: absolute;
  top: -7px;
  left: 6px;
}
.datepicker:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 7px;
}
.datepicker > div {
  display: none;
}
.datepicker table {
  width: 100%;
  margin: 0;
}
.datepicker thead th {
  height: 50px;
  vertical-align: middle;
}
.datepicker td, .datepicker th {
  text-align: center;
  width: 40px;
  height: 35px;
  padding: 0;
  border-radius: 0;
}
.datepicker td.day, .datepicker td.dow {
  padding: 2px 5px;
  vertical-align: middle;
}
.datepicker td.day:hover, .timeselect ul li:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker td.day.disabled {
  color: #eeeeee;
}
.datepicker td.old, .datepicker td.new {
  color: #999999;
}
.datepicker td.active, .datepicker td.active:hover {
  color: #ffffff;
  background-color: #e74c3c;
  color: #fff;
}
.datepicker td.active:hover, .datepicker td.active:hover:hover, .datepicker td.active:focus, .datepicker td.active:hover:focus, .datepicker td.active:active, .datepicker td.active:hover:active, .datepicker td.active.active, .datepicker td.active:hover.active, .datepicker td.active.disabled, .datepicker td.active:hover.disabled, .datepicker td.active[disabled], .datepicker td.active:hover[disabled] {
  color: #ffffff;
  background-color: #e74c3c;
}
.datepicker td.active:active, .datepicker td.active:hover:active, .datepicker td.active.active, .datepicker td.active:hover.active {
  background-color: #e74c3c;
}
.datepicker td span {
  display: block;
  width: 33.333%;
  height: 40px;
  color: #000;
  line-height: 40px;
  float: left;
  cursor: pointer;
  border-radius: 0;
}
.datepicker td span:hover {
  background: #eeeeee;
}
.datepicker td span.active:hover, .datepicker td span.active:focus, .datepicker td span.active:active, .datepicker td span.active.active, .datepicker td span.active.disabled, .datepicker td span.active[disabled] {
  color: #ffffff;
  background-color: #e74c3c;
}
.datepicker td span.active:active, .datepicker td span.active.active {
  background-color: #e74c3c;
}
.datepicker td span.old {
  color: #999999;
}
.datepicker th.switch {
  font-size: 17px;
  color: #282828;
}
.datepicker th.next, .datepicker th.prev {
  font-size: 21px;
}
.datepicker thead tr:first-child th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover {
  background: #eeeeee;
}
.timeselect.clr {
  clear: both;
}
.timeselect {
  visibility: visible;
  opacity: 1;
  position: relative;
  display: inline-block;
}
.timeselect input[type=text] {
  padding: 3px 5px;
}
.timeselect ul {
  width: 330px;
  margin: 0 15px;
  padding: 0;
}
.timeselect ul li {
  width: 33.333%;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #282828;
  cursor: pointer;
  float: left;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.input-append.date .add-on i, .input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
/*-------------- PLUGINS --------------*/
.input_delete {
  position: absolute;
  top: 11px;
  right: 0
}
.input_delete:before {
  content: "×";
  margin-right: .55em;
  color: #e74c3c;
  vertical-align: top;
  font-size: 16px
}
/*-------------- COLOR --------------*/
.responsive-color {
  width: 16.666%;
}
@media(max-width:768px) {
	.responsive-color {
	  width: 33.333%;
	}
}
#picker {
  position: relative;
  margin: auto;
  display: block;
  clear: both
}
.farbtastic, .farbtastic .wheel {
  width: 195px;
  height: 195px;
  margin: auto
}
.farbtastic {
  position: relative
}
#picker {
  position: relative;
  margin: auto;
  display: block;
  clear: both
}
.farbtastic {
  position: relative
}
.farbtastic * {
  position: absolute;
  cursor: crosshair
}
.farbtastic, .farbtastic .wheel {
  width: 195px;
  height: 195px
}
.farbtastic .color, .farbtastic .overlay {
  position: absolute;
  top: 47px;
  left: 47px;
  width: 101px;
  height: 101px
}
.farbtastic .wheel {
  background: url(../img/wheel.png) no-repeat;
  width: 195px;
  height: 195px
}
.farbtastic .overlay {
  background: url(../img/mask.png) no-repeat;
}
.farbtastic .marker {
  width: 17px;
  height: 17px;
  margin: -8px 0 0 -8px;
  overflow: hidden;
  background: url(../img/marker.png) no-repeat
}
.responsive-color div {
  position: relative;
  width: 100%;
  padding-bottom: 100%
}
.colorwell {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  display: block;
  text-align: center;
  border-radius: 50%;
  cursor: default;
  outline: none;
  border: none;
  -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, .10);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, .10);
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1)
}
.colorwell:hover, .colorwell:focus {
  -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, .20);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, .20);
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05)
}
/* Stepper */
.stepper {
  width: 100%;
  position: relative;
}
.modern-forms .stepper input.mdn-input[type="number"]::-webkit-outer-spin-button, .modern-forms .stepper input.mdn-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.modern-forms .stepper input.mdn-input[type="number"] {
  -moz-appearance: textfield;
}
.modern-forms .stepper input.mdn-input[type=number]::-webkit-inner-spin-button, .modern-forms .stepper input.mdn-input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stepper .stepper-step {
  width: 20px;
  height: 50%;
  cursor: pointer;
  display: block;
  position: absolute;
  right: 0;
  text-indent: -99999px;
  z-index: 50
}
.stepper-arrow.up, .stepper-arrow.down {
  width: 20px;
  height: 20px;
  position: absolute;
  display: block;
  right: 2px;
  background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgOCA1IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjUiPjxwYXRoIGQ9Ik03Ljc4MSAxLjQ0NGMtLjI4MS4zMDctMy4yMzggMy4zMTEtMy4yMzggMy4zMTEtLjE1MS4xNjQtLjM0Ny4yNDUtLjU0NC4yNDUtLjE5NyAwLS4zOTQtLjA4Mi0uNTQzLS4yNDUgMCAwLTIuOTU3LTMuMDAzLTMuMjM5LTMuMzExLS4yODEtLjMwNy0uMy0uODU5IDAtMS4xODguMzAxLS4zMjguNzE5LS4zNTQgMS4wODcgMGwyLjY5NSAyLjc1NSAyLjY5NC0yLjc1NWMuMzY4LS4zNTQuNzg3LS4zMjggMS4wODcgMCAuMzAxLjMyOC4yODIuODgxIDAgMS4xODd6IiBmaWxsPSIjYmJiIi8+PC9zdmc+) no-repeat 50%;
  z-index: 1;
}
.stepper-arrow.up {
  top: 2px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.stepper-arrow.down {
  bottom: 2px;
}
@media (max-width: 992px) {
  .modern-forms .form-row .fr {
    width: 100%;
    float: none;
    padding: 0;
  }
  .modern-forms .mdn-bottom-border {
    height: auto;
    padding-bottom: 20px;
  }
  .modern-forms .pad-r {
    padding-right: 0;
  }
  .modern-forms .pad-l {
    padding-left: 0;
  }
}
/* МОДАЛЬНЫЕ ОКНА */
.md-perspective, .md-perspective body {
  height: 100%;
  overflow: hidden;
}
.md-perspective body {
  background: #222;
  -webkit-perspective: 600px;
  perspective: 600px;
}
.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 890px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 3px;
}
.md-toper {
  position: relative;
  text-align: center;
  border-bottom: 1px solid #e7e9ec;
}
.md-close {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 35px;
  height: 30px;
  text-align: left;
}
.md-close svg {
  fill: #282828;
}
.md-close:hover svg {
  fill: #e74c3c;
}
.md-show {
  visibility: visible;
}
.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(0, 0, 0, .4);
  -webkit-transition: all .3s;
  transition: all .3s;
}
.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}
.md-content {
  color: #282828;
  background: #fff;
  position: relative;
  border-radius: 3px;
  margin: 0 20px;
  padding-bottom: 5px;
}
.md-content h3 {
  margin: 0;
  padding: .4em;
  text-align: center;
  font-size: 2.4em;
  font-weight: 300;
  opacity: .8;
  background: rgba(0, 0, 0, .1);
  border-radius: 3px 3px 0 0;
}
.md-content > div {
  padding: 15px 30px;
  margin: 0;
  font-size: 1.15em;
}
.md-content > div p {
  margin: 0;
  padding: 10px 0;
}
.md-content > div ul {
  margin: 0;
  padding: 0 0 30px 20px;
}
.md-content > div ul li {
  padding: 5px 0;
}
.md-content button {
  display: inline-block;
  margin: 0 auto;
  font-size: .8em;
}
/* Effect 1 */
.md-effect-1 .md-content {
  -webkit-transform: scale(.7);
  transform: scale(.7);
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.md-show.md-effect-1 .md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/* Effect 2 */
.md-effect-2 .md-content {
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
  opacity: 0;
  -webkit-transition: all .3s cubic-bezier(.25, .5, .5, .9);
  transition: all .3s cubic-bezier(.25, .5, .5, .9);
}
.md-show.md-effect-2 .md-content {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}