:root {
  --module-width-1: 720px;
  --color-1: #3398d4;
  --color-1-transparent: hsla(202, 65%, 52%, 0.2);
  --color-1-shadow: hsla(202, 65%, 52%, 0.502);
  --color-1-background: hsla(202, 65%, 52%, 0.051);
  --color-2: #fec32c;
  --color-3: #2bdc82;
  --color-4: #fd1010;
  --color-5: hsl(24, 87%, 67%);
  --color-6: hsl(149, 87%, 67%);
  --color-7: hsl(202, 87%, 67%);
  --color-8: hsl(0, 87%, 67%);
  --color-9: #dd5555;
  --color-10: #8d5829;
  --color-11: #478b3f;
  --color-12: #386a65;
  --color-13: #9955dd;
  --group-constant-bg: rgba(53, 154, 212, 0.2);
  --group-baby-bg: hsla(84, 100%, 59%, 0.2);
  --transparent: rgba(255, 255, 255, 0);
  --white: #fff;
  --white-transparent: hsla(0, 0%, 100%, 0.5);
  --black: #222;
  --border-1: #e3e5ed;
  --border-2: #69748c;
  --gray-1: #a7a7a7;
  --background-1: hsl(203, 35%, 18%);
  --background-1-transparent: hsla(203, 35%, 18%, 0.250);
  --background-2: hsl(203, 35%, 8%);
  --background-2-lightened: hsl(203, 35%, 24%);
  --main-block-width-0: 780px;
  --white-transparent-08: #ffffffcc;
  --gray-1: #353552;
  --gray-2: #69748c;
  --gray-3: #f7f7f7;
  --gray-4: #a7a7a7;
  --gray-5: #e0e0e0;
  --tooth-color-1: #d9eafc;
  --tooth-color-2: #eb7075;
  --tree-bg-line: #2e4b5c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

li::marker {
  content: none;
}

button {
  outline: 0;
  border: 0;
  cursor: pointer;
}

textarea {
  outline: 0;
  border: 0;
}

body {
  overflow: hidden;
}

input[type=checkbox],
input[type=range] {
  accent-color: #2a80b3;
}

.scrollbar {
  overflow: overlay;
  scroll-behavior: smooth;
}
.scrollbar_auto {
  overflow: auto;
}
.scrollbar.not_mobile::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scrollbar::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.scrollbar::-webkit-scrollbar-track {
  background: var(--white);
  box-shadow: 0 0 2px hsla(0, 0%, 0%, 0.2);
}
.scrollbar::-webkit-scrollbar-thumb {
  background: var(--color-1);
  border-radius: 8px;
  transition: background-color 0.2s ease;
  border: 2px solid var(--white);
}
.scrollbar::-webkit-scrollbar-corner {
  background: var(--white);
}
.scrollbar_2-1::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scrollbar_2-1::-webkit-scrollbar-track {
  background: var(--background-1);
}
.scrollbar_2-1::-webkit-scrollbar-thumb {
  border: 2px solid var(--background-1);
}
.scrollbar_2-1::-webkit-scrollbar-corner {
  background: var(--background-1);
}
.scrollbar_2-2::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scrollbar_2-2::-webkit-scrollbar-track {
  background: var(--color-1);
}
.scrollbar_2-2::-webkit-scrollbar-thumb {
  border: 2px solid var(--color-1);
}
.scrollbar_2-2::-webkit-scrollbar-corner {
  background: var(--color-1);
}
.scrollbar_2-2-small::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.scrollbar_2-2-small::-webkit-scrollbar-track {
  background: var(--color-1);
}
.scrollbar_2-2-small::-webkit-scrollbar-thumb {
  border: 2px solid var(--color-1);
}
.scrollbar_2-2-small::-webkit-scrollbar-corner {
  background: var(--color-1);
}
.scrollbar_2-3::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scrollbar_2-3::-webkit-scrollbar-track {
  background: var(--white);
}
.scrollbar_2-3::-webkit-scrollbar-thumb {
  border: 2px solid var(--white);
}
.scrollbar_2-3::-webkit-scrollbar-corner {
  background: var(--white);
}

.alert {
  display: flex;
  position: fixed;
  z-index: 100000;
  background-color: var(--background-1-transparent);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  cursor: auto;
  overflow: auto;
}

.alert__container {
  box-sizing: border-box;
  padding: 20px 20px;
  background: var(--white);
  border-radius: 20px;
  max-width: 380px;
  width: 100%;
  margin: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alert__container > i {
  display: none;
  font-size: 96px;
  font-weight: 300;
}

.alert__text {
  font-size: 21px;
  margin: 20px 0 25px 0;
  text-align: center;
}

.alert__buttons {
  display: flex;
  margin-top: auto;
  justify-content: space-around;
  width: 100%;
}

.alert__button {
  display: flex;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--color-1);
  color: var(--white);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100px;
}

.alert__yes {
  order: 2;
}

.alert__no {
  order: 1;
  background-color: var(--background-1);
}

.alert__options {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.alert__options .alert__button {
  width: auto;
  height: auto;
  margin-bottom: 16px;
  padding: 5px 20px;
  text-align: center;
}

.alert__options .alert__button:last-child {
  margin-bottom: 0;
}

.alert__option1 {
  background-color: var(--white);
  color: var(--color-1);
  border: solid 1px var(--color-1);
}

@media (max-width: 767px) {
  /* .alert__container > i {
  	font-size: 64px;
  }
  .alert__text {
  	font-size: 26px;
  } */
}
.input__wrap > input {
  display: flex;
  align-items: center;
  height: 44px;
  outline: 0;
  border: 1px solid var(--border-1);
  color: var(--background-1);
  font-size: 16px;
  line-height: 24px;
  padding: 9px 16px;
  border-radius: 8px;
}

.input__wrap {
  display: flex;
  position: relative;
}
.input__wrap > input {
  transition: all 0.2s ease;
}
.input__wrap > span {
  color: var(--text-gray-1);
  position: absolute;
  pointer-events: none;
  font-size: 16px;
  left: 16px;
  top: calc(50% - 9px);
  background: transparent;
  transition: all 0.2s ease;
}
.input__wrap > span.active,
.input__wrap > input:hover + span,
.input__wrap > input:focus + span,
.input__wrap > input:focus-within + span {
  background: var(--white);
  color: var(--color-1);
  font-size: 12px;
  top: -6px;
  border-radius: 3px;
  padding: 0 3px;
}
.input__wrap > input:hover,
.input__wrap > input:focus,
.input__wrap > input:focus-within {
  border-color: var(--color-1);
}

.checkbox__wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.checkbox__wrap > input {
  display: none;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}
.checkbox__wrap > label {
  font-size: 16px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: var(--bg-black);
}

.checkbox__wrap .checkbox__wrap > label::before {
  content: "";
  display: flex;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  margin: 0 16px 0 0;
  background: var(--gray-1);
  border-radius: 4px;
  border: solid 1px black;
}

.checkbox__wrap > input:checked + label::before {
  background: var(--color-1);
  border: solid 1px var(--color-1);
}

.checkbox__wrap > input:checked + label::after {
  border: solid 1px var(--color-1);
  content: "";
  display: flex;
  position: absolute;
  height: 16px;
  width: 16px;
  left: 0;
  flex-shrink: 0;
  border-radius: 4px;
  background: no-repeat center/75% url(./img/checkmark.svg);
}

.textarea__wrap {
  display: flex;
  position: relative;
}
.textarea__wrap > textarea {
  border: 1px solid var(--border-1);
  background: var(--white);
  display: flex;
  min-width: 100%;
  min-height: 100px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  color: var(--background-1);
  transition: all 0.2s ease;
}
.textarea__wrap > span {
  color: var(--gray-1);
  position: absolute;
  pointer-events: none;
  font-size: 16px;
  left: 16px;
  top: 54px;
  background: transparent;
  transition: all 0.2s ease;
}

.textarea__wrap > span.active,
.textarea__wrap > textarea:hover + span,
.textarea__wrap > textarea:focus + span,
.textarea__wrap > textarea:focus-within + span {
  background: var(--white);
  color: var(--color-1);
  font-size: 12px;
  top: -6px;
  border-radius: 3px;
  padding: 0 3px;
}

textarea:hover,
textarea:focus,
textarea:focus-within {
  border-color: var(--color-1);
}

.textarea__wrap > textarea.not_mobile::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.textarea__wrap > textarea::-webkit-scrollbar-track {
  background: var(--white);
  box-shadow: 0 0 2px hsla(0, 0%, 0%, 0.2);
}

.textarea__wrap > textarea::-webkit-scrollbar-thumb {
  background: var(--color-1);
  border-radius: 8px;
  transition: background-color 0.2s ease;
  border: 2px solid var(--white);
}

.no-highlight {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@keyframes blick {
  15%, to {
    left: 110%;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 20px 20px;
  }
}