:root {
  --inactive-color: #6c757d;
  --main-color: rgb(82, 116, 228);
  --bg: rgb(238, 238, 238);
  --bg-secondary: rgb(50, 50, 50);
  --bg_opacity: rgb(30, 30, 30, 0.5);
  --text_color: rgb(30, 30, 30);
}

html,
body {
  position: relative;
  background-color: var(--bg);
  color: var(--text_color);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace, 'Helvetica Neue', sans-serif;
}

a {
  padding: 0 10px;
  font-weight: bold;
  color: blueviolet;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0, 80, 160);
}

h1,
h2,
p {
  font-weight: 400;
}

p {
  line-height: 1.5;
}

h1 {
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 0 1px 0 black;
  color: rgb(255, 19, 196);
}

h2 {
  font-size: 1.1rem;
  text-shadow: 0 1px 0 black;
  color: rgb(0, 146, 204);
}

.flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header .btn {
  padding-left: 10px;
  padding-right: 6px;
}
.header .btn:first-child {
  border-bottom-left-radius: 10px;
}
.header .btn:last-child {
  border-bottom-right-radius: 10px;
}
.header .app-btn div:last-child {
  padding-right: 10px;
}
.flex-jc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-nw {
  display: flex;
  justify-content: space-around;
}

.flex-sb {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #ccc;
}

.hide {
  visibility: hidden !important;
}

.spinner-loader {
  color: white;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnFlex {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  flex-direction: row;
}

.app-btn {
  text-transform: uppercase;
  gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.app-btn svg {
  margin-bottom: -3px;
  width: 30px !important;
  height: 30px !important;
  fill: white !important;
  color: white !important;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed_top_left {
  position: fixed;
  top: 5px;
  left: 5px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(102, 102, 102);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 5px;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
									supported by Chrome, Edge, Opera and Firefox */
}
.loading-div {
  min-height: 70px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .header .btn-danger .app-btn div:last-child {
    display: none;
  }
  .header .btn-primary .app-btn div:last-child {
    display: none;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  box-sizing: border-box;
}

.app {
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--bg);
}

.a-d-s {
  position: fixed;
  bottom: 0;
  height: 60px;
  width: 100vw;
  justify-content: center;
  display: flex;
  z-index: 999999999999999999999999999999999999999999;
}

.stepper {
  --default-b: lightgrey;
  --default-c: black;
  --active-b: rgb(0, 101, 148);
  --active-c: white;
  --circle: 40px; /* size of circle */
  --b: 1px; /* line thickness */

  counter-reset: step;
  margin: 2px;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  counter-reset: step;
  overflow-x: hidden;
  overflow-y: auto;
}
.stepper {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.stepper div {
  background: white;
  border-radius: 20px;
  justify-content: start;
  padding-right: 10px;
}
.stepper div p {
  padding: 20px;
}
.stepper div p * {
  margin-top: 10px;
}
.stepper div p:first-child {
  margin-top: 0;
}
.stepper div::before {
  content: counter(step) ' ';
  counter-increment: step;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  height: var(--circle);
  border: 5px solid #fff;
  box-sizing: border-box;
  background: var(--active-b);
  color: var(--active-c);
  border-radius: 50%;
  font-family: monospace;
  z-index: 1;
  margin-right: 10px;
}
.stepper div img {
  width: 100%;
  object-fit: scale-down;
}
.logo {
  font-size: 26px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  text-shadow: none;
  color: palevioletred;
}
.accordion {
  max-width: 800px;
  padding-bottom: 50px;
  font-size: 18px;
}

.accordion details summary {
  margin-top: 30px;
  color: #004e92;
  cursor: pointer;
}
.accordion header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.accordion details div {
  background: white;
  padding: 10px;
  border-radius: 10px;
}
