@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900");nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid;
  background: var(--tg-theme-bg-color);
}
nav a {
  stroke: var(--tg-theme-text-color);
}
nav a .fill-icon {
  stroke: none;
  fill: var(--tg-theme-text-color);
}
nav .selected {
  stroke: var(--tg-theme-button-color);
}
nav .selected .fill-icon {
  stroke: none;
  fill: var(--tg-theme-button-color);
}.high {
  color: green;
}

.low {
  color: red;
}.btn {
  display: flex;
  overflow: hidden;
  width: 100%;
  text-wrap: nowrap;
}
.btn a {
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 6px 10px;
  width: 100%;
  border-radius: 8px;
  background: var(--tg-theme-button-color);
}
.btn .cancel {
  background: #525252;
}
.btn .disable {
  background: #525252;
  pointer-events: none;
  cursor: default;
}.create-modal {
  position: absolute;
  padding: 15px;
  max-height: 80%;
  min-width: 250px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: var(--tg-theme-bg-color);
  z-index: 20;
}
.create-modal h3 {
  text-align: center;
  padding: 10px;
}
.create-modal .modal-box {
  overflow: auto;
  flex-direction: column;
  align-items: stretch;
}
.create-modal .button-box {
  padding: 0;
  padding-top: 10px;
  gap: 0;
}
.create-modal .button-box div {
  padding: 10px;
}
.create-modal div {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}.loading {
  width: 50px;
  align-self: center;
  justify-self: center;
  aspect-ratio: 1;
  border-radius: 100%;
  border: 4px solid #514b82;
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}.clickable {
  cursor: pointer;
}

.card {
  margin: 20px 30px;
  border-radius: 12px;
  background: var(--tg-theme-bg-color);
}
.card .right-text {
  text-align: right;
}
.card .timeout {
  background: var(--tg-theme-destructive-text-color);
}
.card-header {
  text-align: left;
  border-radius: 12px 12px 0 0;
  background: var(--tg-theme-button-color);
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-header-order {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--tg-theme-text-color);
  border-radius: 100%;
  background: var(--tg-theme-bg-color);
}
.card-header-order h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-header path {
  fill: var(--tg-theme-text-color);
}
.card-info {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  overflow-wrap: anywhere;
}
.card-info div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-info div p {
  font-weight: 300;
}
.card-info div h3 {
  text-align: right;
}.content-parent {
  height: 0px;
  overflow: hidden;
  transition: height ease 0.3s;
}.confirm {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  gap: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: var(--tg-theme-bg-color);
  z-index: 20;
}
.confirm div {
  display: flex;
  gap: 15px;
}.rename {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  gap: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: var(--tg-theme-bg-color);
  z-index: 20;
}.pop-up {
  position: absolute;
  bottom: 0%;
  width: 100%;
  padding: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background: var(--tg-theme-bg-color);
  transform: translateY(100%);
  z-index: 20;
  overflow: auto;
  transition: transform ease 0.3s;
}
.pop-up p {
  cursor: pointer;
}header {
  padding: 0 15px;
  display: grid;
  grid-template-columns: 20px auto 20px;
  align-items: center;
  border-bottom: 1px solid;
  background: var(--tg-theme-bg-color);
}
header h2,
header h3,
header p {
  grid-column: 2;
  text-align: center;
}
header h2 {
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
header h3 {
  text-align: right;
}
header .menu-btn {
  width: 20px;
  height: 20px;
}
header a path {
  fill: var(--tg-theme-text-color);
}
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
  font-size: 16px;
  color: var(--tg-theme-text-color);
  user-select: none;
  --swiper-navigation-size: 20px;
  --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
}
body {
  background: var(--tg-theme-bg-color);
  overflow: hidden;
}
section {
  display: grid;
  grid-template-rows: 40px auto 40px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--tg-theme-secondary-bg-color);
  padding-bottom: var(--tg-safe-area-inset-bottom);
}
section .order {
  padding: 15px 0px;
}
.container-freeze {
  display: grid;
  overflow: auto;
  grid-template-rows: 50px auto;
}
.container {
  overflow-y: auto;
  width: 100%;
}
h1 {
  font-size: 20px;
  font-weight: 500;
}
h2 {
  font-size: 18px;
  font-weight: 500;
}
h3 {
  font-size: 14px;
  font-weight: 500;
}
p {
  font-size: 14px;
  font-weight: 400;
  text-wrap: nowrap;
}
a {
  text-decoration: none;
  color: var(--tg-theme-button-text-color);
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}
input[type=text] {
  width: 40vw;
  padding: 0.4rem 1rem;
  border: 0;
  border-radius: 0.25em;
  appearance: none;
  background: var(--tg-theme-section-separator-color);
}
textarea {
  width: 40vw;
  padding: 0.4rem 1rem;
  border: 0;
  border-radius: 0.25em;
  appearance: none;
  background: var(--tg-theme-section-separator-color);
  width: 100%;
  height: 30vh;
  max-height: 60vh;
  resize: vertical;
}
input[type=checkbox] {
  margin: 0 10px;
}
select {
  cursor: pointer;
  padding-right: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 40vw;
  padding: 0.4rem 1rem;
  border: 0;
  border-radius: 0.25em;
  appearance: none;
  background: var(--tg-theme-section-separator-color);
  background: var(--arrow-icon) no-repeat right 0.8em center/1.2em, var(--tg-theme-section-separator-color);
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.without-nav {
  grid-template-rows: 40px auto;
}
.label {
  text-align: center;
  font-weight: 400;
}
.empty {
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 300;
  transform: translate(-50%, -50%);
}
.modal {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.drop {
  position: fixed;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.hide {
  display: none;
}
.sort {
  margin: 10px;
  display: flex;
  justify-content: center;
}
.fallback {
  height: 100vh;
  display: flex;
  justify-content: center;
}