/* autocomplete css */

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}
input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}
/* autocomplete css */

/* range css */

.range-slider { height: 40px;}
.range-slider input {
    pointer-events: none;
    position: absolute;
    /*overflow: hidden;*/
    left: 20;
    /*top: 15px;*/
    width: 410px !important;
    outline: none;
    /*height: 18px;*/
    margin: 0;
    padding: 0;
}

.range-slider input::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 1;
    outline: 0;
}

.range-slider input::-moz-range-thumb {
    pointer-events: all;
    position: relative;
    z-index: 10;
    -moz-appearance: none;
    width: 9px;
}

.range-slider input::-moz-range-track {
    position: relative;
    z-index: -1;
    background-color: rgba(0, 0, 0, 1);
    border: 0;
}
.range-slider input:last-of-type::-moz-range-track {
    -moz-appearance: none;
    background: none transparent;
    border: 0;
}
  .range-slider input[type=range]::-moz-focus-outer {
  border: 0;
}


.easy-autocomplete { float: left; width: 100% !important;}
.easy-autocomplete-container { top: 70px;}
.easy-autocomplete-container ul li { text-align: left;}

@media screen and (max-width:568px){
	.easy-autocomplete-container ul li { text-align: left; width: 100% !important}
	.easy-autocomplete-container { top: 40px;}
}
/* range css */
/* new additional css */
body input.list_tags_box {
    width: auto !important;
    float: right;
    height: auto !important;
}
.profile_picture_header{
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
}
.resetbtn {
    margin-right: 10px;
    border: 0px;
    cursor: pointer;
    font-size: 16px;
    color: #ED1D24;
    font-weight: 400;
    color: #ED1D24;
    background: transparent;
}
.resetbtn:hover, .resetbtn:focus, .resetbtn:active {
    margin-right: 10px;
    border: 0px;
    outline: 0px;
    cursor: pointer;
    font-size: 16px;
    color: #727272;
    font-weight: 400;
    background: transparent;
}