@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


input[type="file"] {
  display: none;
}

.button-wrapper {
  display: flex;
  grid-gap: 15px;
}

.hidden {
  display: none !important;
}

.button {
  text-decoration: none;
}

.button.gray {
  pointer-events: none;
}

.convert-button {
  position: relative;
  --load: 0;
}

.convert-button::after {
  content: '';
  position: absolute;
  inset: -6px;
  box-shadow: inset 0 0 0 3px #00c3ae;
  border-radius: 6px;
  clip-path: inset(0 calc(100% - (var(--load) * 100%)) 0 0);
  transition: .2s ease;
}

.convert-button[style="--load:0;"]::after {
  clip-path: none;
  animation: 1s button-load infinite;
}

@keyframes button-load {
  50% {
    box-shadow: inset 0 0 0 0 #00c3ae;
    opacity: 0;
  }
}


body {
  margin: auto;
  color: #d4d5d7;
  background: #090e11;
  max-width: 481px;
  padding-top: 10px;
  font-family: 'Inter', 'Simpler', 'Circular', SF Pro Text,SF Pro Icons,system,-apple-system,system-ui,BlinkMacSystemFont,Helvetica Neue,Helvetica,Arial,Lucida Grande,Kohinoor Devanagari,sans-serif;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern";
  -webkit-font-feature-settings: "kern";
  user-select: none;
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}



body.unresponsive {
  overflow: hidden;
}

@media (min-width: 481px)  {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: hsla(0,0%,100%,.16);
  }
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
  display:none;
}

.header {
  padding: 10px 16px;
  background: #2a2f32;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 59px;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.header .titlescreen, .header .addscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header .addscreen {
  position: absolute;
}

.header .titlescreen.hidden, .header .addscreen.hidden {
  opacity: 0;
  pointer-events: none;
}


.loader {
  animation: loaderrotate 2s linear infinite;
  margin-left: 11px;
  opacity: 0;
  position: absolute;
  transition: .1s var(--ease-function);
}

.section-button .loader {
  margin-left: 0;
}

.loader circle {
  stroke-dasharray: 1, 150;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: loaderstroke 1.5s ease-in-out infinite;
}


.button {
  padding: 10px 24px;
  border-radius: 3px;
  background-color: #00af9c;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  color: #131c21;
}

.button.gray {
  color: #b1b3b5;
  background: rgba(241,241,242,0.05);
}

.button.disabled{
 pointer-events: none;
}


.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #323739;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  z-index: 10000;
  will-change: transform;
}

.dialog.visible {
  pointer-events: auto;
  transform: none;
}

.dialog .title {
  color: #f1f1f2e0;
  font-size: 19px;
  margin-bottom: 15px;
  font-weight: 500;
}

.dialog .subtitle {
  color: #a6a8aa;
  font-size: 14px;
  line-height: 20px;
  max-width: 200px;
  text-align: center;
}


@font-face {
  font-family: 'Circular';
  src: url('CircularHbrOnly.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


