.b-button {
  cursor: pointer;
  color: var(--color_button-text);
  font-weight: 600;
  box-sizing: border-box;
  width: auto;
  border-radius: 99px;
  height: 52px;
  font-size: 16px;
  padding: 0 24px;
  position: relative;
}
.b-button .title {
  color: var(--color_text-primary);
}

.b-button_icon {
  margin-right: 8px;
  font-size: 18px !important;
}

.b-button_normal {
  border: 1px solid var(--color_button-border);
  letter-spacing: 1.42857px;
  background: rgba(0, 0, 0, 0);
}

.b-button_small {
  border: 1px solid var(--color_button-border);
  letter-spacing: 1.42857px;
  background: rgba(0, 0, 0, 0);
  height: 36px;
  font-size: 14px;
}

.b-button_small_inversed {
  border: none;
  height: 36px;
  font-size: 14px;
  background: var(--color_bg3_inversed);
  letter-spacing: 0;
}
.b-button_small_inversed .title {
  color: var(--color_text-primary_inversed);
}
.b-button_small_inversed .b-button_icon {
  color: var(--color_text-secondary_inversed);
}

.b-button_small_chip {
  border: none;
  height: 36px;
  font-size: 14px;
  background: var(--color_chip_button-background);
  letter-spacing: 0;
}
.b-button_small_chip .title {
  color: var(--color_text-primary);
}

.b-icon-button_small {
  height: 32px !important;
  width: 32px !important;
}

.b-button-loading {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.b-button-loading:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: var(--color_text-secondary) transparent var(--color_text-secondary) transparent;
  animation: b-button-loading 1.2s linear infinite;
}

@keyframes b-button-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root .light-theme {
  --color_bg1: #ffffff;
  --color_bg2: #F9F9F9;
  --color_bg3: #F1F1F1;
  --color_bg1_inversed: #212121;
  --color_bg2_inversed: #181818;
  --color_bg3_inversed: #0F0F0F;
  --color_scrollbar-thumb: #ddd;
  --color_scrollbar-thumb_hover: #ccc;
  --color_scrollbar-track: rgba(255, 255, 255, 0);
  --color_hover: rgba(255, 255, 255, 0);
  --color_main-background: #FAFAFA;
  --color_main-background_transparent: rgba(255, 255, 255, 0);
  --color_main-background_card: #fff;
  --color_profile-background_empty: #ddd;
  --color_header-background: #ffffff;
  --color_header-background_active: rgba(255, 255, 255, 0.72);
  --color_header-background_active_inversed: rgba(33, 33, 33, 0.72);
  --color_dialog-background: rgba(250, 250, 250, 0.8);
  --color_text-primary: rgba(0, 0, 0, 0.87);
  --color_text-primary_inversed: #eee;
  --color_text-secondary: rgba(0, 0, 0, 0.6);
  --color_text-secondary_inversed: hsla(0deg, 0%, 93.3%, 0.6);
  --color_text-disabled: rgba(0, 0, 0, 0.4);
  --color_text-disabled_inversed: hsla(0deg, 0%, 60%, 0.6);
  --color_icon: #3c4043;
  --color_icon-secondary: rgba(0, 0, 0, 0.6);
  --color_chip-background: rgba(0, 0, 0, 0.05);
  --color_chip-background_hover: rgba(0, 0, 0, 0.1);
  --color_chip-background_selected: #212121;
  --color_chip-text_selected: #eee;
  --color_chip-border_artist: rgba(211, 47, 47, 0.3);
  --color_chip-border_character: rgba(35, 155, 86, 0.7);
  --color_chip-border_copyright: rgba(131, 44, 92, 0.4);
  --color_chip_button-background: rgba(0, 0, 0, 0.1);
  --color_chip_button-background_hover: rgba(0, 0, 0, 0.2);
  --color_chip_button-background_active: rgba(0, 0, 0, 0.3);
  --color_chip_button-background_loading: rgb(200, 200, 200);
  --color_divider: rgba(0, 0, 0, 0.12);
  --color_button-background_active: rgba(60, 64, 67, 0.24);
  --color_button-background_hover: rgba(60, 64, 67, 0.08);
  --color_button-border: rgba(0, 0, 0, 0.15);
  --color_appbar_active: rgba(0, 0, 0, 0.08);
  --color_error: #ff5252;
  --color_success: #50C878;
}
:root .dark-theme {
  --color_bg1: #212121;
  --color_bg2: #181818;
  --color_bg3: #0F0F0F;
  --color_bg1_inversed: #ffffff;
  --color_bg2_inversed: #F9F9F9;
  --color_bg3_inversed: #F1F1F1;
  --color_scrollbar-thumb: #333;
  --color_scrollbar-thumb_hover: #555;
  --color_scrollbar-track: rgba(255, 255, 255, 0);
  --color_main-background: #121212;
  --color_main-background_transparent: rgba(18, 18, 18, 0);
  --color_main-background_card: #1e1e1e;
  --color_profile-background_empty: #333;
  --color_header-background: #212121;
  --color_header-background_active: rgba(33, 33, 33, 0.72);
  --color_header-background_active_inversed: rgba(255, 255, 255, 0.72);
  --color_dialog-background: rgba(40, 40, 40, 0.8);
  --color_text-primary: #eee;
  --color_text-primary_inversed: rgba(0, 0, 0, 0.87);
  --color_text-secondary: hsla(0deg, 0%, 93.3%, 0.6);
  --color_text-secondary_inversed: rgba(0, 0, 0, 0.6);
  --color_text-disabled: hsla(0deg, 0%, 60%, 0.6);
  --color_text-disabled_inversed: rgba(0, 0, 0, 0.4);
  --color_icon: hsla(0, 0%, 93.3%, .6);
  --color_icon-secondary: hsla(0, 0%, 93.3%, .6);
  --color_chip-background: hsla(0, 0%, 100%, 0.05);
  --color_chip-background_hover: hsla(0, 0%, 100%, 0.1);
  --color_chip-background_selected: #eee;
  --color_chip-text_selected: rgba(0, 0, 0, 0.87);
  --color_chip-border_artist: rgba(211, 47, 47, 0.4);
  --color_chip-border_character: rgba(178, 237, 197, 0.4);
  --color_chip-border_copyright: rgba(131, 44, 92, 0.6);
  --color_chip_button-background: rgba(255, 255, 255, 0.1);
  --color_chip_button-background_hover: rgba(255, 255, 255, 0.2);
  --color_chip_button-background_active: rgba(255, 255, 255, 0.3);
  --color_chip_button-background_loading: rgb(55, 55, 55);
  --color_divider: hsla(0, 0%, 100%, 0.12);
  --color_button-background_active: rgba(60, 64, 67, 0.54);
  --color_button-background_hover: rgba(60, 64, 67, 0.18);
  --color_button-border: hsla(0, 0%, 100%, .12);
  --color_appbar_active: rgba(255, 255, 255, 0.08);
  --color_error: #ff5252;
  --color_success: #00B140;
}

.b-text-primary {
  color: var(--color_text-primary);
}

.b-text-secondary {
  color: var(--color_text-secondary);
}

.b-bg1 {
  background: var(--color_bg1);
}

.b-bg2 {
  background: var(--color_bg2);
}

.b-bg3 {
  background: var(--color_bg3);
}

.m-4 {
  margin: 4px;
}

.m-8 {
  margin: 8px;
}

.m-12 {
  margin: 12px;
}

.m-16 {
  margin: 16px;
}

.p-4 {
  padding: 4px;
}

.p-8 {
  padding: 8px;
}

.p-12 {
  padding: 12px;
}

.p-16 {
  padding: 16px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-12 {
  margin-right: 12px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-16 {
  padding-top: 16px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-12 {
  padding-left: 12px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-12 {
  padding-right: 12px;
}

.pr-16 {
  padding-right: 16px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-16 {
  padding-bottom: 16px;
}

.b-chip {
  padding: 0 12px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid var(--color_divider);
  box-sizing: border-box;
  height: 32px;
  background: var(--color_chip-background);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  color: var(--color_text-primary);
  border-radius: 99px;
  transition: ease-out 0.2s;
}
.b-chip .close {
  margin-left: 6px;
  font-size: 18px;
  color: var(--color_icon-secondary);
}
.b-chip .icon {
  font-size: 20px;
  transition: opacity 0.3s ease-in-out;
}
.b-chip .text {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease-in-out;
}
.b-chip:hover {
  background: var(--color_chip-background_hover);
}

.b-chip.disabled {
  background: transparent !important;
  color: var(--color_text-secondary) !important;
}
.b-chip.disabled .icon {
  color: var(--color_text-secondary) !important;
}

.b-chip.loading .icon {
  opacity: 0;
}
.b-chip.loading .text {
  opacity: 0;
}

.b-chip.selected {
  color: var(--color_chip-text_selected);
  background: var(--color_chip-background_selected);
}
.b-chip.selected .icon {
  color: var(--color_chip-text_selected);
}
.b-chip.selected .close {
  color: var(--color_chip-text_selected);
}
.b-chip.selected:hover {
  color: var(--color_chip-text_selected);
  background: var(--color_chip-background_selected);
}

.b-chip-color_artist {
  border: 2px solid var(--color_chip-border_artist);
}

.b-chip-color_character {
  border: 2px solid var(--color_chip-border_character);
}

.b-chip-color_copyright {
  border: 2px solid var(--color_chip-border_copyright);
}

.b-form_group {
  position: relative;
  padding: 16px 0;
  height: 36px;
  width: 100%;
}
.b-form_group .validation-message {
  margin-top: 4px;
  font-size: 12px;
  color: var(--color_error);
}

.b-form_group_area {
  height: initial;
}

.b-form_field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #767676;
  outline: 0;
  font-size: 16px;
  color: var(--color_text-primary);
  padding: 6px 0;
  height: 20px;
  background: transparent;
  transition: border 0.2s;
}
.b-form_field::placeholder {
  color: transparent;
}
.b-form_field:placeholder-shown ~ .b-form_label {
  font-size: 16px;
  cursor: text;
  top: 22px;
}

.b-form_field_icon {
  position: absolute;
  right: 0;
  top: 10px;
}

.b-form_label {
  position: absolute;
  top: 4px;
  display: block;
  transition: 0.2s cubic-bezier(0.25, 0.8, 0.5, 1);
  font-size: 12px;
  color: var(--color_text-secondary);
}

.b-form_field:focus {
  border-bottom: 1px solid var(--color_text-primary);
}
.b-form_field:focus ~ .b-form_label {
  position: absolute;
  top: 4px;
  display: block;
  font-size: 12px;
  color: var(--color_text-secondary);
}

.b-form_field[class*=invalid] {
  border-bottom: 1px solid var(--color_error) !important;
}
.b-form_field[class*=invalid] ~ .b-form_label {
  color: var(--color_error) !important;
}
.b-form_field[class*=invalid] ~ .b-form_field_focus-border {
  background-color: var(--color_error) !important;
}

.b-form_field:hover {
  border-bottom: 1px solid var(--color_text-primary);
}
.b-form_field:hover ~ .b-form_label {
  color: var(--color_text-primary);
}

/* reset input */
.b-form_field:required, .b-form_field:invalid {
  box-shadow: none;
}

.b-form_field ~ .b-form_field_focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  top: 48px;
  height: 2px;
  background-color: var(--color_text-primary);
  transition: 0.4s;
}

.b-form_field:focus ~ .b-form_field_focus-border {
  width: 100%;
  transition: 0.3s;
  left: 0;
  top: 48px;
}

.b-input-upload {
  transition: ease-out 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0);
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  color: var(--color_text-secondary);
  background-color: var(--color_bg2);
  background-clip: padding-box;
  border: 1px solid var(--color_divider);
  border-radius: 8px;
}
.b-input-upload:hover {
  background: var(--color_button-background_hover);
}
.b-input-upload:active {
  background: var(--color_button-background_active);
}
.b-input-upload:disabled,
.b-input-upload [disabled] {
  background: rgba(0, 0, 0, 0);
  cursor: not-allowed;
}

.b-input-upload::file-selector-button {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 0 12px;
  margin-right: 12px;
  font-size: 14px;
  color: var(--color_text-primary);
  background: transparent;
}

.b-hover {
  transition: ease-out 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0);
}
.b-hover:hover {
  background: var(--color_button-background_hover);
}
.b-hover:active {
  background: var(--color_button-background_active);
}
.b-hover:disabled,
.b-hover [disabled] {
  background: rgba(0, 0, 0, 0);
  cursor: not-allowed;
}

.b-hover_foreground {
  cursor: pointer;
  position: relative;
}
.b-hover_foreground:hover:before {
  background: var(--color_button-background_hover);
}
.b-hover_foreground:hover:active {
  background: var(--color_button-background_active);
}
.b-hover_foreground:before {
  position: absolute;
  transition: ease-out 0.2s;
  background: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.b-hover-chip-button {
  -webkit-tap-highlight-color: transparent;
  background: var(--color_chip_button-background);
}
.b-hover-chip-button:hover {
  background: var(--color_chip_button-background_hover);
}
.b-hover-chip-button:active {
  background: var(--color_chip_button-background_active);
}

.b-hover_simple {
  cursor: pointer;
}
.b-hover_simple:hover {
  background: var(--color_chip-background);
}
.b-hover_simple:active {
  background: var(--color_chip-background_hover);
}

.app-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-top: 56px;
}

.app-main.large {
  padding-top: 64px;
}

.app-header {
  z-index: 10;
  position: fixed;
  transition: ease-out 0.2s;
  background: var(--color_header-background);
  height: 56px;
  width: 100%;
}

.app-header_onscroll {
  backdrop-filter: saturate(1.8) blur(20px);
  background: var(--color_header-background_active) !important;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.app-header.large {
  height: 64px;
  display: flex;
  align-items: center;
}

.center-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.horizontal-center {
  display: flex;
  justify-content: center;
}

.vertical-center {
  display: flex;
  align-items: center;
}

.full-size {
  width: 100%;
  height: 100%;
}

.full-width {
  width: 100%;
}

.border-box {
  box-sizing: border-box;
}

.full-height {
  height: 100%;
}

.flow-root {
  display: flow-root;
}

.left {
  float: left;
}

.right {
  float: right;
}

.flex {
  display: flex;
}

.flex-align-center {
  align-items: center;
}

.flex-column {
  flex-direction: column !important;
}

.flex-auto {
  flex: 0 0 auto;
}

.flex-grow {
  flex: 1 1 auto;
}

.material-icons {
  font-family: "Material Icons";
  color: var(--color_icon);
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

.text-danger {
  color: var(--color_error) !important;
}

.b-text-primary {
  color: var(--color_text-primary);
}

.b-text-secondary {
  color: var(--color_text-secondary);
}

.b-text-error {
  color: var(--color_error);
}

.b-text-shrink {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.b-dialog-content {
  margin: 8px 12px;
  max-height: min(600px, 70vh);
  overflow-x: hidden !important;
}

.b-dialog-header {
  margin: 8px 12px;
  font-size: 18px;
  color: var(--color_text-primary);
}

.b-dialog-subheader {
  margin: 8px 12px;
  color: var(--color_text-secondary);
  font-size: 14px;
}

.b-dialog-header.big {
  font-size: 18px;
}

.b-dialog-subheader.big {
  font-size: 16px;
}

.b-dialog-actions {
  padding: 8px 16px;
  height: 44px;
  display: flex;
  position: relative;
  flex-direction: row-reverse;
}

.b-dialog_show {
  position: fixed;
  z-index: 2000 !important;
}

.b-dialog-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.28);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.b-dialog_show ~ .b-dialog-overlay {
  opacity: 1;
  visibility: visible;
}

.app-dialog-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1000;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
  opacity: 0;
  visibility: hidden;
}

.app-dialog-overlay_focus {
  background: rgba(0, 0, 0, 0.78);
}

.show.app-dialog-overlay {
  animation: overlayShow 0.2s forwards;
}

.hide.app-dialog-overlay {
  animation: overlayHide 0.2s forwards;
}

.app-dialog {
  background: var(--color_dialog-background);
  width: 100%;
  position: fixed;
  border-radius: 8px;
  z-index: 1001;
  height: auto;
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--color_divider);
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
}

.app-dialog_background-blur {
  background: var(--color_dialog-background);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
}

.app-dialog_background-solid {
  background: var(--color_main-background_card);
}

@media all and (max-width: 600px) {
  .app-dialog_position-top {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translateY(0);
    animation-name: dialogShowMobileTop;
  }
  .hide.app-dialog_position-top {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translateY(0);
    animation: dialogHideMobileTop 0.2s forwards;
  }
  .app-dialog_position-center {
    padding-bottom: 12px;
    top: initial;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    animation-name: dialogShowMobileCenter;
  }
  .hide.app-dialog_position-center {
    padding-bottom: 12px;
    top: initial;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    animation: dialogHideMobileCenter 0.2s forwards;
  }
  .app-dialog {
    max-width: 1000px !important;
    border-radius: 0;
  }
}
@media all and (min-width: 601px) {
  .app-dialog_position-top {
    top: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    animation-name: dialogShowDesktopTop;
  }
  .hide.app-dialog_position-top {
    top: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    animation: dialogHideDesktopTop 0.2s forwards;
  }
  .app-dialog_position-center {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation-name: dialogShowDesktopCenter;
  }
  .hide.app-dialog_position-center {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation: dialogHideDesktopCenter 0.2s forwards;
  }
}
.app-dialog_size-default {
  max-width: 360px;
}

.app-dialog_size-semi_large {
  max-width: 480px;
}

.app-dialog_size-large {
  max-width: 560px;
}

.app-dialog_size-extra-large {
  max-width: 800px;
}

@keyframes dialogShowDesktopCenter {
  from {
    transform: translateX(-50%) translateY(-50%) scale(0.7);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes dialogHideDesktopCenter {
  from {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  to {
    transform: translateX(-50%) translateY(-50%) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes dialogShowMobileCenter {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes dialogHideMobileCenter {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
    visibility: hidden;
  }
}
@keyframes dialogShowDesktopTop {
  from {
    transform: translateX(-50%) translateY(0) scale(0.7);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes dialogHideDesktopTop {
  from {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateX(-50%) translateY(0) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes dialogShowMobileTop {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes dialogHideMobileTop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
    visibility: hidden;
  }
}
@keyframes overlayShow {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes overlayHide {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.scrollbar {
  overflow-x: auto;
}

.scrollbarH {
  overflow-x: auto;
  padding-bottom: 4px;
}
.scrollbarH::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.scrollbarH::-webkit-scrollbar-track {
  background: var(--color_scrollbar-track);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.scrollbarH::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--color_scrollbar-thumb);
}
.scrollbarH::-webkit-scrollbar-thumb:hover {
  background-color: var(--color_scrollbar-thumb_hover);
}

@media screen and (min-width: 768px) {
  .scrollbar {
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .scrollbar::-webkit-scrollbar-track {
    background: var(--color_scrollbar-track);
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  .scrollbar::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--color_scrollbar-thumb);
  }
  .scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: var(--color_scrollbar-thumb_hover);
  }
}
.b-anim-appearance {
  -webkit-animation: appearance-fadein 0.2s;
  -moz-animation: appearance-fadein 0.2s;
  -o-animation: appearance-fadein 0.2s;
  animation: appearance-fadein 0.2s;
}

@keyframes appearance-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes appearance-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes appearance-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes appearance-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes appearance-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.b-link {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.b-tabs {
  position: relative;
  display: flex;
  height: 50px;
}

.b-tabs-item {
  border: 0;
  padding: 0;
  flex: 1 1 auto;
  transition: ease-out 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0);
  color: var(--color_text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.b-tabs-item:hover {
  background: var(--color_button-background_hover);
}
.b-tabs-item:active {
  background: var(--color_button-background_active);
}
.b-tabs-item:disabled,
.b-tabs-item [disabled] {
  background: rgba(0, 0, 0, 0);
  cursor: not-allowed;
}
.b-tabs-item:before {
  content: "";
  width: 56px;
  height: 2px;
  background: var(--color_text-primary);
  position: absolute;
  bottom: 0;
  transition: ease-out 0.2s;
  opacity: 0;
}

.b-tabs-item_active {
  color: var(--color_text-primary) !important;
}
.b-tabs-item_active:before {
  opacity: 1;
}

.b-box-details_top-left {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--color_header-background_active);
  border-radius: 8px;
  padding: 6px;
  left: 8px;
  top: 8px;
}
.b-box-details_top-left .icon {
  font-size: 16px;
}
.b-box-details_top-left .icon:not(:first-child) {
  margin-left: 8px;
}
.b-box-details_top-left .text {
  font-size: 12px;
  margin-left: 4px;
}

.b-box-details_top-right {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--color_header-background_active);
  border-radius: 8px;
  padding: 6px;
  right: 8px;
  top: 8px;
}
.b-box-details_top-right .icon {
  font-size: 16px;
}
.b-box-details_top-right .icon:not(:first-child) {
  margin-left: 8px;
}
.b-box-details_top-right .text {
  font-size: 12px;
  margin-left: 4px;
}

.b-box-details_bottom-left {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--color_header-background_active);
  border-radius: 8px;
  padding: 6px;
  left: 8px;
  bottom: 8px;
}
.b-box-details_bottom-left .icon {
  font-size: 16px;
}
.b-box-details_bottom-left .icon:not(:first-child) {
  margin-left: 8px;
}
.b-box-details_bottom-left .text {
  font-size: 12px;
  margin-left: 4px;
}

.b-box-details_bottom-right {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--color_header-background_active);
  border-radius: 8px;
  padding: 6px;
  right: 8px;
  bottom: 8px;
}
.b-box-details_bottom-right .icon {
  font-size: 16px;
}
.b-box-details_bottom-right .icon:not(:first-child) {
  margin-left: 8px;
}
.b-box-details_bottom-right .text {
  font-size: 12px;
  margin-left: 4px;
}

.desktop-show {
  display: none;
}

.desktop-hide {
  display: flex;
}

.mobile-show {
  display: none;
}

.mobile-hide {
  display: flex;
}

@media screen and (max-width: 600px) {
  .mobile-show {
    display: flex;
  }
  .mobile-hide {
    display: none;
  }
}
@media screen and (min-width: 1301px) {
  .desktop-show {
    display: flex;
  }
  .desktop-hide {
    display: none;
  }
}
.appbar_desktop_show_as_modal {
  top: 0;
  transform: translate3d(0, 0, 0) !important;
}

.appbar_desktop {
  position: fixed;
  width: 240px;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  background: var(--color_bg1);
  height: 100%;
  z-index: 11;
  margin-top: -1px;
  transform: translate3d(-240px, 0, 0);
}
.appbar_desktop .header {
  width: 240px;
  height: 56px;
  padding: 0 12px;
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  align-items: center;
}
.appbar_desktop .header .icon {
  margin-right: 24px;
  color: var(--color_text-secondary);
}
.appbar_desktop .header .title {
  font-size: 20px;
  line-height: 48px;
  color: var(--color_text-primary);
}
.appbar_desktop .item {
  position: relative;
  width: 240px;
  height: 48px;
  padding: 0 24px;
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  align-items: center;
}
.appbar_desktop .item:before {
  content: "";
  width: 2px;
  height: 20px;
  background: var(--color_text-secondary);
  position: absolute;
  right: 1px;
  transition: ease-out 0.2s;
  opacity: 0;
  z-index: 2;
}
.appbar_desktop .item .icon-container {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 24px;
}
.appbar_desktop .item .icon-container .icon {
  color: var(--color_text-secondary);
}
.appbar_desktop .item .title {
  font-size: 14px;
  line-height: 48px;
  color: var(--color_text-secondary);
}
.appbar_desktop .item_active {
  background: var(--color_chip-background_hover);
}
.appbar_desktop .item_active:before {
  opacity: 1;
}
.appbar_desktop .item_active .title {
  font-weight: 500;
  color: var(--color_text-primary);
}
.appbar_desktop .item_active .icon-container .icon {
  color: var(--color_text-primary);
}

.appbar_tablet {
  width: 72px;
  position: fixed;
  display: none;
  flex-direction: column;
  background: var(--color_bg1);
  height: 100%;
  z-index: 1;
  top: 56px;
}
.appbar_tablet .item {
  padding: 16px 0 14px;
  outline: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}
.appbar_tablet .item:before {
  content: "";
  width: 2px;
  height: 32px;
  background: var(--color_text-secondary);
  position: absolute;
  right: 1px;
  transition: ease-out 0.2s;
  opacity: 0;
  z-index: 2;
}
.appbar_tablet .item .icon-container {
  padding-bottom: 6px;
  position: relative;
  display: flex;
}
.appbar_tablet .item .icon-container .icon {
  color: var(--color_text-secondary);
}
.appbar_tablet .item .title {
  font-size: 10px;
  line-height: 14px;
  color: var(--color_text-secondary);
}
.appbar_tablet .item-active {
  background: var(--color_chip-background_hover);
}
.appbar_tablet .item-active:before {
  opacity: 1;
}
.appbar_tablet .item-active .icon-container .icon {
  color: var(--color_text-primary);
}
.appbar_tablet .item-active .title {
  color: var(--color_text-primary);
}

.appbar_mobile {
  position: fixed;
  background: var(--color_bg1);
  display: none;
  flex-direction: row;
  height: 48px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}
.appbar_mobile .item {
  flex: 1 1 0;
  outline: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  width: auto;
  padding: 0;
}
.appbar_mobile .item:before {
  content: "";
  background: var(--color_text-secondary);
  position: absolute;
  transition: ease-out 0.2s;
  opacity: 0;
  z-index: 2;
  width: 32px;
  height: 2px;
  top: 0;
  right: auto;
}
.appbar_mobile .item .icon-container {
  padding-bottom: 0;
  position: relative;
}
.appbar_mobile .item .icon-container .icon {
  color: var(--color_text-secondary);
}
.appbar_mobile .item .title {
  font-size: 10px;
  line-height: 14px;
  color: var(--color_text-secondary);
}
.appbar_mobile .item-active {
  background: var(--color_chip-background_hover);
}
.appbar_mobile .item-active:before {
  opacity: 1;
}
.appbar_mobile .item-active .icon-container .icon {
  color: var(--color_text-primary);
}
.appbar_mobile .item-active .title {
  color: var(--color_text-primary);
}

@media screen and (max-width: 600px) {
  .content-fixed {
    left: 0;
  }
  .appbar_mobile {
    display: flex;
  }
  .appbar-content {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1300px) {
  .content-fixed {
    left: 72px;
  }
  .appbar-content {
    padding-left: 72px;
  }
  .appbar_tablet {
    display: flex;
  }
}
@media screen and (min-width: 1301px) {
  .content-fixed {
    left: 240px;
  }
  .appbar-content {
    padding-left: 240px;
  }
  .appbar_desktop {
    transform: translate3d(0, 0, 0) !important;
  }
}
.appbar_minimal_menu.appbar_desktop {
  transform: translate3d(-240px, 0, 0) !important;
}

.appbar_minimal_menu.appbar_tablet {
  display: flex;
}

.appbar_minimal_menu ~ .appbar-content {
  padding-left: 72px;
}
.appbar_minimal_menu ~ .appbar-content .content-fixed {
  left: 72px;
}

.b-radio-group {
  display: flex;
  flex: 0 0 auto;
  height: 32px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid var(--color_divider);
  background: var(--color_chip-background);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border-radius: 99px;
}

.b-radio-item {
  color: var(--color_text-primary);
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  cursor: pointer;
  border: none;
  font-size: 14px;
}
.b-radio-item:before {
  content: "";
  background: var(--color_text-secondary);
  position: absolute;
  transition: ease-out 0.2s;
  z-index: 2;
  width: 1px;
  height: 16px;
  right: -0.5px;
}

.b-radio-item.width-free {
  flex: 1 0 auto;
}

.b-radio-item.width-fixed {
  flex: 1 1 0;
}

.b-radio-item.selected {
  background: var(--color_chip-background_selected);
  color: var(--color_chip-text_selected);
}

.b-radio-item:last-child:before {
  display: none;
}

.b-loader_container {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.b-loader_container.rounded {
  border-radius: 999px;
}

.b-loader {
  opacity: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--color_text-primary);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: fadeIn 0.3s forwards, rotation 1s linear infinite;
}

.b-loader.inversed {
  border: 2px solid var(--color_text-primary_inversed);
  border-bottom-color: transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.b-card {
  background: var(--color_main-background_card);
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--color_divider);
}
.b-card .b-card_title {
  font-size: 20px;
  flex: 0 0 auto;
  color: var(--color_text-primary);
}
.b-card .b-card_row {
  height: 48px;
  display: flex;
  padding: 0 12px;
  align-items: center;
  border-bottom: 1px solid var(--color_divider);
  text-decoration: none;
}
.b-card .b-card_row-large {
  height: 56px !important;
  font-weight: 500;
}
.b-card .b-card_row:last-child {
  border-bottom: none;
}
.b-card .b-card_row-title {
  font-size: 14px;
  flex: 0 0 auto;
  color: var(--color_text-primary);
  margin-right: 8px;
}
.b-card .b-card_row-value {
  flex: 1 1 auto;
  text-align: end;
  color: var(--color_text-secondary);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.b-card .b-card_row-arrow {
  flex: 0 0 auto;
  display: flex;
  margin-left: 12px;
  color: var(--color_icon-secondary);
}

.b-modal-content {
  padding: 8px 0;
}
.b-modal-content .b-modal-row {
  padding: 0 12px;
  font-weight: 500;
  height: 48px;
  display: flex;
  align-items: center;
  border: none;
  width: 100%;
}
.b-modal-content .b-modal-row .text {
  font-size: 14px;
  color: var(--color_text-primary);
}
.b-modal-content .b-modal-row .icon + .text {
  margin-left: 12px;
}

.app-page-content {
  margin: 12px;
}

.app-page-h1 {
  margin: 0 8px 8px 8px;
  font-size: 18px;
  font-weight: 500;
}

.app-page-nav-button {
  padding: 0 12px;
}
.app-page-nav-button .title {
  white-space: nowrap;
  font-weight: 500;
}

.app-img-w {
  width: 100%;
  height: auto;
}

.app-img-h {
  height: 100%;
  width: auto;
}

.page-header {
  padding: 12px;
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--color_text-primary);
}

html, body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin: 0;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  --color_premium1: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  --color_artist: linear-gradient(to right, #8B0000, #FF6347);
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
}
body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-track {
  background: #fafafa;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #777;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}

.btn-chip-follow {
  width: 120px;
  justify-content: center;
}
.btn-chip-follow .title {
  font-size: 16px;
}

.br-8 {
  border-radius: 8px;
}

.br-999 {
  border-radius: 999px;
}

.divider {
  background: var(--color_divider);
  width: 100%;
  height: 1px;
}

.circle {
  border-radius: 999px;
}

.bold {
  font-weight: bold;
}

.blazor-error {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  height: 56px;
  background: var(--color_header-background);
}
.container-600 {
  max-width: 600px;
  width: 100%;
}

.w-120 {
  width: 120px;
}
