@charset "UTF-8";
/*!
 * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}


.auth__good_message {
  padding: 12px 0;
  background: #009A17;
  margin: 9px 0;
  border-radius: 9px;
  text-align: center;
  font-weight: 800;
  color: white;
}

hr:not([size]) {
  height: 1px;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1236px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1176px;
  }
}
.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1236px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: -ms-grid !important;
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1236px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: -ms-grid !important;
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
@font-face {
  font-family: "raleway";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Raleway-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Raleway-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "raleway";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Raleway-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "raleway";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Raleway-ExtraBold.woff2") format("woff2");
}
::-webkit-input-placeholder {
  color: #8d8f96;
}
::-moz-placeholder {
  color: #8d8f96;
}
:-ms-input-placeholder {
  color: #8d8f96;
}
::-ms-input-placeholder {
  color: #8d8f96;
}
::placeholder {
  color: #8d8f96;
}

::-moz-selection {
  background-color: #fac02e;
  color: #fff;
}

::selection {
  background-color: #fac02e;
  color: #fff;
}

input, textarea {
  outline: none;
  border-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

body {
  font-family: raleway, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: #232526;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}
body.is-fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
}

p {
  margin: 0;
}

button {
  border: none;
}

.breadcrumbs {
  position: relative;
}

.breadcrumbs__list {
  padding-left: 0;
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9px 12px 8px;
  background-color: #fff;
  border-radius: 46px;
}

.breadcrumbs__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #b0b2bA;
}
.breadcrumbs__list-item:after {
  position: relative;
  content: "";
  width: 4px;
  height: 7px;
  margin: -1px 10px 0;
  background-image: url("../images/breadcrumbs/breadcrumbs-arrow.svg");
}
.breadcrumbs__list-item:last-child:after {
  display: none;
}
.breadcrumbs__list-item a {
  text-decoration: none;
  color: inherit;
}

.breadcrumbs__current {
  color: #232526;
}

.default__header {
  position: relative;
  width: 100%;
  padding: 12px 0 30px;
  background-image: url("../images/default-block-header/default-block-header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.default__header-title-wrap {
  position: relative;
  width: 70%;
  margin-top: 24px;
  padding-left: 28px;
}
@media (max-width: 1199.98px) {
  .default__header-title-wrap {
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .default__header-title-wrap {
    width: 100%;
  }
}
.default__header-title-wrap:before {
  position: absolute;
  display: block;
  content: "";
  width: 4px;
  height: 90%;
  top: 6%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#D8DAE3), color-stop(139.4%, #FAC02E));
  background: -o-linear-gradient(top, #D8DAE3 0%, #FAC02E 139.4%);
  background: linear-gradient(180deg, #D8DAE3 0%, #FAC02E 139.4%);
  border-radius: 72px;
}

.default__header-title {
  font-size: 48px;
  font-weight: 800;
}
@media (max-width: 575.98px) {
  .default__header-title {
    font-size: 38px;
  }
}

.default__header-content {
  width: 60%;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .default__header-content {
    width: 100%;
  }
}
.default__header-content p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}
.default__header-content p:first-child {
  margin-top: 0;
}

a {
  color: #fac02e;
  font-weight: bold;
  text-decoration: none;
}

.default__notice {
  position: relative;
  padding: 12px 60px 12px 50px;
  border-radius: 11px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
}
.default__notice:before {
  position: absolute;
  display: block;
  content: "";
  width: 28px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fac02e;
  border-radius: 11px 0 0 11px;
}
.default__notice b {
  font-weight: 800;
}
.default__notice a {
  color: #fac02e;
  font-weight: 700;
  text-decoration: none;
}

.default__wrap {
  position: relative;
  margin: 50px 0 150px;
}
@media (max-width: 767.98px) {
  .default__wrap {
    margin-bottom: 75px;
  }
}

.default__input {
  position: relative;
}
.default__input input {
  width: 100%;
  padding: 15px 30px 14px;
  background-color: #f3f4f8;
  border-color: transparent;
  border-radius: 8px;
}
.default__input .show-pass {
  position: absolute;
  width: 25px;
  height: 18px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.default__input .show-pass.is-active .show-pass-disable {
  display: block;
}
.default__input .show-pass-disable {
  display: none;
}

.default__politic {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.default__politic input[type=checkbox] {
  display: none;
}
.default__politic input:checked + .default__politic-checkbox g {
  display: block;
}

.default__politic-checkbox g {
  display: none;
}

.yellow__header {
  position: relative;
  padding: 72px 20px;
  background-color: #fac02e;
  text-align: center;
  z-index: 1;
}
.yellow__header h1 {
  font-size: 48px;
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .yellow__header h1 {
    font-size: 38px;
  }
}
@media (max-width: 575.98px) {
  .yellow__header h1 {
    font-size: 32px;
  }
}

.iconpay-alfa-bank {
  background-image: url("../images/banks/alfa.svg");
}

.iconpay-sberbank {
  background-image: url("../images/banks/sber.svg");
}

.iconpay-tinkoff {
  background-image: url("../images/banks/tinkoff.svg");
}

.iconpay-vtb {
  background-image: url("../images/banks/vtb.svg");
}

.iconpay-visamc-rub {
  background-image: url("../images/banks/visa.svg");
}

.iconpay-kukuruza {
  background-image: url("../images/banks/kukuruza.svg");
}

.iconpay-perfectmoney {
  background-image: url("../images/banks/pm.svg");
}

.iconpay-e-perfectmoney {
  background-image: url("../images/banks/pm_gray.svg");
}

.iconpay-yandex {
  background-image: url("../images/banks/yoomoney.svg");
}

.iconpay-exmo {
  background-image: url("../images/banks/exmo.svg");
}

.iconpay-payeer-usd {
  background-image: url("../images/banks/payeer.svg");
}

.iconpay-payeer-rub {
  background-image: url("../images/banks/payeer.svg");
}

.iconpay-qiwi {
  background-image: url("../images/banks/qiwi.svg");
}

.iconpay-adv {
  background-image: url("../images/banks/advcash.svg");
}

.iconpay-bitcoin {
  background-image: url("../images/banks/bitcoin.svg");
}

.iconpay-bth {
  background-image: url("../images/banks/bitcoin_cash.svg");
}

.iconpay-lite {
  background-image: url("../images/banks/litecoin.svg");
}

.iconpay-eth {
  background-image: url("../images/banks/ethereum.svg");
}

.iconpay-ripple {
  background-image: url("../images/banks/ripple.svg");
}

.iconpay-tron {
  background-image: url("../images/banks/tron.svg");
}

.iconpay-zcash {
  background-image: url("../images/banks/zcash.svg");
}

.iconpay-dash {
  background-image: url("../images/banks/dash.svg");
}

.iconpay-etc {
  background-image: url("../images/banks/ethereum_classic.svg");
}

.iconpay-stellar {
  background-image: url("../images/banks/stellar.svg");
}

.iconpay-bnb {
  background-image: url("../images/banks/binance.svg");
}

.iconpay-trc {
  background-image: url("../images/banks/trc20.svg");
}

.iconpay-erc {
  background-image: url("../images/banks/erc20.svg");
}

.iconpay-omni {
  background-image: url("../images/banks/tether.svg");
}

.iconpay-monero {
  background-image: url("../images/banks/monero.svg");
}

.iconpay-dog {
  background-image: url("../images/banks/dogecoin.svg");
}

.iconpay-eos {
  background-image: url("../images/banks/eos.svg");
}

.iconpay-pumb {
  background-image: url("../images/banks/pumb.svg");
}

.iconpay-oshad {
  background-image: url("../images/banks/oshad.svg");
}

.iconpay-ykr {
  background-image: url("../images/banks/ukrsib.svg");
}

.iconpay-visamc-uah {
  background-image: url("../images/banks/visa.svg");
}

.iconpay-mono {
  background-image: url("../images/banks/mono.svg");
}

.iconpay-privat {
  background-image: url("../images/banks/privat.svg");
}

.iconpay-wm {
  background-image: url("../images/banks/wm.svg");
}

.banner-concurs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 54px;
  background-color: #232526;
  background-image: url("../images/head/glow.svg");
  background-position: center;
}
@media (max-width: 575.98px) {
  .banner-concurs {
    height: 40px;
  }
}

.banner-concurs__button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 40px;
  border-radius: 35px;
  border: 2px solid #fac02e;
  color: #fff;
}
@media (max-width: 575.98px) {
  .banner-concurs__button {
    padding: 8px 14px;
    font-size: 12px;
  }
}
.banner-concurs__button:hover {
  border-color: #fff;
  color: #fff;
}
.banner-concurs__button:hover path {
  fill: #fff;
}
.banner-concurs__button svg {
  margin-right: 10px;
}

.banner-concurs__close {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .banner-concurs__close {
    width: 14px;
    height: 14px;
    right: 12px;
  }
}
.banner-concurs__close svg {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
}

.button {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  height: 46px;
  padding: 0 26px;
  background-color: #fac02e;
  border-radius: 70px;
  font-weight: 700;
  line-height: 46px;
  -webkit-transition: background-color 0.15s ease;
  -o-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.button:hover {
  color: inherit;
}
@media (max-width: 991.95px) {
  .button {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
  }
}
.button.is-copied {
  background-color: #01c853;
  -webkit-transition: background-color 0.15s ease;
  -o-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.button:hover {
  background-color: #ffd66d;
}

.exchange {
  position: relative;
  background-color: #f3f4f8;
}

.exchange__wrap {
  position: relative;
  display: block;
  margin: 40px 0;
  background-color: #ffffff;
  border-radius: 19px;
}

.exchange__hours {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8px;
  padding: 16px;
  -webkit-box-shadow: 0px -12px 50px #E7E9F1;
          box-shadow: 0px -12px 50px #E7E9F1;
  border-radius: 11px 11px 0px 0px;
}
.exchange__hours img {
  margin-right: 11px;
}
.exchange__hours p {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.exchange__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  padding: 22px 0px 26px;
  margin: 0 68px;
  border-bottom: 1px solid #b0b2bA;
}
@media (max-width: 991.98px) {
  .exchange__body {
    margin: 0 20px;
    padding: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .exchange__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.exchange__body:before {
  position: absolute;
  content: "";
  width: 36px;
  height: 20px;
  top: 110px;
  left: 50%;
  background-image: url("../images/exchange/exchange-arrow.svg");
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .exchange__body:before {
    top: 102px;
  }
}
@media (max-width: 767.98px) {
  .exchange__body:before {
    display: none;
  }
}

.exchange__body-item {
  width: 40%;
}
@media (max-width: 1199.98px) {
  .exchange__body-item {
    width: 45%;
  }
}
@media (max-width: 767.98px) {
  .exchange__body-item {
    width: 100%;
    margin-top: 25px;
  }
  .exchange__body-item:first-child {
    margin-top: 0;
  }
}
.exchange__body-item .h2 {
  font-size: 36px;
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .exchange__body-item .h2 {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .exchange__body-item .h2 {
    font-size: 28px;
  }
}

.exchange__money {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 58px;
  margin-top: 28px;
  padding: 0 10px 0 29px;
  background-color: #f3f4f8;
  border-radius: 8px;
  border: 1px solid #b0b2bA;
}
@media (max-width: 991.98px) {
  .exchange__money {
    padding-left: 12px;
  }
}
@media (max-width: 767.98px) {
  .exchange__money {
    margin-top: 15px;
  }
}

.exchange__money-input {
  position: relative;
  display: block;
  width: 65%;
  height: 58px;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: 500;
  line-height: 58px;
}
@media (max-width: 991.98px) {
  .exchange__money-input {
    height: 52px;
    font-size: 18px;
    line-height: 52px;
  }
}

.exchange__money-selector {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-width: 60px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
  background-color: #ffffff;
  border-radius: 63px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 575.98px) {
  .exchange__money-selector {
    height: 32px;
  }
}
.exchange__money-selector:after {
  content: "";
  width: 12px;
  height: 8px;
  right: 11px;
  margin: 0 8px 0 5px;
  background-image: url("../images/exchange/pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.exchange__money-selector.is-active:after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.exchange__money-img {
  width: 28px;
  height: 28px;
}
@media (max-width: 575.98px) {
  .exchange__money-img {
    width: 20px;
    height: 20px;
  }
}
.exchange__money-img .calcIcon {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain!important;
  background-position: center!important;
  background-repeat: no-repeat!important;
}

.exchange__money-currency {
  position: relative;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .exchange__money-currency {
    font-size: 13px;
    margin-left: 6px;
  }
}

.exchange__money-list {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  z-index: -1;
}
.exchange__money-list.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}

.exchange__money-tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 7px 30px;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
  border-radius: 5px 5px 0px 0px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .exchange__money-tabs {
    padding: 7px 15px;
    font-size: 13px;
  }
}

.exchange__money-tab {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.exchange__money-tab.is-active:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -7px;
  left: 0;
  background-color: #fac02e;
}

.exchange__money-items {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 8px;
  -ms-grid-columns: auto 40px auto;
  grid-template-columns: repeat(2, auto);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin-top: 18px;
}

.exchange__money-items > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.exchange__money-items > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media (max-width: 1199.98px) {
  .exchange__money-items {
    grid-column-gap: 20px;
  }
}

.exchange__money-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  margin-left: 20px;
  padding-right: 17px;
  padding-left: 2px;
  border-radius: 19px;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .exchange__money-item {
    margin-left: 10px;
  }
}
@media (max-width: 575.98px) {
  .exchange__money-item {
    margin-left: 5px;
  }
}
.exchange__money-item p {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .exchange__money-item p {
    margin-left: 6px;
    font-size: 13px;
  }
}
.exchange__money-item:hover {
  background-color: #f3f4f8;
}
.exchange__money-item.is-active .exchange__money-item-img {
  border-color: #fac02e;
}
.exchange__money-item.hidden {
  display: none;
}

.exchange__money-item-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid transparent;
  border-radius: 50%;
  background-color: #ffffff;
}
.exchange__money-item-img .bank {
  height: 30px;
  width: 30px;
  background-size: contain!important;
  background-position: center!important;
  background-repeat: no-repeat!important;
}

.exchange__money-course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
  font-size: 18px;
}
@media (max-width: 1199.98px) {
  .exchange__money-course {
    font-size: 14px;
  }
}
.exchange__money-course img {
  width: 18px;
  height: 18px;
  margin-right: 11px;
}
@media (max-width: 1199.98px) {
  .exchange__money-course img {
    height: 14px;
    height: 14px;
  }
}
@media (max-width: 991.98px) {
  .exchange__money-course img {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .exchange__money-course img {
    display: block;
  }
}
.exchange__money-course p {
  white-space: nowrap;
}

.exchange__money-spinner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 11px;
  font-size: 12px;
  font-weight: 600;
}
.exchange__money-spinner p {
  position: absolute;
}

.exchange__money-spinner-wrap {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.exchange__money-spinner-wrap .course_circle {
  fill: none;
  stroke: #fac02e;
  stroke-width: 1.5;
}

.exchange__money-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 19px;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 1199.98px) {
  .exchange__money-sale {
    font-size: 14px;
  }
}
.exchange__money-sale img {
  width: 20px;
  height: 20px;
  margin-right: 11px;
}
@media (max-width: 1199.98px) {
  .exchange__money-sale img {
    width: 16px;
    height: 16px;
  }
}
.exchange__money-sale span {
  padding: 2px 7px 3px;
  background-color: #f3f4f8;
  border-radius: 49px;
}
.exchange__money-sale svg {
  width: 21px;
  height: 21px;
  margin-left: 11px;
  cursor: pointer;
}
.exchange__money-sale svg g {
  -webkit-transition: fill 0.15s ease;
  -o-transition: fill 0.15s ease;
  transition: fill 0.15s ease;
}
.exchange__money-sale:hover g {
  fill: #ffd66d;
}

.exchange__money-fields {
  margin-top: 19px;
}

.exchange__money-field__margin {
  margin-top: 11px;
}

.exchange__money-field {
  width: 100%;
  height: 50px;
  padding: 0 10px 0 28px;
  background-color: #f3f4f8;
  border-radius: 8px;
  font-weight: 500;
  line-height: 50px;
}
@media (max-width: 991.98px) {
  .exchange__money-field {
    height: 45px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 45px;
  }
}
.exchange__money-field__margin:first-child {
  margin-top: 0;
}
.exchange__money-field.is-email {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 575.98px) {
  .exchange__money-field.is-email {
    width: 100%;
  }
}

.exchange__send {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 26px 68px;
}
@media (max-width: 991.98px) {
  .exchange__send {
    padding: 20px;
  }
}
@media (max-width: 575.98px) {
  .exchange__send {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.exchange__politic {
  margin-left: 32px;
}
@media (max-width: 991.98px) {
  .exchange__politic {
    max-width: 50%;
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .exchange__politic {
    width: 100%;
    max-width: 100%;
    margin: 12px 0 0;
  }
}
@media (max-width: 991.98px) {
  .exchange__politic label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  .exchange__politic label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 991.98px) {
  .exchange__politic label span {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .exchange__politic-checkbox {
    margin-right: 7px;
  }
}

.exchange__submit {
  width: 100%;
  margin-top: 26px;
}
.exchange__submit button {
  width: 100%;
  height: 74px;
  border: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 74px;
  -webkit-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
@media (max-width: 991.98px) {
  .exchange__submit button {
    height: 60px;
    font-size: 22px;
    line-height: 60px;
  }
}
@media (max-width: 575.98px) {
  .exchange__submit button {
    height: 50px;
    font-size: 18px;
    line-height: 50px;
  }
}
.exchange__submit button:hover {
  background-color: #ffd66d;
}

.foot {
  padding-top: 52px;
  background-color: #232526;
  background-image: url("../images/footer/bg-foot.svg");
  background-size: 300px;
  background-position: left top;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .foot {
    padding-top: 35px;
  }
}

.foot__partners {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 20px;
  background-color: #292c2e;
  border-radius: 49px;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .foot__partners {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .foot__partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 320px;
    margin: 0 auto 10px;
    padding: 10px 15px;
    font-size: 13px;
  }
}
.foot__partners p {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1235.98px) {
  .foot__partners p {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .foot__partners p {
    font-size: 13px;
  }
}

.foot__partners-item {
  margin-left: 14px;
}
@media (max-width: 1199.98px) {
  .foot__partners-item {
    max-width: 85px;
    margin-left: 10px;
  }
}
@media (max-width: 575.98px) {
  .foot__partners-item {
    max-width: 70px;
    margin-left: 10px;
  }
}

.foot__email {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 1235.98px) {
  .foot__email {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .foot__email {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.foot__email:before {
  position: relative;
  content: "";
  width: 21px;
  height: 21px;
  margin-right: 15px;
  background-image: url("../images/footer/mail.svg");
}
.foot__email:hover {
  color: #ffffff;
}

.foot__social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 23px;
  padding: 14px 20px;
  background-color: #292c2e;
  border-radius: 53px;
}
@media (max-width: 991.98px) {
  .foot__social {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }
}
@media (max-width: 575.98px) {
  .foot__social {
    margin-bottom: 10px;
  }
}

.foot__social-item {
  margin-left: 28px;
}
@media (max-width: 1199.98px) {
  .foot__social-item {
    margin-left: 20px;
  }
}
.foot__social-item:first-child {
  margin-left: 0;
}
.foot__social-item:hover path {
  fill: #ffffff;
}
@media (max-width: 1199.98px) {
  .foot__social-item svg {
    max-width: 22px;
  }
}

.foot__copy {
  position: relative;
  margin-top: 52px;
  padding: 29px 20px;
  background: -o-linear-gradient(179.8deg, #292C2E 12.12%, #232526 92.1%);
  background: linear-gradient(270.2deg, #292C2E 12.12%, #232526 92.1%);
  color: #7e7e7e;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 991.98px) {
  .foot__copy {
    margin-top: 35px;
    padding: 20px;
  }
}
@media (max-width: 575.98px) {
  .foot__copy {
    font-size: 13px;
  }
}

.head {
  position: relative;
  padding: 21px 0;
  background-color: #ffffff;
}

.head__logo {
  position: relative;
  z-index: 5;
}

.head__menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 85px;
  height: 100%;
}
@media (max-width: 1199.95px) {
  .head__menu {
    padding: 0;
  }
}

.head__menu-item {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 5px;
  font-weight: 600;
}
.head__menu-item:hover {
  color: inherit;
}
.head__menu-item:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 5px;
  width: 0%;
  height: 2px;
  background-color: transparent;
  -webkit-transition: background-color 0.15s ease, width 0.25s linear;
  -o-transition: background-color 0.15s ease, width 0.25s linear;
  transition: background-color 0.15s ease, width 0.25s linear;
}
.head__menu-item:hover:after {
  width: calc(100% - 10px);
  background-color: #fac02e;
}

.head__login {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  position: relative;
  z-index: 5;
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .head__login {
    left: -50px;
  }
}
@media (max-width: 1199.95px) {
  .head__login {
    left: 0px;
  }
}
@media (max-width: 991.95px) {
  .head__login {
    left: auto;
    margin-left: auto;
  }
}

.head__login-item {
  font-size: 14px;
}
@media (max-width: 991.95px) {
  .head__login-item {
    font-size: 13px;
  }
}

.head__login-signin {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  margin-right: 10px;
  font-weight: 700;
}
.head__login-signin:hover {
  color: inherit;
}
.head__login-logout {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  margin-right: 10px;
  font-weight: 700;
  min-width: 60px;
}
.head__login-logout:hover {
  color: inherit;
}
.head__login-signin:before {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  left: -30px;
  top: 45%;
  background-image: url("../images/head/signin.svg");
  background-size: cover;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.15s ease;
  -o-transition: left 0.15s ease;
  transition: left 0.15s ease;
}
.head__login-logout:before {
  position: absolute;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  left: -30px;
  top: 45%;
  background-image: url("../images/head/logout.svg");
  background-size: cover;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.15s ease;
  -o-transition: left 0.15s ease;
  transition: left 0.15s ease;
}
@media (max-width: 991.95px) {
  .head__login-signin:before {
    width: 18px;
    height: 18px;
    top: 50%;
    left: -25px;
  }
  .head__login-logout:before {
    width: 18px;
    height: 18px;
    top: 50%;
    left: -25px;
  }
}
.head__login-signin:hover:before {
  left: -32px;
}
.head__login-logout:hover:before {
  left: -32px;
}

.head__burger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fac02e;
  border-radius: 50%;
  z-index: 5;
}
@media (max-width: 575.95px) {
  .head__burger {
    margin-left: auto;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}
.head__burger.is-open .head__burger-bar {
  background-color: transparent;
  -webkit-transition: background-color 0.1s ease-in-out;
  -o-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
}
.head__burger.is-open .head__burger-bar:before, .head__burger.is-open .head__burger-bar:after {
  top: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.head__burger.is-open .head__burger-bar:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.head__burger.is-open .head__burger-bar:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.head__burger-bar {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #232526;
  border-radius: 10px;
  -webkit-transition: background-color 0.1s ease-in-out;
  -o-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
}
@media (max-width: 575.98px) {
  .head__burger-bar {
    width: 15px;
  }
}
.head__burger-bar:before, .head__burger-bar:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: #232526;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.head__burger-bar:before {
  top: -4px;
}
.head__burger-bar:after {
  top: 4px;
}

.head__lang {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  right: 20px;
  padding: 4px;
  background-color: #f3f4f8;
  border-radius: 63px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
@media (max-width: 1320px) {
  .head__lang {
    right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.head__lang-item {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  opacity: 0.3;
  cursor: pointer;
}
.head__lang-item:hover {
  color: inherit;
}
@media (max-width: 1320px) {
  .head__lang-item {
    width: 20px;
    height: 20px;
    margin-right: 0;
    margin-bottom: 7px;
  }
}
.head__lang-item:last-child {
  margin-right: 0;
}
@media (max-width: 1320px) {
  .head__lang-item:last-child {
    margin-bottom: 0px;
  }
}
.head__lang-item.is-active {
  opacity: 1;
}
.head__lang-item img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.head__mobile-menu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 4;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.head__mobile-menu.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.head__mobile-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.head__mobile-menu-item {
  margin-bottom: 15px;
  font-size: 20px;
}

.head__mobile-login {
  display: none;
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  .head__mobile-login {
    display: block;
  }
}
.head__mobile-login .head__login-signin {
  padding-left: 25px;
}
.head__mobile-login .head__login-signin:before {
  left: 0;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  z-index: 7;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.popup.is-active {
  opacity: 1;
  pointer-events: all;
}
.popup::-webkit-scrollbar {
  height: 8px;
}
.popup::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 25px;
}
.popup::-webkit-scrollbar-thumb {
  background-color: #fac02e;
  border-radius: 25px;
  cursor: pointer;
}

.popup__overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(35, 37, 38, 0.3);
  -webkit-transition: 0.35s all;
  -o-transition: 0.35s all;
  transition: 0.35s all;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}
.popup__overlay.is-active {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: 0.35s all;
  -o-transition: 0.35s all;
  transition: 0.35s all;
}

.popup__container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0;
  text-align: center;
}
.popup__container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.popup__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100% - 60px);
  margin: 20px 0;
}

.popup__body {
  position: relative;
  width: 618px;
  margin: 35px auto;
  padding: 8px;
  background-color: #fff;
  border-radius: 19px;
  -webkit-transition: 0.35s all;
  -o-transition: 0.35s all;
  transition: 0.35s all;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .popup__body {
    width: 520px;
  }
}
@media (max-width: 575.98px) {
  .popup__body {
    width: 95%;
  }
}

.popup__close {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 18px;
  right: 18px;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .popup__close {
    width: 12px;
    height: 12px;
    top: 12px;
  }
  .popup__close svg {
    max-width: 100%;
  }
}

.popup__title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 0 30px;
  -webkit-box-shadow: 0px -12px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -12px 50px rgba(0, 0, 0, 0.1);
  border-radius: 11px 11px 0px 0px;
  border-bottom: 4px solid #fac02e;
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 575.98px) {
  .popup__title {
    padding: 18px 0 20px;
    font-size: 22px;
    line-height: 26px;
  }
}

.popup__timer {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 12px;
  background-color: #f3f4f8;
  border-radius: 46px;
  font-size: 14px;
  font-weight: 600;
}
.popup__timer span.is-error {
  color: #D32F2F;
}

.popup__content {
  padding: 34px 30px 0;
}
@media (max-width: 575.98px) {
  .popup__content {
    padding: 26px 10px 0;
  }
}
.popup__content p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .popup__content p {
    margin-top: 24px;
    font-size: 16px;
  }
}
.popup__content p:first-child {
  margin-top: 0;
}
.popup__content ul {
  padding-left: 0;
  list-style: none;
  margin-top: 18px;
}
.popup__content ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 12px;
}
.popup__content ul li:before {
  position: relative;
  content: "•";
  margin-right: 10px;
}
.popup__content ul li:first-child {
  margin-top: 0;
}

.popup__content-title p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.popup__form {
  padding: 30px 22px 32px;
}
@media (max-width: 575.98px) {
  .popup__form {
    padding: 24px 10px;
  }
}

.popup__input {
  margin-top: 14px;
}
.popup__input:first-child {
  margin-top: 0;
}

.popup__link {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.popup__remember label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.popup__remember input[type=checkbox] {
  display: none;
}
.popup__remember svg {
  margin-right: 8px;
}
.popup__remember path {
  display: none;
}
.popup__remember input[type=checkbox]:checked + label path {
  display: block;
}

.popup__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 26px;
}
.popup__submit .button {
  width: 48%;
  height: 53px;
  line-height: 53px;
}
@media (max-width: 575.98px) {
  .popup__submit .button {
    height: 46px;
    line-height: 46px;
  }
}
.popup__submit .button:disabled {
  background-color: #f3f4f8;
}

.popup__submit-close {
  background-color: #ffffff;
  border: 2px solid #fac02e;
}

.popup__submit-finishing {
  margin: 42px 0 32px;
}

.popup__file {
  position: relative;
  width: 558px;
  height: 314px;
  background-image: url("../images/popup/popup_card.svg");
  background-size: cover;
  border-radius: 11px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .popup__file {
    width: 460px;
    height: 259px;
  }
}
@media (max-width: 575.98px) {
  .popup__file {
    width: 100%;
    height: auto;
    padding-top: 52%;
  }
}
.popup__file input[type=file] {
  display: none;
}
.popup__file img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.popup__file.is-uploaded .popup__file-upload {
  display: none;
}
.popup__file.is-uploaded .popup__file-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup__file-upload {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 362px;
  height: 53px;
  bottom: 43px;
  left: 50%;
  font-size: 18px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .popup__file-upload {
    font-size: 14px;
    bottom: 22px;
    width: 240px;
    height: 36px;
  }
}

.popup__file-delete {
  position: absolute;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 12px 50px #E7E9F1;
          box-shadow: 0px 12px 50px #E7E9F1;
  cursor: pointer;
  z-index: 2;
}
.popup__file-delete:hover {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.popup__accordeon {
  margin-top: 24px;
  text-align: center;
}
.popup__accordeon.is-active .popup__accordeon-btn:after {
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.popup__accordeon-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  padding: 0 47px 0 26px;
  border: 2px solid #fac02e;
  border-radius: 71px;
  font-size: 14px;
  font-weight: 700;
  line-height: 45px;
  cursor: pointer;
}
.popup__accordeon-btn:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 7px;
  right: 26px;
  top: 50%;
  background-image: url("../images/common/accordeon-arrow.svg");
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  -webkit-transform: translateY(-50%) scale(-1);
      -ms-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}

.popup__accordeon-content {
  margin-top: 28px;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.popup__buttons {
  margin: 34px auto 20px;
  text-align: center;
}
.popup__buttons .button {
  padding: 0 90px;
  margin-left: 12px;
}
.popup__buttons .button:first-child {
  margin-left: 0;
}

.popup__steps {
  margin: 0 22px;
}
@media (max-width: 575.98px) {
  .popup__steps {
    margin: 0 10px;
  }
}

.popup__step {
  margin-top: 42px;
}

.popup__step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .popup__step-title {
    font-size: 16px;
  }
}

.popup__step-num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 50px;
  height: 50px;
  margin-right: 16px;
  border-radius: 50%;
  background-color: #fac02e;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .popup__step-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.popup__step-content {
  margin-top: 20px;
}

.popup__step-info {
  margin-top: 12px;
}
@media (max-width: 575.98px) {
  .popup__step-info {
    font-size: 14px;
  }
}

.popup__step-info-code {
  position: relative;
}
.popup__step-info-code .code {
  width: 100%;
  height: auto;
  margin-top: 12px;
  padding: 13px 25% 12px 20px;
  background-color: #ffffff;
  border-radius: 94px;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  resize: none;
  line-height: 1;
}
.popup__step-info-code .button {
  position: absolute;
  height: 30px;
  top: 50%;
  right: 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .popup__step-info-code .button {
    right: 6px;
  }
}

.popup__step-notice {
  margin-top: 10px;
  padding: 16px 20px;
  background-color: #f3f4f8;
  border-radius: 11px;
  font-weight: 600;
}

.reserves {
  margin-top: 39px;
}

.reserves__wrap {
  position: relative;
  padding: 8px;
  background-color: #f3f4f8;
  border-radius: 19px;
}

.reserves__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 17px 17px 17px 58px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 12px 50px #E7E9F1;
          box-shadow: 0px 12px 50px #E7E9F1;
  border-radius: 11px;
}
@media (max-width: 767.98px) {
  .reserves__head {
    padding-left: 17px;
  }
}
@media (max-width: 575.98px) {
  .reserves__head {
    padding: 14px;
  }
}

.reserves__title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
}
@media (max-width: 575.98px) {
  .reserves__title {
    font-size: 24px;
  }
}

.reserves__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  background-color: transparent;
  color: #232526;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 575.98px) {
  .reserves__btn {
    font-size: 14px;
  }
}
.reserves__btn:hover, .reserves__btn:focus, .reserves__btn:active {
  color: #232526;
}
.reserves__btn:after {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  width: 34px;
  height: 34px;
  margin-left: 16px;
  background-color: #fac02e;
  background-image: url("../images/common/accordeon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}
@media (max-width: 575.98px) {
  .reserves__btn:after {
    width: 26px;
    height: 26px;
    margin-left: 10px;
  }
}
.reserves__btn.is-active:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.reserves__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 26px 10px 0;
}
@media (max-width: 767.98px) {
  .reserves__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
  }
}

.reserves__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18%;
  margin-bottom: 18px;
  padding: 12px;
  background-color: #ffffff;
  border-radius: 39px;
}
@media (max-width: 1199.98px) {
  .reserves__item {
    width: 24%;
  }
}
@media (max-width: 991.98px) {
  .reserves__item {
    padding: 8px;
  }
}
@media (max-width: 767.98px) {
  .reserves__item {
    width: 32%;
  }
}
@media (max-width: 575.98px) {
  .reserves__item {
    width: 49%;
  }
}

.reserves__item-ico {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 38px;
  height: 38px;
  margin-right: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
          box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  .reserves__item-ico {
    width: 26px;
    height: 26px;
    margin-right: 6px;
  }
}
.reserves__item-ico span {
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  top: 6px;
  left: 7px;
  background-size: contain!important;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991.98px) {
  .reserves__item-ico span {
    width: 18px;
    height: 18px;
    top: 4px;
    left: 4px;
  }
}

.reserves__item-data {
  overflow: hidden;
}

.reserves__item-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  overflow: hidden;
  height: 18px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .reserves__item-name {
    font-size: 13px;
  }
}

.reserves__item-value {
  font-size: 12px;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.reviews {
  position: relative;
  margin: 80px 0;
}

.reviews__title-wrap {
  display: block;
}
@media (max-width: 991.98px) {
  .reviews__title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 449.95px) {
  .reviews__title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
  }
}

.reviews__title {
  font-size: 48px;
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .reviews__title {
    font-size: 38px;
  }
}
@media (max-width: 575.98px) {
  .reviews__title {
    font-size: 28px;
  }
}

.reviews__total {
  margin-top: 12px;
}
@media (max-width: 991.98px) {
  .reviews__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    margin-left: 10px;
  }
}
@media (max-width: 449.95px) {
  .reviews__total {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.reviews__total p {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .reviews__total p {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .reviews__total p {
    font-size: 14px;
  }
}

.reviews__total-btn {
  margin-top: 24px;
  height: 57px;
  line-height: 57px;
}
@media (max-width: 1199.98px) {
  .reviews__total-btn {
    padding: 0 15px;
  }
}
@media (max-width: 991.98px) {
  .reviews__total-btn {
    margin-top: -10px;
  }
}
@media (max-width: 767.98px) {
  .reviews__total-btn {
    height: 48px;
    font-size: 14px;
    line-height: 48px;
  }
}
@media (max-width: 575.98px) {
  .reviews__total-btn {
    font-size: 12px;
    padding: 0 10px;
  }
}
@media (max-width: 449.95px) {
  .reviews__total-btn {
    margin-top: 10px;
  }
}

.reviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.reviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  width: 48%;
  min-height: 195px;
  margin-top: 22px;
  padding: 18px 28px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.1);
  border-radius: 19px;
}
@media (max-width: 767.98px) {
  .reviews__item {
    min-height: 165px;
    width: 100%;
    margin-top: 18px;
  }
}
.reviews__item:nth-child(-n+2) {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .reviews__item:nth-child(-n+2) {
    margin-top: 18px;
  }
}

.reviews__item-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 110px);
  font-size: 14px;
  font-weight: 700;
}
.reviews__item-title:before {
  position: relative;
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 38px;
  height: 38px;
  margin-right: 12px;
  background-color: #01c853;
  border-radius: 50%;
  background-image: url("../images/reviews/thumb.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.reviews__item-neutral .reviews__item-title:before {
  background-image: url("../images/reviews/thumb_neutral.svg");
  background-color: #f3f4f8;
}

.reviews__item-date {
  width: 100px;
  margin-left: 10px;
  color: #8d8f96;
  font-size: 12px;
  font-weight: 500;
}

.reviews__item-text {
  width: 100%;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}

.sales__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 8px;
  background-color: #f3f4f8;
  border-radius: 19px;
}
@media (max-width: 767.98px) {
  .sales__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sales__text {
  width: 50%;
  padding: 20px 22px;
}
@media (max-width: 767.98px) {
  .sales__text {
    width: 100%;
  }
}
.sales__text ul {
  margin-top: 40px;
}
.sales__text ul li {
  margin-top: 24px;
  font-weight: 700;
}
.sales__text ul li:first-child {
  margin-top: 0;
}

.sales__table {
  width: 50%;
  padding: 20px 22px 30px;
  border-radius: 0 11px 11px 0;
  background-color: #ffffff;
}
@media (max-width: 767.98px) {
  .sales__table {
    width: 100%;
    border-radius: 11px;
  }
}

.sales__table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
@media (max-width: 767.98px) {
  .sales__table-head {
    padding: 0 10px;
  }
}
.sales__table-head p {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .sales__table-head p {
    font-size: 14px;
  }
}

.sales__table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 18px 6px;
  margin-top: 10px;
  border-radius: 9px;
}
.sales__table-item p {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .sales__table-item p {
    font-size: 14px;
  }
}
.sales__table-item p.percent {
  font-size: 26px;
}
@media (max-width: 767.98px) {
  .sales__table-item p.percent {
    font-size: 20px;
  }
}
.sales__table-item:nth-child(2) {
  background: -o-linear-gradient(181.19deg, #F3F4F8 68.17%, #FAC02E 108.67%);
  background: linear-gradient(268.81deg, #F3F4F8 68.17%, #FAC02E 108.67%);
}
.sales__table-item:nth-child(3) {
  background: -o-linear-gradient(181.11deg, #F3F4F8 64.95%, #FAC02E 108.71%);
  background: linear-gradient(268.89deg, #F3F4F8 64.95%, #FAC02E 108.71%);
}
.sales__table-item:nth-child(4) {
  background: -o-linear-gradient(181.03deg, #F3F4F8 57.46%, #FAC02E 108.75%);
  background: linear-gradient(268.97deg, #F3F4F8 57.46%, #FAC02E 108.75%);
}
.sales__table-item:nth-child(5) {
  background: -o-linear-gradient(180.89deg, #F3F4F8 54.28%, #FAC02E 108.81%);
  background: linear-gradient(269.11deg, #F3F4F8 54.28%, #FAC02E 108.81%);
}
.sales__table-item:nth-child(6) {
  background: -o-linear-gradient(180.85deg, #F3F4F8 48.68%, #FAC02E 108.83%);
  background: linear-gradient(269.15deg, #F3F4F8 48.68%, #FAC02E 108.83%);
}
.sales__table-item:nth-child(7) {
  background: -o-linear-gradient(180.7deg, #F3F4F8 43.56%, #FAC02E 108.9%);
  background: linear-gradient(269.3deg, #F3F4F8 43.56%, #FAC02E 108.9%);
}
.sales__table-item:last-child {
  background: -o-linear-gradient(180.66deg, #F3F4F8 36.74%, #FAC02E 108.91%);
  background: linear-gradient(269.34deg, #F3F4F8 36.74%, #FAC02E 108.91%);
}

.change-rules__content-title {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  padding: 20px;
  background-color: #f3f4f8;
  border-radius: 19px;
  text-align: center;
}
.change-rules__content-title p {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
}
.change-rules__content-title p:before, .change-rules__content-title p:after {
  position: absolute;
  content: "";
  width: 115px;
  height: 3px;
  top: 50%;
  background-color: #fac02e;
  border-radius: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.change-rules__content-title p:before {
  left: -143px;
}
.change-rules__content-title p:after {
  right: -143px;
}

.change-rules__item {
  position: relative;
  display: block;
  margin-top: 44px;
}
.change-rules__item:first-child {
  margin-top: 0;
}

.change-rules__item-head {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  padding-right: 58px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
  border-radius: 11px;
}
.change-rules__item-head.is-active:after {
  -webkit-transform: translateY(-50%) scaleX(1);
      -ms-transform: translateY(-50%) scaleX(1);
          transform: translateY(-50%) scaleX(1);
}
.change-rules__item-head:after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 8px;
  top: 50%;
  right: 24px;
  /*background-image: url("../images/common/accordeon-arrow.svg");*/
  -webkit-transform: translateY(-50%) scale(-1);
      -ms-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -o-transition: transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.change-rules__item-num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 54px;
  height: 54px;
  background-color: #fac02e;
  border-radius: 11px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.change-rules__item-title {
  position: relative;
  margin-left: 24px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.change-rules__item-content {
  height: 0;
  font-size: 14px;
  overflow: hidden;
  -webkit-transition: height 0.25s ease;
  -o-transition: height 0.25s ease;
  transition: height 0.25s ease;
}
.change-rules__item-content p {
  margin-top: 14px;
}
.change-rules__item-content p:first-child {
  margin-top: 0;
}
.change-rules__item-content p:last-child {
  padding-bottom: 42px;
  border-bottom: 1px solid #b0b2bA;
}

.change-rules__content-notice {
  margin-top: 44px;
}

.concurs__subheader {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("../images/concurs/concurs_bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.concurs__video {
  width: 821px;
  height: 470px;
  margin-top: -26px;
  border: 8px solid #fff;
  border-radius: 19px;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
}
@media (max-width: 575.98px) {
  .concurs__video {
    position: relative;
    width: 90%;
    height: auto;
    padding-top: 48%;
  }
}
.concurs__video iframe {
  width: 100%;
  height: 100%;
  border-radius: 11px;
}
@media (max-width: 575.98px) {
  .concurs__video iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.concurs__advantages {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0 10px;
  margin-top: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F3F4F8), to(rgba(243, 244, 248, 0)));
  background: -o-linear-gradient(top, #F3F4F8 0%, rgba(243, 244, 248, 0) 100%);
  background: linear-gradient(180deg, #F3F4F8 0%, rgba(243, 244, 248, 0) 100%);
  border-radius: 19px;
}
@media (max-width: 991.98px) {
  .concurs__advantages {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding-top: 12px;
  }
}

.concurs__advantages-item {
  margin-left: 30px;
  text-align: center;
}
.concurs__advantages-item:first-child {
  margin-left: 0;
}
.concurs__advantages-item h3 {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
}
@media (max-width: 575.98px) {
  .concurs__advantages-item h3 {
    font-size: 45px;
  }
}
.concurs__advantages-item .descr {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 20px;
  padding: 15px 48px 14px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .concurs__advantages-item .descr {
    padding: 10px 22px;
    font-size: 16px;
  }
}
.concurs__advantages-item .descr:after {
  position: absolute;
  content: "";
  width: 58%;
  height: 4px;
  left: 50%;
  bottom: -12px;
  background-color: #fac02e;
  border-radius: 28px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.concurs__counter {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 991.98px) {
  .concurs__counter {
    margin-top: 18px;
    margin-left: 0;
  }
}
.concurs__counter .descr {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 0;
}

.concurs__counter-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.concurs__counter-item {
  position: relative;
  margin-right: 36px;
  margin-bottom: 18px;
  font-size: 60px;
  font-weight: 800;
}
@media (max-width: 575.98px) {
  .concurs__counter-item {
    font-size: 45px;
    margin-right: 20px;
  }
}
.concurs__counter-item:after {
  position: absolute;
  content: ":";
  right: -26px;
}
@media (max-width: 575.98px) {
  .concurs__counter-item:after {
    right: -16px;
  }
}
.concurs__counter-item:before {
  position: absolute;
  content: attr(data-title);
  left: 50%;
  bottom: -16px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #b0b2bA;
  font-size: 18px;
  font-weight: 600;
}
.concurs__counter-item:last-child {
  margin-right: 0;
}
.concurs__counter-item:last-child:after {
  content: none;
}

.concurs__rules {
  margin: 65px 0;
}

.concurs__rules-notice {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 24px;
  font-weight: 700;
}

.concurs__rules-list {
  padding-left: 0;
  list-style: none;
  margin-top: 25px;
}

.concurs__rules-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 38px;
  margin-top: 8px;
}
.concurs__rules-item:before {
  position: relative;
  content: "";
  width: 38px;
  height: 38px;
  margin-right: 20px;
  background-image: url("../images/concurs/concurs_point.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
          box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
@media (max-width: 575.98px) {
  .concurs__rules-item:before {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.concurs__rules-item:first-child {
  margin-top: 0;
}

.concurs__rules-motivation {
  margin-top: 38px;
  font-size: 26px;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .contacts__header .default__header-title-wrap {
    width: 100%;
  }
}

.contacts__header-support {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 35px;
  background-color: #ffffff;
  border-radius: 41px;
}
@media (max-width: 767.98px) {
  .contacts__header-support {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contacts__header-support span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .contacts__header-support span {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media (max-width: 575.98px) {
  .contacts__header-support span {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.contacts__header-support a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 24px;
  color: #232526;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: color 0.15s ease;
  -o-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
@media (max-width: 767.98px) {
  .contacts__header-support a {
    margin-left: 18px;
  }
  .contacts__header-support a.email {
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .contacts__header-support a {
    margin-left: 0px;
    margin-top: 4px;
    font-size: 14px;
  }
}
.contacts__header-support a svg {
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .contacts__header-support a svg {
    width: 16px;
    margin-right: 6px;
  }
}
.contacts__header-support a svg path {
  -webkit-transition: color 0.15s ease;
  -o-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.contacts__header-support a:hover {
  color: #fac02e;
}
.contacts__header-support a:hover path {
  fill: #fac02e;
}

.contacts__header-social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
  padding: 12px 38px;
  border: 2px solid #232526;
  border-radius: 53px;
}
.contacts__header-social a {
  margin-left: 28px;
}
@media (max-width: 575.98px) {
  .contacts__header-social a {
    margin-left: 18px;
  }
}
.contacts__header-social a:first-child {
  margin-left: 0;
}
.contacts__header-social a path {
  -webkit-transition: fill 0.15s ease;
  -o-transition: fill 0.15s ease;
  transition: fill 0.15s ease;
}
.contacts__header-social a:hover path {
  fill: #fac02e;
}

.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #f3f4f8;
  border-radius: 19px;
  padding: 8px;
  margin-bottom: 42px;
}
@media (max-width: 575.98px) {
  .contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contacts__content:last-child {
  margin-bottom: 0;
}

.contacts__info {
  position: relative;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  width: 60%;
  padding: 28px 0 38px 28px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 12px 50px #E7E9F1;
          box-shadow: 0px 12px 50px #E7E9F1;
  border-radius: 11px 0 0 11px;
}
@media (max-width: 991.98px) {
  .contacts__info {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .contacts__info {
    width: 100%;
    padding: 18px;
    border-radius: 11px;
  }
}

.contacts__info-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__info-title h4 {
  width: 50%;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .contacts__info-title h4 {
    width: 85%;
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .contacts__info-title h4 {
    width: 88%;
    font-size: 18px;
  }
}
.contacts__info-title:after {
  position: relative;
  content: "";
  width: 50%;
  height: 14px;
  background-color: #fac02e;
}
@media (max-width: 991.98px) {
  .contacts__info-title:after {
    width: 15%;
    height: 12px;
  }
}
@media (max-width: 767.98px) {
  .contacts__info-title:after {
    width: 12%;
    height: 8px;
  }
}

.contacts__items {
  margin-top: 38px;
}
@media (max-width: 767.98px) {
  .contacts__items {
    margin-top: 25px;
  }
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #b0b2bA;
}
@media (max-width: 991.98px) {
  .contacts__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contacts__item:first-child {
  border-top: 1px solid #b0b2bA;
}

.contacts__item-part {
  width: 50%;
}
@media (max-width: 991.98px) {
  .contacts__item-part {
    width: 100%;
  }
}

.contacts__item-img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 991.98px) {
  .contacts__item-img img {
    max-height: 35px;
  }
}

.contacts__item-text {
  padding-right: 70px;
}
@media (max-width: 991.98px) {
  .contacts__item-text {
    margin-top: 10px;
    padding-right: 25px;
  }
}
.contacts__item-text p {
  font-size: 14px;
}
.contacts__item-text .button {
  height: 30px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 30px;
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(40% - 50px);
  margin: 40px 0 30px 28px;
  overflow-x: scroll;
}
@media (max-width: 991.98px) {
  .contacts__list {
    width: calc(50% - 20px);
    margin-left: 20px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (max-width: 767.98px) {
  .contacts__list {
    width: calc(50% - 10px);
    margin-left: 10px;
  }
}
@media (max-width: 575.98px) {
  .contacts__list {
    width: calc(100% - 20px);
  }
}
.contacts__list::-webkit-scrollbar {
  height: 8px;
}
.contacts__list::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 25px;
}
.contacts__list::-webkit-scrollbar-thumb {
  background-color: #fac02e;
  border-radius: 25px;
  cursor: pointer;
}

.contacts__list-items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.contacts__list-item {
  position: relative;
  display: block;
  width: 250px;
  height: 54px;
  margin-bottom: 17px;
  padding-left: 68px;
  background-color: #ffffff;
  border-radius: 71px;
  color: #232526;
  font-size: 20px;
  font-weight: 700;
  line-height: 54px;
  -webkit-transition: background-color 0.15s ease;
  -o-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .contacts__list-item {
    width: 230px;
    padding-left: 50px;
  }
}
.contacts__list-item:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 50%;
  left: 15px;
  border-radius: 50px;
  background-color: #fac02e;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.15s ease;
  -o-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.contacts__list-item:last-child {
  margin-bottom: 40px;
}
.contacts__list-item:hover {
  background-color: #ffd66d;
  color: #232526;
}
.contacts__list-item:hover:before {
  background-color: #232526;
}

.faq__item {
  position: relative;
  margin-top: 8px;
  padding: 8px;
  background-color: #f3f4f8;
  border-radius: 19px;
}
.faq__item:first-child {
  margin-top: 0;
}
.faq__item.is-active .faq__item-head {
  border-radius: 11px 11px 11px 0;
}
.faq__item.is-active .faq__item-head:before {
  border-radius: 11px 11px 11px 0;
}
.faq__item.is-active .faq__item-head:after {
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.faq__item.is-active .faq__item-text {
  padding: 32px 60px 32px 85px;
}
@media (max-width: 575.98px) {
  .faq__item.is-active .faq__item-text {
    padding-right: 30px;
  }
}
.faq__item.is-active .faq__item-text p {
  min-height: 54px;
}

.faq__item-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 16px 16px 16px 85px;
  background-color: #fff;
  border-radius: 11px;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .faq__item-head {
    padding-right: 55px;
  }
}
.faq__item-head:before {
  position: absolute;
  content: "";
  width: 54px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fac02e;
  background-image: url("../images/faq/question.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 11px;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
}
.faq__item-head:after {
  position: absolute;
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 10px;
  background-color: #fac02e;
  background-image: url("../images/common/accordeon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) scale(-1);
      -ms-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}

.faq__item-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .faq__item-title {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .faq__item-title {
    font-size: 14px;
  }
}

.faq__item-text {
  position: relative;
  height: 0;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .faq__item-text {
    font-size: 14px;
  }
}
.faq__item-text:before {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  left: 0;
  top: 32px;
  background-color: #ffffff;
  background-image: url("../images/faq/exclamation.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 11px;
}
.faq__item-text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}
.faq__item-text p:first-child {
  margin-top: 0;
}
.faq__item-text ul {
  padding-left: 0;
  list-style: none;
}
.faq__item-text ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faq__item-text ul li:before {
  width: 4px;
  height: 4px;
}

.for-monitorings__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f3f4f8;
  border-radius: 19px;
}
@media (max-width: 991.98px) {
  .for-monitorings__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8px;
  }
}

.for-monitorings__description {
  position: relative;
  width: 50%;
  padding: 30px 32px 36px;
}
@media (max-width: 991.98px) {
  .for-monitorings__description {
    width: 100%;
    margin-bottom: 12px;
  }
}
@media (max-width: 575.98px) {
  .for-monitorings__description {
    padding: 18px;
  }
}

.for-monitorings__description-links {
  margin-top: 28px;
}
.for-monitorings__description-links h6 {
  margin-top: 8px;
}
.for-monitorings__description-links h6:first-child {
  margin-top: 0;
}

.for-monitorings__description-field {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 94px;
  padding: 7px 7px 7px 20px;
}
@media (max-width: 575.98px) {
  .for-monitorings__description-field {
    padding-left: 12px;
  }
}
.for-monitorings__description-field p {
  display: inline-block;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .for-monitorings__description-field p {
    margin-right: 8px;
    font-size: 14px;
  }
}
.for-monitorings__description-field .button {
  height: 30px;
  padding: 0 34px;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
}

.for-monitorings__description-notice {
  margin-top: 42px;
}
@media (max-width: 575.98px) {
  .for-monitorings__description-notice {
    padding-right: 20px;
    font-size: 14px;
  }
}

.for-monitorings__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 50%;
  margin: 8px;
  padding: 28px 60px 35px 30px;
  background-color: #fff;
  border-radius: 0 11px 11px 0;
}
@media (max-width: 991.98px) {
  .for-monitorings__form {
    width: 100%;
    border-radius: 11px;
    margin: 0;
  }
}
@media (max-width: 575.98px) {
  .for-monitorings__form {
    padding: 20px;
  }
}

.for-monitorings__form-title {
  width: 100%;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.for-monitorings__form-fieldset {
  display: block;
  width: 100%;
  margin-top: 34px;
}

.for-monitorings__form-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 10px;
}
.for-monitorings__form-input:first-child {
  margin-top: 0;
}
.for-monitorings__form-input input {
  height: 100%;
  padding: 16px 15px 15px 30px;
}

.for-monitorings__form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 16px;
}
.for-monitorings__form-politic label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.for-monitorings__form-politic .default__politic-text {
  font-size: 13px;
}
.for-monitorings__form-politic .default__politic-text a {
  display: block;
}

.for-monitorings__form-captcha {
  width: 50%;
  height: 55px;
  border: 1px solid #fac02e;
  overflow: hidden;
}

.for-monitorings__form-button {
  width: 100%;
  margin-top: 16px;
  border: none;
}

.for-users__what-notice {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 700;
}

.for-users__what-text {
  margin-top: 24px;
}

.for-users__percent {
  margin-top: 44px;
}

.for-users__percent-title {
  background-color: #f3f4f8;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding: 0 24px;
  border-radius: 11px;
  font-size: 18px;
  font-weight: 700;
  line-height: 60px;
}
@media (max-width: 767.98px) {
  .for-users__percent-title {
    height: auto;
    padding: 12px 24px;
    line-height: 1.3;
  }
}

.for-users__percent-list {
  padding-left: 0;
  list-style: none;
  margin-top: 16px;
}
.for-users__percent-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.for-users__percent-list li:before {
  position: relative;
  content: "•";
  margin-right: 7px;
  color: #fac02e;
  font-size: 24px;
  font-weight: 700;
}
.for-users__percent-list li b {
  font-size: 24px;
}

.for-users__comision {
  margin-top: 44px;
}

.for-users__notice-email {
  margin-top: 44px;
  font-weight: 600;
}
.for-users__notice-email a {
  color: #fac02e;
  text-decoration: none;
}

.lk__tabs {
  position: relative;
  display: block;
  padding: 8px;
  background-color: #f3f4f8;
  border-radius: 19px 19px 0 0;
}

.lk__tabs-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 60px 16px;
  background-color: #ffffff;
  border-radius: 11px 11px 0 0;
}
@media (max-width: 1199.98px) {
  .lk__tabs-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .lk__tabs-wrap {
    padding: 15px;
  }
}
@media (max-width: 575.98px) {
  .lk__tabs-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 0;
  }
}

.lk__tab {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: black!important;
}
@media (max-width: 991.98px) {
  .lk__tab {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .lk__tab {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 15px;
  }
}
.lk__tab:before {
  position: relative;
  content: "";
  width: 25px;
  height: 24px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 991.98px) {
  .lk__tab:before {
    width: 20px;
    height: 19px;
    margin-right: 7px;
  }
}
.lk__tab.selected:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -16px;
  background-color: #fac02e;
}
@media (max-width: 575.98px) {
  .lk__tab.selected:after {
    bottom: -6px;
  }
}

.lk__content {
  position: relative;
  margin-top: 20px;
}

.lk__content-tab {
  display: none;
}
.lk__content-tab.is-active {
  display: block;
}

.lk__request-item {
  position: relative;
  margin-top: 15px;
  padding: 20px 68px 30px;
  background-color: #f3f4f8;
  border-radius: 19px;
}
@media (max-width: 1199.98px) {
  .lk__request-item {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 767.98px) {
  .lk__request-item {
    padding: 20px;
  }
}
.lk__request-item:first-child {
  margin-top: 0;
}

.lk__request-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #b0b2bA;
}
.lk__request-head p {
  font-size: 18px;
  font-weight: 600;
}
.lk__request-head .order {
  color: #b0b2bA;
}
.lk__request-head .order b {
  color: #232526;
}

.lk__request-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 18px;
}
@media (max-width: 575.98px) {
  .lk__request-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.lk__request-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 991.98px) {
  .lk__request-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.lk__request-content-item {
  position: relative;
  width: 240px;
  padding-left: 50px;
}
.lk__request-content-item .paysystem {
  position: absolute;
  width: 38px;
  height: 38px;
  left: 0;
  top: 0;
  background-color: #ffffff;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
          box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.lk__request-content-item p {
  margin-top: 5px;
  color: #b0b2bA;
  font-size: 12px;
}
.lk__request-content-item p.sum {
  margin-bottom: 5px;
  color: #232526;
  font-size: 18px;
  font-weight: 600;
}
.lk__request-content-item:first-child {
  margin-right: 88px;
}
@media (max-width: 991.98px) {
  .lk__request-content-item:first-child {
    margin-right: 30px;
    margin-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .lk__request-content-item:first-child {
    margin-right: 0;
  }
}
.lk__request-content-item:first-child:after {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  top: 12px;
  right: -56px;
  background-image: url("../images/lk/arrow.svg");
  background-size: cover;
}
@media (max-width: 991.98px) {
  .lk__request-content-item:first-child:after {
    width: 20px;
    height: 11px;
    top: auto;
    bottom: -30px;
    right: 50%;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.lk__request-result {
  margin-left: auto;
}
@media (max-width: 575.98px) {
  .lk__request-result {
    margin: 30px auto 0;
  }
}

.lk__request-status {
  position: relative;
  padding: 10px 22px 9px 50px;
  background-color: #ffffff;
  border-radius: 53px;
  font-weight: 600;
  color: #01c853;
}
@media (max-width: 767.98px) {
  .lk__request-status {
    padding-left: 40px;
    font-size: 14px;
  }
}
.lk__request-status:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/lk/success.svg");
}
.lk__request-status.is-error {
  color: #fd4444;
}
.lk__request-status.is-pending {
  color: #0c0d0d;
}
.lk__request-status.is-new {
  color: #0c0d0d;
}
.lk__request-status.is-error:before {
  background-image: url("../images/lk/error.svg");
}
.lk__request-status.is-pending:before {
  background-image: url("../images/lk/pending.svg");
  background-size: contain;
}
.lk__request-status.is-new:before {
  background-image: url("../images/lk/new.svg");
  background-size: contain;
}

.lk__request-button {
  display: inline-block;
  width: 100%;
  margin-top: 12px;
  height: 38px;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
}

.lk__referal-description {
  position: relative;
  padding: 24px 68px 28px;
  background-color: #f3f4f8;
  border-radius: 11px;
}
@media (max-width: 991.98px) {
  .lk__referal-description {
    padding: 25px;
  }
}
@media (max-width: 575.98px) {
  .lk__referal-description {
    padding: 15px;
  }
}
.lk__referal-description p {
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .lk__referal-description p {
    font-size: 16px;
  }
}

.lk__referal-notice {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 24px;
  margin-bottom: 24px;
  font-weight: 18;
  font-weight: 700;
}

.lk__referal-more {
  margin-top: 24px;
}
@media (max-width: 575.98px) {
  .lk__referal-more {
    font-size: 14px;
  }
}

.lk__referal-link {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #b0b2bA;
}

.lk__referal-code {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 12px;
}
@media (max-width: 575.98px) {
  .lk__referal-code {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lk__referal-code .code {
  position: relative;
  min-width: 690px;
  padding: 13px 160px 12px 20px;
  background-color: #ffffff;
  border-radius: 94px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .lk__referal-code .code {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .lk__referal-code .code {
    overflow: hidden;
  }
}
.lk__referal-code .button {
  position: absolute;
  height: 30px;
  top: 50%;
  right: 7px;
  font-size: 12px;
  line-height: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .lk__referal-code .button {
    position: relative;
    width: 150px;
    top: auto;
    right: auto;
    margin: 10px auto 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

.lk__referal-tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 11px 11px 0 0;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
}

.lk__referal-tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 125px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .lk__referal-tab {
    font-size: 14px;
    margin-left: 20px;
  }
}
.lk__referal-tab:first-child {
  margin-left: 0;
}
.lk__referal-tab:before {
  position: relative;
  content: "";
  width: 25px;
  height: 25px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.lk__referal-tab:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -16px;
}
.lk__referal-tab.is-active:after {
  background-color: #fac02e;
}

.lk__referal-content {
  position: relative;
  display: none;
  margin-top: 15px;
  padding: 20px 68px;
  background-color: #f3f4f8;
  border-radius: 11px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .lk__referal-content {
    padding: 20px 25px;
  }
}
.lk__referal-content p {
  margin-top: 10px;
}
.lk__referal-content p:first-child {
  margin-top: 0;
}
.lk__referal-content.is-active {
  display: block;
}

.lk__referal-money {
  margin-top: 15px;
  overflow: auto;
}

.lk__referal-withdraw {
  position: relative;
  margin-top: 15px;
  padding: 40px;
  background-color: #f3f4f8;
  border-radius: 11px;
}
@media (max-width: 575.98px) {
  .lk__referal-withdraw {
    padding: 15px;
  }
}
.lk__referal-withdraw p {
  font-size: 18px;
}

.lk__referal-withdraw-wrap {
  position: relative;
  max-width: 754px;
  margin: 0 auto;
  padding: 30px 68px;
  background-color: #ffffff;
  border-radius: 11px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .lk__referal-withdraw-wrap {
    padding: 30px;
  }
}
@media (max-width: 575.98px) {
  .lk__referal-withdraw-wrap {
    padding: 20px;
  }
}

.lk__referal-withdraw-title {
  font-size: 26px;
  font-weight: 800;
}
@media (max-width: 575.98px) {
  .lk__referal-withdraw-title {
    font-size: 20px;
  }
}

.lk__referal-withdraw-select-wrap {
  position: relative;
}

.lk__referal-withdraw-select {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
  padding: 12px 60px 12px 12px;
  background-color: #f3f4f8;
  border-radius: 39px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .lk__referal-withdraw-select {
    padding: 6px 50px 6px 10px;
    width: 100%;
  }
}
.lk__referal-withdraw-select:after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 8px;
  top: 50%;
  right: 20px;
  background-image: url("../images/common/accordeon-arrow.svg");
  -webkit-transform: translateY(-50%) scale(-1);
      -ms-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}
.lk__referal-withdraw-select.is-active:after {
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.lk__referal-withdraw-bank {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 12px;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.lk__referal-withdraw-list {
  padding: 20px;
  background-color: #f3f4f8;
}

.lk__referal-withdraw-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  padding: 6px;
  background-color: #ffffff;
  border-radius: 39px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.lk__referal-withdraw-list-item:last-child {
  margin-bottom: 0;
}
.lk__referal-withdraw-list-item .lk__referal-withdraw-bank {
  width: 28px;
  height: 28px;
  background-size: contain;
}

.lk__referal-withdraw-input {
  margin-top: 20px;
}

.lk__referal-withdraw-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .lk__referal-withdraw-submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .lk__referal-withdraw-submit .sum {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .lk__referal-withdraw-submit .sum {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .lk__referal-withdraw-submit .button {
    font-size: 14px;
  }
}

.lk__reklam-item {
  position: relative;
  margin-top: 15px;
  padding: 24px 68px 55px;
  background-color: #f3f4f8;
  border-radius: 11px;
}
@media (max-width: 991.98px) {
  .lk__reklam-item {
    padding: 20px 30px 30px;
  }
}
.lk__reklam-item:first-child {
  margin-top: 0;
}

.lk__reklam-notice {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 22px;
  font-size: 18px;
  font-weight: 700;
}

.lk__reklam-banner {
  margin-top: 25px;
  display: block;
}
.lk__reklam-banner img {
  width: auto;
}

.lk__reklam-code {
  margin-top: 24px;
}
.lk__reklam-code p {
  font-size: 18px;
  font-weight: 700;
}

.lk__reklam-sourcecode {
  position: relative;
}
@media (max-width: 991.98px) {
  .lk__reklam-sourcecode {
    overflow: hidden;
  }
}
.lk__reklam-sourcecode .code {
  width: 100%;
  height: auto;
  margin-top: 12px;
  padding: 13px 25% 12px 20px;
  background-color: #ffffff;
  border-radius: 94px;
  font-weight: 600;
  resize: none;
  line-height: 1;
}
.lk__reklam-sourcecode .button {
  position: absolute;
  height: 30px;
  top: 50%;
  right: 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .lk__reklam-sourcecode .button {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    margin-top: 12px;
    margin-left: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

.lk__security {
  position: relative;
  padding: 40px 0;
  background-color: #f3f4f8;
  border-radius: 11px;
}

.lk__security-form {
  width: 65%;
  min-width: 754px;
  margin: 0 auto;
  padding: 35px 68px;
  background-color: #ffffff;
  border-radius: 11px;
}
@media (max-width: 991.98px) {
  .lk__security-form {
    min-width: 0;
    max-width: 100%;
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  .lk__security-form {
    padding: 30px;
  }
}
@media (max-width: 575.98px) {
  .lk__security-form {
    padding: 15px;
  }
}

.lk__security-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
}

.lk__security-input {
  margin-top: 18px;
}

.lk__security-button {
  display: block;
  width: 294px;
  margin: 20px auto 0;
  text-align: center;
}
@media (max-width: 575.98px) {
  .lk__security-button {
    max-width: 100%;
    font-size: 16px;
  }
}

.lk__tab_request:before {
  background-image: url("../images/lk/lk_request.svg");
}

.lk__referal-tab_referal:before,
.lk__tab_referal:before {
  background-image: url("../images/lk/lk_referal.svg");
}

.lk__tab_reklam:before {
  background-image: url("../images/lk/lk_reklam.svg");
}

.lk__tab_security:before {
  background-image: url("../images/lk/lk_security.svg");
}

.lk__referal-tab_money:before {
  background-image: url("../images/lk/lk_money.svg");
}

.news-archive__wrap {
  padding: 20px 28px 20px 40px;
  background-color: #f3f4f8;
  border-radius: 19px;
}
@media (max-width: 575.98px) {
  .news-archive__wrap {
    padding: 18px 18px 35px;
  }
}

.news-archive__item {
  margin-top: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #b0b2bA;
}
.news-archive__item:first-child {
  margin-top: 0;
}

.news-archive__item-title {
  margin: 0;
  color: #232526;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .news-archive__item-title {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .news-archive__item-title {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .news-archive__item-title {
    font-size: 14px;
  }
}
.news-archive__item-title:hover {
  color: #fac02e;
}

.news-archive__item-date {
  margin-top: 8px;
  color: #b0b2bA;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  .news-archive__item-date {
    font-size: 12px;
  }
}

.news-archive__pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 40px;
  padding: 4px 16px 3px;
  background-color: #ffffff;
  border-radius: 30px;
}

.news-archive__pagination-item {
  margin-left: 15px;
  color: #232526;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .news-archive__pagination-item {
    font-size: 16px;
  }
}
.news-archive__pagination-item:first-child {
  margin-left: 0;
}
.news-archive__pagination-item.is-current, .news-archive__pagination-item:hover {
  color: #fac02e;
}

.news__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767.98px) {
  .news__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.news__list {
  width: 33%;
  padding: 8px 8px 26px;
  background-color: #f3f4f8;
  border-radius: 19px;
}
@media (max-width: 767.98px) {
  .news__list {
    width: 100%;
    max-width: 400px;
    margin: 35px auto 0;
  }
}

.news__list-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  background-color: #fff;
  border-radius: 11px 11px 0 0;
  text-align: center;
}
@media (max-width: 991.98px) {
  .news__list-tabs {
    height: 40px;
  }
}

.news__list-tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 100%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .news__list-tab {
    font-size: 15px;
  }
}
.news__list-tab:after {
  position: absolute;
  content: "";
  display: none;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #fac02e;
}
@media (max-width: 991.98px) {
  .news__list-tab:after {
    height: 3px;
  }
}
.news__list-tab.is-active:after {
  display: block;
}

.news__list-content {
  margin: 20px 12px 0;
  display: none;
}
@media (max-width: 991.98px) {
  .news__list-content {
    margin: 15px 8px 0;
  }
}
.news__list-content.is-active {
  display: block;
}

.news__list-item {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid #b0b2bA;
}
.news__list-item:first-child {
  padding-top: 0;
}
.news__list-item:before {
  position: absolute;
  content: "";
  display: none;
  width: 4px;
  height: 90%;
  left: -20px;
  top: 0;
  background-color: #fac02e;
}
@media (max-width: 991.98px) {
  .news__list-item:before {
    width: 2px;
    left: -16px;
  }
}
.news__list-item a {
  color: #232526;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .news__list-item a {
    font-size: 14px;
  }
}
.news__list-item a:hover {
  color: #fac02e;
}
.news__list-item p {
  margin-top: 8px;
  color: #b0b2bA;
  font-size: 12px;
}
.news__list-item.is-current:before {
  display: block;
}

.news__list-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  max-width: 300px;
  color: #232526;
}
@media (max-width: 991.98px) {
  .news__list-archive {
    margin-top: 20px;
    font-size: 14px;
  }
}
.news__list-archive svg {
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .news__list-archive svg {
    width: 18px;
    height: 18px;
  }
}
.news__list-archive:hover {
  color: #fac02e;
}
.news__list-archive:hover g {
  fill: #fac02e;
}

.news__content {
  width: calc(67% - 30px);
  margin-left: 30px;
}
@media (max-width: 767.98px) {
  .news__content {
    width: 100%;
    margin-left: 0;
  }
}

.news__content-head {
  position: relative;
  width: 100%;
}
.news__content-head img {
  border-radius: 19px 19px 0 0;
}

.news__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 40px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
  border-radius: 0px 0px 19px 19px;
}
@media (max-width: 991.98px) {
  .news__content-title {
    padding: 18px 25px;
  }
}
@media (max-width: 767.98px) {
  .news__content-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
}
.news__content-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .news__content-title h2 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .news__content-title h2 {
    font-size: 16px;
  }
}
.news__content-title p {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  color: #b0b2bA;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .news__content-title p {
    -ms-flex-item-align: start;
        align-self: flex-start;
    font-size: 13px;
  }
}
@media (max-width: 767.98px) {
  .news__content-title p {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 10px;
    font-size: 12px;
  }
}

.news__content-text {
  margin-top: 38px;
  padding-bottom: 35px;
  border-bottom: 1px solid #b0b2bA;
}
.news__content-text p {
  margin-top: 20px;
}
.news__content-text p:first-child {
  margin-top: 0;
}

.news__content-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  font-weight: bold;
}
.news__content-share a {
  margin-left: 16px;
}
.news__content-share a path {
  fill: #232526;
  -webkit-transition: fill 0.15s ease;
  -o-transition: fill 0.15s ease;
  transition: fill 0.15s ease;
}
.news__content-share a:first-child {
  margin-left: 20px;
}
.news__content-share a:hover path {
  fill: #fac02e;
}

.partners__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  padding: 8px;
  background-color: #f3f4f8;
  border-radius: 19px;
}
@media (max-width: 991.98px) {
  .partners__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.partners__content-item {
  position: relative;
  width: calc(50% - 3px);
  padding: 28px 60px 25px 110px;
  border-radius: 0 11px 11px 0;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .partners__content-item {
    width: 100%;
    border-radius: 11px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  .partners__content-item {
    padding: 20px 20px 20px 75px;
  }
}
.partners__content-item:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fac02e;
  background-image: url("../images/partners/monitoring-bg.svg");
  background-repeat: no-repeat;
  background-position-y: bottom;
}
.partners__content-item:first-child {
  border-radius: 11px 0 0 11px;
}
.partners__content-item:first-child:before {
  background-image: url("../images/partners/users-bg.svg");
}
.partners__content-item:first-child .partners__content-title:before {
  background-image: url("../images/partners/users-ico.svg");
}

.partners__content-title {
  position: relative;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 800;
}
.partners__content-title:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  top: -15px;
  left: -78px;
  background-color: #ffffff;
  background-image: url("../images/partners/monitoring-ico.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
          box-shadow: 9px 0px 21px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
@media (max-width: 575.98px) {
  .partners__content-title:before {
    width: 50px;
    height: 50px;
    top: -8px;
    left: -69px;
  }
}

.partners__content-text {
  margin-top: 16px;
  font-size: 14px;
}

.partners__content-button {
  height: 40px;
  margin-top: 16px;
  padding: 0 58px;
  font-size: 14px;
  line-height: 40px;
}
.currency-dropdown {
  margin: 0 0 0 5px;
}
.dropdown-content {
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
  z-index: 9999;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  border-radius: 9px;
  box-shadow: 0 5px 5px -3px rgb(0 0 0/20%),0 8px 10px 1px rgb(0 0 0/14%),0 3px 14px 2px rgb(0 0 0/12%)!important;
}
.currency_dropdown_li {
  text-align: center;
  padding: 5px 0;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
}
.currency_dropdown_li.active {
  background: #337bfe;
  color: #fff;
}
.user_account::before {
  background-image: url(../images/partners/users-ico.svg);
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 23px;
  top: 30%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.user_account {
  padding-left: 52px;
  position: relative;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.error-msg {
  color: #c15959;
  margin: 7px 0 10px 0;
  font-size: 13px;
}
.error-input {
  background: rgb(193 89 89/0.1)!important;
  background-color: rgb(193 89 89/0.1)!important;
}
.error-input-text {
  background: rgb(193 89 89/0.1);
  border: 1px solid #fcbaba;
}
.email_wrap{
  width: 100%;
}
.radio-inputs {
  background-image: linear-gradient(90deg,#f2f4f9 0%,#e9ebf0 100%);
  border-radius: 8px;
  padding: 7px 25px 10px;
  margin: 0 0 10px;
}
[type=radio]:not(:checked)+span, [type=radio]:checked+span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-transition: .28s ease;
  transition: .28s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[type=radio]:not(:checked)+span:before, [type=radio]:not(:checked)+span:after {
  border: 2px solid #5a5a5a;
  background: #fff;
}
[type=radio]:not(:checked)+span:before, [type=radio]:not(:checked)+span:after, [type=radio]:checked+span:before, [type=radio]:checked+span:after, [type=radio].with-gap:checked+span:before, [type=radio].with-gap:checked+span:after {
  border-radius: 4px;
}
[type=radio]:not(:checked)+span:before, [type=radio]:not(:checked)+span:after, [type=radio]:checked+span:before, [type=radio]:checked+span:after, [type=radio].with-gap:checked+span:before, [type=radio].with-gap:checked+span:after {
  border-radius: 50%;
}
[type=radio]+span:before, [type=radio]+span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 13px;
  height: 13px;
  z-index: 0;
  -webkit-transition: .28s ease;
  transition: .28s ease;
  box-shadow: 0 1px 4px rgb(25 53 41 / 6%), 0 3px 8px rgb(25 53 41 / 8%);
}
[type=radio]+span:before, [type=radio]+span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  margin: 4px;
  width: 16px;
  height: 16px;
  z-index: 0;
  -webkit-transition: .28s ease;
  transition: .28s ease;
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[type=radio]:not(:checked)+span:before, [type=radio]:not(:checked)+span:after, [type=radio]:checked+span:before, [type=radio]:checked+span:after, [type=radio].with-gap:checked+span:before, [type=radio].with-gap:checked+span:after {
  border-radius: 4px;
}
[type=radio]:checked+span:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  top: 0px;
  left: 0px;
}
[type=radio]:checked+span:after, [type=radio].with-gap:checked+span:after {
  background-color: #337bfe;
}
[type=radio]:not(:checked)+span:before, [type=radio]:not(:checked)+span:after, [type=radio]:checked+span:before, [type=radio]:checked+span:after, [type=radio].with-gap:checked+span:before, [type=radio].with-gap:checked+span:after {
  border-radius: 50%;
}
[type=radio]+span:before, [type=radio]+span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 13px;
  height: 13px;
  z-index: 0;
  -webkit-transition: .28s ease;
  transition: .28s ease;
  box-shadow: 0 1px 4px rgb(25 53 41 / 6%), 0 3px 8px rgb(25 53 41 / 8%);
}
[type=radio]+span:before, [type=radio]+span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  margin: 4px;
  width: 16px;
  height: 16px;
  z-index: 0;
  -webkit-transition: .28s ease;
  transition: .28s ease;
}
.reason {
  font-size: 13px;
  margin-top: 10px;
}
.step-links {
  display: table;
  margin: 15px auto;
}
.none_of_claims {
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  margin: 30px 0;
}
.auth__err_message {
  padding: 12px 0;
  background: #f44336;
  margin: 9px 0;
  border-radius: 9px;
  text-align: center;
  font-weight: 800;
  color: white;
}
.login__content {
  padding: 40px 0;
}
.login__content button{
  width: 100%;
  margin-top: 20px;
}
.error-msg ul li {
  list-style: none;
}
.error-msg ul {
  padding: 0;
}
.login__content .mid_line {
  margin: 20px 0 0 0;
}
.success_edit {
  font-weight: bold;
  color: #4caf50;
  font-size: 19px;
}
.cities_1, .cities_2 {
  margin-top: 15px;
  display: block;
  border: 1px solid #afb2ba;
  padding: 15px 30px;
  border-radius: 9px;
  color: black!important;
  background: #f3f4f8;
  position: relative;
}
.cities_1:after {
  content: "";
  width: 12px;
  height: 8px;
  position: absolute;
  right: 11px;
  top: 45%;
  margin: 0 8px 0 5px;
  background-image: url(../images/exchange/pin.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.cities_2:after {
  content: "";
  width: 12px;
  height: 8px;
  position: absolute;
  right: 11px;
  top: 45%;
  margin: 0 8px 0 5px;
  background-image: url(../images/exchange/pin.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.networks_1, .networks_2{
  margin-top: 15px;
}
li.city_dropdown_li {
  padding: 15px 14px;
  cursor: pointer;
}
li.city_dropdown_li.active {
  background: #fabf2f;
}
.filteredItem {
  display: none;
}
.modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fafafa;
  padding: 0;
  max-height: 70%;
  width: 55%;
  margin: auto;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top,opacity;
  border-radius: 25px;
  outline: none;
}
.z-depth-5, .modal {
  -webkit-box-shadow: 0 24px 38px 3px rgb(0 0 0 / 14%), 0 9px 46px 8px rgb(0 0 0 / 12%), 0 11px 15px -7px rgb(0 0 0 / 20%);
  box-shadow: 0 24px 38px 3px rgb(0 0 0 / 14%), 0 9px 46px 8px rgb(0 0 0 / 12%), 0 11px 15px -7px rgb(0 0 0 / 20%);
}
.modal-overlay {
  position: fixed;
  z-index: 999;
  top: -25%;
  left: 0;
  bottom: 0;
  right: 0;
  height: 125%;
  width: 100%;
  background: #000;
  display: none;
  will-change: opacity;
}
.modal .mid {
  padding: 30px;
}
#notify-to, #notify-in {
  margin-bottom: 20px;
}
.notify-h {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
}
.help_labels {
  font-weight: 500;
  font-size: 13px;
  padding: 0 0 0 15px;
}
@media screen and (max-width: 1024px){
  .modal {
      width: 95%;
  }
  .help_labels {
    display: none;
  }
}
.load-animate {
  animation: loader 3s infinite ease-in-out;
  -webkit-animation: loader 3s infinite ease-in-out;
  color: transparent !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  border-radius: 6px;
}

.load-animate.profile-pic {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.load-animate .material-icons {
  opacity: 0;
}

.load-animate img {
  opacity: 0;
}

input.load-animate::placeholder {
  animation: loader 3s infinite ease-in-out;
  -webkit-animation: loader 3s infinite ease-in-out;
  color: transparent !important;
}

.load-animate i {
  color: transparent !important;
}
@keyframes loader {
  0% {
      background-color: rgba(165, 165, 165, 0.1);
  }

  50% {
      background-color: rgba(165, 165, 165, 0.3);
  }

  100% {
      background-color: rgba(165, 165, 165, 0.1);
  }
}

@-webkit-keyframes loader {
  0% {
      background-color: rgba(165, 165, 165, 0.1);
  }

  50% {
      background-color: rgba(165, 165, 165, 0.3);
  }

  100% {
      background-color: rgba(165, 165, 165, 0.1);
  }
}

.load-animate * {
  color: transparent!important;
  background: transparent!important;
  visibility: hidden;
}
.load-animate .select_active::after{
  display: none;
}
.default__polic-text.exchange__politic-text {
  width: 100%;
  margin: 25px 0 0 0;
  text-align: center;
}
.check-claim-content {
  display: flex;
}

.check-claim-content .check-claim-side {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 5px;
  padding: 7px;
  border-radius: 7px;
}

.check-claim-content .check-claim-side div:first-child {
  display: flex;
  flex-direction: row;
}

.check-claim-reqs {
  word-break: break-all;
  font-size: 13px;
}

.check-claim-reqs div {
  padding: 5px 0 0px 0;
}

.check-claim-ps {
  font-weight: 900;
  margin: 0 12px 0 0;
  color: #6a6a6a;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.check-claim-amount {
  font-size: 19px;
  padding: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.check-claim-devider {
  width: 3%;
  display: flex;
  align-items: center;
  position: relative;
  top: 28px;
  height: 20px;
  background-size: contain;
  background-image: url(../images/exchange/exchange-arrow.svg);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

.check-claim-devider-mobile {
  display: none;
  width: 20px;
  align-items: center;
  position: relative;
  right: -11px;
  height: 20px;
  background-size: contain;
  background-image: url(../images/exchange/exchange-arrow.svg);
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.exchange__icon {
  width: 46px;
  position: relative;
  top: 3px;
  margin-right: 18px;
  box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
  border-radius: 9px;
  background-color: #ffffff;
  margin-bottom: 7px;
}

.exchange__icon img {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  width: 100%;
}
.bot {
  text-align: center;
  margin: 0 0 40px 0;
}
.bot a {
  width: 44%;
  display: inline-block;
}
.bot a:last-child {
  color: black;
}
.bot a:last-child {
  color: black;
  background: #fafafa;
}
.bot a:last-child:hover {
  color: black;
  background: #f1eded;
}
@media screen and (max-width: 1390px) {
  .modal{
    width: 75%;
  }
}
@media screen and (max-width: 1024px) {
  .check-claim-content {
      flex-direction: column;
  }

  .check-claim-content .check-claim-side {
      width: 100%;
      margin: 0 0 5px 0;
  }
  .check-claim-devider {
      display: none;
  }

  .check-claim-devider-mobile {
      display: block;
      text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .help_labels {
    display: none;
  }
  .bot a {
    width: 90%;
  }
}
.default__header-content.cl{
  width: 100%;
}
.time {
  display: inline-block;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  top: -9px;
}
.time.expired.timer-stop {
  background: red;
  color: white;
}
.time.timer-tick {
  background: #fabf2f;
}
a.popup__submit-close{
  text-align: center;
}
.qr_icon_input {
  position: absolute;
  top: 3px;
  right: 152px;
  width: 35px;
  background: url(../images/popup/qr.svg);
  height: 35px;
  background-size: contain;
  background-color: white;
  cursor: pointer;
}
.error-i{
  right: 152px;
  width: 31px;
  background: url(../images/exchange/error.svg);
  height: 31px;
  background-size: contain;
  display: inline-block;
}
.success-i{
  right: 152px;
  width: 31px;
  background: url(../images/exchange/done.svg);
  height: 31px;
  background-size: contain;
  display: inline-block;
}
#qr_modal {
  width: fit-content;
}
#qr_memo_modal{
  width: fit-content;
}
a.claim-link {
  background: #2196f3;
  width: 100%;
  display: block;
  text-align: center;
  margin: 30px 0 30px 0;
  padding: 12px;
  border-radius: 30px;
  color: white;
}
.loader {
  position: relative;
  margin: 0 auto;
  width: 45px;
}

.loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
      transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
      transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
  }

  50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px;
  }

  100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
  }

  50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px;
  }

  100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -124px;
  }
}

@-webkit-keyframes color {

  100%,
  0% {
      stroke: #d62d20;
  }

  40% {
      stroke: #0057e7;
  }

  66% {
      stroke: #008744;
  }

  80%,
  90% {
      stroke: #ffa700;
  }
}

@keyframes color {

  100%,
  0% {
      stroke: #d62d20;
  }

  40% {
      stroke: #0057e7;
  }

  66% {
      stroke: #008744;
  }

  80%,
  90% {
      stroke: #ffa700;
  }
}

.showbox {
  padding: 5%;
}
.fail-paid {
  font-weight: 600;
  margin: 50px 0 0 0;
  font-size: 24px;
  text-align: center;
}
.fail-paid p {
  margin: 18px 0 0 0;
  font-weight: 100;
}
.news-archive-item {
  margin: 25px 0;
}
.news-archive-item a {
  margin: 0 0 5px 0;
  display: block;
  color: #2196f3;
  font-size: 19px;
}
.news-archive-item a:hover {
  color:black;
}
.news-pagination {
  margin: 25px 0;
}
.news-pagination .paginator {
  background: #faf8f3;
    width: 38px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 8px;
    color: black;
    text-align: center;
    padding: 8px 0;
}
.news-pagination .paginator.active {
  background: #fabf2f;
}
h3.news__h3 {
  margin: 16% 0;
}
.referal-table{
  width: 100%;
  min-width: 500px;
}
.referal-table tr:nth-child(2n){
  background:#fafafa;
}
.referal-table tr:first-child td{
  padding-bottom: 20px;
}
.profit{
  display: inline-block;
  padding: 8px 7px;
  border-radius: 15px;
  margin: 10px 0;
  font-size: 14px;
}
.profit-plus{
  background: #4caf50;
  color: white;
}
.profit-minus{
  background: #f44336;
  color: white;
}
.profit-minus-pending{
  background: #ff9800;
  color: white;
}
.lk__referal-withdraw-list-item.active {
  border: 2px solid #ffc107;
}
.ref_ps_name {
  width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
}
div#referal_directions {
  min-width: 240px;
}
.ref-filter a {
  font-size: 12px;
  background: #b3b3b3;
  color: white!important;
  padding: 4px 2px;
  border-radius: 5px;
  cursor: pointer;
}
.ref-filter{
  margin-bottom: 20px;
}
.ref-filter a.active {
  background: #000000;
}
.ref-success-output {
  color: white;
  font-weight: 900;
  margin-top: 22px;
  font-size: 17px;
  background: #4caf50;
  padding: 11px 18px;
  display: inline-block;
  border-radius: 10px;
}
.ref-summ-error {
  color: white;
  font-weight: 900;
  margin-top: 22px;
  font-size: 17px;
  background: #f44336;
  padding: 11px 18px;
  display: inline-block;
  border-radius: 10px;
}
.head__mobile-login .head__login-logout{
  top: -14px;
}
.tech {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffffe3;
  z-index: 3;
  border-radius: 20px;
  text-align: center;
  padding: 10% 0;
}
.tech_img{
  background: url(../images/exchange/analyse.svg);
  width: 100%;
  height: 80%;
  background-repeat: no-repeat;
  background-position: top;
  margin: 0 auto;
}
#time-tick {
  background: #03a9f426;
    display: inline-block!important;
    width: 200px;
    margin-top: 12px;
    border-radius: 5px;
}



/* Modal */
.datepicker-modal {
  max-width: 325px;
  min-width: 300px;
  max-height: none;
}

.datepicker-container.modal-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.datepicker-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 280px;
  margin: 0 auto;
}

.datepicker-controls .selects-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.datepicker-controls .select-wrapper input {
  border-bottom: none;
  text-align: center;
  margin: 0;
}

.datepicker-controls .select-wrapper input:focus {
  border-bottom: none;
}

.datepicker-controls .select-wrapper .caret {
  display: none;
}

.datepicker-controls .select-year input {
  width: 50px;
}

.datepicker-controls .select-month input {
  width: 70px;
}

.month-prev, .month-next {
  margin-top: 4px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

/* Date Display */
.datepicker-date-display {
  -webkit-box-flex: 1;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
  background-color: black;
  color: #fff;
  padding: 20px 22px;
  font-weight: 500;
}

.datepicker-date-display .year-text {
  display: block;
  font-size: 1.5rem;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.7);
}

.datepicker-date-display .date-text {
  display: block;
  font-size: 2.8rem;
  line-height: 47px;
  font-weight: 500;
}

/* Calendar */
.datepicker-calendar-container {
  -webkit-box-flex: 2.5;
  -webkit-flex: 2.5 auto;
      -ms-flex: 2.5 auto;
          flex: 2.5 auto;
}

.datepicker-table {
  width: 280px;
  font-size: 1rem;
  margin: 0 auto;
}

.datepicker-table thead {
  border-bottom: none;
}

.datepicker-table th {
  padding: 10px 5px;
  text-align: center;
}

.datepicker-table tr {
  border: none;
}

.datepicker-table abbr {
  text-decoration: none;
  color: #999;
}

.datepicker-table td {
  border-radius: 50%;
  padding: 0;
}

.datepicker-table td.is-today {
  color: #ffc107;
}

.datepicker-table td.is-selected {
  background-color: black;
  color: #fff;
}

.datepicker-table td.is-outside-current-month, .datepicker-table td.is-disabled {
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.datepicker-day-button {
  background-color: transparent;
  border: none;
  line-height: 38px;
  display: block;
  width: 100%;
  border-radius: 50%;
  padding: 0 5px;
  cursor: pointer;
  color: inherit;
}

.datepicker-day-button:focus {
  background-color: rgba(43, 161, 150, 0.25);
}

/* Footer */
.datepicker-footer {
  width: 280px;
  margin: 0 auto;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.datepicker-cancel,
.datepicker-clear,
.datepicker-today,
.datepicker-done {
  color: #26a69a;
  padding: 0 1rem;
}

.datepicker-clear {
  color: #F44336;
}

/* Media Queries */
@media only screen and (min-width: 601px) {
  .datepicker-modal {
    max-width: 625px;
  }
  .datepicker-container.modal-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .datepicker-date-display {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 270px;
        -ms-flex: 0 1 270px;
            flex: 0 1 270px;
  }
  .datepicker-controls,
  .datepicker-table,
  .datepicker-footer {
    width: 320px;
  }
  .datepicker-day-button {
    line-height: 44px;
  }
}

/* Select Field
   ========================================================================== */

select {
  display: none;
}

select.browser-default {
  display: block;
}

select {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  height: 3rem;
}

.select-label {
  position: absolute;
}

.select-wrapper {
  position: relative;
}

.select-wrapper.valid + label,
.select-wrapper.invalid + label {
  width: 100%;
  pointer-events: none;
}

.select-wrapper input.select-dropdown {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  outline: none;
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
}

.select-wrapper input.select-dropdown {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  outline: none;
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
}

.select-wrapper input.select-dropdown:focus {
  border-bottom: 1px solid #26a69a;
}

.select-wrapper .caret {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 0;
  fill: rgba(0, 0, 0, 0.87);
}

.select-wrapper + label {
  position: absolute;
  top: -26px;
  font-size: 0.8rem;
}

select:disabled {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled + label {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled .caret {
  fill: rgba(0, 0, 0, 0.42);
}

.select-wrapper input.select-dropdown:disabled {
  color: rgba(0, 0, 0, 0.42);
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.select-wrapper i {
  color: rgba(0, 0, 0, 0.3);
}

.select-dropdown li.disabled,
.select-dropdown li.disabled > span,
.select-dropdown li.optgroup {
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

body.keyboard-focused .select-dropdown.dropdown-content li:focus {
  background-color: rgba(0, 0, 0, 0.08);
}

.select-dropdown.dropdown-content li:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.select-dropdown.dropdown-content li.selected {
  background-color: rgba(0, 0, 0, 0.03);
}

.prefix ~ .select-wrapper {
  margin-left: 3rem;
  width: 92%;
  width: calc(100% - 3rem);
}

.prefix ~ label {
  margin-left: 3rem;
}

.select-dropdown li img {
  height: 40px;
  width: 40px;
  margin: 5px 15px;
  float: right;
}

.select-dropdown li.optgroup {
  border-top: 1px solid #eee;
}

.select-dropdown li.optgroup.selected > span {
  color: rgba(0, 0, 0, 0.7);
}

.select-dropdown li.optgroup > span {
  color: rgba(0, 0, 0, 0.4);
}

.select-dropdown li.optgroup ~ li.optgroup-option {
  padding-left: 1rem;
}

.select-wrapper input.select-dropdown:focus {
  border-bottom: 1px solid #26a69a;
}

.select-wrapper .caret {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 0;
  fill: rgba(0, 0, 0, 0.87);
}

.select-wrapper + label {
  position: absolute;
  top: -26px;
  font-size: 0.8rem;
}

select:disabled {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled + label {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled .caret {
  fill: rgba(0, 0, 0, 0.42);
}

.select-wrapper input.select-dropdown:disabled {
  color: rgba(0, 0, 0, 0.42);
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.select-wrapper i {
  color: rgba(0, 0, 0, 0.3);
}

.select-dropdown li.disabled,
.select-dropdown li.disabled > span,
.select-dropdown li.optgroup {
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

body.keyboard-focused .select-dropdown.dropdown-content li:focus {
  background-color: rgba(0, 0, 0, 0.08);
}

.select-dropdown.dropdown-content li:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.select-dropdown.dropdown-content li.selected {
  background-color: rgba(0, 0, 0, 0.03);
}

.prefix ~ .select-wrapper {
  margin-left: 3rem;
  width: 92%;
  width: calc(100% - 3rem);
}

.prefix ~ label {
  margin-left: 3rem;
}

.select-dropdown li img {
  height: 40px;
  width: 40px;
  margin: 5px 15px;
  float: right;
}

.select-dropdown li.optgroup {
  border-top: 1px solid #eee;
}

.select-dropdown li.optgroup.selected > span {
  color: rgba(0, 0, 0, 0.7);
}

.select-dropdown li.optgroup > span {
  color: rgba(0, 0, 0, 0.4);
}

.select-dropdown li.optgroup ~ li.optgroup-option {
  padding-left: 1rem;
}

.datepicker-done, .datepicker-cancel {
    background: #fafafa;
    color: black;
}
.confirmation-btns {
    margin: 10px 0 8px 0;
}
.referral__date-filter .button {
  margin-left: 45px;
}
.referral__date-filter .dp__input {
  cursor: pointer;
  border: 1px solid #dbd6d6;
  border-radius: 3px;
}
@media (max-width: 767.98px){
  .referral__date-filter {
    display: block;
  }
  .referral__date-filter .button {
    width: 100%;
    margin: 0;
  }
  .referral__date-filter .dp__input {
    width: 100%;
    margin: 5px 0;
  }
  .referral__date-filter .dp__input:first-child {
    margin-top: 5px;
  }
}