@charset "UTF-8";
/**
  Нормалізація блокової моделі
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
  Прибираємо внутрішні відступи зліва у тегів списків,
  які мають атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Прибираємо зовнішні відступи у body і двох інших тегів,
  які мають атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Прибираємо зовнішні вертикальні відступи у потрібних тегів,
  які мають атрибут class
 */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Прибираємо стандартний маркер у маркованих списків,
  які мають атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляємо вертикальні зовнішні відступи абзацу,
  оголошуємо локальну змінну для зовнішнього відступу вниз,
  щоб уникнути взаємодії зі складнішим селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Зовнішній відступ вниз для абзацу без атрибута class,
  який розташований не останнім серед сусідніх елементів
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Спрощуємо роботу з зображеннями та відео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Успадковуємо властивості шрифту для полів введення
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Стане в пригоді у більшості ситуацій
    (наприклад, коли потрібно "прикріпити" футер донизу сайту)
   */
  height: 100%;
}

/**
  Плавний скрол
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Стане в пригоді у більшості ситуацій
    (наприклад, коли потрібно "прикріпити" футер донизу сайту)
   */
  min-height: 100%;
  /**
    Уніфікований міжрядковий інтервал
   */
  line-height: 1.5;
}

/**
  Нормалізація висоти елемента посилання при його інспектуванні в DevTools
 */
a:where([class]) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/**
  Курсор у вигляді руки при наведенні на елемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводимо до єдиного кольору svg-елементи
  (за винятком тих, у яких уже вказано
  атрибут fill зі значенням 'none' або який починається з 'url')
 */
:where([fill]:not([fill=none], [fill^=url])) {
  fill: currentColor;
}

/**
  Приводимо до єдиного кольору svg-елементи
  (за винятком тих, у яких уже вказано
  атрибут stroke зі значенням 'none')
 */
:where([stroke]:not([stroke=none], [stroke^=url])) {
  stroke: currentColor;
}

/**
  Виправляємо баг затримки зміни кольору при взаємодії з svg-елементами
 */
svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

/**
  Приведення меж таблиць до класичного виду 'collapse'
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Видаляємо всі анімації та переходи для людей,
  які воліють їх не використовувати
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Fluorine Lite";
  src: url("../fonts/FluorineLite.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 24.37375rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width <= 47.99875rem) {
  .hidden-mobile-l {
    display: none !important;
  }
}

@media (width <= 63.99875rem) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width <= 89.99875rem) {
  .hidden-laptop {
    display: none !important;
  }
}

@media (width >= 119.99875rem) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (width > 24.37375rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile-l {
    display: none !important;
  }
}

@media (width > 63.99875rem) {
  .visible-tablet {
    display: none !important;
  }
}

@media (width > 89.99875rem) {
  .visible-laptop {
    display: none !important;
  }
}

a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  color: var();
}

:root {
  --absolute-white: #fff;
  --absolute-black: #000;
  --main-bgc: ##f4eddd;
  --font-family: "Fluorine Lite", sans-serif;
  --second-family: "Fluorine Lite", sans-serif;
  --shadow-main: 0.3125rem 0.125rem 0 0.0625rem var(--absolute-black);
  --border-black: 0.125rem solid var(--absolute-black);
  --transition-duration: 0.2s;
  --100vw: calc(100vw - var(--scrollbar-width));
  --container-width: clamp(23.75rem, -0.7843137255rem + 100.6535947712vw, 120rem);
  --container-padding-x: 1rem;
}
@media (width > 47.99875rem) {
  :root {
    --container-padding-x: 2.25rem;
  }
}
@media (width > 63.99875rem) {
  :root {
    --container-padding-x: 3.75rem;
  }
}
@media (width > 89.99875rem) {
  :root {
    --container-padding-x: 5rem;
  }
}
@media (width >= 119.99875rem) {
  :root {
    --container-padding-x: 10.125rem;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--absolute-black);
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: var(--font-family);
}

h5,
.h5,
h6,
.h6 {
  font-family: var();
}

h1,
.h1 {
  font-size: clamp(1.875rem, 1.556372549rem + 1.3071895425vw, 3.125rem);
}

h2,
.h2 {
  font-size: clamp(1rem, 0.4901960784rem + 2.091503268vw, 3rem);
}

h3,
.h3 {
  font-size: clamp(1rem, 0.4901960784rem + 2.091503268vw, 3rem);
}

h4,
.h4 {
  font-size: clamp(1rem, 0.4901960784rem + 2.091503268vw, 3rem);
}

h5,
.h5 {
  font-size: clamp(1rem, 0.4901960784rem + 2.091503268vw, 3rem);
}

h6,
.h6 {
  font-size: clamp(1rem, 0.4901960784rem + 2.091503268vw, 3rem);
}

p {
  font-size: clamp(1rem, 0.7769607843rem + 0.9150326797vw, 1.875rem);
  font-family: var(--second-family);
  font-weight: 500;
  line-height: 1.5;
  color: var();
}

a,
label,
input,
button {
  color: inherit;
  font-family: var(--font-family);
  font-size: clamp(0.875rem, 0.6200980392rem + 1.045751634vw, 1.875rem);
}
@media (any-hover: hover) {
  a:hover,
  label:hover,
  input:hover,
  button:hover {
    color: var();
  }
}
@media (any-hover: none) {
  a:active,
  label:active,
  input:active,
  button:active {
    color: var();
  }
}
a[class][type],
label[class][type],
input[class][type],
button[class][type] {
  text-decoration: none;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}

button {
  border: none;
}

:focus-visible {
  outline: 0.125rem dashed var();
  outline-offset: 0.25rem;
  -webkit-transition-duration: 0s !important;
          transition-duration: 0s !important;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

section {
  margin-bottom: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
}

.header {
  width: 100%;
  max-width: 120rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media (width <= 47.99875rem) {
  .nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 35.06125rem) {
  .nav {
    display: grid;
    gap: 0.9375rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 47.99875rem) {
  .lang {
    display: grid;
    gap: 0.625rem;
  }
}

.logo-img {
  width: clamp(1.875rem, 1.556372549rem + 1.3071895425vw, 3.125rem);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-link {
  display: inline-block;
  min-width: 50px;
  height: auto;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1.25rem;
}
.main__inner {
  position: absolute;
  top: 45%;
}
.main__paragraph {
  text-align: center;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}

.main__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.25rem;
  margin-bottom: 0.625rem;
}
@media (width <= 35.06125rem) {
  .main__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main__list-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  max-width: 90%;
}
@media (width <= 26.93625rem) {
  .main__list-sub {
    justify-items: center;
    grid-template-columns: 1fr;
    max-width: 80%;
  }
}
.main__list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.main__item {
  padding-inline: 0.3125rem;
  border-bottom: var(--border-black);
}
.main__item-sub__user {
  width: 90%;
  border-bottom: var(--border-black);
}
.main__addCheckBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.main__addCheckBox-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input {
  background-color: var(--main-bgc);
  outline: none;
  border-radius: 0.4375rem;
  padding-block: 0.3125rem;
  padding-inline: 0.625rem;
  border: none;
  border-bottom: var(--border-black);
}
@media (width <= 26.93625rem) {
  .input__search {
    width: 100%;
  }
}
@media (width > 26.93625rem) {
  .input__search {
    width: 7.5rem;
  }
}
@media (width > 35.06125rem) {
  .input__search {
    width: 100%;
  }
}

.input:focus {
  background-color: #f2ebdb;
}

.custom-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
  padding-right: 0.625rem;
}

input[type=checkbox] {
  display: none;
}

.checkbox-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Галочка */
.checkmark {
  stroke: #000;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  -webkit-transition: stroke-dashoffset 0.3s ease-in-out;
  transition: stroke-dashoffset 0.3s ease-in-out;
}

.underline {
  stroke: #777;
  stroke-width: 2;
  -webkit-transition: stroke 0.2s;
  transition: stroke 0.2s;
  opacity: 0.5;
}

/* Стан при виборі */
input[type=checkbox]:checked + .checkbox-icon .underline {
  stroke: #000;
}

input[type=checkbox]:checked + .checkbox-icon .checkmark {
  stroke-dashoffset: 0;
}

input[type=radio] {
  accent-color: #000;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 0.625rem;
}
.footer__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width <= 26.93625rem) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.625rem;
  }
}
.footer__searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.reset-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  width: 70%;
}
@media (width <= 35.06125rem) {
  .reset-div {
    display: grid;
  }
}

.button {
  background-color: var(--main-bgc);
  padding-inline: 0.625rem;
  -webkit-box-shadow: var(--shadow-main);
          box-shadow: var(--shadow-main);
  white-space: nowrap;
  border-radius: 0.25rem;
}
.button-deleteUserBox {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
.button__confirm {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button__search {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.delUserCheckBox {
  width: 20px;
}

.hand-drawn-arrow {
  display: block;
  width: 2.1875rem;
  height: 2.1875rem;
}

.hand-drawn-arrow:hover .arrow {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.tab-animation {
  position: relative;
  top: 8px;
  -webkit-animation: tabJump 0.7s ease-in-out;
          animation: tabJump 0.7s ease-in-out;
}

@-webkit-keyframes tabJump {
  0% {
    top: 0rem;
  }
  33% {
    top: 0.25rem;
  }
  66% {
    top: 0rem;
  }
  100% {
    top: 0.5rem;
  }
}

@keyframes tabJump {
  0% {
    top: 0rem;
  }
  33% {
    top: 0.25rem;
  }
  66% {
    top: 0rem;
  }
  100% {
    top: 0.5rem;
  }
}
label,
input[type=radio] {
  cursor: default;
}

body {
  width: 90%;
  background-color: gray;
  max-width: 120rem;
  margin-inline: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  background-image: url(../img/wood.jpg);
}

header,
main,
footer {
  background-image: url(../img/paper.jpg);
  border-inline: var(--border-black);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: var(--main-bgc);
  background-size: cover;
}

header {
  border-top: var(--border-black);
}

footer {
  border-bottom: var(--border-black);
}

label {
  text-transform: capitalize;
}/*# sourceMappingURL=main.css.map */