html, body, button, input {
  margin: 0px;
  padding: 0px;
  font-family: "Rubik", sans-serif;
  color: #FFFFFF;
  outline: none;
  border: 0px; }

input {
  font-size: 14px; }
  input::placeholder {
    color: rgba(255, 255, 255, 0.3); }

button {
  cursor: pointer; }

.spacer {
  height: 20px;
  width: 20px;
  flex-shrink: 0; }

html {
  width: 100%;
  height: 100%; }

body {
  background: radial-gradient(circle at 50% 50%, #0f798a, #1e4c85);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  body .url {
    max-width: 100%; }
    body .url input {
      user-select: none;
      background-color: rgba(0, 0, 0, 0);
      border: 0px;
      border-radius: 5px;
      padding: 16px;
      width: 500px;
      max-width: 100%;
      box-sizing: border-box; }
  body .middle-container {
    position: relative;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1); }
    body .middle-container > div {
      position: absolute;
      top: 0px;
      transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(-50%) scale(0.75);
      opacity: 0;
      pointer-events: none; }
      body .middle-container > div.visible {
        pointer-events: all;
        transform: translateX(-50%) scale(1);
        opacity: 1; }
    body .middle-container .format-selection {
      display: flex;
      user-select: none; }
      body .middle-container .format-selection button.format {
        box-sizing: content-box;
        min-width: 64px;
        font-size: 16px;
        height: 36px;
        padding: 0px 16px; }
    body .middle-container .loading-view .spinner {
      position: relative;
      margin: auto;
      width: 48px;
      height: 48px; }
      body .middle-container .loading-view .spinner .circle, body .middle-container .loading-view .spinner .line {
        width: 48px;
        height: 48px;
        border-radius: 50%; }
      body .middle-container .loading-view .spinner .circle {
        position: absolute;
        background-color: #FFFFFF;
        animation: scaleCircle 2s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

@keyframes scaleCircle {
  0% {
    transform: scale(0.6);
    opacity: 0.25; }
  50% {
    transform: scale(0.3);
    opacity: 0.5; }
  100% {
    transform: scale(0.6);
    opacity: 0.25; } }
      body .middle-container .loading-view .spinner .lines {
        position: absolute;
        width: 48px;
        height: 48px;
        animation: rotateLine 2s linear infinite; }

@keyframes rotateLine {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
        body .middle-container .loading-view .spinner .lines .line {
          position: absolute;
          border: 4px solid transparent;
          box-sizing: border-box;
          animation: scaleLine 2s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

@keyframes scaleLine {
  0% {
    transform: scale(1);
    opacity: 0.4; }
  50% {
    transform: scale(0.8);
    opacity: 0.5; }
  100% {
    transform: scale(1);
    opacity: 0.4; } }
        body .middle-container .loading-view .spinner .lines .line-1 {
          border-left-color: #FFFFFF; }
        body .middle-container .loading-view .spinner .lines .line-2 {
          border-right-color: #FFFFFF; }
    body .middle-container .loading-view .spacer:not(.visible) {
      height: 0px; }
    body .middle-container .loading-view p {
      opacity: 0;
      padding: 0px;
      transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
      transform: scale(0.75); }
      body .middle-container .loading-view p.visible {
        transform: scale(1);
        opacity: 1; }
      body .middle-container .loading-view p.title {
        color: white;
        font-size: 16px;
        margin-bottom: 2px; }
      body .middle-container .loading-view p.uploader {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px; }
    body .middle-container p {
      width: 400px;
      text-align: center;
      margin: 0px;
      padding: 2px; }
    body .middle-container .svg {
      display: block;
      margin: auto;
      background-position: center;
      background-repeat: no-repeat;
      background-size: 48px 48px;
      width: 48px;
      height: 48px;
      cursor: pointer; }
      body .middle-container .svg svg {
        pointer-events: none; }
    body .middle-container .error-view .spacer {
      height: 10px; }
    body .middle-container .error-view p.error-message {
      color: white;
      font-size: 16px; }
    body .middle-container .error-view p.error-code {
      color: rgba(255, 255, 255, 0.8);
      font-size: 15px; }

.clickable-light .bg::before {
  background-color: rgba(255, 255, 255, 0.12); }

.clickable-light:hover .bg::before {
  background-color: rgba(255, 255, 255, 0.18);
  transform: scale(0.9); }

.clickable-light:focus .bg, .clickable-light.focus-within .bg {
  transform: scaleY(0.05); }

.clickable-light.focus-within .bg::before {
  background-color: rgba(255, 255, 255, 0.36);
  transform: scale(1, 1); }

.clickable-light.focus-within:hover .bg::before {
  background-color: rgba(255, 255, 255, 0.36);
  transform: scale(0.9, 1); }

.clickable-light.checked .bg::before {
  background-color: rgba(255, 255, 255, 0.22); }

.clickable-light.checked:hover .bg::before {
  background-color: rgba(255, 255, 255, 0.28);
  transform: scale(0.9); }

.clickable-light.checked:focus .bg, .clickable-light.checked.focus-within .bg {
  transform: scaleY(0.05); }

.clickable-light.checked.focus-within .bg::before {
  background-color: rgba(255, 255, 255, 0.46);
  transform: scale(1, 1); }

.clickable-light.checked.focus-within:hover .bg::before {
  background-color: rgba(255, 255, 255, 0.46);
  transform: scale(0.9, 1); }

.clickable.url .bg::before {
  background-color: rgba(255, 255, 255, 0.12); }

.clickable.url:hover .bg::before {
  background-color: rgba(255, 255, 255, 0.138);
  transform: scale(0.97); }

.clickable.url:focus .bg, .clickable.url.focus-within .bg {
  transform: scaleY(0.05); }

.clickable.url.focus-within .bg::before {
  background-color: rgba(255, 255, 255, 0.36);
  transform: scale(1, 1); }

.clickable.url.focus-within:hover .bg::before {
  background-color: rgba(255, 255, 255, 0.36);
  transform: scale(0.97, 1); }

.clickable {
  position: relative;
  background-color: transparent; }
  .clickable .bg {
    transform-origin: bottom;
    transition: 280ms cubic-bezier(0.4, 0, 0.2, 1) all;
    position: absolute;
    pointer-events: none;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%; }
    .clickable .bg::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      transition: 280ms cubic-bezier(0.4, 0, 0.2, 1) all;
      bottom: 0px;
      left: 0px;
      border-radius: 5px; }

.extension {
  position: absolute;
  top: 0px;
  left: 0px;
  align-items: start;
  display: none;
  margin: 10px; }
  .extension.visible {
    display: flex; }
  .extension .svg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    padding: 10px;
    cursor: pointer; }
    .extension .svg svg {
      pointer-events: none; }
  .extension .extension-tooltip {
    transition: 280ms cubic-bezier(0.4, 0, 0.2, 1) all;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
    transform-origin: top left;
    padding: 9px 16px;
    margin: 8px 10px;
    position: relative;
    font-size: 15px; }
    .extension .extension-tooltip.visible {
      opacity: 1;
      transform: translateX(0px) scale(1);
      pointer-events: all; }
    .extension .extension-tooltip::after {
      content: "";
      pointer-events: none;
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      border-radius: 5px;
      background-color: rgba(255, 255, 255, 0.12); }
