@charset "UTF-8";
/* stylelint-disable no-invalid-position-at-import-rule */
:root {
  --base-size: 1vw;
  --tr: 0.3s;
  --tr-regular: all var(--tr) ease;
  --p-container: 1.5rem;
  --w-container: 125rem;
  --tr-jolly-enter: cubic-bezier(0.5, 0, 0.5, 1);
  --gap: 3rem;
  --fz-regular: 2.4rem;
  --fw-regular: 500;
  --fz-title: 4rem;
  --fw-title: 900;
}
@media (max-width: 991px) {
  :root {
    --p-container: 2.4rem;
  }
}
@media (max-width: 575px) {
  :root {
    --p-container: 1rem;
  }
}
@media (max-width: 991px) {
  :root {
    --w-container: 100%;
  }
}
@media (max-width: 991px) {
  :root {
    --fz-title: 3.2rem;
  }
}

:root {
  --fg-regular: #000;
  --gradient-bg: linear-gradient(180deg, #fdc527 0%, #f90 100%);
  --fg-link-regular: #000;
  --fg-link-secondary: #1E7E1C;
  --fg-white: #fff;
  --fg-red: #FF0000;
  --fg-green: #1E7E1C;
  --fg-button-primary: #fff;
  --bg-button-primary: #FF0000;
  --bg-button-primary-hover: #c80707;
  --fg-button-primary-color: var(--fg-button-primary);
  --bg-overlay-visible: rgba(0, 0, 0, 0.5);
  /*--fg-button-secondary: #AFDC09;

  --fg-button-primary: #0F100C;
  --bg-button-primary: #CBED4E;
  --bg-button-primary-hover: #D9F280;
  --bg-button-primary-click: #AFDC09;

  --current-svg-color: #0F100C;*/
  --fg-input-border: #EAEAEA;
  --bg-input-bg: var(--fg-input-border);
  --fg-input-placeholder: #AAAAAA;
  --fg-input-error-border: #FF482F;
  --fg-input-error-placeholder: var(--fg-input-error-border);
}

/* stylelint-disable scss/operator-no-newline-after */
/*
  Подключает шфрит
  @include font('Inter', normal, 400, '../resources/fonts/Inter/Inter-Regular');
 */
/*
  Создает грид
 */
/*
  Делает маску из svg
 */
/*

  SCSS ONLY MIXINS

 */
/*
  Генерирует цвет по указанной яркости
*/
/*
  Создать цвет rgba из hex
*/
/*
 Кастомизирует скроллбар
*/
/*
    1. Use a more-intuitive box-sizing model.
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

/*
    2. Remove default margin
 */
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
}

/*
    3. Allow percentage-based heights in the application
*/
html,
body {
  width: 100%;
  height: 100%;
}

/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
 */
body {
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button:active {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}

button {
  color: inherit;
  cursor: pointer;
  background: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: inherit;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
  list-style-position: inside;
}

ol li {
  list-style-position: inside;
}

/*
    6. Improve media defaults
 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img,
svg {
  object-fit: contain;
}

/*
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
*/
/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url("../resources/fonts/raleway/Raleway-Thin.woff2") format("woff2"), url("../resources/fonts/raleway/Raleway-Thin.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url("../resources/fonts/raleway/Raleway-ExtraLight.woff2") format("woff2"), url("../resources/fonts/raleway/Raleway-ExtraLight.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url("../resources/fonts/raleway/Raleway-Regular.woff2") format("woff2"), url("../resources/fonts/raleway/Raleway-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url("../resources/fonts/raleway/Raleway-Medium.woff2") format("woff2"), url("../resources/fonts/raleway/Raleway-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url("../resources/fonts/raleway/Raleway-Bold.woff2") format("woff2"), url("../resources/fonts/raleway/Raleway-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url("../resources/fonts/raleway/Raleway-ExtraBold.woff2") format("woff2"), url("../resources/fonts/raleway/Raleway-ExtraBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url("../resources/fonts/raleway/Raleway-Black.woff2") format("woff2"), url("../resources/fonts/raleway/Raleway-Black.woff") format("woff");
  font-display: swap;
}
html {
  overscroll-behavior: none;
  --fz-modifier: 0.520834;
  font-size: calc(var(--fz-modifier) * var(--base-size));
}
@media (max-width: 991px) {
  html {
    --fz-modifier: 1.323894;
  }
}
@media (max-width: 575px) {
  html {
    --fz-modifier: 2.299999;
  }
}

:root {
  --ff-regular: "Raleway", sans-serif;
}

body {
  font-weight: 500;
  color: var(--fg-regular);
  font-family: var(--ff-regular);
  font-size: var(--fz-regular);
  line-height: 1.3;
}

body._lock {
  overflow: hidden;
  touch-action: none;
}

.container {
  max-width: calc(var(--w-container) + 2 * var(--p-container));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--p-container);
  padding-right: var(--p-container);
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}
@media (max-width: 575px) {
  .wrapper {
    overflow: hidden;
  }
}

.item--center {
  position: relative;
}

.item--center > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

p {
  font-size: var(--fz-regular);
}

a,
button {
  transition: var(--tr-regular);
}

@media (any-hover: hover) {
  a:hover {
    color: var(--fg-link-hover-primary);
  }
}

.section--gradient {
  position: relative;
  margin-top: -5.6rem;
}
.section--gradient:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section.lays/bg-yellow.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
}
@media (max-width: 575px) {
  .section--gradient:after {
    background-image: url("../img/section.lays/bg-yellow-mobile.png");
  }
}
.section--gradient .container {
  position: relative;
  z-index: 15;
}
@media (max-width: 575px) {
  .section--gradient {
    margin-top: -3.6rem;
  }
}

.b_modal__closer {
  display: none !important;
}

.not__found {
  text-align: center;
}

:root {
  --tr-jolly-enter: cubic-bezier(0.5, 0, 0.5, 1);
  --tr-jolly-leave: cubic-bezier(0.5, 0, 0.5, 1);
  --c-b_modal-closer-hover: #ff3b30;
  --z-b_modal: 1234567890;
  --bg-overlay: rgba(0, 0, 0, 0);
  --bg-overlay-visible: rgba(0, 0, 0, 0.8);
  --bg-b_modal-closer: rgba(222,222,222, 0.5);
}

.b_modal__storage {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-b_modal);
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.b_modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--bg-overlay);
  transition: all 0.5s var(--tr-jolly-leave);
}

.b_modal__overlay._show {
  pointer-events: initial;
  background-color: var(--bg-overlay-visible);
  transition: all 0.5s var(--tr-jolly-enter);
}

.b_modal__aligner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1em;
}

.b_modal__content {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  transition: all 0.3s ease;
  transition: all 0.5s var(--tr-jolly-enter);
  transform: scale(0.86);
}

.b_modal {
  transition: var(--tr-regular);
  opacity: 0;
  transform: translateY(25rem) scale(0.8);
  transition: all 0.5s var(--tr-jolly-leave), opacity 0.3s var(--tr-jolly-leave);
}

._show .b_modal {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: all 0.5s var(--tr-jolly-enter), opacity 0.3s var(--tr-jolly-leave);
}

.b_modal__closer {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: block;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.4rem;
  color: transparent;
  transition: all 0.3s ease;
  background-color: var(--bg-b_modal-closer);
  border-radius: 1rem;
  transform: scale(0);
}

._show .b_modal__closer {
  transform: scale(1);
}

.b_modal__closer::before,
.b_modal__closer::after {
  --closer-color: rgba(0,0,0, 1);
  content: "";
  position: absolute;
  top: 44%;
  right: 0;
  left: 0;
  display: block;
  width: 80%;
  height: 13%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 1em;
  background-color: var(--closer-color);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .b_modal__closer::before,
  .b_modal__closer::after {
    top: 46%;
    width: 70%;
  }
}

.b_modal__closer::before {
  transform: rotate(45deg);
}

.b_modal__closer::after {
  transform: rotate(-45deg);
}

@media (any-hover: hover) {
  .b_modal__closer:hover::before,
  .b_modal__closer:hover::after {
    --closer-color: var(--c-b_modal-closer-hover);
  }
}

.b_modal--scrollable {
  padding-bottom: 0;
}

.b_modal--scrollable._show .b_modal__aligner {
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
}

.b_modal--slide-left {
  transform: translateX(100%);
  opacity: 1;
}

._show .b_modal--slide-left {
  transform: translateX(0);
}

.bayan {
  overflow: hidden;
  transition: all 0.4s;
  --toggler-line-width: 100%;
  --toggler-line-height: 0.4rem;
  --closer-width: 3rem;
  --closer-height: 3rem;
}
@media (max-width: 991px) {
  .bayan {
    --closer-width: 1.6rem;
    --closer-height: 1.6rem;
    --toggler-line-height: 0.2rem;
  }
}

.bayan__top {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.bayan__bottom {
  transition: all 0.4s;
  opacity: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  grid-template-rows: 0fr;
  display: grid;
}

.bayan__bottom > * {
  min-height: 0;
  transition: var(--tr-regular);
}

.bayan:not(.bayan--opened) .bayan__bottom > * {
  padding-top: 0;
  padding-bottom: 0;
}

.bayan__bottom--absolute {
  position: absolute;
}

.bayan--opened > .bayan__bottom {
  opacity: 1;
  grid-template-rows: 1fr;
}

.bayan__toggler {
  position: relative;
  width: var(--closer-width, 3rem);
  min-width: var(--closer-width, 3rem);
  height: var(--closer-height, 3rem);
  transition: var(--tr);
  transform-origin: center;
}

.bayan__toggler:before,
.bayan__toggler:after {
  content: "";
  position: relative;
  top: 50%;
  left: 50%;
  display: block;
  background: var(--toggler-color, #000);
  transition: var(--tr);
  border-radius: 2rem;
}

.bayan__toggler:before {
  width: var(--toggler-line-width, 40%);
  min-width: var(--toggler-line-width, 40%);
  height: var(--toggler-line-height, 0.2rem);
}

.bayan__toggler:after {
  width: var(--toggler-line-height, 0.2rem);
  min-width: var(--toggler-line-height, 0.2rem);
  height: var(--toggler-line-width, 40%);
}

.bayan__toggler:before {
  transform: translate(-50%, -50%);
}

.bayan__toggler:after {
  transform: translate(-50%, -60%);
}

.bayan--opened .bayan__toggler:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bayan--opened .bayan__toggler:after {
  transform: translate(-50%, -60%) rotate(45deg);
}

.bayan--closer-minus.bayan--opened .bayan__toggler:before {
  transform: translate(-50%, -50%);
}

.bayan--closer-minus.bayan--opened .bayan__toggler:after {
  transform: translate(-50%, -62%) rotate(90deg);
}

.bayan--toggler-triangle .bayan__toggler {
  transform-origin: center;
}

.bayan--toggler-triangle .bayan__toggler::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 1.4rem 0 1.4rem;
  border-color: #000 transparent transparent transparent;
  transform: none;
  background: transparent;
}
@media (max-width: 413px) {
  .bayan--toggler-triangle .bayan__toggler::before {
    border-width: 1.5rem 0.9rem 0px 0.9rem;
  }
}

.bayan--toggler-triangle .bayan__toggler::after {
  display: none;
}

.bayan--opened > .bayan__top .bayan__toggler {
  transform: rotate(180deg);
}

.bayan--toggler-triangle .bayan--opened .bayan__toggler::before {
  top: 0.7rem;
}
@media (max-width: 449px) {
  .bayan--toggler-triangle .bayan--opened .bayan__toggler::before {
    top: -1.3rem;
  }
}
@media (max-width: 413px) {
  .bayan--toggler-triangle .bayan--opened .bayan__toggler::before {
    left: 1.4rem;
    top: 2.2rem;
  }
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month { /*
/*rtl:begin:ignore*/
  left: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month { /*
/*rtl:begin:ignore*/
  right: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.header {
  padding: 1.2rem 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  transition: var(--tr-regular);
}
.header._fixed {
  background-color: rgba(255, 255, 255, .8);
  backdrop-filter: blur(20px);
  padding: 0.9rem 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 160rem;
}

.header__conditions {
  font-size: 2rem;
  font-weight: 900;
  color: var(--fg-link-secondary);
  text-transform: uppercase;
  text-decoration: underline !important;
}

.header__contacts {
  display: flex;
  align-items: center;
  padding: 1.7rem 0 1.7rem 3.2rem;
  background-color: var(--fg-red);
  font-size: 1.6rem;
  --border-radius: 3.5rem;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  position: relative;
}
.header__contacts:after {
  content: "";
  position: absolute;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--fg-red);
}
@media (max-width: 991px) {
  .header__contacts {
    font-size: 1.2rem;
  }
}

.header__contacts-link {
  margin-right: 2.2rem;
  font-size: 1.6rem;
  color: var(--fg-white);
  font-weight: 700;
}
.header__contacts-link:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .header__contacts-link {
    font-size: 1.2rem;
    margin-right: 0.8rem;
  }
}

.header__cabinet {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border-radius: 2.2rem;
  border: 0.2rem solid var(--fg-white);
  color: var(--fg-white);
  font-size: var(--fz-secondary);
  font-weight: 700;
}
@media (max-width: 575px) {
  .header__cabinet {
    display: none;
  }
}
.header__cabinet svg {
  margin-right: 0.5rem;
}
.header__cabinet path {
  transition: var(--tr-regular);
}
@media (any-hover: hover) {
  .header__cabinet:hover {
    background-color: var(--fg-white);
    color: var(--fg-regular);
  }
  .header__cabinet:hover path {
    fill: var(--fg-regular);
  }
}
@media (max-width: 991px) {
  .header__cabinet {
    padding: 0;
    border: none;
  }
}

.header__logo svg {
  width: 3.4rem;
  height: 3.4rem;
}

@media (max-width: 991px) {
  .header__menu {
    display: none !important;
  }
}
.header__logout {
  margin-left: 3rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .header__logout {
    margin-left: 0.8rem;
    margin-top: 0;
  }
}

@media (max-width: 601px) {
	.header__logout {
		display: none;
	}

	.mobile-menu .header__logout {
		display: block;
		font-size: 2rem;
		margin-bottom: 2rem;
		margin-left: 0;
	}
}

.burger {
  display: none;
  margin-left: 1rem;
}
@media (max-width: 991px) {
  .burger {
    display: block;
  }
}

.burger__line {
  display: block;
  width: 2rem;
  height: 0.2rem;
  background: var(--fg-white);
  margin-bottom: 0.3rem;
}
.burger__line:last-child {
  margin-bottom: 0;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 6.4rem;
  background-color: var(--fg-red);
  padding: 3.3rem;
  z-index: 99;
  --border-radius: 3.5rem;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  transform: translateX(115%);
  opacity: 0;
  transition: all 0.5s var(--tr-jolly-enter);
  overflow-y: auto;
}
.mobile-menu._active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu__menu {
  display: block !important;
}

.mobile-menu__menu .menu__item:not(:last-child) {
  margin-right: 0;
  margin-bottom: 2.2rem;
}

.mobile-menu__menu .menu__link {
  color: var(--fg-white);
  font-size: 1.6rem;
}

@media (max-width: 575px) {
  .header__call {
    display: none;
  }
}

.mobile-menu__call {
  display: none;
}
@media (max-width: 575px) {
  .mobile-menu__call {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
}

.mobile-menu__cabinet {
  display: none;
}
@media (max-width: 575px) {
  .mobile-menu__cabinet {
    display: flex;
    border: 0.2rem solid var(--fg-white);
    color: var(--fg-white);
    font-size: 1.6rem;
    padding: 0.7rem 1.4rem;
    margin-bottom: 1.5rem;
  }
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu__item:not(:last-child) {
  margin-right: 3.3rem;
}

.menu__item:not(.menu-item-type-custom).current-menu-item .menu__link {
  color: #1E7E1C;
  text-decoration: underline;
}

.menu__link {
  display: block;
  color: var(--fg-regular);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.8rem;
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: var(--fg-green);
  }
}

.menu__rules {
  --margin-right: 14rem;
  margin-right: var(--margin-right) !important;
}
@media (max-width: 1599px) {
  .menu__rules {
    --margin-right: 14rem;
  }
}

.btn {
  background: var(--bg-button-primary);
  color: var(--fg-button-primary);
  display: inline-block;
  padding: 2.1rem 0 2.2rem;
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 100%;
  width: 46.7rem;
  text-align: center;
  border-radius: 1.6rem;
  position: relative;
}
.btn._loader:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin-left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../img/icons.lays/icon-loader.svg") center center no-repeat;
  background-size: contain;
  opacity: 0;
  transition: var(--tr-regular);
}
.btn._loader._loading:after {
  opacity: 1;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.7;
}
@media (any-hover: hover) {
  .btn:hover:not(:disabled) {
    background-color: var(--bg-button-primary-hover);
    color: var(--fg-button-primary-color);
  }
}
@media (max-width: 575px) {
  .btn {
    padding: 0.8rem 0;
    font-size: 2rem;
    width: 26.4rem;
  }
}

.steps-item {
  padding: 4.8rem 1.2rem 7.4rem;
  border-radius: 2.7rem;
  text-align: center;
  color: var(--fg-white);
  background: radial-gradient(58.5% 58.5% at 53.18% 41.5%, rgb(30, 126, 28) 0%, rgb(2, 97, 0) 100%);
  min-height: 41rem;
  position: relative;
  z-index: 5;
}
.steps-item:after {
  content: "";
  position: absolute;
  top: 50%;
  --w-icon: 1.8rem;
  left: calc(100% + var(--column-gap) / 2 - var(--w-icon) / 2);
  transform: translate(0, -50%);
  width: var(--w-icon);
  height: 3.6rem;
  background: url("../img/icons.lays/icon-steps.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 575px) {
  .steps-item:after {
    --width-icon: .9rem;
    height: 1.8rem;
  }
}
@media (min-width: 992px) {
  .steps-item:nth-child(3n+3):after {
    display: none;
  }
}
@media (max-width: 991px) {
  .steps-item:nth-child(2n+2):after {
    display: none;
  }
}
@media (max-width: 575px) {
  .steps-item {
    min-height: 24.2rem;
    padding: 0.8rem 0.3rem 3.4rem;
  }
}
.steps-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/steps.lays/bg.png") center center no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 2.7rem;
}

.steps-item__count {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.2rem solid var(--fg-white);
}
@media (max-width: 575px) {
  .steps-item__count {
    font-size: 2.4rem;
    padding-bottom: 0.7rem;
    margin-bottom: 0.747rem;
    line-height: normal;
  }
}

.steps-item__text {
  font-size: 2rem;
  line-height: 100%;
}
.steps-item__text span {
  display: block;
  font-size: 1.1rem;
}
.steps-item__text a {
  color: #FDC527;
  text-decoration: underline;
}
.steps-item__text strong {
  font-weight: 900;
}
@media (max-width: 575px) {
  .steps-item__text {
    font-size: 1.3rem;
  }
}

.steps-item__icon {
  position: absolute;
  left: 50%;
  bottom: 7.4rem;
  transform: translate(-50%, 0);
  width: 10.4rem;
  height: 10.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .steps-item__icon {
    width: 5.2rem;
    height: 5.2rem;
    bottom: 5.4rem;
  }
}

.block__title {
  text-align: center;
  margin-bottom: 6.8rem;
  font-size: 6.4rem;
  font-weight: 900;
  line-height: normal;
}
@media (max-width: 991px) {
  .block__title {
    margin-bottom: 5rem;
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .block__title {
    font-size: 2.7rem;
    margin-bottom: 1.8rem;
  }
}

.select {
  position: relative;
}

.select__result {
  cursor: pointer;
  text-align: center;
  font-size: 2.4rem;
  height: 6.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--fg-white);
  font-weight: 400;
  color: #020202;
  border-radius: 1rem;
  transition: var(--tr-regular);
  border: 0.1rem solid var(--fg-white);
}
.select__result > svg {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--tr-regular);
}
@media (max-width: 991px) {
  .select__result {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .select__result {
    font-size: 1.6rem;
    height: 3.5rem;
    border-radius: 0.5rem;
  }
  .select__result > svg {
    width: 1.5rem;
    height: 0.774rem;
  }
}

.select._error .select__result {
  border-color: var(--fg-red);
}

.select._active .select__result {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: var(--fg-regular);
}
.select._active .select__result > svg {
  transform: translate(0, -50%) rotate(-180deg);
}

.select__list {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: var(--fg-white);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding: 2.1rem 2.3rem 3.6rem;
  opacity: 0;
  transform: translateY(-100%);
  transition: var(--tr-regular);
  z-index: -1;
}

.select__item {
  cursor: pointer;
  transition: var(--tr-regular);
}
.select__item._active, .select__item:hover {
  opacity: 0.5;
}

.select._active .select__list {
  opacity: 1;
  transform: translateY(0);
  z-index: 99;
}

.select__list-content {
  max-height: 55.8rem;
  overflow-y: auto;
}
.select__list-content::-webkit-scrollbar {
  width: 1.3rem;
}
.select__list-content::-webkit-scrollbar-track {
  border: 0.1rem solid var(--fg-regular);
  border-radius: 0.9rem;
}
.select__list-content::-webkit-scrollbar-thumb {
  background-color: rgb(254, 182, 26);
  border-radius: 0.9rem;
  border: 0.1rem solid var(--fg-regular);
}

.select__item {
  display: block;
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  border: none;
  background: none;
  text-align: center;
  width: 100%;
}
.select__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .select__item {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .select__item {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.select._left .select__result {
  justify-content: flex-start;
  padding-left: 5.7rem;
  text-align: left;
}
@media (max-width: 575px) {
  .select._left .select__result {
    padding-left: 2rem !important;
  }
}

.footer {
  padding: 2.7rem 0 7.4rem;
  background: linear-gradient(180deg, #fdc325 0%, #fe9418 100%);
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .footer {
    padding-bottom: 4.5rem;
  }
}

.footer__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 127.4rem;
}
@media (max-width: 991px) {
  .footer__container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

.footer__logos-img {
  max-width: 47.1rem;
}
@media (max-width: 575px) {
  .footer__logos-img {
    max-width: 100%;
  }
}

.footer__phone {
  font-weight: 700;
  margin-top: 2.7rem;
}
@media (max-width: 575px) {
  .footer__phone {
    margin-top: 1.7rem;
    margin-bottom: 2.4rem;
  }
  .footer__phone span {
    display: block;
  }
}

.footer__text {
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .footer__text {
    font-size: 1.2rem;
  }
}

.footer__right {
  max-width: 66.8rem;
}

.footer__links {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.footer__links a:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 575px) {
  .footer__links a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 575px) {
  .footer__links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.form__row {
  margin-bottom: 2.9rem;
  position: relative;
}
.form__row._center {
  text-align: center;
}
.form__row._center .form__input {
  text-align: center;
}
.form__row._13 {
  margin-bottom: 1.3rem;
}
@media (max-width: 991px) {
  .form__row {
    margin-bottom: 1.3rem;
  }
}
@media (max-width: 575px) {
  .form__row {
    margin-bottom: 0.7rem !important;
  }
}

.form__input {
  width: 100%;
  height: 7rem;
  background: var(--bg-input-bg);
  border: 0.1rem solid var(--fg-input-border);
  border-radius: 1rem;
  padding: 0 1.5rem;
}
.form__input::placeholder {
  color: var(--fg-input-placeholder);
}
.form__input::-moz-placeholder {
  color: var(--fg-input-placeholder);
}
.form__input._white {
  background: var(--fg-white);
  border-color: var(--fg-white);
}
.form__input._error {
  border-color: var(--fg-red);
}
@media (max-width: 991px) {
  .form__input {
    font-size: 2rem;
    height: 5rem;
  }
}
@media (max-width: 575px) {
  .form__input {
    height: 3.3rem;
    font-size: 1.6rem;
    border-radius: 0.5rem;
  }
}

textarea.form__input {
  resize: none;
  height: 15rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.form__label {
  display: block;
  margin-bottom: 1.4rem;
  color: #020202;
  font-weight: 500;
  font-size: 2.4rem;
}
.form__label._28 {
  margin-bottom: 2.8rem;
}
@media (max-width: 991px) {
  .form__label {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .form__label {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1rem !important;
  }
}

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

.form__grid {
  display: grid;
}
.form__grid._3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.7rem;
}
.form__grid._2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .form__grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

.form__checkboxes {
  margin-top: 3.3rem;
}

.form__checkbox {
  position: relative;
  margin-bottom: 2.1rem;
}
.form__checkbox:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .form__checkbox {
    margin-bottom: 1.1rem;
  }
}

.form__checkbox + .form__error {
  display: none;
}

.form__checkbox._error .form__checkbox-icon {
  border-color: var(--fg-red);
}

.form__checkbox-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

.form__checkbox-label {
  display: block;
  color: #020202;
  padding-left: 4.6rem;
}
.form__checkbox-label a {
  color: #020202;
  text-decoration: underline;
  position: relative;
  z-index: 15;
}
@media (max-width: 991px) {
  .form__checkbox-label {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .form__checkbox-label {
    font-size: 1.3rem;
    padding-left: 2.5rem;
  }
}

.form__checkbox-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.3rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: #EAEAEA;
  border: 0.1rem solid #EAEAEA;
}
.form__checkbox-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  transition: var(--tr-regular);
  opacity: 0;
}
@media (max-width: 575px) {
  .form__checkbox-icon svg {
    width: 1rem;
    height: 1rem;
  }
}
.form__checkbox-icon path {
  fill: var(--fg-green);
}
@media (max-width: 575px) {
  .form__checkbox-icon {
    width: 2rem;
    height: 2rem;
  }
}

.form__checkbox-input:checked + .form__checkbox-icon svg {
  opacity: 1;
}

.form__error {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: var(--fg-red);
}

.flatpickr-input {
  width: 100% !important;
}

/*
 * This combined file was created by the DataTables downloader builder:
 *   https://datatables.net/download
 *
 * To rebuild or modify this file with the latest versions of the included
 * software please visit:
 *   https://datatables.net/download/#dt/dt-2.1.2/sc-2.4.3/sl-2.0.3
 *
 * Included libraries:
 *   DataTables 2.1.2, Scroller 2.4.3, Select 2.0.3
 */
:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
  --dt-row-stripe: 0, 0, 0;
  --dt-row-hover: 0, 0, 0;
  --dt-column-ordering: 0, 0, 0;
  --dt-html-background: white;
}

:root.dark {
  --dt-html-background: rgb(33, 37, 41);
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}

table.dataTable td.dt-control:before {
  display: inline-block;
  box-sizing: border-box;
  content: "";
  border-top: 5px solid transparent;
  border-left: 10px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid transparent;
  border-right: 0px solid transparent;
}

table.dataTable tr.dt-hasChild td.dt-control:before {
  border-top: 10px solid rgba(0, 0, 0, 0.5);
  border-left: 5px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 5px solid transparent;
}

html.dark table.dataTable td.dt-control:before, :root[data-bs-theme=dark] table.dataTable td.dt-control:before, :root[data-theme=dark] table.dataTable td.dt-control:before {
  border-left-color: rgba(255, 255, 255, 0.5);
}

html.dark table.dataTable tr.dt-hasChild td.dt-control:before, :root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before, :root[data-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
  border-top-color: rgba(255, 255, 255, 0.5);
  border-left-color: transparent;
}

div.dt-scroll {
  width: 100%;
}

div.dt-scroll-body thead tr, div.dt-scroll-body tfoot tr {
  height: 0;
}

div.dt-scroll-body thead tr th, div.dt-scroll-body thead tr td, div.dt-scroll-body tfoot tr th, div.dt-scroll-body tfoot tr td {
  height: 0 !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border-top-width: 0px !important;
  border-bottom-width: 0px !important;
}

div.dt-scroll-body thead tr th div.dt-scroll-sizing, div.dt-scroll-body thead tr td div.dt-scroll-sizing, div.dt-scroll-body tfoot tr th div.dt-scroll-sizing, div.dt-scroll-body tfoot tr td div.dt-scroll-sizing {
  height: 0 !important;
  overflow: hidden !important;
}

table.dataTable thead > tr > th:active, table.dataTable thead > tr > td:active {
  outline: none;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
  position: absolute;
  display: block;
  bottom: 50%;
  content: "▲";
  content: "▲"/"";
}

table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  position: absolute;
  display: block;
  top: 50%;
  content: "▼";
  content: "▼"/"";
}

table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > th.dt-ordering-asc, table.dataTable thead > tr > th.dt-ordering-desc, table.dataTable thead > tr > td.dt-orderable-asc, table.dataTable thead > tr > td.dt-orderable-desc, table.dataTable thead > tr > td.dt-ordering-asc, table.dataTable thead > tr > td.dt-ordering-desc {
  position: relative;
  padding-right: 30px;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 12px;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  left: 0;
  opacity: 0.125;
  line-height: 9px;
  font-size: 0.8em;
}

table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > td.dt-orderable-asc, table.dataTable thead > tr > td.dt-orderable-desc {
  cursor: pointer;
}

table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover, table.dataTable thead > tr > td.dt-orderable-asc:hover, table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: 2px solid rgba(0, 0, 0, 0.05);
  outline-offset: -2px;
}

table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  opacity: 0.6;
}

table.dataTable thead > tr > th.sorting_desc_disabled span.dt-column-order:after, table.dataTable thead > tr > th.sorting_asc_disabled span.dt-column-order:before, table.dataTable thead > tr > td.sorting_desc_disabled span.dt-column-order:after, table.dataTable thead > tr > td.sorting_asc_disabled span.dt-column-order:before {
  display: none;
}

table.dataTable thead > tr > th:active, table.dataTable thead > tr > td:active {
  outline: none;
}

div.dt-scroll-body > table.dataTable > thead > tr > th, div.dt-scroll-body > table.dataTable > thead > tr > td {
  overflow: hidden;
}

:root.dark table.dataTable thead > tr > th.dt-orderable-asc:hover, :root.dark table.dataTable thead > tr > th.dt-orderable-desc:hover, :root.dark table.dataTable thead > tr > td.dt-orderable-asc:hover, :root.dark table.dataTable thead > tr > td.dt-orderable-desc:hover, :root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-asc:hover, :root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-desc:hover, :root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-asc:hover, :root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: 2px solid rgba(255, 255, 255, 0.05);
}

div.dt-processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -22px;
  text-align: center;
  padding: 2px;
  z-index: 10;
}

div.dt-processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}

div.dt-processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(13, 110, 253);
  background: rgb(var(--dt-row-selected));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

div.dt-processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}

div.dt-processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dt-processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dt-processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable th, table.dataTable td {
  box-sizing: border-box;
}

table.dataTable th.dt-left, table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable th.dt-center, table.dataTable td.dt-center {
  text-align: center;
}

table.dataTable th.dt-right, table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable th.dt-justify, table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable th.dt-nowrap, table.dataTable td.dt-nowrap {
  white-space: nowrap;
}

table.dataTable th.dt-empty, table.dataTable td.dt-empty {
  text-align: center;
  vertical-align: top;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
  text-align: right;
}

table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
  text-align: left;
}

table.dataTable thead th.dt-head-left, table.dataTable thead td.dt-head-left, table.dataTable tfoot th.dt-head-left, table.dataTable tfoot td.dt-head-left {
  text-align: left;
}

table.dataTable thead th.dt-head-center, table.dataTable thead td.dt-head-center, table.dataTable tfoot th.dt-head-center, table.dataTable tfoot td.dt-head-center {
  text-align: center;
}

table.dataTable thead th.dt-head-right, table.dataTable thead td.dt-head-right, table.dataTable tfoot th.dt-head-right, table.dataTable tfoot td.dt-head-right {
  text-align: right;
}

table.dataTable thead th.dt-head-justify, table.dataTable thead td.dt-head-justify, table.dataTable tfoot th.dt-head-justify, table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}

table.dataTable thead th.dt-head-nowrap, table.dataTable thead td.dt-head-nowrap, table.dataTable tfoot th.dt-head-nowrap, table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}

table.dataTable tbody th.dt-body-left, table.dataTable tbody td.dt-body-left {
  text-align: left;
}

table.dataTable tbody th.dt-body-center, table.dataTable tbody td.dt-body-center {
  text-align: center;
}

table.dataTable tbody th.dt-body-right, table.dataTable tbody td.dt-body-right {
  text-align: right;
}

table.dataTable tbody th.dt-body-justify, table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap, table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable {
  width: 100%;
  margin: 0 auto;
  border-spacing: 0;
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: bold;
}

table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable > thead > tr > th:active, table.dataTable > thead > tr > td:active {
  outline: none;
}

table.dataTable > tfoot > tr > th, table.dataTable > tfoot > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 10px 10px 6px 10px;
}

table.dataTable > tbody > tr {
  background-color: transparent;
}

table.dataTable > tbody > tr:first-child > * {
  border-top: none;
}

table.dataTable > tbody > tr:last-child > * {
  border-bottom: none;
}

table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: rgb(255, 255, 255);
  color: rgb(var(--dt-row-selected-text));
}

table.dataTable > tbody > tr.selected a {
  color: rgb(9, 10, 11);
  color: rgb(var(--dt-row-selected-link));
}

table.dataTable > tbody > tr > th, table.dataTable > tbody > tr > td {
  padding: 8px 10px;
}

table.dataTable.row-border > tbody > tr > *, table.dataTable.display > tbody > tr > * {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.row-border > tbody > tr:first-child > *, table.dataTable.display > tbody > tr:first-child > * {
  border-top: none;
}

table.dataTable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}

table.dataTable.cell-border > tbody > tr > * {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.cell-border > tbody > tr > *:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.cell-border > tbody > tr:first-child > * {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable.stripe > tbody > tr:nth-child(odd) > *, table.dataTable.display > tbody > tr:nth-child(odd) > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}

table.dataTable.stripe > tbody > tr:nth-child(odd).selected > *, table.dataTable.display > tbody > tr:nth-child(odd).selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
}

table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
}

table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #0d6efd !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
}

table.dataTable.order-column > tbody tr > .sorting_1, table.dataTable.order-column > tbody tr > .sorting_2, table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1, table.dataTable.display > tbody tr > .sorting_2, table.dataTable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}

table.dataTable.order-column > tbody tr.selected > .sorting_1, table.dataTable.order-column > tbody tr.selected > .sorting_2, table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1, table.dataTable.display > tbody tr.selected > .sorting_2, table.dataTable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_2, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_3, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
}

table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
}

table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
}

table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
}

table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}

table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.011);
}

table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.003);
}

table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}

table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
}

table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
}

table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
}

table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
}

table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
}

table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
}

table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
}

table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
}

table.dataTable.compact thead th, table.dataTable.compact thead td, table.dataTable.compact tfoot th, table.dataTable.compact tfoot td, table.dataTable.compact tbody th, table.dataTable.compact tbody td {
  padding: 4px;
}

div.dt-container div.dt-layout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0.75em 0;
}

div.dt-container div.dt-layout-row div.dt-layout-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-start {
  justify-content: flex-start;
  margin-right: auto;
}

div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-end {
  justify-content: flex-end;
  margin-left: auto;
}

div.dt-container div.dt-layout-row div.dt-layout-cell:empty {
  display: none;
}

@media screen and (max-width: 767px) {
  div.dt-container div.dt-layout-row:not(.dt-layout-table) {
    display: block;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell {
    display: block;
    text-align: center;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell > * {
    margin: 0.5em 0;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell.dt-layout-start {
    margin-right: 0;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell.dt-layout-end {
    margin-left: 0;
  }
}
div.dt-container div.dt-layout-start > *:not(:last-child) {
  margin-right: 1em;
}

div.dt-container div.dt-layout-end > *:not(:first-child) {
  margin-left: 1em;
}

div.dt-container div.dt-layout-full {
  width: 100%;
}

div.dt-container div.dt-layout-full > *:only-child {
  margin-left: auto;
  margin-right: auto;
}

div.dt-container div.dt-layout-table > div {
  display: block !important;
}

@media screen and (max-width: 767px) {
  div.dt-container div.dt-layout-start > *:not(:last-child) {
    margin-right: 0;
  }
  div.dt-container div.dt-layout-end > *:not(:first-child) {
    margin-left: 0;
  }
}
div.dt-container {
  position: relative;
  clear: both;
}

div.dt-container .dt-search input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  margin-left: 3px;
}

div.dt-container .dt-input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
}

div.dt-container select.dt-input {
  padding: 4px;
}

div.dt-container .dt-paging .dt-paging-button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}

div.dt-container .dt-paging .dt-paging-button.current, div.dt-container .dt-paging .dt-paging-button.current:hover {
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.05);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05)));
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  background: -o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
}

div.dt-container .dt-paging .dt-paging-button.disabled, div.dt-container .dt-paging .dt-paging-button.disabled:hover, div.dt-container .dt-paging .dt-paging-button.disabled:active {
  cursor: default;
  color: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

div.dt-container .dt-paging .dt-paging-button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #111;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
  background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
  background: -moz-linear-gradient(top, #585858 0%, #111 100%);
  background: -ms-linear-gradient(top, #585858 0%, #111 100%);
  background: -o-linear-gradient(top, #585858 0%, #111 100%);
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
}

div.dt-container .dt-paging .dt-paging-button:active {
  outline: none;
  background-color: #0c0c0c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  box-shadow: inset 0 0 3px #111;
}

div.dt-container .dt-paging .ellipsis {
  padding: 0 1em;
}

div.dt-container .dt-length, div.dt-container .dt-search, div.dt-container .dt-info, div.dt-container .dt-processing, div.dt-container .dt-paging {
  color: inherit;
}

div.dt-container .dataTables_scroll {
  clear: both;
}

div.dt-container .dataTables_scroll div.dt-scroll-body {
  -webkit-overflow-scrolling: touch;
}

div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > th, div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > td, div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > th, div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > td {
  vertical-align: middle;
}

div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > th > div.dataTables_sizing, div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > td > div.dataTables_sizing, div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > th > div.dataTables_sizing, div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

div.dt-container.dt-empty-footer .dt-scroll-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

div.dt-container.dt-empty-footer .dt-scroll-body tbody > tr:last-child > * {
  border-bottom: none;
}

html.dark {
  --dt-row-hover: 255, 255, 255;
  --dt-row-stripe: 255, 255, 255;
  --dt-column-ordering: 255, 255, 255;
}

html.dark table.dataTable > thead > tr > th, html.dark table.dataTable > thead > tr > td {
  border-bottom: 1px solid rgb(89, 91, 94);
}

html.dark table.dataTable > thead > tr > th:active, html.dark table.dataTable > thead > tr > td:active {
  outline: none;
}

html.dark table.dataTable > tfoot > tr > th, html.dark table.dataTable > tfoot > tr > td {
  border-top: 1px solid rgb(89, 91, 94);
}

html.dark table.dataTable.row-border > tbody > tr > *, html.dark table.dataTable.display > tbody > tr > * {
  border-top: 1px solid rgb(64, 67, 70);
}

html.dark table.dataTable.row-border > tbody > tr:first-child > *, html.dark table.dataTable.display > tbody > tr:first-child > * {
  border-top: none;
}

html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td, html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}

html.dark table.dataTable.cell-border > tbody > tr > th, html.dark table.dataTable.cell-border > tbody > tr > td {
  border-top: 1px solid rgb(64, 67, 70);
  border-right: 1px solid rgb(64, 67, 70);
}

html.dark table.dataTable.cell-border > tbody > tr > th:first-child, html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid rgb(64, 67, 70);
}

html.dark .dt-container.dt-empty-footer table.dataTable {
  border-bottom: 1px solid rgb(89, 91, 94);
}

html.dark .dt-container .dt-search input, html.dark .dt-container .dt-length select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--dt-html-background);
}

html.dark .dt-container .dt-paging .dt-paging-button.current, html.dark .dt-container .dt-paging .dt-paging-button.current:hover {
  border: 1px solid rgb(89, 91, 94);
  background: rgba(255, 255, 255, 0.15);
}

html.dark .dt-container .dt-paging .dt-paging-button.disabled, html.dark .dt-container .dt-paging .dt-paging-button.disabled:hover, html.dark .dt-container .dt-paging .dt-paging-button.disabled:active {
  color: #666 !important;
}

html.dark .dt-container .dt-paging .dt-paging-button:hover {
  border: 1px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
}

html.dark .dt-container .dt-paging .dt-paging-button:active {
  background: #3a3a3a;
}

*[dir=rtl] table.dataTable thead th, *[dir=rtl] table.dataTable thead td, *[dir=rtl] table.dataTable tfoot th, *[dir=rtl] table.dataTable tfoot td {
  text-align: right;
}

*[dir=rtl] table.dataTable th.dt-type-numeric, *[dir=rtl] table.dataTable th.dt-type-date, *[dir=rtl] table.dataTable td.dt-type-numeric, *[dir=rtl] table.dataTable td.dt-type-date {
  text-align: left;
}

*[dir=rtl] div.dt-container div.dt-layout-cell.dt-start {
  text-align: right;
}

*[dir=rtl] div.dt-container div.dt-layout-cell.dt-end {
  text-align: left;
}

*[dir=rtl] div.dt-container div.dt-search input {
  margin: 0 3px 0 0;
}

div.dts {
  display: block !important;
}

div.dts tbody th, div.dts tbody td {
  white-space: nowrap;
}

div.dts div.dts_loading {
  z-index: 1;
}

div.dts div.dts_label {
  position: absolute;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  text-align: right;
  border-radius: 3px;
  padding: 0.4em;
  z-index: 2;
  display: none;
}

div.dts div.dt-scroll-body, div.dts div.dataTables_scrollBody {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 10px, rgba(0, 0, 0, 0) 10px, rgba(0, 0, 0, 0) 20px);
}

div.dts div.dt-scroll-body table, div.dts div.dataTables_scrollBody table {
  background-color: white;
  z-index: 2;
}

div.dts div.dt-length, div.dts div.dt-paging, div.dts div.dataTables_paginate, div.dts div.dataTables_length {
  display: none;
}

html.dark div.dts div.dts_label {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

html.dark div.dts div.dt-scroll-body, html.dark div.dts div.dataTables_scrollBody {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 10px, rgba(255, 255, 255, 0) 10px, rgba(255, 255, 255, 0) 20px);
}

html.dark div.dts div.dt-scroll-body table, html.dark div.dts div.dataTables_scrollBody table {
  background-color: var(--dt-html-background);
  z-index: 2;
}

table.dataTable > tbody > tr > .selected {
  background-color: rgba(13, 110, 253, 0.9);
  color: white;
}

table.dataTable > tbody > tr > .dt-select {
  text-align: center;
  vertical-align: middle;
}

table.dataTable > thead > tr > .dt-select {
  text-align: center;
}

table.dataTable input.dt-select-checkbox {
  appearance: none;
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-radius: 3px;
  vertical-align: middle;
  margin-top: 1px;
  color: inherit;
  font-size: 20px;
  line-height: 1em;
}

table.dataTable input.dt-select-checkbox:checked:after {
  display: block;
  content: "✓";
  margin-top: -8px;
}

table.dataTable input.dt-select-checkbox:indeterminate:after {
  display: block;
  position: absolute;
  content: " ";
  top: 3px;
  left: 3px;
  height: 4px;
  width: 4px;
  background-color: black;
  border-radius: 2px;
}

table.dataTable > tbody > tr.selected input.dt-select-checkbox:checked {
  border: 1px solid;
}

table.dataTable > tbody > tr > td.select-checkbox, table.dataTable > tbody > tr > th.select-checkbox {
  position: relative;
}

table.dataTable > tbody > tr > td.select-checkbox:before, table.dataTable > tbody > tr > th.select-checkbox:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid;
  border-radius: 3px;
}

table.dataTable > tbody > tr.selected > td.select-checkbox:before, table.dataTable > tbody > tr.selected > th.select-checkbox:before {
  border: 1px solid;
  content: "✓";
  font-size: 20px;
  line-height: 6px;
  text-align: center;
}

table.dataTable.compact > tbody > tr > td.select-checkbox:before, table.dataTable.compact > tbody > tr > th.select-checkbox:before {
  margin-top: -12px;
}

table.dataTable.compact > tbody > tr.selected > td.select-checkbox:after, table.dataTable.compact > tbody > tr.selected > th.select-checkbox:after {
  margin-top: -16px;
}

div.dt-container span.select-info, div.dt-container span.select-item {
  margin-left: 0.5em;
}

html.dark table.dataTable input.dt-select-checkbox:indeterminate:after, html[data-bs-theme=dark] table.dataTable input.dt-select-checkbox:indeterminate:after {
  background-color: white;
}

@media screen and (max-width: 640px) {
  div.dt-container span.select-info, div.dt-container span.select-item {
    margin-left: 0;
    display: block;
  }
}
.dt-layout-table {
  padding: 0 7.4rem 2.2rem 7.3rem;
  border: 0.2rem solid var(--fg-regular);
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .dt-layout-table {
    padding: 0 1rem 2.2rem 1rem;
  }
}

@media (max-width: 991px) {
  .dt-layout-table .dt-layout-full {
    overflow-y: auto;
  }
}

.dt-search {
  display: none;
}

.table {
  border-spacing: 0 3rem !important;
  border-collapse: separate;
}
@media (max-width: 991px) {
  .table {
    border-spacing: 0 1.9rem !important;
  }
}

table.dataTable > thead > tr > th {
  text-align: center !important;
  padding: 1.6rem 0.6rem;
}
@media (max-width: 991px) {
  table.dataTable > thead > tr > th {
    min-width: 25rem;
  }
}

table.dataTable > tbody > tr > td {
  text-align: center !important;
  padding: 0.6rem 0.6rem 0.5rem;
  box-shadow: none !important;
  border: none !important;
  margin-bottom: 2rem;
}
table.dataTable > tbody > tr > td:first-child {
  border-radius: 0.4rem 0 0 0.4rem;
}
table.dataTable > tbody > tr > td:last-child {
  border-radius: 0 0.4rem 0.4rem 0;
}

table.dataTable > tbody > tr._active {
  background-color: #1E7E1C;
  color: var(--fg-white);
}

._no-items {
  height: 3.1rem;
}

.dt-paging-button {
  padding: 0 !important;
  border: none !important;
  margin-right: 4.6rem !important;
  background: none !important;
}
.dt-paging-button:nth-last-child(3) {
  margin-right: 0 !important;
}
.dt-paging-button.first, .dt-paging-button.previous, .dt-paging-button.next, .dt-paging-button.last {
  display: none !important;
}

.dt-layout-end {
  justify-content: center !important;
  margin: 1.6rem auto 0 !important;
}

.dt-layout-row:first-child {
  display: none !important;
}

.page__text > * {
  margin-bottom: 2rem;
}
.page__text > *:last-child {
  margin-bottom: 0;
}

.page__text table {
  width: 100%;
}

.page__text table td {
  border: 0.1rem solid var(--bg-overlay-visible);
  padding: 1.5rem;
}

.b_modal__closer {
  display: none !important;
}

.modal__close {
  background: #FDC325;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  position: absolute;
  top: 1.7rem;
  right: 2.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .modal__close {
    width: 2.8rem;
    height: 2.8rem;
    top: 1rem;
    right: 1rem;
  }
}

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

.modal__menu-button {
  font-weight: 700;
  font-size: var(--fz-title);
  text-transform: uppercase;
  color: var(--fg-regular);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  margin-right: 4.7rem;
}
.modal__menu-button svg {
  margin-right: 0.7rem;
}

.modal__menu-button path {
  transition: all .3s;
}

@media (max-width: 575px) {
  .modal__menu-button svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.modal__menu-button:last-child {
  margin-right: 0;
}
.modal__menu-button._active {
  color: var(--fg-green);
}

.modal__menu-button._active path {
  fill: var(--fg-green)
}

@media (max-width: 575px) {
  .modal__menu-button {
    font-size: 2.4rem;
    margin-right: 3.7rem;
  }
}

#recaptcha {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.b_modal__overlay._show {
  backdrop-filter: blur(50px);
}

.datepicker {
  z-index: 1151 !important;
}

.b_modal__storage {
  z-index: 999 !important;
}

.modal-alert {
  border-radius: 3rem;
  background: linear-gradient(180deg, #fdc325 0%, #fe9418 100%);
  padding: 4.9rem 10.4rem 5rem;
  width: 127.7rem;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 575px) {
  .modal-alert {
    padding: 4.8rem 1.1rem 4rem 1.7rem;
    border-radius: 1rem;
  }
}

.modal-alert__logos {
  margin-bottom: 1.3rem;
}

.modal-alert__logos-img {
  margin: 0 auto;
}
@media (max-width: 575px) {
  .modal-alert__logos-img {
    max-width: 27.8rem;
  }
}

.modal-alert__title {
  --fz: 6.4rem;
  font-weight: 900;
  font-size: var(--fz);
  color: #1E7E1C;
  margin-bottom: 0.7rem;
}
.modal-alert__title strong {
  font-size: 9.6rem;
}
@media (max-width: 991px) {
  .modal-alert__title strong {
    font-size: var(--fz);
  }
}
@media (max-width: 991px) {
  .modal-alert__title {
    --fz: 4rem;
  }
}
@media (max-width: 575px) {
  .modal-alert__title {
    --fz: 2.4rem;
  }
}

.modal-alert__subtitle {
  --fz: 6.4rem;
  font-size: var(--fz);
  font-weight: 900;
  max-width: 54.6rem;
  margin: 0 auto;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .modal-alert__subtitle {
    --fz: 3.2rem;
  }
}

.modal-alert__btn {
  margin-top: 3rem;
}

.modal-login {
  border-radius: 3rem;
  width: 99rem;
  max-width: 100%;
  background-color: var(--fg-white);
  padding: 11.7rem 8.6rem 4.8rem;
}
@media (max-width: 575px) {
  .modal-login {
    border-radius: 1rem;
    padding: 7.3rem 0.9rem 5.8rem;
  }
}

.modal-login .form__button {
  margin-top: 6.2rem;
}
@media (max-width: 575px) {
  .modal-login .form__button {
    margin-top: 5.7rem;
  }
}

.modal-login .modal__menu {
  margin-bottom: 7.7rem;
}
@media (max-width: 575px) {
  .modal-login .modal__menu {
    margin-bottom: 4.4rem;
  }
}

.confirm__code-repeat {
  text-align: center;
  font-size: 1.4rem;
  display: none;
}

.confirm__code-repeat__btn {
  color: var(--fg-red);
  text-decoration: underline !important;
}

.modal-register {
  background-color: var(--fg-white);
  border-radius: 3rem;
  width: 140rem;
  max-width: 100%;
  padding: 5.2rem 6.2rem 7.7rem;
}
@media (max-width: 575px) {
  .modal-register {
    padding: 7.3rem 0.9rem 5.7rem;
    border-radius: 1rem;
  }
}

.modal-register__menu {
  margin-bottom: 4.9rem;
}

.modal-register__button {
  position: absolute;
  right: 6.3rem;
  bottom: 7.7rem;
  z-index: 15;
}
@media (max-width: 991px) {
  .modal-register__button {
    position: relative;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}

.modal-register__alert {
  position: absolute;
  bottom: -4.2rem;
  color: var(--fg-white);
  text-align: center;
  left: 0;
  width: 100%;
}

.city__select .select__result {
  background-color: var(--fg-input-border);
  height: 7rem;
}
@media (max-width: 991px) {
  .city__select .select__result {
    height: 5rem;
  }
}
@media (max-width: 575px) {
  .city__select .select__result {
    height: 3.3rem;
    font-size: 1.6rem;
    padding-left: 2rem !important;
  }
}

.city__select .select__list {
  background-color: var(--fg-input-border);
}

.modal-result {
  width: 99rem;
  max-width: 100%;
  background: var(--fg-white);
  padding: 5.3rem 26.2rem 4.8rem;
  border-radius: 3rem;
  color: #020202;
  text-align: center;
}
@media (max-width: 575px) {
  .modal-result {
    border-radius: 1rem;
    padding: 9.4rem 3.7rem 4.9rem;
  }
}

.modal-result__btn {
  margin-top: 1.8rem;
}
@media (max-width: 575px) {
  .modal-result__btn {
    margin-top: 2.7rem;
  }
}

.modal-result__flex {
  min-height: 45rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .modal-result__flex {
    display: block;
    min-height: auto;
  }
}

.modal-result__media {
  margin-bottom: 2.4rem;
}

.modal-result__media-img {
  margin: 0 auto;
}
@media (max-width: 575px) {
  .modal-result__media-img {
    max-width: 10.6rem;
  }
}

.modal-result__title {
  text-transform: uppercase;
  font-size: var(--fz-title);
  font-weight: var(--fw-title);
  margin-bottom: 2.4rem;
}
@media (max-width: 575px) {
  .modal-result__title {
    margin-bottom: 2rem;
  }
  .modal-result__title br {
    display: none;
  }
}

.modal-result__text {
  margin-top: 2.4rem;
}
@media (max-width: 575px) {
  .modal-result__text {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

#modal-open-error .modal-result__text {
  width: 55rem;
  margin: 0 auto;
  max-width: 100%;
}

.modal-callback {
  width: 99rem;
  max-width: 100%;
  background: var(--fg-white);
  padding: 5.3rem 10rem 4.8rem;
  border-radius: 3rem;
  color: #020202;
}
@media (max-width: 575px) {
  .modal-callback {
    border-radius: 1rem;
    padding: 9.4rem 3.7rem 4.9rem;
  }
}

.modal-callback__title {
  text-align: center;
  margin-bottom: 4rem;
}

.profile-header {
  padding: 14.3rem 0 4.8rem;
  position: relative;
  z-index: 5;
  min-height: 32rem;
}
.profile-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero.lays/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 991px) {
  .profile-header:before {
    height: 20rem;
  }
}
@media (max-width: 575px) {
  .profile-header:before {
    background-image: url("../img/profile.lays/bg-mobile.jpg");
  }
}
@media (max-width: 991px) {
  .profile-header {
    padding: 25rem 0 1.4rem;
  }
}

.profile-header__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-title);
  font-weight: var(--fw-title);
  margin: 0 0 2.1rem;
  text-transform: uppercase;
}
.profile-header__title > svg {
  margin-right: 1.5rem;
}
@media (max-width: 991px) {
  .profile-header__title > svg {
    width: 2.1rem;
    height: auto;
  }
}
@media (max-width: 991px) {
  .profile-header__title {
    margin-bottom: 1rem;
  }
}

.profile-header__text {
  text-align: center;
  margin-bottom: 3.4rem;
}
@media (max-width: 991px) {
  .profile-header__text {
    margin-bottom: 1.7rem;
  }
}

.profile-header__code {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.profile-header__code .form__row {
  margin-bottom: 0;
}
.profile-header__code .form__input {
  width: 52.2rem;
  max-width: 100%;
}
@media (max-width: 575px) {
  .profile-header__code .form__input {
    width: 36.6rem;
  }
}
.profile-header__code .form__button {
  margin-left: 1.1rem;
}
.profile-header__code .form__button .btn {
  width: 25.5rem;
}
@media (max-width: 991px) {
  .profile-header__code .form__button {
    margin-left: 0;
    margin-top: 1.3rem;
  }
}
@media (max-width: 991px) {
  .profile-header__code {
    flex-wrap: wrap;
  }
}

.profile-header__lays {
  position: absolute;
  left: 0;
  top: 7.2rem;
}
@media (max-width: 575px) {
  .profile-header__lays {
    transform: rotate(-10deg);
    left: -1rem;
    top: 2.2rem;
  }
}

.profile-header__car {
  position: absolute;
  top: 14rem;
  right: 0;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .profile-header__car {
    top: 12rem;
  }
}
@media (max-width: 575px) {
  .profile-header__car {
    top: 8rem;
  }
}

@media (max-width: 1599px) {
  .profile-header__lays-pic {
    max-width: 80%;
  }
}
@media (max-width: 1280px) {
  .profile-header__lays-pic {
    max-width: 70%;
  }
}
@media (max-width: 1024px) {
  .profile-header__lays-pic {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .profile-header__lays-pic {
    max-width: 45%;
  }
}

@media (max-width: 1599px) {
  .profile-header__car-pic {
    max-width: 80%;
  }
}
@media (max-width: 1280px) {
  .profile-header__car-pic {
    max-width: 70%;
  }
}
@media (max-width: 1024px) {
  .profile-header__car-pic {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .profile-header__car-pic {
    max-width: 45%;
  }
}
@media (max-width: 575px) {
  .profile-header__car-pic {
    max-width: 55%;
  }
}

.profile__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 0 5.3rem;
}
@media (max-width: 575px) {
  .profile__menu {
    margin: 0 0 2.2rem;
  }
}

.profile__menu li.menu__item {
  margin-right: 7.2rem;
}
.profile__menu li.menu__item:last-child {
  margin-right: 0;
}
.profile__menu li.menu__item.current-menu-item:not(.menu-item menu-item-type-custom) a {
  font-weight: 900;
  text-decoration: underline;
  color: var(--fg-regular) !important;
}
@media (max-width: 575px) {
  .profile__menu li.menu__item {
    margin-right: 3rem;
  }
}

.profile__menu li a.menu__link {
  display: block;
  color: var(--fg-regular);
  font-size: var(--fz-title);
  font-weight: 100;
  text-transform: uppercase;
}
.profile__menu li a.menu__link._active {
  font-weight: 900;
  text-decoration: underline;
}
@media (max-width: 575px) {
  .profile__menu li a.menu__link {
    font-size: 2.4rem;
  }
}

.faq-header {
  position: relative;
  z-index: 5;
}
.faq-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/faq.lays/header-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.faq-header__container {
  max-width: 159.6rem;
  position: relative;
  padding-top: 11.8rem;
  padding-bottom: 4rem;
}
@media (max-width: 575px) {
  .faq-header__container {
    padding-top: 7.3rem;
    padding-bottom: 2.9rem;
  }
}

.faq-header__game-img {
  max-width: 60.5rem;
}
@media (max-width: 991px) {
  .faq-header__game-img {
    max-width: 36.5rem;
  }
}
@media (max-width: 575px) {
  .faq-header__game-img {
    max-width: 20rem;
  }
}

.faq-header__title {
  text-transform: uppercase;
  color: var(--fg-green);
  font-weight: var(--fw-title);
  font-size: var(--fz-title);
  margin: 0;
}
@media (max-width: 575px) {
  .faq-header__title {
    margin-top: 0.5rem;
    font-size: 2.4rem;
  }
}

.faq-header__media {
  position: absolute;
  bottom: -13rem;
  right: 0;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  .faq-header__media {
    bottom: -14rem;
    justify-content: center;
  }
}

@media (max-width: 1599px) {
  .faq-header__media-pic {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .faq-header__media-pic {
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .faq-header__media-pic {
    max-width: 100%;
  }
}

.hero {
  background-image: url("../img/hero.lays/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 991px) {
  .hero {
    background-image: url("../img/hero.lays/bg-mobile.jpg");
    min-height: 95rem;
  }
  .hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: url("../img/hero.lays/bg-mobile-top.png") center center no-repeat;
    background-size: cover;
  }
}
@media (max-width: 575px) {
  .hero:before {
    height: 21%;
  }
}

.hero__container {
  max-width: 159.6rem;
  position: relative;
  padding-top: 9.6rem;
  padding-bottom: 45.1rem;
}
@media (max-width: 991px) {
  .hero__container {
    padding-top: 42.6rem;
    padding-bottom: 8.6rem;
  }
}
@media (max-width: 575px) {
  .hero__container {
    padding-top: 26.9rem;
    padding-bottom: 4.6rem;
  }
}

.hero__title {
  margin-bottom: 1.7rem;
}

@media (max-width: 1599px) {
  .hero__title-img {
    max-width: 70rem;
  }
}
@media (max-width: 575px) {
  .hero__title-img {
    max-width: 100%;
  }
}
.hero__subtitle {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
}
@media (max-width: 991px) {
  .hero__subtitle {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}

.hero__lays {
  position: absolute;
  left: 47.5%;
  transform: translate(-50%, 0);
  bottom: 5.3rem;
}
@media (max-width: 991px) {
  .hero__lays {
    bottom: auto;
    transform: none;
    left: 0;
    top: 11rem;
  }
}
@media (max-width: 575px) {
  .hero__lays {
    top: 6rem;
  }
}

@media (max-width: 991px) {
  .hero__btn {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}
.hero__lays-img {
  max-width: 47.5rem;
}
@media (max-width: 991px) {
  .hero__lays-img {
    max-width: 25.1rem;
  }
}
@media (max-width: 575px) {
  .hero__lays-img {
    max-width: 21.1rem;
  }
}

.hero__prize {
  position: absolute;
  left: 2.1rem;
  bottom: 9.4rem;
}
@media (max-width: 991px) {
  .hero__prize {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
  }
}

.hero__prize-img {
  max-width: 47.4rem;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .hero__prize-img {
    max-width: 100%;
  }
}

.hero__prize-title {
  max-width: 21.2rem;
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fg-red);
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
  left: 82%;
}
@media (max-width: 991px) {
  .hero__prize-title {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    max-width: 24rem;
    margin: 0 auto 0.9rem;
    text-align: center;
    font-size: 2.7rem;
  }
}

.hero__logos {
  display: block;
  position: absolute;
  right: 0;
  top: 11.8rem;
}
@media (max-width: 991px) {
  .hero__logos {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1.3rem;
    margin-top: 1.7rem;
  }
}

.hero__logos-img {
  max-width: 65.8rem;
}
@media (max-width: 991px) {
  .hero__logos-img {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .hero__logos-img {
    max-width: 100%;
  }
}

.hero__car {
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  right: 0;
}
@media (max-width: 991px) {
  .hero__car {
    top: 18%;
  }
}
@media (max-width: 991px) {
  .hero__car {
    top: 15%;
  }
}

.hero__car-img {
  max-width: 82.5rem;
}
@media (max-width: 1599px) {
  .hero__car-img {
    max-width: 80rem;
  }
}
@media (max-width: 991px) {
  .hero__car-img {
    max-width: 32.8rem;
  }
}
@media (max-width: 575px) {
  .hero__car-img {
    max-width: 25.8rem;
  }
}

.hero__logo {
  position: absolute;
  right: 0;
  bottom: 11.4rem;
}
@media (max-width: 991px) {
  .hero__logo {
    bottom: 0;
    position: relative;
    left: 0;
    margin-top: 0.9rem;
  }
}

.hero__logo-img {
  max-width: 23.1rem;
}
@media (max-width: 991px) {
  .hero__logo-img {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .hero__logo-img {
    max-width: 18.7rem;
  }
}

.steps {
  padding: 5.6rem 0 15.4rem;
}
@media (max-width: 575px) {
  .steps {
    padding-bottom: 5.9rem;
  }
}

.steps__container {
  max-width: 117.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  --row-gap: 5.6rem;
  --column-gap: 12rem;
  row-gap: var(--row-gap);
  column-gap: var(--column-gap);
  margin-top: -7rem;
}
@media (max-width: 991px) {
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
    --row-gap: 1.5rem;
    --column-gap: 3.9rem;
  }
}
@media (max-width: 991px) {
  .steps__container {
    margin-top: -5rem;
  }
}

.map {
  padding: 4.6rem 0 9.3rem;
}
.map:after {
  background-image: url("../img/map.lays/bg.png");
}
@media (max-width: 575px) {
  .map:after {
    background-image: url("../img/map.lays/bg-mobile.png");
  }
}

.map__container {
  z-index: 30 !important;
}

.map__title {
  color: var(--fg-white);
}

.map-select {
  width: 80.2rem;
  max-width: 100%;
  margin: 0 auto 2.7rem;
}
.map-select .select__result {
  text-align: left;
  justify-content: flex-start;
  padding-left: 5.7rem;
}

.map-select__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  padding: 0 2rem 0 2.6rem;
}
@media (max-width: 575px) {
  .map-select__menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0;
  }
}

.map-select__menu-item {
  margin-right: 1.4rem;
  padding: 0.944rem 1.38rem 0.694rem 3.5rem;
  font-size: 1.4rem;
  line-height: 86.8%;
  border: 0.1rem solid #1E7E1C;
  border-radius: 0.8rem;
  position: relative;
}
.map-select__menu-item:before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 1.35rem;
  height: 1.848rem;
  background: url("../img/icons.lays/icon-map.svg") center center no-repeat;
  background-size: contain;
}
.map-select__menu-item:hover {
  text-decoration: underline;
}
.map-select__menu-item._active {
  text-decoration: underline;
}
@media (max-width: 575px) {
  .map-select__menu-item {
    margin-right: 0;
  }
}

.map-select__item {
  border-radius: 0.8rem;
  border: 0.1rem solid #1E7E1C;
  text-align: left;
}

.map-select__head {
  font-size: 2rem;
  line-height: 119%;
  padding: 1.3rem 4.3rem 0.5rem;
  position: relative;
}
.map-select__head:before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 1.8rem;
  width: 1.8rem;
  height: 2.4rem;
  background: url("../img/icons.lays/icon-map.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 575px) {
  .map-select__head:before {
    width: 0.9rem;
    height: 1.1rem;
    top: 0.6rem;
    left: 0.9rem;
  }
}
@media (max-width: 575px) {
  .map-select__head {
    font-size: 1.3rem;
    padding: 0.6rem 1.3rem 0.6rem 2.2rem;
  }
  .map-select__head br {
    display: none;
  }
}

.map-select__body {
  padding: 1rem 2.6rem 1.5rem 4.3rem;
  border-top: 0.1rem solid #1E7E1C;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .map-select__body {
    font-size: 1.3rem;
    padding: 0.45rem 1.3rem 1.6rem 2.2rem;
  }
}

.map-select__date {
  line-height: 119%;
  margin-bottom: 1rem;
}
.map-select__date span {
  font-weight: 900;
  color: #1E7E1C;
}
.map-select__date:last-child {
  margin-bottom: 0;
}

.map-select__list {
  padding: 0 3.2rem 0 2.6rem;
}
@media (max-width: 575px) {
  .map-select__list {
    padding: 0 1.2rem 0 0;
  }
}

.map-select .select__list {
  padding-left: 3.4rem;
  padding-right: 3.4rem;
}
@media (max-width: 575px) {
  .map-select .select__list {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}

.map-select .select__list-content {
  max-height: 75.4rem;
}

.map__content {
  height: 65rem;
  position: relative;
  border-radius: 3.5rem;
  overflow: hidden;
}
.map__content > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .map__content {
    height: 31.1rem;
    border-radius: 1rem;
  }
}

.winners {
  padding: 9.3rem 0 10.8rem;
}
@media (max-width: 575px) {
  .winners {
    padding: 2.9rem 0 2.2rem;
  }
}

.winners__filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}
@media (max-width: 575px) {
  .winners__filter {
    flex-wrap: wrap;
  }
  .winners__filter > * {
    width: 100%;
  }
}

.winners__filter-date {
  min-width: 37.8rem;
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .winners__filter-date {
    min-width: 28rem;
  }
}
@media (max-width: 575px) {
  .winners__filter-date {
    min-width: auto;
  }
}

.winners__filter-input {
  height: 6.2rem;
}
@media (max-width: 575px) {
  .winners__filter-input {
    margin-left: 0;
    margin-top: 0.69rem;
    height: 3.5rem;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 0.5rem;
  }
}

.profile {
  padding: 5rem 0 17.8rem;
}
@media (max-width: 991px) {
  .profile {
    padding-bottom: 5rem;
  }
}

.page-template-profile .wrapper,
.page-template-profile-codes .wrapper {
  background: var(--gradient-bg);
}

.profile__form {
  position: relative;
  z-index: 10;
}

.profile__form-button {
  margin-top: 5rem;
}

.faq {
  padding: 12.6rem 0 6rem;
  background: linear-gradient(180deg, #fdc527 0%, #f90 100%);
}
@media (max-width: 575px) {
  .faq {
    padding: 15rem 0 6rem;
  }
}

.faq__container {
  max-width: 159.6rem;
}

.faq-item {
  background-color: var(--fg-white);
  border-radius: 1.6rem;
  margin-bottom: 1.2rem;
}
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item__header {
  background-color: var(--fg-green);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--fg-white);
  padding: 2.1rem 2rem 2rem;
}

.faq-item__body {
  text-align: center;
  padding: 4.2rem 10rem 6.5rem;
}
@media (max-width: 575px) {
  .faq-item__body {
    font-size: 1.6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.bayan__toggler {
  width: 1.9rem !important;
  min-width: auto;
  height: 0.95rem;
  background: url("../img/icons.lays/icon-faq.svg") center center no-repeat;
  background-size: contain;
  margin-left: 1.6rem;
}

.bayan__toggler:before,
.bayan__toggler:after {
  display: none;
}

.text__page {
  background: var(--gradient-bg);
  padding: 10rem 0 6rem;
}

.text__page-wrapper > * {
  margin-bottom: 2rem;
  font-size: var(--fz-regular);
}
.text__page-wrapper > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .text__page-wrapper > * {
    font-size: 2rem;
  }
}

.is-hidden {
  visibility: hidden !important;
  display: none !important;
}

@media (min-width: 450px) {
  .only-mobile {
    display: none;
  }
}

.is-transparent {
  opacity: 0 !important;
  pointer-events: none !important;
}

.is-opaque {
  opacity: 0.5;
}
/*# sourceMappingURL=../maps/style.css.map */
