/*
  Shared icon-control component.
  Browse List and the three Comic Cut navigation controls use the exact same box model.
*/
html body #listBtn.ccc-shared-icon-control,
html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control {
  appearance:none !important;
  -webkit-appearance:none !important;
  box-sizing:border-box !important;
  flex:0 0 44px !important;
  width:44px !important;
  min-width:44px !important;
  max-width:44px !important;
  height:44px !important;
  min-height:44px !important;
  max-height:44px !important;
  margin:0 !important;
  padding:10px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid var(--border) !important;
  border-radius:10px !important;
  background:var(--panel) !important;
  background-image:none !important;
  color:var(--text) !important;
  opacity:1 !important;
  outline:none !important;
  box-shadow:none !important;
  transform:none !important;
  overflow:hidden !important;
  cursor:pointer !important;
  text-decoration:none !important;
  transition:background .15s ease,border-color .15s ease,color .15s ease !important;
}

html body #listBtn.ccc-shared-icon-control:hover:not(:disabled),
html body #listBtn.ccc-shared-icon-control:focus-visible,
html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control:hover:not(:disabled),
html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control:focus-visible,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control:hover:not(:disabled),
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control:focus-visible,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control:hover:not(:disabled),
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control:focus-visible {
  border-color:rgba(255,255,255,.6) !important;
  background:rgba(255,255,255,.08) !important;
  background-image:none !important;
  color:#fff !important;
  opacity:1 !important;
  outline:none !important;
  box-shadow:none !important;
  transform:none !important;
}

html body #listBtn.ccc-shared-icon-control:active,
html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control:active,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control:active,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control:active {
  transform:none !important;
}

html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control:disabled,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control:disabled,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control:disabled {
  opacity:1 !important;
  border:1px solid var(--border) !important;
  border-radius:10px !important;
  background:var(--panel) !important;
  background-image:none !important;
  color:var(--text) !important;
  box-shadow:none !important;
  cursor:default !important;
}

html body #listBtn.ccc-shared-icon-control::before,
html body #listBtn.ccc-shared-icon-control::after,
html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control::before,
html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control::after,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control::before,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control::after,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control::before,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control::after {
  content:none !important;
  display:none !important;
}

html body .ccc-shared-icon-control > .ccc-main-action-circle {
  display:contents !important;
}
html body .ccc-shared-icon-control > .ccc-main-action-label {
  display:none !important;
}

html body #listBtn.ccc-shared-icon-control .material-symbols-outlined,
html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control .material-symbols-outlined,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control .material-symbols-outlined,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control .material-symbols-outlined {
  display:block !important;
  flex:0 0 auto !important;
  width:auto !important;
  height:auto !important;
  min-width:0 !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:inherit !important;
  box-shadow:none !important;
  font-size:22px !important;
  line-height:1 !important;
  opacity:1 !important;
}

html body #comicCutNav #setChecklistBtn.ccc-shared-icon-control:disabled .material-symbols-outlined,
html body #comicCutNav #backToSetBtn.ccc-shared-icon-control:disabled .material-symbols-outlined,
html body #comicCutNav #nextComicCutBtn.ccc-shared-icon-control:disabled .material-symbols-outlined {
  opacity:.42 !important;
}
