.sq_input {
    display: inline;
}

.sq_input label {
    color:#3f3f3f;
    /*! color:#674172; */
}

.sq_input input{
    padding:.5mm 1mm;
    border:.5px solid rgba(221,225,230,.75);
    background-color:rgba(221,225,230,.75);    
}

.sq_input input::placeholder{
    /*color:#AF6BC2;*/
}

.sq-rounded.sq_input input,
.sq-rounded .sq_input input {
    border-radius:4px;
}
    /*.sq_input > * {
        display: table-cell;
        height: 100%;
        resize: none;
        margin:0;
    }*/

/*input[type="range"]*/
.sq_input[type='range'] {
    
}
.sq_input[type='range'] input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  /*width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
  border:transparent;
}

.sq_input[type='range'] input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.sq_input[type='range'] input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

.sq_input[type='range'] input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}



/*THUMB Special styling for WebKit/Blink */
.sq_input[type='range'] input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-shadow: none;
  border:1px solid rgb(100, 100, 100);
  height: 12px;
  width: 15px;
  border-radius: 4px;
  background: #F2F1EF;
  cursor: pointer;
  margin-top: -4px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
}

/* All the same stuff for Firefox */
.sq_input[type='range'] input[type=range]::-moz-range-thumb {
  box-shadow: none;
  border:1px solid rgb(100, 100, 100);
  height: 10px;
  width: 14px;
  border-radius: 5px;
  background: #F2F1EF;
  cursor: pointer;
}

/* All the same stuff for IE */
.sq_input[type='range'] input[type=range]::-ms-thumb {
  box-shadow: none;
  border:1px solid rgb(100, 100, 100);
  height: 7px;
  width: 10px;
  border-radius: 4px;
  background: #F2F1EF;
  cursor: pointer;
}

/*track*/
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgb(100, 100, 100);
  border-radius: 0px;
  border:none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgb(100, 100, 100);
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgb(100, 100, 100);
  border-radius: 0px;
  border:none;
}

/*IE CSS TRACK*/
/*input[type=range]::-ms-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgb(100, 100, 100);
  border-radius: 0px;
  border:none;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}*/



/*calendar*/
.sq_input .sq_calendar {
    position:absolute;
    margin:1mm;
}

/*sq-light*/
* .sq-light .sq_input input,
.sq-light.sq_input input{
    background-color:#EFF3F5;
    color:#335e7b;
    font-size:11px;
}

..sq-light .sq_input input::placeholder,
.sq-light.sq_input input::placeholder{
    color:#c5eff7;
}

.sq-light .sq_input label,
.sq-light.sq_input label{
    font-size:12px;
    color:#335e7b;
}
