:root {
  --main-color: rgb(93, 93, 255);
  --grey-color: rgb(154, 154, 154);
  --orange-color: rgb(255, 109, 96);
  --dark-background-color: rgba(29, 28, 23, 255);
  --primary-color: rgb(255, 109, 96);
  --background-color: rgb(246, 246, 246);
  --background-color-card: #ffffff;
}


.theme-dark {
  --main-text-color: #FFFFFF;
  --secondary-text-color: rgba(255, 255, 255, 0.4);
  --background-color: #282931;
  --background-color-card: #31323c;
  --placeholder-text-color: rgba(255, 255, 255, 0.2);
  --accent-color: rgb(255, 102, 102);
  --tapped-color: #414353;
  --outline-color: rgba(255, 255, 255, 0.4);
  --outline-border-width: 2px;
}

.test {
  background-color: #686323
}

/* * {
  user-select: none;
} */

html, body {
  overflow: clip;
  position: relative;
  height: 100%;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  /* font-family: Satoshi-Variable; */
  font-family: Outfit-variable;
  margin: 0px;
  background: var(--background-color);
  /* user-select: none; */
}

.tappable {
  transition: background-color 0.5s;
}

.tapped {
  background-color: var(--tapped-color) !important;
}

.nepo {
  box-shadow: 50px 50px 30px 1px rgba(0, 0, 0, 0.1) !important;
}

.shadow {
  box-shadow: 10px 10px 30px 1px rgba(0, 0, 0, 0.1) !important;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.outline {
  border: var(--outline-border-width) solid var(--outline-color)
}

.radius-medium {
  border-radius: 20px
}

.main-text {
  color: var(--main-text-color);
}

.sec-text {
  color: var(--secondary-text-color);
}

.transform-center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.text-center {
  text-align: center;
}

#overlay-block {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  display: none
}

.transparent-button {
  position: absolute;
  bottom: 40px;
  width: 90%;
  height: 120px;
  background-color: rgba(40, 41, 49, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: 0px 30px 60px 1px rgba(0, 0, 0, 0.6);
  border: var(--outline-border-width) solid var(--outline-color);
  z-index: 1;
  color: var(--main-text-color);
  font-size: 30px;
  font-weight: 500 ease;
}

.column {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

input {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  font: inherit;
  box-shadow: none;
  border-radius: 0;
}

input::placeholder {
  color: var(--placeholder-text-color);
}