/* line 5, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10500;
}
/* line 7, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-overlay *, .icon-picker-overlay *::before, .icon-picker-overlay *::after {
  box-sizing: border-box;
}
/* line 23, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-overlay.is-open {
  display: flex;
}

/* line 26, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog {
  width: 880px;
  max-width: 92vw;
  height: 80vh;
  max-height: 88vh;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* line 42, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog-header {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
  background: #f7f7f7;
  flex: 0 0 auto;
}
/* line 56, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog-header strong {
  font-size: 1em;
}
/* line 58, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog-header .icon-picker-close {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  border: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 26px;
  line-height: 1;
  color: #888;
  padding: 0;
  cursor: pointer;
}
/* line 78, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog-header .icon-picker-close:hover {
  color: #222;
}

/* line 82, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog-body {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 0 14px 14px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

/* line 100, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog-body .icon-picker-search {
  box-sizing: border-box;
  width: 100%;
  height: 38px;
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0 0 14px;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.3;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 116, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-dialog-body .icon-picker-search:focus {
  border-color: #6a9fd8;
  outline: none;
  box-shadow: 0 0 0 2px rgba(106, 159, 216, 0.25);
}

/* line 119, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 8px;
}

/* line 128, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-item {
  width: 100%;
  height: 96px;
  margin: 0;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #e0e0e0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  color: #555;
  padding: 8px 6px;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
}
/* line 155, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-item:hover {
  background: #eef4ff;
  border-color: #6a9fd8;
  color: #222;
}
/* line 161, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-item i {
  font-size: 22px;
  line-height: 1;
}
/* line 166, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-item .icon-picker-item-label {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  word-break: break-word;
}

/* line 178, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-empty {
  padding: 24px 0;
  text-align: center;
  color: #888;
  width: 100%;
}

/* line 188, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  white-space: nowrap;
  background: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}
/* line 214, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-btn:hover {
  border-color: #6a9fd8;
  background: #f5f9ff;
}
/* line 216, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-btn i {
  font-size: 16px;
  min-width: 18px;
  text-align: center;
  color: #555;
}
/* line 225, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.icon-picker-btn .icon-picker-label {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto;
  white-space: nowrap !important;
  background: transparent !important;
  color: inherit;
}

/* line 240, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.feature-grid-icon-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* line 247, /home/kyle/dev/grow-social-push/app/assets/stylesheets/admin/icon_picker.scss */
.feature-grid-icon-controls .icon-clear {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none !important;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
