.cliniclist {
  --panel-height: 70vh;
  --header-height: 90px;
  position: fixed;
  z-index: 9;
  min-width: 328px;
  height: var(--panel-height);
  bottom: 0;
  transform: translateY(calc(100% - var(--header-height)));
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.cliniclist.expanded {
  transform: translateY(0);
}
.cliniclist_card {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #F47721;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: var(--panel-height);
}
.cliniclist_header {
  height: var(--header-height);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.cliniclist_header .header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cliniclist_header .header-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.cliniclist_header .header-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.cliniclist_header .header-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 2px 0 0 0;
}
.cliniclist_panel {
  background: #fff;
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding-bottom: 16px;
  height: stretch;
  /* Search */
  /* Tabs */
  /* List */
}
.cliniclist_panel .search-wrap {
  padding: 20px 16px 12px 16px;
}
.cliniclist_panel .search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f2;
  border-radius: 12px;
  padding: 10px 12px;
}
.cliniclist_panel .search-box svg {
  width: 16px;
  height: 16px;
  stroke: #999;
  flex-shrink: 0;
}
.cliniclist_panel .search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #333;
  width: 100%;
}
.cliniclist_panel .search-box input::placeholder {
  color: #a0a0a0;
}
.cliniclist_panel .tabs {
  display: flex;
  padding: 0 16px;
  border-bottom: 1px solid #eee;
}
.cliniclist_panel .tab {
  flex: 1;
  background: none;
  border: none;
  padding: 4px 0 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.cliniclist_panel .tab.active {
  color: #F46E15;
}
.cliniclist_panel .tab.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 2px;
  background: #F46E15;
  border-radius: 2px;
}
.cliniclist_panel .list {
  flex: 1;
  overflow-y: auto;
}
.cliniclist_panel .clinic-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: none;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.cliniclist_panel .clinic-row.disabled {
  cursor: not-allowed;
  position: relative;
}
.cliniclist_panel .clinic-row.disabled span {
  color: #bbb;
}
.cliniclist_panel .clinic-row.disabled::after {
  cursor: help;
  content: url("/utils/icons/help-icon.svg");
  position: relative;
  display: flex;
  align-items: center;
}
.cliniclist_panel .clinic-row.disabled:hover .tooltip, .cliniclist_panel .clinic-row.disabled:focus-visible .tooltip {
  display: block;
  position: absolute;
  padding: 8px;
  right: 8px;
  bottom: calc(100% - 8px);
  font-size: 12px;
  color: white;
  background-color: #1D2939;
  border-radius: 8px;
}
.cliniclist_panel .clinic-row.disabled:hover .tooltip::after, .cliniclist_panel .clinic-row.disabled:focus-visible .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 5px solid transparent;
  border-top-color: #1D2939;
}
.cliniclist_panel .clinic-row.disabled .tooltip {
  display: none;
}
.cliniclist_panel .clinic-row:hover {
  background: #fafafa;
}
.cliniclist_panel .clinic-row span {
  font-size: 14px;
  color: #333;
}
.cliniclist_panel .clinic-row svg {
  width: 16px;
  height: 16px;
  stroke: #ccc;
  flex-shrink: 0;
}
.cliniclist_panel .clinic-row.hidden {
  display: none;
}
.cliniclist_panel .empty-state {
  padding: 40px 16px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}
@media (min-width: 768px) {
  .cliniclist {
    min-width: 360px;
    right: 32px;
  }
}
@media (width > 1024px) {
  .cliniclist {
    right: 0;
    transform: unset;
    will-change: unset;
    position: relative;
    bottom: unset;
  }
  .cliniclist_header {
    cursor: default;
  }
}