.field{
   position: relative;
   height: 72px;
   padding: 16px 0 8px 0;
   width: 80%;
}

.field-label{
   position: relative;
   margin: 0;
   display: block;

   color: #424242;
   line-height: 14px;
   font-size: 16px;
   font-weight: 400;

   transform: translateY(24px);
   transition: transform 0.3s, color 0.3s;
   transform-origin: 0 50%;
}

.field-label.inverse {
  position: relative;
  margin: 0;
  display: block;
  color: #cacaca;
  line-height: 14px;
  font-size: 16px;
  font-weight: 400;
  transform: translateY(24px);
  transition: transform 0.3s, color 0.3s;
  transform-origin: 0 50%;
}

.field-top{
   position: relative;
   margin: 0;
   display: block;

   color:  dimgray;
   line-height: 16px;
   font-size: 16px;
   font-weight: 400;
   transition: transform 0.3s, color 0.3s;
   transform-origin: 0 50%;
}

.field-input {
  position: relative;
  display: block;
  width: 100%;
  height: 36px;
  padding: 8px 0;
  line-height: 16px;
  font-family: Quicksand,Helvetica;
  font-weight: 500;
  font-size: 16px;
  background: #75757514;
  border: none;
  box-shadow: none;
  shadow: none;
}

.field-input.inverse {
  position: relative;
  display: block;
  width: 100%;
  height: 36px;
  padding: 8px 0;
  line-height: 16px;
  font-family: Quicksand,Helvetica;
  font-weight: 500;
  font-size: 16px;
  background: #0000001a;
  border: none;
  box-shadow: none;
  shadow: none;
  color: #cacaca;
}

.form-control:focus{
    border-color: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.field::after, .field::before{
   content:'';
   height: 2px;
   width: 100%;
   position: absolute;
   bottom: 6px;
   left: 0;

   background-color: rgba(0,0,0,.1);
}

.field.inverse::after, .field.inverse::before {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 6px;
  left: 0;
  background-color: rgba(0,0,0,.1);
}

.field::after{
   background-color: #853400;
   transform: scaleX(0);
   transition: transform 0.3s;
}

.field.inverse::after{
   background-color: #cacaca;
   transform: scaleX(0);
   transition: transform 0.3s;
}

.has-label .field-label{
   transform: translateY(0) scale(0.75);
   
}

.is-focused .field-label{
   color: #622702;
   font-weight: 800;
}

.is-focused.inverse .field-label.inverse{
   color: #cacaca;
}

.field.is-focused::after{
   transform: scaleX(1);
}


@media all and (max-width: 678px) {  
  .field-input {
    height: 36px;
  }
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 47px;
  height: 20px;
  margin-top: -33px;
}

/* 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: 15px;
  width: 15px;
  left: 3px;
  bottom: 3px;
  background-color: #e6e6e6;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #cacaca;
}

input:checked + .slider {
  background-color: #5FB8FF;
}

input:checked + .slider.slider-pink {
  background-color: #dc2be2;
}

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

.label_switch {
  display: inline-block;
  cursor: pointer;
}

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%;
}
/*
** MATERIAL DESIGN CSS
**
*/