@font-face {
  font-family: 'Jura';
  src: url("jura/Jura-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 1 999; }

@font-face {
  font-family: 'SourceCodePro';
  src: url("source-code-pro/SourceCodePro-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 1 999; }

html,
body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: 'Jura';
  background: radial-gradient(ellipse at 40% 20%, #5a5f64 0%, #23282d 100%);
  -webkit-tap-highlight-color: transparent; }

#start-white-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  animation: start-white-overlay-fade 0.4s ease forwards;
  pointer-events: none; }

@keyframes start-white-overlay-fade {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

#composer-container,
#composer-placeholder {
  height: 100%;
  width: 100%;
  overflow-x: hidden; }

#composer-placeholder {
  position: relative; }
  #composer-placeholder .logo {
    position: absolute;
    transition: transform 0.35s ease;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    height: 160px;
    width: 160px;
    background-image: url(splash.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center; }
  #composer-placeholder .logo::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -100px;
    margin-left: -100px;
    height: 200px;
    width: 200px;
    background: radial-gradient(circle at center, rgba(63, 131, 255, 0.1) 0%, rgba(63, 131, 255, 0) 70%); }

@media (max-height: 400px) {
  #composer-placeholder .logo {
    top: 25%; } }

#composer-placeholder.ready {
  cursor: pointer; }
  #composer-placeholder.ready .logo {
    transform: translate(-50%, -50%) scale(1); }

#composer-placeholder .begin {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: 72px;
  width: 100%;
  line-height: 1em;
  height: 1em;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  color: rgba(84, 177, 255, 0.75);
  pointer-events: none;
  letter-spacing: 1px;
  animation: app-begin-pulse 1s ease-in-out alternate infinite; }

@media (max-height: 400px) {
  #composer-placeholder .begin {
    top: 25%; } }

@media (max-height: 500px) {
  #composer-placeholder .begin {
    margin-top: 48px; } }

#composer-placeholder .info-text {
  pointer-events: none;
  font-size: 12px;
  color: rgba(84, 177, 255, 0.35);
  position: absolute;
  width: 800px;
  text-align: center;
  max-width: 90%;
  bottom: 10%;
  left: 50%;
  opacity: 0;
  transition: opacity 2.4s ease;
  transform: translateX(-50%); }

#composer-placeholder .adblock-message {
  font-weight: 700;
  color: white;
  padding: 12px;
  margin-bottom: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  animation: adblock-message-appear 0.5s cubic-bezier(0, 1, 1, 1); }

@keyframes adblock-message-appear {
  from {
    opacity: 0;
    transform: translateY(40px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

#composer-placeholder #progress-text {
  position: absolute;
  top: 50%;
  margin-top: 96px;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
  color: rgba(84, 177, 255, 0.65);
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px; }

#composer-placeholder.ready #progress-text {
  display: none; }

@media (max-height: 300px) {
  #progress-text {
    display: none; } }

#composer-placeholder.ready .begin {
  display: block; }

#composer-placeholder.ready .progress {
  opacity: 0; }

#composer-container.busy {
  cursor: wait;
  opacity: 0.8; }

#composer-container.busy > * {
  pointer-events: none; }

#composer-container {
  opacity: 0.02;
  transition: opacity 0.8s ease; }

.secondary-window #composer-container,
#composer-container.running {
  opacity: 1; }

@keyframes app-begin-pulse {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

#pre-loading-spinner {
  pointer-events: none;
  transition: transform 0.35s ease;
  position: fixed;
  width: 200px;
  height: 200px;
  left: calc(50% - 100px);
  top: calc(50% - 100px); }
  #pre-loading-spinner .spinner {
    margin: 75px auto;
    width: 50px;
    height: 50px;
    position: relative;
    text-align: center;
    animation: sk-rotate 1.5s infinite linear; }
  #pre-loading-spinner .dot1,
  #pre-loading-spinner .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #7de6ff;
    border-radius: 100%;
    box-shadow: rgba(63, 131, 255, 0.5) 0px 0px 36px;
    animation: sk-bounce 1.5s infinite linear; }
  #pre-loading-spinner .dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -0.75s; }

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg); } }

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale3d(0, 0, 0); }
  50% {
    transform: scale3d(1, 1, 1); } }

.ready #pre-loading-spinner {
  transform: scale3d(0, 0, 0); }

.composer {
  display: block;
  position: relative;
  color: #fff;
  overflow: hidden;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  font-size: 16px;
  user-select: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  cursor: default;
  animation: main-fade-in 0.4s ease;
  background: radial-gradient(ellipse at 40% 20%, #202122 0%, #0a0b0c 80%); }
  .composer .patcher-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%; }
  .composer .timeline-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%; }
  .composer .embed-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 999;
    background-color: rgba(25, 25, 25, 0.6);
    cursor: pointer; }
    .composer .embed-overlay .icon {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: 0; }
      .composer .embed-overlay .icon svg {
        width: 48px !important;
        height: 48px !important;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)); }
    .composer .embed-overlay .icon::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(205, 205, 205, 0.24);
      border-radius: 200px;
      animation: embed-overlay-icon-pulse 1.4s ease-in-out infinite alternate; }

@keyframes embed-overlay-icon-pulse {
  from {
    transform: scale(1.5); }
  to {
    transform: scale(1.8); } }
    .composer .embed-overlay .text {
      opacity: 0.45;
      position: absolute;
      left: 50%;
      bottom: 0;
      font-size: 10px;
      text-transform: uppercase;
      padding: 12px;
      transform: translate(-50%, 48px);
      text-align: center;
      color: #fff;
      transition: transform 0.25s ease; }
    .composer .embed-overlay .text:hover {
      text-decoration: underline; }
  .composer .embed-overlay.playing {
    background-color: rgba(25, 25, 25, 0.1); }
  .composer .embed-overlay:hover {
    opacity: 1; }
    .composer .embed-overlay:hover .text {
      transform: translate(-50%, 0px); }
  .composer .embed-overlay.playing:hover {
    opacity: 0.6; }
  .composer .body {
    top: 48px;
    left: 0;
    height: calc(100% - 48px);
    width: 100%;
    position: absolute;
    z-index: 11; }
  .composer .backlight {
    position: absolute;
    bottom: -60%;
    left: 50%;
    width: 140%;
    height: 120%;
    pointer-events: none;
    transform: translateX(-50%);
    opacity: 0.4; }
  .composer.embedded .body {
    top: 0;
    height: 100%; }

@keyframes main-fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.composer.busy {
  cursor: wait;
  pointer-events: none; }

.dialog-host textarea {
  box-sizing: border-box;
  margin: 24px auto;
  display: block;
  width: 100%;
  min-height: 200px;
  resize: vertical;
  font-size: 11px;
  line-height: 1.5em;
  padding: 12px;
  border: none;
  background: rgba(0, 0, 0, 0.06); }

.item {
  margin: 12px 0; }

.forms-container {
  color: #333;
  font-weight: 400; }
  .forms-container > :first-child {
    margin-top: 0; }
  .forms-container .first {
    margin-top: 0; }

a,
a:visited {
  color: #2196f3;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

iframe {
  border: none; }

.loading-spinner {
  animation: spin 1.4s linear infinite;
  background-color: rgba(15, 165, 255, 0.09);
  overflow: visible; }
  .loading-spinner svg {
    overflow: visible; }
  .loading-spinner .outer-path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: dash 1.4s ease-in-out infinite;
    stroke: #4bdaff; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(270deg); } }

@keyframes dash {
  0% {
    stroke-dashoffset: 187; }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg); }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg); } }

.file-browser {
  display: inline-block; }
  .file-browser .icon {
    display: block;
    float: left;
    font-size: 14px; }
  .file-browser .text {
    display: block;
    float: left; }
  .file-browser input[type="file"] {
    display: none; }

.file-browser::after {
  content: '';
  display: block;
  clear: both; }

.static-audio-spectrum {
  position: relative; }
  .static-audio-spectrum .loader {
    position: absolute;
    text-align: center;
    left: 0;
    width: 100%;
    top: 50%;
    font-size: 16px;
    line-height: 16px;
    height: 16px;
    margin-top: -8px;
    pointer-events: none;
    opacity: 0.5; }

.envelope-editor {
  position: relative; }
  .envelope-editor svg {
    display: block; }
  .envelope-editor svg, .envelope-editor .cps, .envelope-editor .cctrls, .envelope-editor .grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    margin: 0 auto; }
  .envelope-editor svg, .envelope-editor .cctrls, .envelope-editor .grid {
    pointer-events: none; }
  .envelope-editor .cp, .envelope-editor .cpd {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 4px;
    cursor: move; }
  .envelope-editor .cp {
    z-index: 99; }
  .envelope-editor .cpd {
    width: 2px;
    height: 2px; }
  .envelope-editor .cp::after {
    content: '';
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .envelope-editor .cp::before {
    content: '';
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    left: -16px;
    top: -16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0s ease;
    border-radius: 100%;
    background-color: inherit; }
  .envelope-editor .cp:hover::before,
  .envelope-editor .cp.focus::before {
    opacity: 0.14;
    transition-duration: 0.25s;
    animation: envelope-cp-pulse 2.2s ease infinite alternate; }

@keyframes envelope-cp-pulse {
  0% {
    transform: scale(0.85); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(0.95); } }
  .envelope-editor .props {
    position: relative;
    z-index: 3; }
  .envelope-editor .cctrl {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: ns-resize;
    pointer-events: all;
    opacity: 0.35;
    z-index: 99; }
  .envelope-editor .cctrl:hover {
    opacity: 1; }
  .envelope-editor .cctrl::after {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .envelope-editor .gl-h {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.06) 100%); }
  .envelope-editor .gl-h-w {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.12) 100%);
    color: rgba(255, 255, 255, 0.22);
    font-size: 9px;
    padding-left: 2px; }
  .envelope-editor .gl-v {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.06) 100%); }
  .envelope-editor .gl-v-w {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.12) 100%); }

.envelope-editor.curve-drag-mode,
.envelope-editor.curve-drag-mode * {
  cursor: ns-resize !important; }

.envelope-editor.curve-drag-mode {
  z-index: 99; }

.envelope-editor.curve-drag-mode::after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(100); }

.envelope-editor.disabled canvas, .envelope-editor.disabled .cps, .envelope-editor.disabled .cctrls {
  cursor: inherit; }

.envelope-editor.disabled .cp, .envelope-editor.disabled .cctrl {
  pointer-events: none; }

.draggable {
  touch-action: none; }

.row > .col,
.row > .row-wrapper > .col {
  float: left;
  box-sizing: border-box; }

.row.collapse > .col,
.row.collapse > .row-wrapper > .col {
  float: none;
  width: 100% !important;
  margin-bottom: 15px; }

.row.collapse > .col:last-of-type,
.row.collapse > .row-wrapper > .col:last-of-type {
  margin-bottom: 0; }

.row::after {
  content: '';
  display: block;
  clear: both; }

h1, h2, h3 {
  font-weight: 100; }

h2, h3, h4, h5, h6 {
  color: rgba(0, 0, 0, 0.5); }

h1:only-child, h2:only-child, h3:only-child, h4:only-child, h5:only-child, h6:only-child {
  margin: 0; }

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0; }

.fade-in-fast {
  animation: fade-in 0.3s ease; }

.fade-in-slow {
  animation: fade-in 1.5s ease-in-out;
  animation-delay: 0.54s;
  animation-fill-mode: backwards; }

.fade-in-200,
.fade-in-200-0,
.fade-in-200-200,
.fade-in-200-400,
.fade-in-200-600,
.fade-in-200-800,
.fade-in-200-1000 {
  animation: fade-in 0.2s ease; }

.fade-in-400,
.fade-in-400-0,
.fade-in-400-200,
.fade-in-400-400,
.fade-in-400-600,
.fade-in-400-800,
.fade-in-400-1000 {
  animation: fade-in 0.4s ease; }

.fade-in-600,
.fade-in-600-0,
.fade-in-600-200,
.fade-in-600-400,
.fade-in-600-600,
.fade-in-600-800,
.fade-in-600-1000 {
  animation: fade-in 0.4s ease; }

.fade-in-800,
.fade-in-800-0,
.fade-in-800-200,
.fade-in-800-400,
.fade-in-800-600,
.fade-in-800-800,
.fade-in-800-1000 {
  animation: fade-in 0.4s ease; }

.fade-in-1000,
.fade-in-1000-0,
.fade-in-1000-200,
.fade-in-1000-400,
.fade-in-1000-600,
.fade-in-1000-800,
.fade-in-1000-1000 {
  animation: fade-in 0.4s ease; }

.fade-in-200-200,
.fade-in-400-200,
.fade-in-600-200,
.fade-in-800-200,
.fade-in-1000-200 {
  animation-delay: 0.2s;
  animation-fill-mode: backwards; }

.fade-in-200-400,
.fade-in-400-400,
.fade-in-600-400,
.fade-in-800-400,
.fade-in-1000-400 {
  animation-delay: 0.4s;
  animation-fill-mode: backwards; }

.fade-in-200-600,
.fade-in-400-600,
.fade-in-600-600,
.fade-in-800-600,
.fade-in-1000-600 {
  animation-delay: 0.6s;
  animation-fill-mode: backwards; }

.fade-in-200-800,
.fade-in-400-800,
.fade-in-600-800,
.fade-in-800-800,
.fade-in-1000-800 {
  animation-delay: 0.8s;
  animation-fill-mode: backwards; }

.fade-in-200-1000,
.fade-in-400-1000,
.fade-in-600-1000,
.fade-in-800-1000,
.fade-in-1000-1000 {
  animation-delay: 1.0s;
  animation-fill-mode: backwards; }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.anim-slide-in-top {
  animation: slide-in-top 0.65s cubic-bezier(0, 1, 1, 1); }

@keyframes slide-in-top {
  from {
    opacity: 0;
    transform: translate3d(0, -40px, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

.pulse-grow-2000 {
  animation: pulse-grow 2s ease-out infinite; }

@keyframes pulse-grow {
  from {
    opacity: 1;
    transform: scale(0); }
  to {
    opacity: 0;
    transform: scale(1); } }

.spin-1000 {
  animation: spin 1s linear infinite; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.overlay-container {
  position: relative; }
  .overlay-container .button-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    align-content: center;
    align-items: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.25s ease; }
    .overlay-container .button-overlay > div {
      width: 100%;
      text-align: center;
      transition: opacity 0.5s ease, transform 0.5s ease; }
      .overlay-container .button-overlay > div > .pulser {
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        width: 64px;
        height: 64px;
        margin-left: -32px;
        margin-top: -32px;
        border-radius: 128px;
        opacity: 0.5;
        background-color: rgba(255, 255, 255, 0.6);
        animation: piano-roll-node-edit-overlay-pulse 3s ease infinite alternate; }

@keyframes piano-roll-node-edit-overlay-pulse {
  0% {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.35, 1.35, 1); }
  100% {
    transform: scale3d(1, 1, 1); } }
  .overlay-container .button-overlay.exploded > div,
  .overlay-container .button-overlay.explode:active > div {
    transform: scale(4);
    opacity: 0; }
  .overlay-container .file-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    min-height: 260px;
    transition: opacity 0.15s ease, border-color 0.25s ease;
    opacity: 0;
    pointer-events: none;
    border: 2px solid transparent; }
    .overlay-container .file-overlay .bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.125s ease; }
    .overlay-container .file-overlay .circle,
    .overlay-container .file-overlay .center {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: 0;
      pointer-events: none; }
      .overlay-container .file-overlay .circle svg,
      .overlay-container .file-overlay .center svg {
        overflow: visible; }
    .overlay-container .file-overlay .circle {
      transition: opacity 0.25s ease, transform 0.25s ease; }
    .overlay-container .file-overlay .spinner {
      animation: file-overlay-spinner-spin 1s linear infinite;
      width: 96px;
      height: 96px;
      border-radius: 96px;
      border: 2px solid transparent;
      pointer-events: none; }

@keyframes file-overlay-spinner-spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
    .overlay-container .file-overlay .text {
      position: absolute;
      left: 50%;
      top: 75%;
      transform: translate(-50%, -50%);
      overflow: hidden;
      font-size: 10px;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 80%;
      pointer-events: none;
      font-weight: 700;
      opacity: 0.8; }
    .overlay-container .file-overlay .hint {
      position: absolute;
      left: 10%;
      bottom: 10%;
      width: 80%;
      font-size: 16px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      pointer-events: none;
      text-align: center;
      color: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: opacity 0.35s ease;
      font-weight: 300; }
    .overlay-container .file-overlay .alt-btn {
      pointer-events: all; }
  .overlay-container .file-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    cursor: pointer; }
    .overlay-container .file-overlay.active .bg {
      pointer-events: all; }
  .overlay-container .file-overlay.active ~ * {
    opacity: 0 !important;
    pointer-events: none !important; }
  .overlay-container .file-overlay.drag {
    border: 2px dashed rgba(0, 0, 0, 0.14);
    pointer-events: all; }
    .overlay-container .file-overlay.drag .circle {
      opacity: 0;
      transform: translate(-50%, -50%) scale(5); }
  .overlay-container .file-overlay.open .circle {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5); }
  .overlay-container .file-overlay.loading {
    cursor: default;
    pointer-events: none; }
    .overlay-container .file-overlay.loading .bg {
      opacity: 0 !important; }
  .overlay-container .locked-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(250, 250, 250, 0.9);
    font-size: 13px;
    backdrop-filter: blur(3px); }
    .overlay-container .locked-overlay > div {
      position: absolute;
      width: 100%;
      left: 0;
      top: 50%;
      transform: translateY(-50%); }
    .overlay-container .locked-overlay .icon, .overlay-container .locked-overlay .text {
      text-align: center; }
    .overlay-container .locked-overlay .text {
      width: 80%;
      margin-left: 10%; }

.overlay-container:hover .button-overlay {
  opacity: 1; }

.overlay-container:hover .file-overlay .bg {
  opacity: 0.08; }

.overlay-container:hover .file-overlay .hint {
  opacity: 0.6; }

.context-menu-paper {
  animation: context-menu-paper-open 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: left top;
  background: linear-gradient(to bottom, rgba(80, 80, 80, 0.9), rgba(70, 70, 70, 0.9));
  backdrop-filter: blur(10px); }
  .context-menu-paper > div,
  .context-menu-paper > ul {
    animation: context-menu-paper-content-open 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: left top; }

@keyframes context-menu-paper-open {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }

@keyframes context-menu-paper-content-open {
  from {
    opacity: 0;
    transform: scaleY(0); }
  to {
    opacity: 1;
    transform: scaleY(1); } }

.supporter-notice {
  z-index: 9;
  height: 100px;
  width: 100%;
  padding: 24px;
  margin-top: 42px;
  transition-duration: 0.45s;
  transition-timing-function: ease;
  transition-property: height, background; }
  .supporter-notice button:hover svg {
    animation: supporter-notice-heart-pulsate 0.8s ease-in-out infinite;
    fill: red !important; }

@keyframes supporter-notice-heart-pulsate {
  0% {
    transform: scale(1); }
  20% {
    transform: scale(1.1); }
  45% {
    transform: scale(1.5); }
  55% {
    transform: scale(1.2); }
  62% {
    transform: scale(1.5); }
  100% {
    transform: scale(1); } }

.supporter-notice.not-interested button:hover svg {
  animation: none; }

.supporter-notice.open {
  position: absolute;
  margin-top: 0px;
  left: 0px;
  top: 0px;
  height: auto;
  background: inherit; }
  .supporter-notice.open .paper {
    animation: supporter-notice-paper-appear 0.45s cubic-bezier(0.6, 0, 0, 1); }

@keyframes supporter-notice-paper-appear {
  0% {
    transform: scale(0.25);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
