/* Copyright 2018-2020 Epic Systems Corporation */
.chipContainer {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  white-space: nowrap;
  max-width: none;
  margin-left: calc(100%);
  transition: margin-left 0.75s ease;
  width: calc(100% + 2.6rem);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 768px) {
  .chipContainer {
    width: 100vw;
  }
}
.chipContainer.easeCarousel {
  margin-left: -0.8rem;
}
.chipContainer.defaultMargin {
  transition: none;
  margin-left: -0.8rem;
}
.chipContainer::-webkit-scrollbar {
  display: none;
  width: 0px;
  background: transparent;
}
@media not all and (pointer: fine) {
  .chipContainer {
    display: inline-block;
  }
}

.chip {
  height: 2.4rem;
  top: 0.3rem;
  background-color: white;
  border-radius: 15vw;
  display: inline-block;
  z-index: 1;
  box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.4);
  margin: 0 0 0.5rem 0.7rem;
  cursor: pointer;
  outline: none;
}
.chip:first-child {
  margin-left: 0.8rem;
}
.chip:last-child {
  margin-right: 2rem;
}
.chip.childHasFocus {
  box-shadow: 0 0 0 1px #763e88 !important;
}
.chip.selected {
  background-color: #bfe1ff;
  background-color: #bfe1ff;
  box-shadow: 0px 0px 0px 1px #86479b;
}
.chip.hasInput {
  padding-right: 2.75rem;
}
.chip.hasInput input[type=radio] {
  width: 3rem;
}
.chip.hasInput input[type=button] {
  position: absolute;
  right: 0.75rem;
  top: 0.2rem;
  width: 2rem;
  height: 2rem;
  border: none;
  opacity: 1;
  background-image: url("../images/scheduling/geolocation/zip_search_button.svg");
  background-color: #86479b;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 1.3rem;
  transform: rotate(180deg);
}
.chip * {
  cursor: inherit;
}
.chip input[type=radio] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
}
.chip .ghostInput {
  margin-left: 3rem;
  text-decoration: none none none;
}
.chip .ghostInput input {
  cursor: text;
  height: 2rem;
  top: 0.2rem;
  width: 6.5rem;
  line-height: 1.1rem;
}
.chip .ghostInput label.zipInputLabel {
  bottom: 0rem;
  margin-bottom: -2.3rem;
  width: 5.5rem;
  overflow-x: hidden;
}
.chip .ghostInput.ghosted label.zipInputLabel {
  margin-bottom: -1.05rem;
  width: 5.5rem;
}
.chip .chipIcon {
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: 50% 30%;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  position: relative;
  left: 0.2rem;
  top: 0.2rem;
  float: left;
}
.chip label.chipLabel {
  position: relative;
  display: inline-block;
  left: 1rem;
  top: 0.5rem;
  padding-right: 2.5rem;
  height: 1.2rem;
  color: inherit;
  max-width: calc(100% - 3.5rem);
  overflow: hidden;
  pointer-events: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .chip .ghostInput input {
    padding-top: 0.5rem;
  }
}
