.btn {
  padding: 8px 16px;
  text-transform: uppercase;
  border: 0;
  line-height: 20px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  margin: 8px;
  font-size: 14px;
  letter-spacing: 1.25px;
  cursor: pointer;
  display: inline-block;
}

.primary {
  background-color: #0096F6;
  color: #FFFFFF;
}

.yellow {
  background-color: #DEDE2D;
  color: #000000;
}

.secondary {
  background-color: #F2F2F2;
  color: #000000;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*generated with Input range slider CSS style generator (version 20210711)
https://toughengineer.github.io/demo/slider-styler*/
input[type=range].styled-slider {
  height: 2em;
  -webkit-appearance: none;
  background-color: transparent;
}

/*progress support*/
input[type=range].styled-slider.slider-progress {
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--value) - var(--min)) / var(--range));
  --sx: calc(0.5 * 1em + var(--ratio) * (100% - 1em));
}

input[type=range].styled-slider:focus {
  outline: none;
}

/*webkit*/
input[type=range].styled-slider::-webkit-slider-thumb {
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 0 2px black;
  margin-top: calc(0.3em * 0.5 - 1em * 0.5);
  -webkit-appearance: none;
}

input[type=range].styled-slider::-webkit-slider-runnable-track {
  height: 0.3em;
  border-radius: 0;
  background: #363636;
  border: none;
  box-shadow: none;
}
input[type=range].styled-slider::-webkit-slider-thumb:active {
  background: #6E6E6E;
}

input[type=range].styled-slider.slider-progress::-webkit-slider-runnable-track {
  background: linear-gradient(#FFFFFF,#FFFFFF) 0/var(--sx) 100% no-repeat, #363636;
}

/*mozilla*/
input[type=range].styled-slider::-moz-range-thumb {
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 0 2px black;
}

input[type=range].styled-slider::-moz-range-track {
  height: 0.3em;
  border-radius: 0;
  background: #363636;
  border: none;
  box-shadow: none;
}

input[type=range].styled-slider::-moz-range-thumb:active {
  background: #6E6E6E;
}

input[type=range].styled-slider.slider-progress::-moz-range-track {
  background: linear-gradient(#FFFFFF,#FFFFFF) 0/var(--sx) 100% no-repeat, #363636;
}

/*ms*/
input[type=range].styled-slider::-ms-fill-upper {
  background: transparent;
  border-color: transparent;
}

input[type=range].styled-slider::-ms-fill-lower {
  background: transparent;
  border-color: transparent;
}

input[type=range].styled-slider::-ms-thumb {
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 0 2px black;
  margin-top: 0;
  box-sizing: border-box;
}

input[type=range].styled-slider::-ms-track {
  height: 0.3em;
  border-radius: 0;
  background: #363636;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

input[type=range].styled-slider::-ms-thumb:active {
  background: #6E6E6E;
}

input[type=range].styled-slider.slider-progress::-ms-fill-lower {
  height: 0.3em;
  border-radius: 0px 0 0 0px;
  margin: -undefined 0 -undefined -undefined;
  background: #FFFFFF;
  border: none;
  border-right-width: 0;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #DEDE2D;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

  /* form starting stylings ------------------------------- */
.field-group {
  position: relative;
  padding-top: 1.75em;
  /* ANIMATIONS ================ */ }
.field-group .btn {
  margin-top: 0; }
.field-group:after {
  display: table;
  content: '';
  clear: both; }
.field-group input,
.field-group select {
  padding: 8px 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background-color: transparent;
  line-height: 1;
  height: 2em;
  /* FF 19+ */
  /* IE 10+ */
  /* active state */ }
.field-group input[type="file"],
.field-group select[type="file"] {
  border: 0; }
.field-group input:invalid,
.field-group select:invalid {
  box-shadow: none; }
.field-group input::-webkit-input-placeholder,
.field-group select::-webkit-input-placeholder {
  color: transparent;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }
.field-group input:-moz-placeholder,
.field-group select:-moz-placeholder {
  /* FF 4-18 */
  color: transparent;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }
.field-group input::-moz-placeholder,
.field-group select::-moz-placeholder {
  color: transparent;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }
.field-group input:-ms-input-placeholder,
.field-group select:-ms-input-placeholder {
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  color: transparent; }
.field-group input:focus ~ label,
.field-group input:valid ~ label,
.field-group input:disabled ~ label,
.field-group input.invalid ~ label,
.field-group select:focus ~ label,
.field-group select:valid ~ label,
.field-group select:disabled ~ label,
.field-group select.invalid ~ label {
  top: 1.4em;
  font-size: 0.75em; }
.field-group input:read-only ~ label,
.field-group select:read-only ~ label {
  top: 1.4em;
  font-size: 0.75em; }
.field-group input:-moz-read-only ~ label,
.field-group select:-moz-read-only ~ label {
  top: 1.4em;
  font-size: 0.75em; }
.field-group input:focus ~ label,
.field-group select:focus ~ label {
  color: #0096F6; }
.field-group input:hover:not(:disabled) ~ .bar:before,
.field-group input:hover:not(:disabled) ~ .bar:after,
.field-group select:hover:not(:disabled) ~ .bar:before,
.field-group select:hover:not(:disabled) ~ .bar:after {
  width: 50%;
  background: rgba(0, 0, 0, 0.44); }
.field-group input:focus ~ .bar:before,
.field-group input:focus ~ .bar:after,
.field-group select:focus ~ .bar:before,
.field-group select:focus ~ .bar:after {
  width: 50%;
  background: #0096F6 !important; }
.field-group input:focus, .field-group input:valid,
.field-group select:focus,
.field-group select:valid {
  outline: none;
  /* FF 4-18 */
  /* FF 19+ */
  /* IE 10+ */ }
.field-group input:focus::-webkit-input-placeholder, .field-group input:valid::-webkit-input-placeholder,
.field-group select:focus::-webkit-input-placeholder,
.field-group select:valid::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.54); }
.field-group input:focus:-moz-placeholder, .field-group input:valid:-moz-placeholder,
.field-group select:focus:-moz-placeholder,
.field-group select:valid:-moz-placeholder {
  color: rgba(0, 0, 0, 0.54); }
.field-group input:focus::-moz-placeholder, .field-group input:valid::-moz-placeholder,
.field-group select:focus::-moz-placeholder,
.field-group select:valid::-moz-placeholder {
  color: rgba(0, 0, 0, 0.54); }
.field-group input:focus:-ms-input-placeholder, .field-group input:valid:-ms-input-placeholder,
.field-group select:focus:-ms-input-placeholder,
.field-group select:valid:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54); }
.field-group label {
  color: rgba(0, 0, 0, 0.54);
  font-size: 1em;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 2.25em;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  line-height: 1; }
.field-group .bar {
  position: relative;
  display: block;
  width: 100%; }
.field-group .bar:before, .field-group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }
.field-group .bar:before {
  left: 50%; }
.field-group .bar:after {
  right: 50%; }
.field-group .bar:hover:before, .field-group .bar:hover:after {
  width: 50%;
  background: rgba(0, 0, 0, 0.44); }
.field-group.invalid .bar:before, .field-group.invalid .bar:after {
  width: 50%;
  background: #FF4664 !important; }
.field-group.invalid input ~ label {
  color: #FF4664 !important; }
.field-group.invalid .helper-text,
.field-group.invalid .error-text {
  color: #FF4664 !important; }

@-webkit-keyframes inputHighlighter {
  from {
    background: #0096F6; }
  to {
    width: 0;
    background: transparent; } }

@-moz-keyframes inputHighlighter {
  from {
    background: #0096F6; }
  to {
    width: 0;
    background: transparent; } }

@keyframes inputHighlighter {
  from {
    background: #0096F6; }
  to {
    width: 0;
    background: transparent; } }
.field-group.inline-icon .icon {
  position: absolute;
  right: 0;
  top: 2em;
  font-size: 1.1em;
  color: rgba(0, 0, 0, 0.54); }
.field-group.inline-icon input {
  padding-right: 24px; }
.field-group .helper-text {
  font-size: 0.75em;
  color: rgba(0, 0, 0, 0.54); }

.input-group {
  margin-right: -8px;
  margin-left: -8px; }
.input-group .field-group,
.input-group .icon-signifier,
.input-group .md-checkbox,
.input-group .md-radio {
  float: left;
  padding-left: 8px;
  padding-right: 8px; }
.input-group .field-group.select:after,
.input-group .icon-signifier.select:after,
.input-group .md-checkbox.select:after,
.input-group .md-radio.select:after {
  right: 16px !important; }
.input-group .field-group.select:last-child:after,
.input-group .icon-signifier.select:last-child:after,
.input-group .md-checkbox.select:last-child:after,
.input-group .md-radio.select:last-child:after {
  right: 0 !important; }
.input-group .field-group.inline-icon .icon,
.input-group .icon-signifier.inline-icon .icon,
.input-group .md-checkbox.inline-icon .icon,
.input-group .md-radio.inline-icon .icon {
  right: 16px; }
.input-group .field-group:last-child.inline-icon .icon,
.input-group .icon-signifier:last-child.inline-icon .icon,
.input-group .md-checkbox:last-child.inline-icon .icon,
.input-group .md-radio:last-child.inline-icon .icon {
  right: 0; }
.input-group .field-group label, .input-group .icon-signifier label {
  left: 8px; }
.input-group:after {
  display: table;
  content: '';
  clear: both; }

.icon-signifier {
  position: relative; }
.icon-signifier .icon {
  position: absolute;
  width: 1.154em;
  top: 1em; }
.icon-signifier .icon > i,
.icon-signifier .icon > span,
.icon-signifier .icon > img {
  display: inline-block;
  font-size: 1.3em; }
.icon-signifier .field-group {
  margin-left: 40px; }

.text-group {
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 10px;
  margin-top: 40px;
  padding-top: 25px;
  transition: box-shadow 0.2s linear; }
.text-group:hover {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.44); }
.text-group:focus-within {
  box-shadow: 0 0 0 2px #0096F6; }
.text-group textarea {
  overflow: auto;
  outline: none;
  resize: none;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  background: transparent;
  min-height: 100px;
  width: 100%; }
.text-group textarea:focus ~ label,
.text-group textarea:valid ~ label,
.text-group textarea:read-only ~ label {
  top: 5px;
  font-size: 12px; }
.text-group textarea:focus ~ label {
  color: #0096F6; }
.text-group label {
  color: rgba(0, 0, 0, 0.54);
  font-size: 16px;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }

/* Style Select Field */
.field-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
  border: none;
  padding: 4px 0;
  padding-right: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  height: auto;
  line-height: inherit; }
.field-group select:disabled ~ label {
  top: 1.4em;
  font-size: 0.75em; }
.field-group select:disabled {
  color: rgba(0, 0, 0, 0.54);
  cursor: not-allowed !important; }

.field-group.select {
  position: relative; }
.field-group.select:after {
  position: absolute;
  top: 2em;
  right: 0;
  /* Styling the down arrow */
  content: "";
  font-family: mobfish-core-iconset;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.54); }