.centering {
  width: 300px;
  height: auto;
  margin: 100px auto;
}

.custom-select {
  width: 100%;
  position: relative;
}

.custom-select select {
  display: none;
}

.selected-item {
  background: #fff;
  padding: 16px 20px;
  color: #000;
  cursor: pointer;
  z-index: 99;
}

.selected-item:after {
  content: "";
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.5s;
  width: 14px;
  height: 9px;
  background: url(../img/ico-select.svg) center no-repeat #fff;
}

.item {
  cursor: pointer;
  padding: 5px;
}

.all-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  padding: 15px 0;
}

.trier .all-items {
  min-width: 150px;
  left: inherit;
  right: 0;
}

.all-items-hide {
  display: none;
}

.sdf {
  border: 1px solid red;
}

/*# sourceMappingURL=jquery.custom-select.css.map */