.maidbooking {
  width: 100%;

  button {
    margin: 10px 0;
    padding: 10px 20px;
  }

  label {
    line-height: 1.8em;
    text-transform: capitalize;

    strong {
      width: 40px;
      text-align: center;
      display: inline-block;
      padding: 0 5px;
    }
  }

  input[type=text], #radio {
    margin: 10px 0;
  }

  .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    background: #007acc;
  }

  // basic support for rangetouch.js script (vertical not included!)
  .rangeslider,
  .rangeslider__fill {
    display: block;
    border-radius: 10px;
  }

  .rangeslider {
    background: rgba(52,63,74,.5);
    position: relative;
    margin: 10px 0;
    margin-bottom: 20px;
  }

  .rangeslider--horizontal {
    height: 10px;
    width: 100%;
  }

  .rangeslider--disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
  }

  .rangeslider__fill {
    background: #007acc;
    position: absolute;
  }

  .rangeslider--horizontal .rangeslider__fill {
    top: 0;
    height: 100%;
  }

  .rangeslider__handle {
    background: #007acc;
    border: 3px solid #fff;
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-shadow: 0 1px 2px rgba(52,63,74,.4);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;

    &:active {
      
    }
  }

  .rangeslider--horizontal .rangeslider__handle {
    top: -5px;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
  }

  // native input[type=range] styles
  input[type=range] {
    display: block;
    width: 100%;
    height: 20px;
    margin: 10px 0;
    padding: 0;

    vertical-align: middle;

    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    cursor: pointer;
    background: 0 0;

    /* fix for FF unable to apply focus style bug  */
    border: 1px solid white;

    &:focus {
      outline: #343f4a dotted thin;
      outline-offset: 1px
    }

    &::-webkit-slider-runnable-track {
      height: 10px;
      background: rgba(52,63,74,.5);
      border: 0;
      border-radius: 5px;
    }

    &::-moz-range-track {
      height: 10px;
      background: rgba(52,63,74,.5);
      border: 0;
      border-radius: 5px;
    }

    &::-webkit-slider-runnable-track {
      -webkit-user-select: none;
      user-select:none;
    }

    &::-moz-range-track {
      -moz-user-select: none;
      user-select: none; 
    }

    &::-webkit-slider-thumb {
      position: relative;
      height: 20px;
      width: 20px;
      background: #007acc;
      border: 3px solid #fff;
      border-radius: 100%;
      //transition: background .3s ease;
      box-shadow: 0 1px 2px rgba(52,63,74,.4);
      box-sizing: border-box;
    }

    &::-moz-range-thumb {
      position: relative;
      height: 20px;
      width: 20px;
      background: #007acc;
      border: 3px solid #fff;
      border-radius: 100%;
      //transition: background .3s ease;
      box-shadow: 0 1px 2px rgba(52,63,74,.4);
      box-sizing: border-box; 
    }

    &::-webkit-slider-thumb {
      -webkit-appearance: none;
      margin-top: -5px;
    }

    &::-moz-range-thumb {

    }

    &::-moz-focus-outer {
      border: 0;
    }

    &::-ms-track {
      height: 10px;
      background: 0 0;
      border: 0;
      color: transparent; 
    }

    &::-ms-fill-lower, &::-ms-fill-upper {
      height: 10px;
      background: rgba(52,63,74,.5);
      border: 0;
      border-radius: 5px;
      -ms-user-select: none;
      user-select: none;
    }

    &::-ms-thumb {
      position: relative;
      height: 20px;
      width: 20px;
      background: linear-gradient(to left top,#00BD9C,#0081C5);
      border: 3px solid #fff;
      border-radius: 100%;
      //transition: background .3s ease;
      box-shadow: 0 1px 2px rgba(52,63,74,.4);
      box-sizing: border-box;
      margin-top: 0;
    }

    &::-ms-tooltip {
      display: none
    }
  } // native input[type=range] styles ENDS!
}

.maid-confirmation {
  border: 1px solid #d1d1d1;
  background-color: #f7f7f7;
  padding: 10px;
}

.maid-error {
  border: 1px solid #f8b2b2;
  background-color: #fef0f0;
  color: #ea0001;
  padding: 10px;
}