/**
 * Bigcommerce admin design dynamic form css
 *
 * @since 1.2
 */
 .bas_search_box_size {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.bas_search_box_size:hover {
  opacity: 1;
}

.bas_search_box_size::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.bas_search_box_size::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.chip {
	  display: inline-block;
	  padding: 0 25px;
	  height: 50px;
	  font-size: 16px;
	  line-height: 50px;
	  border-radius: 25px;
	  background-color: #000000;
	  float: right;
	}

	.chip img {
	  float: left;
	  margin: 0 10px 0 -25px;
	  height: 50px;
	  width: 50px;
	  border-radius: 50%;
	}
	.chip span {
	color: #ffffff;
	}