/*!********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/app/global/styles.scss ***!
  \********************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
html {
  background-color: #2b2b2b;
  height: 100%; /* Убедитесь, что html занимает всю высоту экрана */
  margin: 0; /* Убираем стандартные отступы */
  padding: 0;
}

body {
  background-color: #2b2b2b;
  width: 100%; /* Занимает всю ширину экрана */
  max-width: 500px; /* Ограничивает максимальную ширину */
  margin: 0 auto; /* Центрирует содержимое */
  height: 100%; /* Занимает всю высоту экрана */
  box-sizing: border-box; /* Учитывает padding и border в ширине */
  padding: 0 10px; /* Добавляем небольшие внутренние отступы для удобства */
  overflow-x: hidden; /* Предотвращает горизонтальную прокрутку */
}

@media (max-width: 500px) {
  body {
    padding: 0; /* Убираем отступы на маленьких экранах, если нужно */
  }
}
html,
body {
  margin: 0;
  padding: 0;
  background-color: #2b2b2b;
}

body {
  transform-origin: 0 0;
  transition: transform 0.3s ease; /* Плавное изменение масштаба */
  box-sizing: border-box;
}
/*!*****************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/tables/table_form.scss ***!
  \*****************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.list-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #1e2a38;
  border-bottom: 4px solid #3b82f6;
  padding-bottom: 0.4rem;
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.list-section {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  overflow: hidden;
  background: #fefefe;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  color: #2f3a4a;
  transition: box-shadow 0.3s ease;
}
.admin-table thead {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  font-size: 0.9rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.admin-table thead th {
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  box-shadow: inset 0 -4px 6px -4px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}
.admin-table thead th:first-child {
  border-top-left-radius: 14px;
}
.admin-table thead th:last-child {
  border-top-right-radius: 14px;
}
.admin-table tbody tr {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.admin-table tbody tr:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.25);
  background: #e6f0ff;
}
.admin-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  vertical-align: middle;
  border-bottom: none;
  letter-spacing: 0.02em;
  color: #1f2937;
}
.admin-table tbody td:first-child {
  font-weight: 700;
  color: #2563eb;
  width: 80px;
}

.action-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}
.action-icons .btn {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.action-icons .btn.btn-primary {
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.action-icons .btn.btn-primary:hover, .action-icons .btn.btn-primary:focus {
  background: linear-gradient(45deg, #1d4ed8, #2563eb);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.6666666667);
  transform: translateY(-2px);
}
.action-icons .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.action-icons .btn.btn-danger {
  background: linear-gradient(45deg, #dc2626, #ef4444);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: none;
}
.action-icons .btn.btn-danger:hover, .action-icons .btn.btn-danger:focus {
  background: linear-gradient(45deg, #b91c1c, #dc2626);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6666666667);
  transform: translateY(-2px);
}
.action-icons .btn.btn-danger:active {
  transform: translateY(0);
  box-shadow: none;
}

.no-items {
  margin-top: 3rem;
  font-style: italic;
  color: #6b7280;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-success {
  max-width: 250px;
}

.breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #555;
}
.breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #bbb;
}
.breadcrumbs__link {
  text-decoration: none;
  color: #3498db;
  transition: color 0.3s ease;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  color: #1d4ed8;
  text-decoration: underline;
}
.breadcrumbs__item--current {
  color: #222;
  font-weight: 700;
}
/*!******************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/models/models_list.scss ***!
  \******************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.models-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.25rem;
  padding: 2rem 1rem;
  background: #f7f9fc;
}

.model-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), inset 0 0 10px #e8f0fe;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.model-card:hover, .model-card:focus-within {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12), inset 0 0 12px #d6e3ff;
}
.model-card .model-header {
  font-weight: 900;
  font-size: 1.6rem;
  color: #1a202c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 0.6rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.model-card .model-content p {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  opacity: 0.85;
}
.model-card .model-actions {
  margin-top: auto;
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
}
.model-card .model-actions .btn-primary,
.model-card .model-actions .btn-success {
  padding: 0.65rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 7px 15px rgba(59, 130, 246, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.model-card .model-actions .btn-primary:focus-visible,
.model-card .model-actions .btn-success:focus-visible {
  outline: 3px solid #bfdbfe;
  outline-offset: 3px;
}
.model-card .model-actions .btn-primary {
  background: #3b82f6;
  color: #fff;
}
.model-card .model-actions .btn-primary:hover, .model-card .model-actions .btn-primary:focus {
  background: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.45);
}
.model-card .model-actions .btn-success {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 7px 15px rgba(34, 197, 94, 0.3);
}
.model-card .model-actions .btn-success:hover, .model-card .model-actions .btn-success:focus {
  background: #16a34a;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.45);
}

@media (max-width: 480px) {
  .models-list {
    grid-template-columns: 1fr;
    padding: 1rem 0.5rem;
  }
  .model-card {
    padding: 2rem 1.5rem;
  }
  .model-card .model-header {
    font-size: 1.3rem;
  }
  .model-card .model-content p {
    font-size: 1rem;
  }
  .model-card .model-actions .btn-primary,
  .model-card .model-actions .btn-success {
    font-size: 1rem;
    padding: 0.55rem 1.5rem;
  }
}
.remove-input-btn {
  max-height: 50px;
}

.button_wrap {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*!*********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/messages/message_list.scss ***!
  \*********************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
/* Сеточная система для карточек */
.message-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 20px;
  padding: 20px;
  margin-top: 20px;
  min-height: 500px; /* Минимальная высота для контейнера */
}

/* Стиль карточек */
.message-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px; /* Устанавливаем минимальную высоту */
  cursor: move; /* Курсор перетаскивания */
}

.message-card.dragging {
  opacity: 0.5; /* При перетаскивании карточка будет полупрозрачной */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); /* Усиленная тень */
}

.message-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Заголовок карточки */
.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* Текст внутри карточки */
.card-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
  word-wrap: break-word; /* Чтобы текст не выходил за пределы */
}

/* Стиль для картинок */
.card-body img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 15px;
  -o-object-fit: cover;
     object-fit: cover; /* Чтобы изображение не искажалось */
  height: 200px; /* Ограничим высоту */
}

/* Стили для блоков с клавиатурой */
.keyboard-links {
  margin-top: 15px;
}

.keyboard-links ul {
  list-style: none;
  padding: 0;
}

.keyboard-links li {
  margin-bottom: 10px;
}

/* Стили для кнопок клавиатуры */
.keyboard-links a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 30px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid transparent;
}

.keyboard-links a:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Эффекты для кнопок */
.keyboard-links a:active {
  transform: translateY(2px);
}

.keyboard-links a.callback {
  background-color: #28a745;
}

.keyboard-links a.callback:hover {
  background-color: #218838;
}

.keyboard-links a.href {
  background-color: #ffc107;
}

.keyboard-links a.href:hover {
  background-color: #e0a800;
}

.keyboard-links a.webapp {
  background-color: #17a2b8;
}

.keyboard-links a.webapp:hover {
  background-color: #138496;
}

/* Если клавиатуры нет */
.message-card .keyboard-links ul:empty {
  color: #999;
  font-style: italic;
}

/* Заголовок и структура секции */
.list-section {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.list-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

/* Стиль для пустых записей */
.no-items {
  color: #888;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
  font-style: italic;
}

/* Стили для кнопки "Добавить сообщение" */
.btn-success {
  background-color: #28a745;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  cursor: pointer;
}

.breadcrumbs__list {
  list-style: none;
  padding: 0;
}

.breadcrumbs__item {
  display: inline-block;
  margin-right: 5px;
  font-size: 0.9rem;
}

.breadcrumbs__link {
  color: #007bff;
  text-decoration: none;
}

.breadcrumbs__item--current {
  font-weight: bold;
  color: #444;
}
/*!*************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/message_form/message_form.scss ***!
  \*************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
/* Основные переменные */
/* Блок для формы */
.message-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
  /* Заголовок для секции формы */
  /* Стили для группы полей */
  /* Стили для меток */
  /* Стили для полей ввода */
  /* Стили для текстовых полей */
}
.message-form .form-section__title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.message-form .message-form__group {
  margin-bottom: 25px;
}
.message-form .message-form__label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 8px;
}
.message-form .message-form__control {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}
.message-form .message-form__control:focus {
  border-color: #007bff;
  background-color: #fff;
  outline: none;
}
.message-form textarea.form-control {
  resize: vertical;
  height: 150px;
}

/* Стили для клавиатуры */
.keyboard-buttons {
  margin-top: 25px;
}
.keyboard-buttons .keyboard-buttons__item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Кнопка удаления */
}
.keyboard-buttons .keyboard-buttons__item .keyboard-buttons__label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  position: inherit;
}
.keyboard-buttons .keyboard-buttons__item .keyboard-buttons__control {
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.keyboard-buttons .keyboard-buttons__item .keyboard-buttons__control:focus {
  border-color: #007bff;
  background-color: #fff;
  outline: none;
}
.keyboard-buttons .keyboard-buttons__item button.remove-button {
  align-self: flex-start;
  font-size: 1rem;
  background-color: #dc3545;
  border: none;
  padding: 8px 15px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.keyboard-buttons .keyboard-buttons__item button.remove-button:hover {
  background-color: #c82333;
}

/* Кнопка добавления */
#add-button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#add-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
#add-button:active {
  transform: translateY(2px);
}

/* Стили для кнопок */
button.btn {
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
button.btn-success {
  background-color: #28a745;
  color: #fff;
}
button.btn-success:hover {
  background-color: #218838;
  transform: translateY(-2px);
}
button.btn-success:active {
  transform: translateY(2px);
}
button.btn-danger {
  background-color: #dc3545;
  color: #fff;
}
button.btn-danger:hover {
  background-color: #c82333;
  transform: translateY(-2px);
}
button.btn-danger:active {
  transform: translateY(2px);
}
button.btn-primary {
  background-color: #007bff;
  color: #fff;
}
button.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
button.btn-primary:active {
  transform: translateY(2px);
}

/* Стили для пустых записей */
.no-items {
  color: #888;
  font-size: 1.2rem;
  text-align: center;
  padding: 20px;
  font-style: italic;
}

/* Если кнопки не добавлены */
#keyboard-buttons:empty {
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  font-style: italic;
}
/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/form/model_create_form.scss ***!
  \**********************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
/* Общие стили для формы */
.model-form-creator {
  max-width: 460px;
  margin: 5vh auto 3vh;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  font-family: "Montserrat", sans-serif;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Заголовок формы */
.form-title {
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: white;
}

/* Ошибка */
.error {
  background-color: #ffe6e6;
  border: 1.5px solid #e03131;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: #b71c1c;
  font-weight: 700;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Контейнер для поля и лейбла */
.admin-form__form-group {
  position: relative;
  width: 100%;
}

/* Поля ввода */
.admin-form__form-group__input {
  width: 100%;
  padding: 1.15rem 1rem 0.4rem 1rem;
  font-size: 1.125rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fafafa;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  outline: none;
  box-sizing: border-box;
  font-weight: 500;
  color: #222;
}

/* Placeholder прозрачный, чтобы был виден label */
.admin-form__form-group__input::-moz-placeholder {
  color: transparent;
}
.admin-form__form-group__input::placeholder {
  color: transparent;
}

/* Фокус на input */
.admin-form__form-group__input:focus {
  border-color: #0069ff;
  box-shadow: 0 0 12px rgba(0, 105, 255, 0.4);
  background-color: #fff;
}

/* Модификатор ошибки */
.admin-form__form-group__input--error {
  border-color: #e03131;
  background-color: #ffe8e8;
}

.admin-form__form-group__input--error:focus {
  border-color: #b71c1c;
  box-shadow: 0 0 12px rgba(215, 50, 50, 0.55);
}

/* Label */
.admin-form__form-group__label {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  font-size: 1.125rem;
  color: #888;
  pointer-events: none;
  font-weight: 500;
  padding: 0 6px;
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease, top 0.3s ease, font-size 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform-origin: left top;
}

/* Поднятый и заполненный label */
.admin-form__form-group__label--filled,
.admin-form__form-group__input:focus + .admin-form__form-group__label {
  top: -0.55rem;
  font-size: 0.8rem;
  color: #0069ff;
  font-weight: 700;
  box-shadow: 0 0 6px rgba(0, 105, 255, 0.3);
  transform: translateY(0);
}

/* Адаптивный шрифт для label и input */
@media (max-width: 480px) {
  .admin-form__form-group__input,
  .admin-form__form-group__label {
    font-size: 1rem;
  }
  .admin-form__form-group__label--filled {
    top: -0.65rem;
    font-size: 0.75rem;
  }
}
/* Кнопка отправки */
.btn-primary {
  padding: 0.9rem 2.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0069ff, #004ecc);
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 105, 255, 0.45);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  align-self: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: -moz-max-content;
  width: max-content;
  min-width: 140px;
}

/* Эффекты наведения и фокуса на кнопку */
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #004ecc, #003bb5);
  box-shadow: 0 7px 20px rgba(0, 75, 190, 0.7);
  outline: none;
}

/* Активное состояние кнопки */
.btn-primary:active {
  background: #003bb5;
  box-shadow: none;
}

/* Для чекбокса - чуть подвинем */
.admin-form__form-group__input[type=checkbox] {
  width: auto;
  height: auto;
  padding: 0;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Для чекбокса - подпись рядом */
.admin-form__form-group label[for] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

/* Пространство между чекбоксом и лейблом */
.admin-form__form-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-wrapper {
  width: 100%;
  background-color: #2b2b2b;
  display: flex;
  flex-direction: column;
}
/*!**************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/form/form_alco.scss ***!
  \**************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.container__form {
  max-width: 800px;
  padding: 0.2em !important;
  min-width: 320px;
}

.main__h1 {
  text-align: center;
  color: #2b2b2b;
  margin-bottom: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 18px;
  margin: 0;
}

.drink__inputs {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  background-color: #f0e4d4;
  border-radius: 20px;
  padding: 2em;
  position: relative;
  min-height: 300px;
  padding-bottom: 4em;
}
.drink__inputs__title {
  position: absolute;
  z-index: 2;
  background-color: #f0e4d4;
  border-color: #2b2b2b;
  border-style: solid;
  border-width: 3px;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  border-radius: 10px;
}
.drink__inputs .drink-input-group {
  border-radius: 12px;
  padding: 1em;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: grid;
  grid-template-columns: 110px repeat(2, 1fr);
  gap: 1em;
  border: 1px solid white;
  border-radius: 20px;
  position: relative;
}
.drink__inputs .drink-input-group .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.drink__inputs .drink-input-group .form-group.without_padding {
  padding: 0;
  margin-bottom: 0;
}
.drink__inputs .drink-input-group .form-group label {
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 0.4em;
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.drink__inputs .drink-input-group .form-group .input {
  width: 100%;
  padding: 0.6em;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.drink__inputs .drink-input-group .form-group .input:focus, .drink__inputs .drink-input-group .form-group .input:hover {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.25);
}
.drink__inputs .drink-input-group .form-group select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 0.6em 1.2em 0.6em 0.6em;
  border: 2px solid #ddd;
  border-radius: 8px;
  font: inherit;
  line-height: 1.4;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 0.8em center;
  background-size: 0.6em;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%206%205-6z%22%20fill%3D%22%23333%22/%3E%3C/svg%3E");
}
.drink__inputs .drink-input-group .form-group select.input:focus, .drink__inputs .drink-input-group .form-group select.input:hover {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.25);
}
.drink__inputs .drink-input-group .form-group select.input option[value=""] {
  color: #888;
}

.group_buttons {
  display: flex;
  justify-content: center;
  gap: 0.8em;
  margin-top: 1.2em;
  flex-wrap: wrap;
}
.group_buttons--centered {
  flex-grow: 1;
  min-height: 150px;
  align-items: center;
}
.group_buttons__btn {
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.6em 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.group_buttons__btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .drink-input-group {
    grid-template-columns: 1fr;
  }
  .group_buttons {
    flex-direction: column;
    align-items: center;
  }
}
.drink_delete_button {
  position: absolute;
  right: -10px;
  bottom: -10px;
  padding: 0.4em !important;
  font-size: 20px !important;
  background-color: #f0e4d4 !important;
  border: 1px solid white !important;
  color: #2b2b2b !important;
  box-shadow: none !important;
}

.drink_button_add {
  min-width: 47px !important;
  background-color: #ff8a1f !important;
  font-size: 24px !important;
  padding: 0em !important;
  background: #ff8a1f !important;
  aspect-ratio: 1;
  box-shadow: none !important;
  transition: background-color 0.3s ease !important;
}
.drink_button_add:hover {
  box-shadow: none !important;
  background-color: #e57712 !important;
}
.drink_button_add--centered {
  position: relative !important;
  left: auto !important;
  transform: none !important;
  margin: 0 auto !important;
}

.drink_button_save {
  background-color: #ff8a1f !important;
  background: #ff8a1f !important;
  box-shadow: none !important;
  position: absolute;
  bottom: 0.7em;
  left: 50%;
  transform: translateX(-50%);
}
.drink_button_save:hover {
  box-shadow: none !important;
  background-color: #e57712 !important;
  transform: translateX(-50%) translateY(-2px) !important;
}

.custom-select {
  width: 110px !important;
  aspect-ratio: 1 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alcohol__input__form {
  color: #2b2b2b;
}
.alcohol__input__form::-moz-placeholder {
  color: rgba(43, 43, 43, 0.7215686275) !important;
  font-size: small !important;
}
.alcohol__input__form::placeholder {
  color: rgba(43, 43, 43, 0.7215686275) !important;
  font-size: small !important;
}
/*!*************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/banner/banner.scss ***!
  \*************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.success-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 20px auto;
  padding: 12px 20px;
  border-radius: 8px;
  /* Градиент от зелёного к более тёмному тону */
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Плавное появление сверху */
  animation: fadeInDown 0.5s ease-out both;
  position: relative;
}

/* Добавим иконку «галочка» перед текстом */
.success-banner::before {
  content: "✔";
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2em;
}

/* Ключевые кадры анимации */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*!*********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/features/auth/auth.scss ***!
  \*********************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.auth-form {
  max-width: 420px;
  margin: 6vh auto;
  padding: 3rem 2.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #222;
}
.auth-form h1 {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.auth-form form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background-color: rgba(0, 0, 0, 0);
}
.auth-form p {
  font-size: 1rem;
  text-align: center;
  color: #666;
}
.auth-form p a {
  color: #0069ff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}
.auth-form p a:hover, .auth-form p a:focus {
  color: #004ecc;
  text-decoration: underline;
}

.auth-form__form-group {
  position: relative;
  width: 100%;
  margin-bottom: 1.75rem;
}
.auth-form__form-group__input {
  width: 100%;
  padding: 1.15rem 1rem 0.4rem 1rem;
  font-size: 1.125rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fafafa;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  outline: none;
  box-sizing: border-box;
  font-weight: 500;
  color: #222;
}
.auth-form__form-group__input:focus {
  border-color: #0069ff;
  box-shadow: 0 0 10px rgba(0, 105, 255, 0.35);
  background-color: #fff;
}
.auth-form__form-group__input--error {
  border-color: #e03131;
  background-color: #ffe8e8;
}
.auth-form__form-group__input--error:focus {
  border-color: #b71c1c;
  box-shadow: 0 0 12px rgba(215, 50, 50, 0.55);
}
.auth-form__form-group__label {
  position: absolute;
  top: 0.9rem;
  left: 0.4rem;
  font-size: 1.125rem;
  color: #888;
  pointer-events: none;
  font-weight: 500;
  padding: 0 6px;
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease, top 0.3s ease, font-size 0.3s ease;
}
.auth-form__form-group__label--filled, .auth-form__form-group__input:focus + .auth-form__form-group__label {
  top: -0.55rem;
  font-size: 0.8rem;
  color: #0069ff;
  transform: translateY(0);
  font-weight: 700;
  box-shadow: 0 0 5px rgba(0, 105, 255, 0.25);
}
.auth-form__form-group__label--error {
  color: #e03131;
  font-weight: 700;
}

.btn-primary {
  padding: 0.85rem 1.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0069ff, #004ecc);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 105, 255, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, #004ecc, #003bb5);
  box-shadow: 0 6px 18px rgba(0, 75, 190, 0.6);
}
.btn-primary:active {
  background: #003bb5;
  box-shadow: none;
}

@media (max-width: 480px) {
  .auth-form {
    margin: 3vh 1rem;
    padding: 2rem 1.5rem;
  }
  .auth-form__form-group__input,
  .auth-form__form-group__label {
    font-size: 1rem;
  }
  .auth-form__form-group__label--filled {
    top: -0.65rem;
    font-size: 0.75rem;
  }
  .btn-primary {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }
}
/*!*************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/shared/sidebar/sidebar.scss ***!
  \*************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.container {
  width: 95%;
  position: relative;
  padding: 1.5em;
}

.sidebar {
  width: 250px;
  background-color: #333;
  color: white;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease, width 0.3s ease;
  position: relative;
}

.sidebar.disactive {
  transform: translateX(-250px);
  width: 0;
  padding: 0;
  overflow: hidden;
}

/* При скрытом сайдбаре меняем grid-template-columns родителя */
.workspace-page:has(.sidebar.disactive) {
  grid-template-columns: 0 1fr; /* Убираем ширину первой колонки */
}

.sidebar-header h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* Крестик для закрытия меню */
.close-btn_menu {
  top: 20px;
  right: 20px;
  color: white;
  cursor: pointer;
  position: absolute;
  width: 30px; /* Размер крестика */
  height: 30px; /* Размер крестика */
}

.close-btn_menu::before,
.close-btn_menu::after {
  content: ""; /* Создаем псевдоэлементы */
  position: absolute; /* Позиционируем относительно родителя */
  top: 50%; /* Центрируем по вертикали */
  left: 50%; /* Центрируем по горизонтали */
  width: 20px; /* Длина линии */
  height: 2px; /* Толщина линии */
  background-color: white; /* Цвет линии */
  transform: translate(-50%, -50%); /* Центрируем линии */
}

.close-btn_menu::before {
  transform: translate(-50%, -50%) rotate(45deg); /* Поворот для первой линии */
}

.close-btn_menu::after {
  transform: translate(-50%, -50%) rotate(-45deg); /* Поворот для второй линии */
}

/* Кнопка для открытия меню */
.open-btn_menu {
  display: none; /* Скрыта по умолчанию */
  width: 30px; /* Размер кнопки */
  height: 30px; /* Размер кнопки */
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
}

.open-btn_menu::before,
.open-btn_menu::after {
  content: ""; /* Псевдоэлементы для гамбургера */
  position: absolute;
  width: 20px; /* Длина линий */
  height: 2px; /* Толщина линий */
  background-color: #333; /* Цвет линий */
  left: 50%;
  transform: translateX(-50%);
}

.open-btn_menu::before {
  top: 5px; /* Верхняя линия */
}

.open-btn_menu::after {
  bottom: 5px; /* Нижняя линия */
}

.open-btn_menu::after {
  width: 20px; /* Средняя линия */
  top: 14px; /* Позиция средней линии */
}

/* Показываем кнопку открытия, когда сайдбар скрыт */
.workspace-page:has(.sidebar.disactive) .open-btn_menu {
  display: block;
}

/* Стили для элементов меню */
.menu {
  list-style: none;
  padding: 0;
}

.menu-item {
  margin-bottom: 15px;
}

.menu-item a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 24px;
}

.menu-item a:hover {
  background-color: #555;
}

.menu-item i {
  margin-right: 10px;
}

/* Подменю */
.has-submenu > a:after {
  content: " ▼";
  margin-left: auto;
}

.submenu {
  list-style: none;
  padding: 0;
  display: none;
  margin-top: 10px;
}

.submenu li a {
  background-color: #444;
  padding-left: 30px;
}

.has-submenu.open .submenu {
  display: block;
}

/* Адаптивность */
@media (max-width: 768px) {
  .sidebar {
    width: 0;
    overflow: hidden;
  }
  .sidebar.active {
    width: 250px;
  }
  /* Показываем крестик на мобильных устройствах */
  .close-btn_menu {
    display: block;
  }
  /* Показываем кнопку открытия по умолчанию на мобильных */
  .open-btn_menu {
    display: block;
  }
  .sidebar.disactive {
    width: 0;
    transform: translateX(0); /* Убираем transform для мобильных */
  }
  .workspace-page:has(.sidebar.disactive) {
    grid-template-columns: 0 1fr; /* Убираем ширину сайдбара */
  }
  .sidebar.active {
    width: 250px;
  }
}
/*!*************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/shared/section/section.scss ***!
  \*************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.section {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  gap: 2.5rem;
}
.section__header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.section__additional {
  max-width: 600px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  gap: 0.625rem;
}
.section__title {
  font-family: "Good Dog", cursive;
  font-size: 4rem;
  font-weight: 400;
  line-height: -1px;
  color: rgb(0, 0, 0);
  text-align: left;
  letter-spacing: 3.5px;
}
.section__text {
  width: 260px;
  font-family: "Good Dog", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: -1px;
  color: #000;
  letter-spacing: 3.5px;
}

@media (max-width: 1150px) {
  .section__text {
    display: none;
  }
}
@media (max-width: 1150px) {
  .section__title {
    font-size: 3.5rem;
  }
  .section__header {
    flex-flow: row wrap;
    gap: 10px;
  }
}
/*!*********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/shared/information/information.scss ***!
  \*********************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
/* server/templates/shared/information/information.scss */
.info {
  text-align: left;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info p {
  font-size: 14px;
  color: #333;
  margin: 12px 0;
  font-family: "Arial", sans-serif;
  border-left: 2.5px solid #ff8a1f;
  padding-left: 0.3em;
}
.info strong {
  color: black;
  font-weight: bold;
  transition: color 0.3s ease;
}
.info strong:hover {
  color: #ff8a1f;
}
@media (max-width: 600px) {
  .info {
    padding: 15px;
    font-size: 16px;
  }
}
/*!*****************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/shared/chemical-slider/chemical-slider.scss ***!
  \*****************************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
chemical-slider {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.chemical-slider {
  padding: 0 20px;
  margin: 0 -20px;
  overflow: hidden;
}
.chemical-slider__track {
  padding: 20px 0;
  display: flex;
  transition: transform 0.5s ease-out;
  list-style: none;
  list-style-type: none;
}
.chemical-slider__item {
  width: var(--item-width) !important;
  min-width: var(--item-width) !important;
  max-width: var(--item-width) !important;
  margin-right: var(--slider-gap) !important;
  flex-shrink: 0;
}
.chemical-slider__item > * {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}
.chemical-slider__arrow {
  padding: 0;
  position: absolute;
  top: 50%;
  background: none;
  border: none;
  z-index: 1;
  cursor: pointer;
}
.chemical-slider__arrow:disabled {
  filter: grayscale(100%);
  opacity: 0.7;
  cursor: not-allowed;
}
.chemical-slider__arrow--prev {
  left: -15px;
  transform: translate(-10%, -50%);
}
.chemical-slider__arrow--prev:hover {
  transform: translate(-10%, -50%) scale(1.1);
}
.chemical-slider__arrow--next {
  right: -15px;
  transform: translate(10%, -50%);
}
.chemical-slider__arrow--next:hover {
  transform: translate(10%, -50%) scale(1.1);
}

@media (max-width: 950px) {
  .chemical-slider__track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }
  .chemical-slider__item {
    scroll-snap-align: center;
  }
}
/*!***************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/shared/calendar/calendar.scss ***!
  \***************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
/* styles/shared/_calendar.scss */
:root {
  --calendar-text: white;
  --day-bg: #f0f0f0;
  --color-primary-button: #ff8b00;
  --color-secondary-button: #ff8a1f;
  --color-primary-button-hover: #c9630b;
  --btn-bg: #007bff;
  --btn-bg-hover: #0056b3;
  --btn-bg-active: #003f7f;
}

.calendar {
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  box-sizing: border-box;
  color: var(--calendar-text);
  background-color: rgba(0, 0, 0, 0) !important;
  /* Новый блок для дней недели */
}
.calendar h2 {
  color: white;
}
.calendar .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.calendar .calendar-weekdays .weekday-label {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.calendar .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  position: relative;
}
.calendar .day {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  background-color: #ff8b00;
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1), -1px 0 2px rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, background 0.3s ease;
}
@media (max-width: 400px) {
  .calendar .day {
    width: 35px;
  }
}
.calendar .day:hover {
  transform: translateY(-3px) scale(1.03) !important;
}
.calendar .day--today::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  border-radius: 12px;
  pointer-events: none;
}
.calendar .day .day-number {
  z-index: 1;
  font-size: 16px;
  color: var(--calendar-text);
  position: absolute;
  top: 0.2em;
  left: 0.4em;
}
.calendar .day img.day-alcohol-icon {
  display: block !important;
  position: absolute !important;
  bottom: 1px !important;
  right: 1px !important;
  width: 50% !important;
  height: 50px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  pointer-events: none !important;
  z-index: 2 !important;
  opacity: 1 !important;
  transform: none !important;
}
.calendar .day:hover img.day-alcohol-icon {
  transform: none !important;
}
.calendar .day:nth-child(odd) {
  animation-delay: 0.05s;
}
.calendar .day:nth-child(even) {
  animation-delay: 0.1s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.calendar .calendar-controls {
  display: grid;
  grid-template-columns: 10% 80% 10%;
  margin-top: 20px;
}
.calendar .calendar-controls .btn {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  background: #ff8b00;
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}
.calendar .calendar-controls .btn:hover {
  background: var(--color-primary-button-hover);
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}
.calendar .calendar-controls .btn:active {
  background: var(--color-primary-button-hover);
  box-shadow: none !important;
  transform: translateY(0) !important;
}

/* Адаптивность */
@media (max-width: 768px) {
  .calendar .calendar-weekdays .weekday-label {
    font-size: 12px;
  }
  .calendar .calendar-grid {
    gap: 4px;
  }
  .calendar .day {
    border-radius: 10px;
  }
  .calendar .day .day-number {
    font-size: 14px;
  }
  .calendar .day img.day-alcohol-icon {
    width: 18px !important;
    height: 18px !important;
    bottom: 4px !important;
    right: 4px !important;
  }
  .calendar .calendar-controls .btn {
    padding: 9px 16px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .calendar .calendar-weekdays .weekday-label {
    font-size: 10px;
  }
  .calendar .calendar-grid {
    gap: 3px;
  }
  .calendar .day .day-number {
    font-size: 12px;
  }
  .calendar .day img.day-alcohol-icon {
    width: 16px !important;
    height: 16px !important;
    bottom: 3px !important;
    right: 3px !important;
  }
  .calendar .calendar-controls .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}
/* Стили для подписи-«вывески» */
.calendar-signboard {
  text-align: center;
  margin-bottom: 10px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.calendar-signboard__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
}

.calendar__btn_arrow {
  transform: rotate(180deg);
}

.day__not__passed {
  cursor: not-allowed;
  background-color: rgba(255, 139, 31, 0.5294117647) !important;
  filter: brightness(70%);
}

.day__next_month,
.day__prev_month {
  background-color: #a1a1a1 !important;
  filter: brightness(70%);
}
/*!***********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/shared/button/button.scss ***!
  \***********************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover,
.btn:focus {
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.6666666667);
  transform: translateY(-2px);
  outline: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-success {
  background: linear-gradient(45deg, #1c9939, #259139);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.btn-success:hover, .btn-success:focus {
  background: linear-gradient(45deg, #115f19, #0c4e18);
  box-shadow: 0 0 12px rgba(68, 239, 91, 0.6666666667);
  transform: translateY(-2px);
}
.btn-success:active {
  transform: translateY(0);
  box-shadow: none;
}
/*!*********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/shared/Input/input.scss ***!
  \*********************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
/* Контейнер */
.form-group {
  position: relative;
  width: 100%;
  margin-bottom: 1.75rem;
}

/* Поле ввода */
.input {
  width: 100%;
  padding: 1.15rem 1rem 0.4rem 1rem;
  font-size: 1.125rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fafafa;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  outline: none;
  box-sizing: border-box;
  font-weight: 500;
  color: #222;
}

/* Важно: placeholder прозрачный, чтобы label был виден */
.input::-moz-placeholder {
  color: transparent;
}
.input::placeholder {
  color: transparent;
}

/* Фокус */
.input:focus {
  border-color: #0069ff;
  box-shadow: 0 0 10px rgba(0, 105, 255, 0.35);
  background-color: #fff;
}

/* Когда input в фокусе или label с модификатором заполненности */
.input:focus + .form-group__label,
.form-group__label--filled {
  top: -0.55rem;
  font-size: 0.8rem;
  color: #0069ff;
  transform: translateY(0);
  font-weight: 700;
  box-shadow: 0 0 5px rgba(0, 105, 255, 0.25);
}

/* Когда input заполнен (без фокуса) */
.input:not(:-moz-placeholder) + .form-group__label {
  top: -0.55rem;
  font-size: 0.8rem;
  color: #0069ff;
  transform: translateY(0);
  font-weight: 700;
}
.input:not(:placeholder-shown) + .form-group__label {
  top: -0.55rem;
  font-size: 0.8rem;
  color: #0069ff;
  transform: translateY(0);
  font-weight: 700;
}

/* Модификатор ошибки */
.input--error {
  border-color: #e03131;
  background-color: #ffe8e8;
}

.input--error:focus {
  border-color: #b71c1c;
  box-shadow: 0 0 12px rgba(215, 50, 50, 0.55);
}

/* Label — изначально внутри поля (как placeholder) */
.form-group__label {
  position: absolute;
  top: 1.15rem; /* совпадает по вертикали с текстом input */
  left: 1rem;
  font-size: 1.125rem;
  color: #888;
  pointer-events: none;
  font-weight: 500;
  background: white;
  padding: 0 6px;
  border-radius: 6px;
  transition: transform 0.3s ease, color 0.3s ease, top 0.3s ease, font-size 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform-origin: left top;
}

/* Модификатор ошибки для label */
.form-group__label--error {
  color: #e03131;
  font-weight: 700;
}

/* Адаптивность */
@media (max-width: 480px) {
  .input,
  .form-group__label {
    font-size: 1rem;
  }
  .input:not(:-moz-placeholder) + .form-group__label {
    top: -0.65rem;
    font-size: 0.75rem;
  }
  .form-group__label--filled,
  .input:not(:placeholder-shown) + .form-group__label {
    top: -0.65rem;
    font-size: 0.75rem;
  }
}
/*!******************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/widgets/list_alco/list_alco.scss ***!
  \******************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.list_alcohols {
  max-width: 90%;
  max-height: 300px;
  width: clamp(200px, 100%, 320px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25em;
  padding: 1em;
  border: 1px solid white;
  border-radius: 15px;
  background-color: #f0e4d4;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  overflow-x: hidden;
}
.list_alcohols.show {
  opacity: 1;
  transform: translateX(-10%) translateY(13%);
  pointer-events: auto;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
@media (max-width: 450px) {
  .list_alcohols.show {
    transform: translateX(-25%) translateY(18%);
  }
}
.list_alcohols__card {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 12px;
  background-color: white;
  padding: 0.5em;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.list_alcohols__card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 560px) {
  .list_alcohols__card {
    width: 72%;
  }
}
.list_alcohols__picture {
  width: 100%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  max-height: 80px;
}
.list_alcohols__name {
  height: 30%;
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  margin: 0;
  color: #333333;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*!****************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/widgets/category/category.scss ***!
  \****************************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.category-section {
  width: 100%;
  padding: 5rem 1.25rem 3.125rem;
  display: flex;
  justify-content: center;
}
.category-section__product-tabs-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 2.5rem;
}
.category-section__product-tab {
  max-width: 150px;
  max-height: 250px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 0.625rem;
  color: #000;
  text-decoration: none;
}
.category-section__product-tab p.category-section__title {
  font-size: 0.875rem;
  font-weight: 400;
}

.workspace-page {
  width: 100%;
  height: 100dvh;
  min-height: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5em;
}

.category-section__icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-section__icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}
/*!***********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./server/templates/pages/scss/statistic.scss ***!
  \***********************************************************************************************************************************************************************************************************/
/**
 * Mixin for responsive media queries based on predefined breakpoints.
 *
 * @param {string} $breakpoint - The target breakpoint ('desktop', 'laptop', or 'mobile').
 *
 * @example
 * .example {
 *   @include respond-to(desktop) {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting desktop screens.
 *
 * @example
 * .example {
 *   @include respond-desktop {
 *     font-size: calc(2rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting laptop screens.
 *
 * @example
 * .example {
 *   @include respond-laptop {
 *     font-size: calc(1.5rem;
 *   }
 * }
 */
/**
 * Mixin for styles targeting mobile screens.
 *
 * @example
 * .example {
 *   @include respond-mobile {
 *     font-size: calc(1rem;
 *   }
 * }
 */
/**
 * Mixin to apply a focus style with rounded corners, outline, and shadow.
 *
 * @example
 * .example:focus {
 *   @include focus-mixin;
 * }
 */
/**
 * Mixin to style custom scrollbars with colors, width, and rounded edges.
 *
 * @param {color} $thumb-color - Color of the scrollbar thumb (default: var(--color-accent-30)).
 * @param {length} $thumb-radius - Radius of the scrollbar thumb corners (default: var(--corner-base)).
 * @param {length} $scroll-width - Width of the scrollbar (default: 8px).
 * @param {color} $track-color - Background color of the scrollbar track (default: transparent).
 *
 * @example
 * .example {
 *   @include scrollbar-mixin($thumb-color: #ff6600, $track-color: #f5f5f5);
 * }
 */
/**
 * Function to create a transition list from statements, duration, and timing function.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (default is var(--animation-duration)).
 * @param {string} $function - The timing function (default is var(--animation-default)).
 * @return {list} - The resulting transition list.
 */
/**
 * Mixin to create a custom animation transition list.
 *
 * @param {list} $statements - A list of animation properties.
 * @param {string} $duration - The animation duration (optional).
 * @param {string} $function - The timing function (optional).
 *
 * @example
 * .example {
 *   @include animation-default-mixin(opacity, transform);
 * }
 */
.statistic__information {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f0e4d4 !important;
  border-radius: 20px;
  max-height: 400px;
}
.statistic__information__text {
  width: 50%;
}

.statistic__section__title {
  text-align: center;
  color: black;
}

.statistic__section {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.statistic__title__month {
  text-align: center;
  font-size: 24px;
}

#donutChart {
  width: 50% !important;
  height: 175px !important;
  aspect-ratio: 1 !important;
}

.statistic__dashboard {
  display: flex;
}

.statistic__like_alcohols {
  padding: 1em;
  display: flex;
  justify-content: space-between;
}
.statistic__like_alcohols p {
  font-size: 17px;
  color: #333;
  margin: 12px 0;
  line-height: 1.6;
  border-left: 2.5px solid #ff8a1f;
  padding-left: 0.3em;
  height: -webkit-fit-content;
}
.statistic__favorite_alcohol {
  width: 33.3333333333%;
  height: 100%;
}

.group__button__days {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0.5em;
}

.group__button_day {
  height: 40px;
  background-color: #ff8a1f;
  aspect-ratio: 1;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.group__button_day:hover {
  background-color: #ce6f16;
}
.group__button_day:hover__svg {
  background-color: rgb(214, 214, 214) !important;
}
.group__button_day__svg {
  height: 70% !important;
  width: auto !important;
  aspect-ratio: 1;
}
.group__button_day__svg__left {
  transform: rotate(180deg);
}

.favorite_list_alcohols_icons {
  width: 60%;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 0;
  margin-right: 1em;
  position: relative;
}

.favorite_list_alcohols_icons {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
.favorite_list_alcohols_icons img.statistic__favorite_alcohol {
  width: 33.3333333333%;
  height: 100%;
  margin-left: -15px;
  transition: transform 0.25s ease, z-index 0.25s ease;
}
.favorite_list_alcohols_icons img.statistic__favorite_alcohol:hover {
  transform: translateY(-5px);
  z-index: 2;
}
.favorite_list_alcohols_icons img.statistic__favorite_alcohol:first-child {
  margin-left: 0;
}
