.custom-select {
  border-radius: 4px;
  /*the container must be positioned relative:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/
}
.custom-select select {
  display: none;
}
@media (min-width: 768px) {
  .custom-select {
    position: relative;
  }
}
.custom-select .select-selected {
  box-sizing: border-box;
  border-radius: 4px !important;
  color: #313538 !important;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 175%;
  background: url(/themes/custom/twist_barrio/images/carat_down.svg) no-repeat 96%;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 10px 16px;
  cursor: pointer;
  user-select: none;
  border: 1px solid #dddddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 20px;
  width: auto;
}
@media (min-width: 768px) {
  .custom-select .select-selected {
    width: 158px;
  }
}
@media (min-width: 992px) {
  .custom-select .select-selected {
    width: 222px;
  }
}
@media (min-width: 1200px) {
  .custom-select .select-selected {
    width: 255px;
  }
}
.custom-select .select-selected.select-arrow-active {
  border: 1px solid #2AD39B;
  outline: 0;
}
.custom-select .select-selected.active {
  border-color: #ABABAB;
}
.custom-select .select-items {
  max-height: 300px;
  overflow: scroll;
  position: absolute;
  top: calc(100% + 6px);
  left: 15px;
  right: 0;
  z-index: 99;
  padding: 24px 32px;
  background: #FFFFFF;
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.custom-select .select-items div {
  color: #313538;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
}
@media (min-width: 768px) {
  .custom-select .select-items div {
    font-size: 16px;
  }
}
.custom-select .select-items div.same-as-selected {
  font-weight: 700;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.custom-select .select-items div:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .custom-select .select-items {
    top: auto;
  }
}
@media (min-width: 768px) {
  .custom-select .select-items {
    width: 100%;
    left: 0px;
  }
  .custom-select .select-items::-webkit-scrollbar {
    width: 5px;
  }
  .custom-select .select-items::-webkit-scrollbar-track {
    box-shadow: inset 0 0 20px transparent;
  }
  .custom-select .select-items::-webkit-scrollbar-thumb {
    background-color: #EEF2F6;
    height: 50px;
    border-radius: 5px;
  }
}
@media (min-width: 992px) {
  .custom-select .select-items {
    left: 0px;
  }
}
@media (max-width: 767px) {
  .custom-select .select-items {
    right: 15px;
  }
}
.custom-select .select-hide {
  display: none;
}
.custom-select:focus {
  border: 2px solid #2AD39B;
  outline: 0;
}