@charset "UTF-8";
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

/*!
 * 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, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  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: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  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 > * {
  box-sizing: border-box;
  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 {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

.col-12 {
  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 {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    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 {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    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 {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    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 {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    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: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    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: grid !important;
}

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

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

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

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

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

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

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

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

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

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

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

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

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  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: 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: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    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: 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: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    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: 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: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    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: 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: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    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: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    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: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    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: 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: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: rgb(221.35, 224.2, 227.05);
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: rgb(221.35, 224.2, 227.05);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

::-moz-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: orange;
  color: #fff;
}

::selection {
  background-color: orange;
  color: #fff;
}

input, textarea {
  outline: none;
}
input:focus:required:invalid, textarea:focus:required:invalid {
  border-color: red;
}
input:required:valid, textarea:required:valid {
  border-color: green;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #8E8997;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

details {
  position: relative;
  width: 300px;
  margin-right: 1rem;
}

details[open] {
  z-index: 1;
}

summary {
  padding: 8px 16px;
  cursor: pointer;
  border: 1px solid #8E8997;
  border-radius: 10px;
  background-color: transparent;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
}

summary:after {
  content: "";
  display: inline-block;
  float: right;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-bottom-left-radius: 2px;
  transform: rotate(-45deg) translate(0%, 70%);
  transform-origin: center center;
  transition: transform ease-in-out 100ms;
}

summary:focus {
  outline: none;
}

details[open] summary:after {
  transform: rotate(135deg) translate(50%, -60%);
}

.custom-select ul {
  width: 100%;
  background: #fff;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  margin: 0;
  box-sizing: border-box;
  border-radius: 10px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 1px 2px 15px rgba(37, 38, 48, 0.08);
}

.custom-select li {
  margin: 0;
  padding: 1rem;
  list-style: none;
  transition: 0.5s;
}
.custom-select li:hover {
  background: #f1f6fe;
  color: #23225c;
}
@media (max-width: 425px) {
  .custom-select li {
    padding: 0.5rem 1rem;
  }
}

li:last-child {
  border-bottom: none;
}

/* FAKE SELECT */
summary.radios {
  counter-reset: radios;
}

input[type=radio] {
  counter-increment: radios;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}

input[type=radio]:checked {
  display: inline;
}

input[type=radio]:after {
  content: attr(title);
  display: inline;
  font-size: 1rem;
}

ul.list {
  counter-reset: labels;
}

label {
  width: 100%;
  display: block;
  cursor: pointer;
}

.toggle-password {
  position: absolute;
  right: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: #aaa; /* Цвет иконки, можно изменить по вашему усмотрению */
  font-size: 18px; /* Размер иконки, можно изменить по вашему усмотрению */
  margin-bottom: 5px;
}

.toggle-password:hover {
  color: #666; /* Цвет иконки при наведении, можно изменить */
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 34, 92, 0.46);
  backdrop-filter: blur(11px);
  transition: all 0.5s ease-in-out;
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 0;
  width: 296px;
  position: relative;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.modal-content-top {
  margin: 5% auto;
}

.modal-content-button-flex {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
.modal-content-button-flex .loginClose {
  position: absolute;
  right: -17px;
  top: -17px;
  background: rgba(232, 240, 254, 0.6);
  border-radius: 99px;
  padding: 9px 10px;
  line-height: 17px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
  font-size: 28px;
}
.modal-content-button-flex .loginClose:hover, .modal-content-button-flex .loginClose:active {
  cursor: pointer;
}

.modal-content-main {
  padding: 16px;
}
.modal-content-main p {
  font-size: 14px;
}
.modal-content-main .text-danger {
  line-height: 21px;
  margin-bottom: 5px;
  background: #f36e6e;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.modal-content-main input::-moz-placeholder {
  margin-left: 15px;
}

.modal-content-main input::placeholder {
  margin-left: 15px;
}

.modal-content-main input {
  width: 264px;
  height: 48px;
  border: 2px solid #D8DCE1;
  border-radius: 8px;
  padding-left: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.modal-content-main input:focus, .modal-content-main input:active {
  border-color: #D8DCE1;
}

.modal-content-main input:first-child {
  margin-top: 15px;
}

.modal-content-p {
  color: #8E8997;
}

.modal-strong-dark {
  color: #545158;
}

.modal-button-login, .modal-button-proceed, .modal-button-look {
  width: 264px;
  background-color: #23225C;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
}

.modal-button-login, .modal-button-proceed {
  margin-bottom: 8px;
  margin-top: 24px;
}

.modal-content-button-flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  margin-left: 25px;
  margin-right: 25px;
  gap: 20px;
}

.modal-content-button-flex-column img {
  width: 100px;
}

.modal-content-button-flex-column .modal-content-p {
  text-align: center;
  margin: -5px 0 5px;
}

.modal-input-margin {
  margin-bottom: 10px;
}

.modal-content-p-head {
  color: #23225C;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.close-modal {
  text-decoration: none;
  color: #454545;
  font-size: 34px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 5px;
}

/*The Modal (Язык, Валюта, Страна проживания)*/
.modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-language,
.modal-cancel,
.modal-full-coverage,
.modal-update,
.modal-call,
.modal-currency,
.modal-create-accaunt,
.modal-save-heart,
.modal-grade,
.modal-booking-managment,
.modal-reason-cancell,
.modal-current-reservation,
.modal-rent-terms {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px 40px 40px;
  background: #FFFFFF;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
}

.modal-language-width {
  width: 1080px;
}

.modal-cancel-width,
.modal-full-coverage-width,
.modal-rent-terms-width {
  width: 885px;
}

.modal-update-width {
  width: 543px;
}

.modal-call-width {
  width: 492px;
}

.modal-currency-width {
  width: 571px;
}

.modal-create-accaunt-width {
  width: 407px;
}

.modal-save-heart-width {
  width: 950px;
}

.modal-grade-width {
  width: 531px;
}

.modal-booking-managment-width {
  width: 796px;
}

.modal-reason-cancell-width {
  width: 350px;
}

.modal-current-reservation-width {
  width: 420px;
}

.close1,
.close2,
.close3,
.close5,
.close6,
.close7,
.close8,
.close9,
.close10,
.close11,
.close12,
.close13 {
  cursor: pointer;
  font-size: 30px;
  display: flex;
  justify-content: flex-end;
}

.modal-language-button {
  margin: 32px 300px 24px;
  width: auto;
  height: 50px;
  background: #eee;
  border-radius: 8px;
  display: flex;
  margin-bottom: 24px;
}
.modal-language-button .buttonBlue {
  border: none;
  width: 200px;
  height: 50px;
  background: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #8E8997;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-language-button .buttonBlue span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.modal-language-button .buttonBlue img {
  width: 20px;
  height: 20px;
}

.modal-language-button button:hover {
  background-color: #ddd;
  border-radius: 8px;
}

.modal-language-button button.active {
  background: #23225C;
  border-radius: 8px;
  color: #fff;
}

.tabcontents {
  display: none;
}

.tabcontents-landuage,
.tabcontents-currency,
.tabcontents-country {
  display: grid;
  grid-template-columns: repeat(5, 200px);
}
.tabcontents-landuage p,
.tabcontents-currency p,
.tabcontents-country p {
  font-size: 16px;
  line-height: 19px;
  color: #545158;
  height: 35px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 8px;
}
.tabcontents-landuage span,
.tabcontents-currency span,
.tabcontents-country span {
  font-weight: 600;
  margin-right: 8px;
}
.tabcontents-landuage p:hover,
.tabcontents-currency p:hover,
.tabcontents-country p:hover {
  text-decoration: underline;
}
.tabcontents-landuage .active,
.tabcontents-currency .active,
.tabcontents-country .active {
  background: #E1EEFF;
  border-radius: 8px;
}
.tabcontents-landuage__column,
.tabcontents-currency__column,
.tabcontents-country__column {
  display: grid;
  grid-template-columns: repeat(5, 200px);
}
@media (max-width: 1000px) {
  .tabcontents-landuage__column,
  .tabcontents-currency__column,
  .tabcontents-country__column {
    grid-template-columns: repeat(4, 200px);
  }
}
@media (max-width: 768px) {
  .tabcontents-landuage__column,
  .tabcontents-currency__column,
  .tabcontents-country__column {
    grid-template-columns: repeat(3, 200px);
  }
}
@media (max-width: 606px) {
  .tabcontents-landuage__column,
  .tabcontents-currency__column,
  .tabcontents-country__column {
    grid-template-columns: repeat(2, 200px);
  }
}

.tabcontents-currency-first,
.tabcontents-country-first {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #C2C5C8;
}

.modal h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  color: #23225C;
  margin-bottom: 40px;
}
.modal .text16-margin {
  margin-top: 16px;
}
.modal .header-p {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #545158;
  margin: 16px 0 8px;
}

.modal-update {
  text-align: center;
}
.modal-update img {
  margin: 20px 0 30px;
  width: 196px;
  height: 188px;
}
.modal-update h2 {
  margin-bottom: 15px;
}
.modal-update button {
  margin-top: 10px;
  width: 270px;
  height: 50px;
}

.modal-call {
  text-align: center;
}
.modal-call img {
  margin: 10px 0 24px;
  width: 189px;
  height: 220.26px;
}
.modal-call h2 {
  margin-bottom: 24px;
}
.modal-call .small-p {
  font-size: 18px;
  line-height: 140%;
  color: #545158;
}
.modal-call .bid-p {
  font-size: 28px;
  line-height: 140%;
  color: #23225C;
  margin-top: 8px;
}

.modal-create-accaunt {
  text-align: center;
}
.modal-create-accaunt h2 {
  margin-bottom: 16px;
}
.modal-create-accaunt h2 + p {
  color: #545158;
  margin-bottom: 30px;
  padding-left: 27px;
  padding-right: 27px;
}
.modal-create-accaunt input {
  width: 264px;
  height: 48px;
  border: 2px solid #D8DCE1;
  border-radius: 8px;
  margin-bottom: 10px;
}
.modal-create-accaunt .button-darkblue {
  margin: 50px 0 10px;
  width: 270px;
  height: 50px;
}
.modal-create-accaunt button + p, .modal-create-accaunt a {
  color: #A7AFB9;
  padding-bottom: 10px;
}
.modal-create-accaunt a {
  text-decoration: underline;
}

.modal-save-heart-bottom {
  display: grid;
  grid-template-columns: 257px 560px;
  gap: 40px;
  margin-top: 20px;
}
.modal-save-heart-bottom .modal-save-heart-bottom-left p {
  line-height: 150%;
  color: #545158;
}
.modal-save-heart-bottom .modal-save-heart-bottom-right .modal-save-heart-bottom-right1 {
  margin-bottom: 10px;
}
.modal-save-heart-bottom .modal-save-heart-bottom-right .modal-save-heart-bottom-right1 input {
  border: 2px solid #D8DCE1;
  border-radius: 8px;
  width: 264px;
  height: 50px;
  margin-right: 10px;
}
.modal-save-heart-bottom .modal-save-heart-bottom-right .modal-save-heart-bottom-right1 .button-darkblue {
  width: 266px;
  height: 50px;
}
.modal-save-heart-bottom .modal-save-heart-bottom-right .modal-save-heart-bottom-right2 {
  display: flex;
}
.modal-save-heart-bottom .modal-save-heart-bottom-right .modal-save-heart-bottom-right2 input {
  width: 18px;
  height: 18px;
  accent-color: #23225C;
  border: #A7AFB9;
  margin-right: 8px;
  margin-top: 7px;
}
.modal-save-heart-bottom .modal-save-heart-bottom-right .modal-save-heart-bottom-right2 label {
  color: #545158;
  line-height: 150%;
}
.modal-save-heart-bottom .modal-save-heart-bottom-right .modal-save-heart-bottom-right2 label a {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #545158;
}

.modal-grade h3 {
  margin-bottom: 30px;
}

.modal-grade-card {
  width: 394px;
  height: 70px;
  background: #E1EEFF;
  border-radius: 8px;
  margin: 0 28.5px;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.modal-grade-card img {
  width: 137.04px;
  height: 40px;
  margin-right: 15px;
}
.modal-grade-card img + p {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}
.modal-grade-card img + p span {
  font-weight: 400;
}
.modal-grade-card .modal-grade-card-review {
  margin-left: 10px;
}
.modal-grade-card .modal-grade-card-review p {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.modal-grade-card .modal-grade-card-review p:nth-child(1) {
  font-weight: 600;
}
.modal-grade-card .modal-grade-card-review p:nth-child(2) {
  font-weight: 300;
}

.modal-grade-content {
  margin: 0 28.5px;
}
.modal-grade-content .modal-grade-content-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #C4C4C4;
}
.modal-grade-content .modal-grade-content-row .left-p {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #23225C;
  margin-right: 24px;
}
.modal-grade-content .modal-grade-content-row .right-p {
  line-height: 150%;
  color: #545158;
}

.modal-grade-conten-after {
  margin: 20px 28.5px 0;
}
.modal-grade-conten-after p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.modal-booking-managment h2 {
  text-align: end;
  margin-bottom: 16px;
}
.modal-booking-managment .modal-booking-managment-content {
  display: grid;
  grid-template-columns: 238px 454px;
  gap: 24px;
}
.modal-booking-managment .modal-booking-managment-left img {
  width: 210.33px;
  height: 209.44px;
}
.modal-booking-managment .modal-booking-managment-right {
  text-align: center;
}
.modal-booking-managment .modal-booking-managment-right p {
  line-height: 140%;
  color: #545158;
  margin: 0 50px 30px;
}
.modal-booking-managment .modal-booking-managment-right input {
  width: 400px;
  height: 48px;
  border: 2px solid #D8DCE1;
  border-radius: 8px;
  margin-bottom: 10px;
}
.modal-booking-managment .button-darkblue {
  width: 400px;
  height: 50px;
  margin-top: 40px;
}

.modal-reason-cancell p {
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #545158;
}
.modal-reason-cancell input {
  margin: 16px 0;
  padding: 12px 8px 8px 12px;
  width: 270px;
  height: 132px;
  border: 1px solid #C2C5C8;
  border-radius: 8px;
  position: relative;
}
.modal-reason-cancell input::-moz-placeholder {
  position: absolute;
}
.modal-reason-cancell input::placeholder {
  position: absolute;
}
.modal-reason-cancell button {
  width: 270px;
  height: 50px;
}

.modal-current-reservation {
  text-align: center;
}
.modal-current-reservation p:nth-child(2) {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #545158;
}
.modal-current-reservation p:nth-child(3) {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #8E8997;
  margin: 8px 0 24px;
}

.modal-rent-terms .price-item {
  padding: 20px 0;
  border-top: 1px solid #D8DCE1;
}
.modal-rent-terms .price-item:last-child {
  border-bottom: 1px solid #D8DCE1;
}
.modal-rent-terms .price-item-accordion {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #545158;
  cursor: pointer;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background: none;
  width: 100%;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 24px;
  align-items: center;
}
.modal-rent-terms .price-item-text {
  display: none;
  overflow: hidden;
}
.modal-rent-terms .price-item-text .price-item-text-row {
  line-height: 150%;
  padding-left: 44px;
}
.modal-rent-terms .price-item-accordion::before {
  content: url("../images/dist/arrow-down.svg");
  transform: rotate(180deg);
  float: left;
  margin-bottom: 5px;
}
.modal-rent-terms .active::before {
  content: url("../images/dist/arrow-down.svg");
  transform: rotate(360deg);
  padding-top: 8px;
}

.button-for-modal-window {
  display: flex;
  flex-direction: column;
}
.button-for-modal-window button {
  margin: 15px 0;
  width: 170px;
  height: 40px;
  background: #23225C;
  border-radius: 8px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

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

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
  padding: 0;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
}
.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: rgb(246.5, 246.5, 246.5);
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #dee2e6;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #dee2e6;
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #dee2e6;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option--group {
  padding: 0;
}
.select2-container--classic .select2-results__option--disabled {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.footer {
  border-top: 1px solid #D8DCE1;
  width: 100%;
}

.footer-grid-items {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 276px 352px 469px;
  align-items: start;
  grid-gap: 31px;
  min-height: 389px;
  padding-top: 50px;
}
.footer-grid-items .footer-grid-item {
  text-align: left;
  padding: 0;
  margin: 0;
}
.footer-grid-items .footer-grid-item .footer-grid-item-group {
  width: 414px;
}
.footer-grid-items .footer-grid-item .footer-grid-item-group h5 {
  color: #545158;
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}
.footer-grid-items .footer-grid-item .footer-grid-item-group p {
  font-size: 16px !important;
  margin: 17px 0 36px 0;
}

.footer-grid-item1 p, .footer-grid-item2 p {
  margin-bottom: 18px;
}

a {
  text-decoration: none;
  color: #8E8897;
  font-size: 18px;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

.footer-grid-item:nth-child(3) p {
  font-size: 13px;
}

.footer-grid-item input {
  width: 281px;
  height: 40px;
  border: 2px solid #D8DCE1;
  border-radius: 8px;
  font-size: 14px;
  padding-left: 16px;
  margin-top: 0;
}
.footer-grid-item button {
  background-color: #23225C;
  color: #f8f8f8;
  font-size: 14px;
  border: none;
  outline: none;
  border-radius: 8px;
  height: 40px;
  width: 170px;
  margin-left: 10px;
  cursor: pointer;
}

.footer-grid-item input::-moz-placeholder {
  height: 90px;
}

.footer-grid-item input::placeholder {
  height: 90px;
}

.footer-bottom {
  background-color: #23225C;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}

.footer-bottom-p-left {
  color: #F6F6F6;
  font-size: 14px;
}

.footer-bottom-p-center {
  color: #fff;
  font-size: 35px;
}

.footer-bottom-group-icons {
  display: flex;
}

.footer-bottom-group-icons img {
  margin-left: 15px;
  height: 22px;
}

@media only screen and (max-width: 1280px) {
  .footer {
    border-top: 1px solid #D8DCE1;
    width: 100%;
  }
  .footer-grid-items {
    grid-template-rows: 2fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-grid-items .footer-grid-item .footer-grid-item-group {
    width: 100%;
  }
  .footer-grid-item1 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .footer-grid-item2 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .footer-grid-item3 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .footer-grid-item:nth-child(3) p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer {
    border-top: 1px solid #D8DCE1;
    width: 100%;
  }
  .footer-grid-items {
    grid-template-rows: 2fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-grid-items .footer-grid-item .footer-grid-item-group {
    width: 100%;
  }
  .footer-grid-items .footer-grid-item .footer-grid-item-group h5 {
    font-size: 24px;
    font-weight: bold;
  }
  .footer-grid-item1 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .footer-grid-item2 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .footer-grid-item3 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media only screen and (max-width: 767px) {
  .footer-grid-item input {
    width: 264px;
  }
  .footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    padding: 16px;
  }
  .footer-bottom-p-left {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .footer-bottom-p-center {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .footer-bottom-group-icons {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 3;
    justify-content: flex-end;
  }
  .footer-bottom-group-icons img {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-grid-items {
    grid-template-rows: 3fr;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 40px;
  }
  .footer-grid-items .footer-grid-item .footer-grid-item-group {
    width: 100%;
  }
  .footer-grid-items .footer-grid-item input, .footer-grid-items .footer-grid-item button {
    width: auto;
    height: 50px;
  }
  .footer-grid-items .footer-grid-item button {
    margin: 8px 0 24px;
  }
  .footer-grid-items .footer-grid-item .footer-grid-item-group {
    width: auto;
  }
  .footer-grid-items .footer-grid-item .footer-grid-item-group h5 {
    font-size: 24px;
    font-weight: bold;
  }
  .footer-grid-items .footer-grid-item .footer-grid-item-group p {
    margin: 8px 0 16px;
  }
  .footer-grid-item1 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
    padding-bottom: 8px;
    border-bottom: 2px solid #D8DCE1;
  }
  .footer-grid-item2 {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
    padding-top: 8px;
  }
  .footer-grid-item3 {
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .footer-bottom-p-left {
    font-size: 12px;
  }
  .footer-bottom-p-center {
    font-size: 24px;
  }
}
/*header nav*/
.main-header {
  position: relative; /* Родительский блок с позицией relative */
  width: 100%;
  top: 0;
  z-index: 2;
}
.main-header .top {
  position: relative;
  height: 10px;
  background: linear-gradient(80deg, #b1faff, #46c9ff, #0f0028);
}

.header__nav {
  background-color: rgba(13, 13, 13, 0.8901960784);
  overflow-x: hidden;
}
.header__nav .header__nav-center {
  height: 50px;
  max-width: 1440px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav .header__nav-center .header__logo a {
  color: #fff;
  font-size: 32px;
}
.header__nav .header__nav-center .header__logo a:hover, .header__nav .header__nav-center .header__logo a:active, .header__nav .header__nav-center .header__logo a:focus {
  text-decoration: none;
}
.header__nav .header__nav-center .header__2 {
  font-size: 32px;
}
.header__nav .header__nav-center .header__right {
  font-size: 16px;
}
.header__nav .header__nav-center .header__right .header__right-menu li:nth-child(3) {
  font-size: 14px;
}
.header__nav .header__nav-center .header__right .header__right-menu {
  list-style-type: none;
  display: flex;
  transition: 0.5s;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  height: 40px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li_unread-message {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li_unread-message::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E34646;
  top: 8px;
  right: 6px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a .header__right-p-small {
  font-size: 14px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a img {
  padding-right: 5px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a .img__booking {
  height: 20px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a .img__arrow {
  height: 18px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a .img__maskgroup {
  height: 20px;
  margin-right: 3px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a .img__lang {
  height: 5px;
  padding-left: 8px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li a .img__phone {
  height: 20px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li:nth-child(1) a:hover,
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li:nth-child(2) a:hover {
  text-decoration: underline;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li:nth-child(4),
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li:nth-child(5) {
  border-right: none;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li:nth-child(4) {
  margin-right: -20px;
}
.header__nav .header__nav-center .header__right .header__right-menu .header__right-menu-li:first-child {
  padding-right: 15px;
}
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger a {
  color: #545158;
  font-size: 16px;
  line-height: 24px;
}
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger a.menu__item-light {
  color: #8e8997;
}
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger img {
  width: 20px;
  height: 20px;
}
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger:nth-child(1) {
  border-bottom: none;
}
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger:nth-child(2) {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger:nth-child(5),
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger:nth-child(8),
.header__nav .header__nav-center .header__right .header__right-menu .hamburger-menu .menu__item-hamburger:nth-child(14) {
  margin-top: 24px;
}

/* стилизуем кнопку */
.hamburger-menu {
  display: none;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.menu__btn {
  width: 14px;
  height: 14px;
  cursor: pointer;
  z-index: 1;
}

label {
  position: relative;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  background-color: #fff;
  height: 100vh !important;
  overflow-y: scroll;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  visibility: hidden;
  top: 100px;
  right: 0;
  z-index: 999;
  margin: 0;
  padding: 16px;
  list-style: none;
  margin-top: -40px;
}
.menu__box li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e4e4e4;
}
.menu__box .menu__item {
  display: flex;
  justify-content: space-between;
  color: #545158;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
}
.menu__box .menu__item a {
  font-size: 16px;
  padding: 8px 0;
  text-decoration: none;
  margin: 0;
}
.menu__box .menu__item a .menu__item-light {
  color: #e4e4e4;
}
.menu__box .menu__item .menu__box-contact {
  background: #e1eeff !important;
  width: 100%;
  height: 76px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  position: relative;
}
.menu__box .menu__item .menu__box-contact .menu__box-contact-p {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu__box .menu__item .menu__box-contact .menu__box-contact-p .menu__box-contact-p-big {
  font-size: 24px;
  font-weight: 600;
}
.menu__box .menu__item .menu__box-contact .menu__box-contact-phone {
  width: 44px;
  height: 44px;
  background-color: #23225c;
  border-radius: 6px;
}
.menu__box .menu__item .menu__box-contact .menu__box-contact-phone img {
  margin: 12px;
}
.menu__box .menu__item:hover {
  background-color: #e4e4e4;
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  .header__nav {
    padding: 0 35px;
  }
  .header__nav .header__nav-center {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav {
    padding: 0 25px;
  }
  .header__nav .header__nav-center {
    padding: 0;
  }
  .header__nav .header__nav-center .header__right {
    font-size: 14px;
  }
  .header__nav .header__nav-center .header__right ul li:nth-child(3) {
    font-size: 14px;
  }
  .header__nav .header__nav-center .header__right .header__right-p-small {
    font-size: 14px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .header__nav {
    padding: 0 16px;
  }
  .header__nav .header__nav-center {
    height: 50px;
    padding: 0;
  }
  .header__nav .header__nav-center .header__logo.header__2 a {
    font-size: 26px;
  }
  .header__nav .header__nav-center .header__right .header__right-menu-li p {
    display: none;
  }
  .header__nav .header__nav-center .header__right .dropdown-language-btn p {
    display: block;
  }
  .menu__box-contact-p p {
    display: block !important;
  }
  .hamburger-menu {
    display: block;
    padding: 15px 20px;
    padding-top: 6px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .header__nav {
    padding: 0 16px;
  }
  .header__nav .header__nav-center {
    height: 50px;
    padding: 0;
  }
  .header__nav .header__nav-center .header__logo.header__2 a {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
  }
  .header__nav .header__nav-center .header__right-menu-li p {
    display: none;
  }
  .header__nav .header__nav-center .hamburger-menu {
    display: block;
    margin: 0;
    padding: 0px;
  }
  .header__nav .header__right .header__right-menu .header__right-menu-li:nth-child(3),
  .header__nav .header__right .header__right-menu .header__right-menu-li:nth-child(4) {
    display: none;
  }
  .menu__box-contact-p p {
    display: block !important;
  }
}
.dropdown-active {
  display: block !important;
}
.dropdown-language {
  position: relative;
}
.dropdown-language-content {
  display: none;
  width: 120%;
  background: #fff;
  position: absolute;
  left: -10px;
  top: 1.3rem;
  padding: 5px 5px 5px 0;
  border-radius: 4px;
  z-index: 100;
}
.dropdown-language-content-lang {
  padding: 5px 10px 5px 10px;
}
.dropdown-language-content-lang .header__right-p-small:hover {
  text-decoration: underline;
}

.iti__flag {
  background-image: url("../images/dist/iti/flags.png");
}

@media (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../images/dist/iti/flags@2x.png");
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #f8f8f8;
}

.page {
  background-color: #e5e5e5;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.container__center {
  padding: 0 135px;
  margin: 0 auto;
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  .container__center {
    padding: 0 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container__center {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container__center {
    padding: 0 16px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .container__center {
    padding: 0 16px;
  }
}
.header__1 {
  font-weight: 500;
  font-size: 44px;
}

.header__2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 130%;
}

.header__3 {
  font-weight: bold;
  font-size: 32px;
  color: #23225c;
}

.header__4 {
  font-weight: 600;
  font-size: 24px;
  color: #23225c;
}

.header__5 {
  font-size: 20px;
  color: #23225c;
  line-height: 140%;
}

.header__5-bold {
  font-weight: 600;
  font-size: 21px;
  line-height: 140%;
}

.caption {
  font-size: 12px;
  line-height: 18px;
}

.text16 {
  font-size: 16px;
  line-height: 150%;
}

/*auto__layout*/
.auto__layout-fon {
  overflow: hidden;
  position: relative;
  background-image: url(../images/dist/fon-6.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100%;
  height: 580px;
  color: #fff;
}
.auto__layout-fon .container {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.auto__layout-fon .auto__layout-left {
  padding-top: 78px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 125px;
}
.auto__layout-fon .auto__layout-left h1 {
  margin-bottom: -5px;
  font-size: 45px;
  line-height: 53px;
  max-width: 505px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}
.auto__layout-fon h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #23225c;
  font-weight: bold;
}

@media only screen and (max-width: 1280px) {
  .container__center {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .container__center {
    padding: 0 16px;
  }
  h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .container__center {
    padding: 0 16px;
  }
}
.reasons-m-t .col-sm-12 {
  display: none;
}
.reasons-m-t .col-sm-12:last-child {
  display: block;
}

@media only screen and (max-width: 479px) {
  .flex__form-item2 input {
    margin-left: 10px;
  }
}
/*Forma*/
@media only screen and (max-width: 991px) {
  .reasons-m-t {
    margin-top: 2rem !important;
  }
  .reasons img {
    height: 30px;
  }
  .reasons h3 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0.4rem;
  }
  .reasons p {
    font-size: 14px;
    line-height: 18px;
  }
}
/*brands*/
/*benefits*/
/*booking*/
@media only screen and (max-width: 1280px) {
  .flex-booking-left {
    width: 600px;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .booking {
    padding: 56px 0 0;
  }
  .booking .flex-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 648px;
  }
  .booking .flex-booking-right {
    margin-top: 24px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .booking {
    padding: 56px 0 0;
  }
  .booking .flex-booking {
    height: 775px;
  }
  .booking .flex-booking-left {
    height: 320px;
    width: auto;
  }
  .booking .flex-booking-left .header__3 {
    font-size: 24px;
  }
  .booking .flex-booking-left h4 {
    font-size: 18px;
    color: #545158;
    margin: 24px 0 16px;
  }
  .booking .flex-booking-left p:last-child {
    padding-top: 16px;
  }
  .booking .flex-booking-right {
    width: 328px;
    height: 302px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  .booking {
    padding: 56px 0 0;
  }
  .booking .flex-booking {
    height: 775px;
  }
  .booking .flex-booking-left {
    height: 433px;
    width: auto;
  }
  .booking .flex-booking-left .header__3 {
    font-size: 24px;
  }
  .booking .flex-booking-left h4 {
    font-size: 18px;
    color: #545158;
    margin: 24px 0 16px;
  }
  .booking .flex-booking-left p:last-child {
    padding-top: 16px;
  }
  .booking .flex-booking-right {
    width: 328px;
    height: 302px;
    margin-left: 0;
  }
}
/*popular-distans*/
.popular-distans {
  min-height: 632px;
  margin-top: 0;
}
.popular-distans h3 {
  margin-top: 60px;
  margin-bottom: 40px;
}
.popular-distans .popular-distans-countries {
  padding-top: 5px;
  height: 554px;
}
.popular-distans .button-group {
  display: flex;
  justify-content: space-between;
}
.popular-distans .tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 16px;
  transition: 0.3s;
  border-radius: 5px 5px 0 0;
  width: 234px;
  text-align: center;
  font-size: 20px;
  color: #23225c;
}
.popular-distans .tab button:hover {
  background-color: #fff;
}
.popular-distans .tab button.active {
  background-color: #fff;
  font-weight: bold;
}
.popular-distans .tab button:last-child.active {
  padding-left: 0;
  padding-right: 0;
}
.popular-distans .popular-distans-countries-content {
  background-color: #fff;
  padding: 30px;
}
.popular-distans .tabcontent {
  display: none;
  border: none;
}
.popular-distans .splide__slide {
  text-align: center;
  margin-bottom: 10px;
}
.popular-distans .splide__slide .image-container {
  position: relative;
  display: inline-block;
}
.popular-distans .splide__slide .image-container a {
  display: inline-block;
  text-decoration: none;
}
.popular-distans .splide__slide .image-text {
  bottom: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  left: 24px;
  line-height: 140%;
  position: absolute;
}
.popular-distans .splide__slide .image-container img {
  width: 360px;
  height: 226px;
}
.popular-distans .splide__slide img:not(img:last-child) {
  margin-right: 5px;
}
.popular-distans .flex-popular-distans-countries {
  display: flex;
  justify-content: space-between;
}
.popular-distans .popular-city {
  padding-bottom: 30px;
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
}
.popular-distans .popular-city .popular-left {
  width: 100%;
  float: left;
}
.popular-distans .popular-city .popular-right {
  width: 482px;
}
.popular-distans .popular-city .popular-grid-row {
  display: grid;
  justify-content: start;
  align-items: center;
  justify-items: start;
  grid-template-columns: 33% 0 33% 0 33%;
}
.popular-distans .popular-city .popular-grid-row .popular-left-flex:nth-child(3n+1) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.popular-distans .popular-city .popular-grid-row .popular-left-flex:nth-child(3n+2) {
  grid-column-start: 3;
  grid-column-end: 5;
}
.popular-distans .popular-city .popular-grid-row .popular-left-flex:nth-child(3n+3) {
  grid-column-start: 5;
  grid-column-end: 7;
}
.popular-distans .popular-city h5 {
  margin-bottom: 16px;
}
.popular-distans .popular-left-flex-item,
.popular-distans .popular-right-flex-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 30px;
  margin-bottom: 8px;
  cursor: pointer;
}
.popular-distans .popular-left-flex-item p:hover,
.popular-distans .popular-right-flex-item p:hover {
  text-decoration: underline;
}
.popular-distans .popular-city img {
  margin-right: 8px;
  width: 32px;
}

.popular-distans-mob {
  display: none;
}
.popular-distans-mob .popular-distans-mob-header {
  font-size: 24px;
  font-weight: bold;
  color: #23225c;
  margin-bottom: 24px;
}
.popular-distans-mob .popular-distans-mob-cards {
  display: flex;
  width: 100%;
  overflow-x: auto;
}
.popular-distans-mob .popular-distans-mob-cards .popular-distans-mob-card img {
  width: 200px;
  height: 226px;
  border-radius: 8px;
  margin: 0 4px;
}
.popular-distans-mob .popular-distans-mob-cards .popular-distans-mob-card .popular-distans-mob-card-p-head {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: #23225c;
}
.popular-distans-mob .popular-distans-mob-cards .popular-distans-mob-card .popular-distans-mob-card-p-text {
  font-size: 14px;
}

@media only screen and (max-width: 1440px) {
  .container__center {
    padding: 0 135px;
  }
  .popular-distans .tab button {
    width: 224px;
    padding: 12px 2px;
  }
  .splide__slide .image-container img {
    width: 100%;
    max-width: 309px;
  }
}
@media only screen and (max-width: 1280px) {
  .container__center {
    padding: 0 35px;
  }
  .popular-distans {
    margin-top: 50px;
  }
  .popular-distans .tab button {
    padding: 12px 0;
    width: 194px;
    font-size: 17px;
  }
  .popular-distans .splide__slide .image-container img {
    width: 290px;
    height: auto;
  }
  .popular-distans .popular-city .popular-left {
    width: 440px;
  }
  .popular-distans .popular-city .popular-right {
    width: 440px;
  }
  .popular-distans .popular-left-flex-item text16,
  .popular-distans .popular-right-flex-item text16 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .container__center {
    padding: 0 25px;
  }
  .popular-distans {
    margin-top: 50px;
  }
  .popular-distans h3 {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .popular-distans .tab button {
    padding: 12px 0;
    width: 143.6px;
    font-size: 13px;
  }
  .popular-distans .splide__slide .image-container img {
    width: 210px;
    height: auto;
  }
  .popular-distans .popular-distans-countries-content {
    padding: 20px;
  }
  .popular-distans .popular-city h5 {
    font-size: 18px;
    text-align: center;
  }
  .popular-distans .popular-city .popular-left-flex-item p,
  .popular-distans .popular-city .popular-right-flex-item p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .container__center {
    padding: 0 16px;
  }
  .popular-distans {
    display: none;
  }
  .popular-distans-mob {
    display: block;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 479px) {
  .container__center {
    padding: 0 16px;
  }
  .popular-distans-mob {
    margin-top: 60px;
  }
}
/*Answer to question*/
.answer-question {
  margin-top: 121px;
}

.button-group-answer {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.tab-answer-question {
  width: 292px;
}

.tab-answer-question button {
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 58px;
  text-align: center;
  font-size: 20px;
  color: #23225c;
  padding: 0;
  margin: 0;
}

.answer-question-content {
  border-bottom: 2px solid #d8dce1;
}

.answer-question-content ul {
  color: #23225c;
}

.answer-question-content ul li {
  color: #8e8997;
  font-weight: normal;
  font-size: 16px;
  margin-left: 18px;
  line-height: 30px;
}

.tabcontent-padding {
  background-color: #fff;
  padding: 0;
  min-height: 101px;
}

.tab-answer-question button {
  background-color: #f8f8f8;
}

.tab-answer-question button:hover {
  background-color: #fff;
}

.tab-answer-question button.active {
  background-color: #fff;
  font-weight: bold;
}

.accordion-answer-question {
  padding-top: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #545158;
  background-color: #f8f8f8;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border-top: 2px solid #d8dce1;
  border-bottom: none;
  border-left: none;
  border-right: none;
  outline: none;
  transition: 0.4s;
  padding-left: 26px;
  display: flex;
  align-items: flex-end;
}

.accordion-answer-question.active {
  font-weight: 500;
  color: #23225c;
}

.accordion-answer-question::before {
  content: url("../images/dist/show.png");
  transform: rotate(180deg);
  float: left;
  margin-right: 16px;
  position: relative;
  margin-bottom: 2px;
}

.accordion-answer-question.active::before {
  content: url("../images/dist/hide.png");
  transform: rotate(360deg);
  margin-bottom: 5px;
}

.accordion-answer-question:last-child {
  border-bottom: 2px solid #d8dce1;
}

.panel {
  background-color: white;
  display: none;
  overflow: hidden;
  padding-bottom: 30px;
  padding-left: 16px;
}
.panel ul {
  padding-left: 32px;
  opacity: 0.7;
}

.active,
.accordion:hover {
  background-color: #fff;
}

.active:first-child {
  border-top: none;
}

@media only screen and (max-width: 1280px) {
  .answer-question {
    margin-top: 121px;
  }
  .answer-question h3 {
    font-size: 24px;
  }
  .tab-answer-question button {
    width: 239px;
    font-size: 16px;
  }
  .answer-question-content ul li {
    font-size: 14px;
  }
  .active,
  .accordion:hover {
    background-color: #fff;
  }
}
@media only screen and (max-width: 1024px) {
  .answer-question {
    margin-top: 0;
  }
  .answer-question h3 {
    font-size: 24px;
  }
  .tab-answer-question button {
    width: 179.5px;
    font-size: 16px;
  }
  .answer-question-content ul {
    font-size: 15px;
  }
  .answer-question-content ul li {
    font-size: 14px;
  }
  .active,
  .accordion:hover {
    background-color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .button-group-answer {
    overflow-x: auto;
    width: 100%;
  }
  .tab-answer-question {
    width: 260px;
    display: inline-block;
  }
  .tab-answer-question button {
    font-size: 14px;
    width: 231px;
  }
}
/*we are trusted*/
.trust-content {
  width: 976px;
  height: 789px;
  margin: 130px auto 0;
}
.trust-content h3 {
  padding: 0 0 100px 0;
  text-align: center;
}
.trust-content .trust-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 477px;
}
.trust-content .trust-flex .trust-flex-main {
  padding-right: 97px;
  position: relative;
}
.trust-content .trust-flex .trust-flex-main .trust-flex-left {
  display: none;
  width: 472px;
  height: 346px;
}
.trust-content .trust-flex .trust-flex-main .trust-flex-left-active {
  display: block;
}
.trust-content .trust-flex .trust-flex-main .trust-flex-left img {
  width: 61px;
  height: 41px;
  margin-bottom: 35px;
}
.trust-content .trust-flex .trust-flex-main .trust-flex-left p.quote {
  line-height: 30px;
  font-style: italic;
  height: 120px;
  font-size: 20px;
}
.trust-content .trust-flex .trust-flex-main .trust-flex-left h4 {
  margin-top: 80px;
  margin-bottom: 5px;
}
.trust-content .trust-flex .trust-flex-main .trust-flex-right img {
  width: 345px;
  height: 477px;
}
.trust-content .trust-flex .trust-flex-main .group-button-arrow {
  display: flex;
  align-self: flex-end;
  height: 28px;
  position: absolute;
  bottom: 0;
  right: 80px;
}
.trust-content .trust-flex .trust-flex-main .group-button-arrow a {
  text-decoration: none;
  display: inline-block;
  padding: 2px 11px;
  border: 1px solid #d8dce1;
  border-radius: 5px;
  margin-right: 5px;
}
.trust-content .trust-flex .trust-flex-main .group-button-arrow a:last-child {
  margin-right: 13px;
}
.trust-content .trust-flex .trust-flex-main .group-button-arrow a:hover {
  background-color: #ddd;
  color: black;
}
.trust-content .trust-flex .trust-flex-main .group-button-arrow .previous {
  background-color: #f1f1f1;
  color: #d8dce1;
}
.trust-content .trust-flex .trust-flex-main .group-button-arrow .next {
  background-color: #fff;
  color: #8e8997;
}

@media only screen and (max-width: 1024px) {
  .trust-content {
    width: 768px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .trust-content h3 {
    padding-bottom: 50px;
    font-size: 24px;
  }
  .trust-content .trust-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .trust-content .trust-flex .trust-flex-main {
    padding-right: 0;
  }
  .trust-content .trust-flex .trust-flex-main .trust-flex-left {
    margin-left: 10px;
    width: 380px;
  }
  .trust-content .trust-flex .trust-flex-main .trust-flex-left p.quote {
    font-size: 16px;
  }
  .trust-content .trust-flex .trust-flex-main .trust-flex-left h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .trust-content {
    width: 100%;
    max-width: 767px;
    height: 908px;
    margin-top: 0;
  }
  .trust-content h3 {
    padding-bottom: 50px;
    font-size: 24px;
  }
  .trust-content .trust-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .trust-content .trust-flex .trust-flex-main {
    padding-right: 0;
  }
  .trust-content .trust-flex .trust-flex-main .trust-flex-left {
    margin-left: 10px;
    width: 100%;
    max-width: 600px;
    height: 274px;
  }
  .trust-content .trust-flex .trust-flex-main .trust-flex-left img {
    width: 52px;
    height: 35px;
  }
  .trust-content .trust-flex .trust-flex-main .trust-flex-left p.quote {
    line-height: 24px;
    font-size: 16px;
    height: auto;
  }
  .trust-content .trust-flex .trust-flex-main .trust-flex-left h4 {
    font-size: 16px;
    margin-top: 16px;
  }
  .trust-content .trust-flex .trust-flex-main .group-button-arrow {
    top: 0;
    right: 10px;
  }
  .trust-flex-right img {
    border-bottom: 1px solid #2b76ac;
  }
}
@media only screen and (max-width: 479px) {
  .trust-flex-right img {
    width: 247px;
    height: 341.5px;
    border-bottom: 1px solid #2b76ac;
  }
}
/*Booking by phone*/
.booking-phone {
  margin-top: 55px;
  height: 560px;
  margin-bottom: 0;
}
.booking-phone .booking-phone-bg {
  background-color: rgba(225, 238, 255, 0.4);
}
.booking-phone .booking-phone-bg .booking-phone-flex {
  display: flex;
  justify-content: space-between;
}
.booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left {
  padding-top: 120px;
  width: 471px;
}
.booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left h3 {
  width: 262px;
  margin-bottom: 24px;
  line-height: 120%;
}
.booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left p {
  font-size: 16px;
  line-height: 24px;
}
.booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left img {
  width: 144px;
  margin-top: 40px;
  margin-right: 24px;
}
.booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right {
  width: 57%;
}
.booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right img {
  height: 516px;
  margin-top: 44px;
}
.booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right .small-img {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .booking-phone {
    margin-top: 0;
    height: 100%;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex {
    flex-direction: column;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left {
    padding-top: 32px;
    width: 100%;
    max-width: 972px;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left h3 {
    width: 100%;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left .booking-phone-img-group {
    text-align: center;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left .booking-phone-img-group img {
    width: 156px;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .booking-phone {
    margin-top: 0;
    max-height: 860px;
    height: 100%;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex {
    flex-direction: column;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left {
    padding-top: 32px;
    width: 100%;
    max-width: 735px;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left h3 {
    margin-bottom: 16px;
    font-size: 24px;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left p {
    font-size: 14px;
    line-height: 21px;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left .booking-phone-img-group {
    text-align: center;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-left .booking-phone-img-group img {
    width: 156px;
    margin-top: 24px;
    margin-left: 0;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right {
    width: 100%;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right img {
    height: 346px;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right .big-img {
    display: none;
  }
  .booking-phone .booking-phone-bg .booking-phone-flex .booking-phone-flex-right .small-img {
    display: block;
    margin: 23px auto 0;
  }
}
/*filter search*/
.filter-list-content {
  width: 270px;
  background-color: #fff;
  padding: 0 16px;
  margin-bottom: 33px;
}

.filter-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-list-header p {
  color: #23225c;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  padding-top: 16px;
  padding-bottom: 17px;
}
.filter-list-header .close-filter {
  transform: rotate(180deg);
}
.filter-list-header .filter-small-window {
  display: none;
}

.filter-list-group-checkbox p,
.filter-list-group-checkbox-coment p {
  color: #8e8997;
}

.filter-list-group {
  border-top: 1px solid #d8dce1;
  padding-bottom: 12px;
  position: relative;
  padding-top: 17px;
}

.filter-list-group input::-moz-placeholder {
  color: #8e8997;
}

.filter-list-group input::placeholder {
  color: #8e8997;
}

.filter-head {
  font-size: 16px;
  font-weight: 600;
  color: #23225c;
  height: 24px;
  margin-bottom: 16px;
}

.filter-list-group-input {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.filter-list-group-input1 {
  width: 90px;
  height: 27px;
  border-radius: 8px;
  border: 1px solid #8e8997;
  padding-left: 10px;
}

.filter-list-group-line {
  width: 10px;
  height: 1px;
  background-color: #8e8997;
}

.filter-list-group-checkbox {
  display: grid;
  grid-template-columns: 1fr 9fr;
  align-items: center;
  margin-bottom: 10px;
}

.filter-list-group-checkbox input,
.filter-list-group-checkbox-left input {
  accent-color: #23225c;
  width: 15px;
  border: 2px solid #c8c8c8;
  height: 30px;
  margin-right: 11px;
}

.filter-list-group-checkbox-content {
  display: flex;
  align-items: center;
}

.filter-list-group-checkbox-content img {
  height: 100%;
  margin-left: 10px;
}

.filter-list-group-checkbox-coment {
  display: grid;
  align-items: center;
  grid-template-columns: 8fr 1fr;
  padding: 0;
  margin: 0;
  height: 40px;
}

.filter-list-group-checkbox-left {
  display: grid;
  grid-template-columns: 1fr 9fr;
  align-items: center;
}

.filter-list-group-checkbox-right {
  text-align: right;
}

.filter-list-group-search img {
  position: absolute;
  bottom: 40px;
  right: 10px;
}

.filter-list-group-input-search {
  width: 240px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #8e8997;
  padding-left: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.filter-list-group-map {
  margin-top: 16px;
  margin-bottom: 6px;
  background: url(../images/dist/google-map.jpg);
  height: 57px;
  position: relative;
}

.my-slider-progress {
  margin: 10px auto;
  background: #d8dce1;
  width: 450px;
  border-radius: 5px;
}

.my-slider-progress-bar {
  background: #23225c;
  height: 4px;
  transition: width 400ms ease;
  width: 0;
  border-radius: 5px;
}

.filter-list-group-map-button {
  width: 142px;
  height: 29px;
  border-radius: 8px;
  border: 1px solid #23225c;
  color: #23225c;
  font-size: 14px;
  position: absolute;
  top: 14px;
  left: 48px;
  cursor: pointer;
}

/* Контейнер подсказок */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Текст подсказки */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 237px;
  background-color: #f4f4f4;
  color: #8e8997;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  /* Расположите текст подсказки */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 0;
  margin-left: -100px;
  /* Исчезают в подсказке */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Подсказка стрелка */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #f4f4f4 transparent transparent transparent;
}

/* Отображение текста подсказки при наведении курсора мыши на контейнер подсказки */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .search-result-wrapper .filter-list {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    padding-top: 140px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .search-result-wrapper .filter-list .filter-list-content {
    position: absolute;
    left: 0;
    top: 0;
  }
  .search-result-wrapper .filter-list .filter-list-content .filter-small-window {
    display: block;
  }
  .search-result-wrapper .filter-list .filter-list-content .filter-big-window {
    display: none;
  }
  .search-result-wrapper-reservation .price-aside {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.5s;
    z-index: 99;
  }
  .search-result-wrapper-reservation .price-aside .price {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
  }
  .search-result-wrapper-reservation .price-aside .price .price-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-result-wrapper-reservation .price-aside .price .priceClose {
    display: block;
    position: absolute;
    right: 20px;
    font-size: 28px;
  }
  .search-result-wrapper-reservation .price-aside-active {
    display: block;
  }
}
@media only screen and (max-width: 479px) {
  .search-result-wrapper {
    gap: 1px !important;
  }
}
.custom-dropdown-menu {
  display: none;
  position: absolute;
  z-index: 100000000;
  background: #fff;
  width: 100%;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin: 2px 0 0;
  padding: 0.4rem 0;
  color: #8e8997;
  border-top: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.custom-dropdown-menu .custom-dropdown-item {
  display: block;
  padding: 5px 0.75rem;
  cursor: pointer;
  transition: 0.5s;
}
.custom-dropdown-menu .custom-dropdown-item:hover {
  background: #23225c;
  color: #fff;
}

#search_location_start:focus ~ #menu-start,
#menu-start:hover,
#search_location_end:focus ~ #menu-end,
#menu-end:hover {
  display: block;
}

.d-none {
  display: none;
}

.no-car-found1 {
  background: #fff;
  padding: 16px;
  display: grid;
  grid-template-columns: 484px 354px;
}
.no-car-found1 .no-car-found1-left .no-car-found1-left-header .header__2 {
  margin-bottom: 16px;
}
.no-car-found1 .no-car-found1-left .no-car-found1-left-text p {
  font-size: 16px;
  line-height: 150%;
  color: #8E8997;
}
.no-car-found1 .no-car-found1-left .no-car-found1-left-block {
  margin-top: 32px;
}
.no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-header {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #545158;
  margin-bottom: 16px;
}
.no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-item {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-item img {
  width: 20px;
  height: 20px;
  margin-right: 16px;
}
.no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-item p {
  font-size: 16px;
  line-height: 150%;
  color: #8E8997;
}
.no-car-found1 .no-car-found1-right {
  margin-top: 23px;
}

.no-car-found2 {
  background: #fff;
  padding: 16px;
  margin: 24px 0;
}
.no-car-found2 .no-car-found2-header {
  margin-bottom: 16px;
}
.no-car-found2 .no-car-found2-items .no-car-found2-item {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d8dce1;
}
.no-car-found2 .no-car-found2-items .no-car-found2-item .no-car-found2-item-left p {
  font-size: 18px;
  line-height: 150%;
  color: #545158;
}

@media only screen and (max-width: 1280px) {
  .no-car-found1 .no-car-found1-right {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .no-car-found1 {
    display: grid;
    grid-template-columns: 1fr;
  }
  .no-car-found1 .no-car-found1-left .no-car-found1-left-header .header__2 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 28px;
  }
  .no-car-found1 .no-car-found1-left .no-car-found1-left-text p {
    font-size: 16px;
    line-height: 150%;
    color: #8E8997;
  }
  .no-car-found1 .no-car-found1-left .no-car-found1-left-block {
    margin-top: 32px;
  }
  .no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-header {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #545158;
    margin-bottom: 16px;
  }
  .no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-item {
    display: flex;
    align-items: center;
    margin-top: 8px;
  }
  .no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-item img {
    width: 20px;
    height: 20px;
    margin-right: 16px;
  }
  .no-car-found1 .no-car-found1-left .no-car-found1-left-block .no-car-found1-left-block-item p {
    font-size: 16px;
    line-height: 150%;
    color: #8E8997;
  }
}
.privacy-policy-content {
  margin-left: 55px;
  margin-right: 55px;
}

.privacy-policy-header {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-policy-header div {
  text-align: center;
}

.container-for-chat {
  width: 600px;
  margin: 0 auto;
}
.container-for-chat .message-wrapper {
  height: 75vh;
}

.container-for-questions {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.reasons {
  width: -moz-fit-content;
  width: fit-content;
}
.wrapper-for-reasons {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  align-items: center;
  gap: 80px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.modal-language-width {
  max-width: 1000px;
  width: 100%;
}

.modal-language-button {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.container-search .container-search-form {
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
}
@media (max-width: 1200px) {
  .container-search .container-search-form {
    margin: 0 35px;
  }
}
@media (max-width: 991px) {
  .container-search .container-search-form .flex-form-item1-input2,
  .container-search .container-search-form .flex-form-item1-input3 {
    margin-bottom: 8px;
  }
}
@media (max-width: 425px) {
  .container-search .container-search-form {
    max-width: 360px;
    margin: 0 auto;
  }
  .container-search .container-search-form .flex__form2-main {
    align-items: left;
  }
}

.edit-book-wrapper .container-search .container-search-form {
  background: none;
  justify-content: center;
}
.edit-book-wrapper .search-section-form .forma .flex__form-main .flex__form-item1 {
  width: 100%;
}
.edit-book-wrapper .search-section-form .forma .flex__form-main .flex__form-item1 .flex-form-item1-input1 input {
  width: 100%;
  height: auto;
}
.edit-book-wrapper .container-search .container-search-form .container-search-form-button {
  display: none;
}
@media (max-width: 1000px) {
  .edit-book-wrapper .search-change .search-change-left .search-change-left-text p {
    font-size: 12px;
  }
  .edit-book-wrapper .search-change .search-change-center .search-change-center-text p {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .edit-book-wrapper .search-section-form .forma .flex__form2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 1280px) {
  .popular-distans .popular-city .popular-left {
    width: 100%;
  }
}
@media (max-width: 1150px) {
  .personal-account-content .personal-account-left p a {
    font-size: 13px;
  }
  .search-change {
    height: -moz-fit-content;
    height: fit-content;
    padding: 5px 0;
  }
}
@media (max-width: 1024px) {
  .wrapper-for-reasons {
    gap: 50px;
  }
  .wrapper-for-reasons .reasons {
    display: none;
  }
  .wrapper-for-reasons .reasons:last-child {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .personal-account-content .personal-account-left-top {
    gap: 10px;
  }
  .personal-account-content .personal-account-left-top-item {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 5px;
    flex-direction: row;
    gap: 5px;
  }
  .personal-account-right-block {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .container-for-chat {
    width: 100%;
    padding: 0 30px;
  }
  .wrapper-for-reasons {
    flex-direction: column;
  }
  .auto__layout-fon {
    height: 100%;
  }
  .personal-account-content .personal-account-right .personal-account-right-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 10px;
    flex-wrap: nowrap;
  }
  .personal-account-content .personal-account-right .personal-account-right-links button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .personal-account-content .personal-account-left-top-item {
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  .personal-account-content .personal-account-right .personal-account-right-links button {
    font-size: 10px;
    padding: 0px;
    max-width: 100%;
  }
  .modal-language-button {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.header-fix .menu__box {
  height: 100vh;
  overflow: hidden auto;
  visibility: visible;
}
.header-fix .hamburger-menu {
  padding-top: 14px;
}
.header-fix .new-header-burger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg height='100%25' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;' version='1.1' viewBox='0 0 24 24' width='100%25' fill='white' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:serif='http://www.serif.com/' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Icon'%3E%3Cpath d='M4,6.75l16,0c0.414,0 0.75,-0.336 0.75,-0.75c0,-0.414 -0.336,-0.75 -0.75,-0.75l-16,0c-0.414,0 -0.75,0.336 -0.75,0.75c0,0.414 0.336,0.75 0.75,0.75Z'/%3E%3Cpath d='M4,12.75l16,0c0.414,0 0.75,-0.336 0.75,-0.75c0,-0.414 -0.336,-0.75 -0.75,-0.75l-16,0c-0.414,0 -0.75,0.336 -0.75,0.75c0,0.414 0.336,0.75 0.75,0.75Z'/%3E%3Cpath d='M4,18.75l16,0c0.414,0 0.75,-0.336 0.75,-0.75c0,-0.414 -0.336,-0.75 -0.75,-0.75l-16,0c-0.414,0 -0.75,0.336 -0.75,0.75c0,0.414 0.336,0.75 0.75,0.75Z'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-fix .new-header-burger_active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;opacity:0;%7D.cls-2%7Bfill:white;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eclose%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='close'%3E%3Cg id='close-2' data-name='close'%3E%3Crect class='cls-1' width='24' height='24' transform='translate(24 24) rotate(180)'/%3E%3Cpath class='cls-2' d='M13.41,12l4.3-4.29a1,1,0,1,0-1.42-1.42L12,10.59,7.71,6.29A1,1,0,0,0,6.29,7.71L10.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 450px) {
  .personal-account-content .personal-account-left p a {
    font-size: 10px;
  }
}
.modal {
  z-index: 200 !important;
}

@media (max-width: 500px) {
  .footer-grid-item button {
    padding: 10px;
  }
}
.personal-account-right-header {
  margin-bottom: 10px;
}

.container-for-chat .message-wrapper {
  margin-top: 10px;
}
.container-for-chat .message-wrapper::-webkit-scrollbar {
  width: 3px !important;
}
.container-for-chat .message-wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
  border-radius: 2px;
}
.container-for-chat .message-wrapper::-webkit-scrollbar-thumb {
  background-color: darkgrey !important;
  outline: 1px solid slategrey !important;
  border-radius: 2px;
}

.button-white {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 20px;
  text-decoration: none !important;
  text-align: center;
}
.button-white:hover {
  transition: 0.3s all ease;
  color: #fff;
  background-color: #504C9E;
}

.about-company .about-company-top .about-company-top-grade {
  font-size: 13px;
  padding: 5px;
}

.pdf-icon-wrapper {
  width: 100px;
  height: 50px;
}
.pdf-icon-wrapper > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.personal-account-money .personal-account-money-left .personal-account-money-left2 .personal-account-money-left-grid .personal-account-money-left-grid-row {
  font-size: 12px;
}

.personal-account-money .personal-account-money-left .personal-account-money-left2 .personal-account-money-left-grid .personal-account-money-left-grid-row1 {
  font-size: 12px;
}

@media (max-width: 650px) {
  .contact-right .contact-right-header {
    font-size: 22px;
  }
  .personal-account-right-block .personal-account-right-header .personal-account-right-header-price2 .personal-account-right-header-price2-item {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px;
  }
  .personal-account-right-block .personal-account-right-header .personal-account-right-header-price2 {
    height: -moz-fit-content;
    height: fit-content;
    padding: 5px;
  }
}
.personal-account-content .personal-account-right .personal-account-right-links button {
  font-size: 14px;
  font-weight: bold;
}

.personal-account-right-header {
  margin-bottom: 10px;
  gap: 10px;
  align-items: center;
}

@media (max-width: 750px) {
  .search-result-wrapper-reservation {
    grid-template-columns: 450px;
  }
}
@media (max-width: 450px) {
  .search-result-wrapper-reservation {
    grid-template-columns: 100%;
  }
}
.wrapper-for-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pdf {
  padding: 20px;
  padding-bottom: 70px;
  background-color: #FFFFFF;
  max-width: 650px;
  width: 100%;
}

.pdf-page {
  width: 100%;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #D8DCE1;
  display: flex;
  flex-direction: column;
}
.pdf-page__header {
  width: 100%;
  padding: 10px 20px;
  background: #504C9E;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pdf-page__header--res {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}
.pdf-page__header--cap {
  font-weight: bolder;
  font-size: 25px;
  color: #FFFFFF;
}
.pdf-page__info-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  border-bottom: 1px solid #D8DCE1;
}
.pdf-page__info-block {
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.pdf-page__stick {
  width: 1px;
  height: 225px;
  background-color: #D8DCE1;
  margin-top: 10px;
}
.pdf-page__small-header {
  width: 100%;
  padding: 4px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  background: #E1EEFF;
  line-height: 14px;
  text-transform: uppercase;
  color: #504C9E;
}
.pdf-page__car-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
.pdf-page__car-wrapper--img {
  width: 150px;
  height: 70px;
}
.pdf-page__car-wrapper--img > img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.pdf-page__car-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pdf-page__car-name > h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #23225C;
}
.pdf-page__car-name > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #23225C;
}
.pdf-page__car-short-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 10px;
}
.pdf-page__car-short-info--block {
  background: #E1EEFF;
  border-radius: 4px;
  padding: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #23225C;
  width: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 30px;
}
.pdf-page__location-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D8DCE1;
  margin-bottom: 20px;
}
.pdf-page__location-wrapper_return {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  border: none;
}
.pdf-page__location-wrapper--text {
  width: 100%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #23225C;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.pdf-page__location-wrapper--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pdf-page__included {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
  gap: 5px;
}
.pdf-page__included > h4 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #23225C;
  margin-bottom: 5px;
}
.pdf-page__included--row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__customer-info {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.pdf-page__customer-info--side {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.pdf-page__customer-info--stick {
  width: 1px;
  background-color: #D8DCE1;
}
.pdf-page__customer-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid #D8DCE1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.pdf-page__customer-data_supl {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.pdf-page__customer-data_supl--row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.pdf-page__customer-data--row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__customer-data--row > span {
  text-transform: capitalize;
}
.pdf-page__pay-det {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #D8DCE1;
}
.pdf-page__pay-det--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pdf-page__pay-det--row > h4 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #23225C;
  letter-spacing: 0.02em;
}
.pdf-page__pay-det--row > span {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__cost-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid #D8DCE1;
}
.pdf-page__cost-list--item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 9px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__total {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #D8DCE1;
}
.pdf-page__total--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pdf-page__total--row > h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__total--row > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__qr {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdf-page__important {
  display: flex;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  flex-direction: column;
  border-top: 1px solid #D8DCE1;
  gap: 10px;
}
.pdf-page__important > h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 9px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__important > p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0.02em;
  color: #23225C;
}
.pdf-page__important > span {
  width: 100%;
  height: 1px;
  background-color: #23225C;
}

.assessment {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 30px;
  min-height: 100vh;
  position: relative;
}
@media (max-width: 1200px) {
  .assessment {
    width: 100%;
  }
}
@media (max-width: 1050px) {
  .assessment {
    flex-direction: column;
    gap: 0;
  }
}
.assessment__panel {
  width: 270px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  left: 0;
}
@media (max-width: 1050px) {
  .assessment__panel {
    display: none;
  }
}
.assessment__panel-cost {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: #FFFFFF;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: flex-end;
  color: #23225C;
  margin-bottom: 16px;
}
.assessment__panel-info {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 10px;
  background-color: #FFFFFF;
}
.assessment__panel-info--stick {
  width: 100%;
  height: 1px;
  background-color: #8E8997;
}
.assessment__panel-info--count {
  height: 25px;
  width: 25px;
  background: #E1EEFF;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 19px;
  /* 23225C */
  color: #23225C;
}
.assessment__panel-info--rev {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.assessment__panel-info--assess {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.assessment__panel-info--assess > h5 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  /* 23225C */
  color: #23225C;
}
.assessment__panel-info--assess > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  /* identical to box height */
  color: #747179;
}
.assessment__panel-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  color: #545158;
}
.assessment__panel-info-item--arrow {
  margin-left: auto;
  transition: 0.3s all ease;
  cursor: pointer;
}
.assessment__body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1050px) {
  .assessment__body {
    padding: 0px 10px;
  }
}
.assessment__body--caption-first {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #545158;
  margin-top: 40px;
}
.assessment__body--caption-first_bold {
  color: #23225C;
}
@media (max-width: 650px) {
  .assessment__body--caption-first {
    font-size: 14px;
  }
}
.assessment__body--caption-second {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #23225C;
  margin-top: 40px;
}
@media (max-width: 650px) {
  .assessment__body--caption-second {
    font-size: 16px;
  }
}
.assessment__body--caption {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #23225C;
}
.assessment__body--caption > a {
  color: #504C9E;
}
@media (max-width: 650px) {
  .assessment__body--caption > a {
    font-size: 14px;
  }
}
@media (max-width: 650px) {
  .assessment__body--caption {
    font-size: 18px;
  }
}
.assessment__pref-list-mobile {
  display: none;
}
@media (max-width: 1050px) {
  .assessment__pref-list-mobile {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    flex-direction: column;
    gap: 10px;
    grid-row: 2;
    grid-column: 2;
  }
  .assessment__pref-list-mobile--row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #8E8997;
  }
  .assessment__pref-list-mobile--row-none {
    border: none;
  }
  .assessment__pref-list-mobile--link {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-decoration-line: underline;
    color: #8E8997;
  }
}
.assessment__car-block {
  padding: 15px;
  background: #FFFFFF;
  box-shadow: 2px 4px 13px rgba(13, 29, 44, 0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding-right: 50px;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .assessment__car-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
@media (max-width: 450px) {
  .assessment__car-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.assessment__car-block--rotate-block {
  background: #D0E5FF;
  border-radius: 0px 0px 4px 4px;
  transform: rotate(-90deg);
  padding: 4px 16px;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #23225C;
  position: absolute;
  left: -70px;
  margin-right: 20px;
}
@media (max-width: 1050px) {
  .assessment__car-block--rotate-block {
    display: none;
  }
}
.assessment__car-block--stick {
  width: 1px;
  background-color: #8E8997;
  height: 100%;
}
@media (max-width: 1050px) {
  .assessment__car-block--stick {
    display: none;
  }
}
.assessment__car-block--img {
  width: 200px;
  height: 125px;
  margin-left: 35px;
}
@media (max-width: 1050px) {
  .assessment__car-block--img {
    margin: 0 auto;
  }
}
.assessment__car-block--img > img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.assessment__car-block-name {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1050px) {
  .assessment__car-block-name {
    justify-content: center;
    align-items: center;
  }
}
.assessment__car-block-name--type {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 4px 16px;
  border: 1px solid #D8DCE1;
  border-radius: 50px;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  color: #C8C8C8;
}
.assessment__car-block-name--car {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  display: flex;
  align-items: center;
  color: #23225C;
}
@media (max-width: 650px) {
  .assessment__car-block-name--car {
    font-size: 20px;
    flex-direction: column;
  }
}
.assessment__car-block-name--car > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  color: #8E8997;
  margin-left: 5px;
}
@media (max-width: 650px) {
  .assessment__car-block-name--car > span {
    font-size: 14px;
  }
}
.assessment__pref-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1050px) {
  .assessment__pref-list {
    grid-column: 1;
    grid-row: 2;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.assessment__pref-list--caption {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #545158;
}
.assessment__pref-list--item {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 150%;
  color: #8E8997;
}
.assessment__pref-list--item::before {
  content: "✔";
  color: #8E8997;
  font-size: 1rem;
  margin-right: 10px;
}
.assessment__pref-list--link-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1050px) {
  .assessment__pref-list--link-wrapper {
    display: none;
  }
}
.assessment__pref-list--link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #8E8997;
}
.assessment__location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: #FFFFFF;
  box-shadow: 2px 4px 13px rgba(13, 29, 44, 0.08);
  border-radius: 4px;
  margin-top: 10px;
}
.assessment__location-side {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.assessment__location-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assessment__location-text-wrapper--caption {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 1px;
  color: #8E8997;
  text-decoration: underline;
}
.assessment__location-text-wrapper--date {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #545158;
}
.assessment__location-text-wrapper--str {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #23225C;
}
@media (max-width: 650px) {
  .assessment__location-text-wrapper--str {
    font-size: 12px;
  }
}
.assessment__form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
  width: 100%;
  margin-bottom: 50px;
}
.assessment__form-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.assessment__form-block--caption {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #545158;
}
@media (max-width: 600px) {
  .assessment__form-block--caption {
    font-size: 13px;
  }
}
.assessment__form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.assessment__form-row--block {
  width: 36px;
  height: 36px;
  background: #D0E5FF;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #23225C;
  position: relative;
}
@media (max-width: 600px) {
  .assessment__form-row--block {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }
}
.assessment__form-row--block_gray {
  background: #D8DCE1;
}
.assessment__form-row--block_active {
  color: #FFFFFF;
  background-color: #23225C;
}
.assessment__form-row--block:hover {
  background-color: #23225C;
  color: #FFFFFF;
  transition: 0.3s all ease;
}
.assessment__form-row--block > input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
}
.assessment__form-text {
  width: 50%;
  resize: none;
  height: auto;
  min-height: 100px;
  padding: 10px;
  color: black !important;
  outline: none;
  background: #FFFFFF;
  border: 2px solid #D8DCE1;
  border-radius: 8px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
@media (max-width: 450px) {
  .assessment__form-text {
    width: 100%;
  }
}
.assessment__form-sub {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 13px 33px;
  background: #23225C;
  border-radius: 8px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #F4F4F4;
  cursor: pointer;
}
.assessment__form-sub:hover {
  transition: 0.3s all ease;
  color: #23225C;
  background: #FFFFFF;
}
@media (max-width: 450px) {
  .assessment__form-sub {
    width: 100%;
    margin: 0 auto;
  }
}

.assessment-done {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.done-wrapper_fh {
  height: 100%;
  padding: 50px 0;
}

@media (max-width: 1050px) {
  .done-wrapper__right_center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.assessment-modal {
  display: flex;
  width: 70%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px;
  gap: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #D0E5FF;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1050px) {
  .assessment-modal {
    width: 95%;
  }
}
@media (max-width: 750px) {
  .assessment-modal {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
}
.assessment-modal--close {
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
}
@media (max-width: 750px) {
  .assessment-modal--close {
    top: 5px;
    right: 5px;
  }
}
.assessment-modal__link {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 16px 40px;
  background: #23225C;
  border-radius: 8px;
  color: #FFFFFF;
}
.assessment-modal__text-block {
  display: flex;
  width: 50%;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 750px) {
  .assessment-modal__text-block {
    width: 100%;
  }
}
.assessment-modal__text-block--caption {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #23225C;
}
.assessment-modal__text-block--description {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #545158;
}
.assessment-modal__text-block--description > b {
  color: #23225C;
}

.assessment__form-row-checked .assessment__form-row--block {
  background: #D8DCE1;
}
.assessment__form-row-checked .assessment__form-row--block_active {
  background: #504C9E;
}

.assessment-row-one,
.assessment-row-two,
.assessment-row-three,
.assessment-row-four,
.assessment-row-five,
.assessment-row-six {
  display: inherit;
  gap: inherit;
  flex-direction: inherit;
}

.loader {
  animation: spin 1s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: #09f;
  border-top-color: #09f;
  box-sizing: border-box;
  height: 20vmin;
  left: calc(50% - 10vmin);
  position: fixed;
  top: calc(50% - 10vmin);
  width: 20vmin;
  z-index: 1;
}
.loader:before {
  animation: spin 2s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: #3cf;
  border-top-color: #3cf;
  box-sizing: border-box;
  content: "";
  height: 16vmin;
  left: 0;
  position: absolute;
  top: 0;
  width: 16vmin;
}
.loader:after {
  animation: spin 3s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: #6ff;
  border-top-color: #6ff;
  box-sizing: border-box;
  content: "";
  height: 12vmin;
  left: 2vmin;
  position: absolute;
  top: 2vmin;
  width: 12vmin;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.dropdown-content {
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  transform-origin: 0 0;
}

.dropdown-content:focus {
  outline: 0;
}

.s1 {
  width: 8.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.s2 {
  width: 16.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.s3 {
  width: 25%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.s4 {
  width: 33.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s5 {
  width: 41.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s6 {
  width: 50%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s7 {
  width: 58.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s8 {
  width: 66.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s9 {
  width: 75%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s10 {
  width: 83.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.s11 {
  width: 80%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s12 {
  width: 100%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.dropdown-content li {
  clear: both;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  min-height: 50px;
  line-height: 1.5rem;
  width: 100%;
  text-align: left;
}

.dropdown-content li:hover, .dropdown-content li.active {
  background-color: #eee;
}

.dropdown-content li:focus {
  outline: none;
}

.dropdown-content li.divider {
  min-height: 0;
  height: 1px;
}

.dropdown-content li > a, .dropdown-content li > span {
  font-size: 16px;
  color: #f60;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
}

.dropdown-content li > span > label {
  top: 1px;
  left: 0;
  height: 18px;
}

.dropdown-content li > a > i {
  height: inherit;
  line-height: inherit;
  float: left;
  margin: 0 24px 0 0;
  width: 24px;
}

body.keyboard-focused .dropdown-content li:focus {
  background-color: #dadada;
}

.input-field.col .dropdown-content [type=checkbox] + label {
  top: 1px;
  left: 0;
  height: 18px;
  transform: none;
}

.topmenu {
  padding: 10px 0;
}

.topmenu {
  position: relative;
}

.link_container {
  margin: 0 auto;
  /*max-width: 1100px;*/
  width: 85%;
}

.z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-small, .btn-floating, .dropdown-content, .collapsible, .sidenav {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 3px 1px -2px rgba(0, 0, 0, 0.07), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 601px) {
  .link_container {
    width: 70%;
  }
}
@media only screen and (min-width: 993px) {
  .link_container {
    width: 50%;
  }
}
.icon-block {
  padding: 0 15px;
}

.icon-block .material-icons {
  font-size: inherit;
}

body {
  font-family: Montserrat !important, Verdana;
}

.page-img {
  z-index: -2;
  margin: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

.page-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background: hsla(0, 0%, 0%, 0.5) border-box;
}

.blured {
  filter: blur(20px);
}

#adult {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1100;
  overflow: hidden;
  background: hsla(0, 0%, 0%, 0.5) border-box;
}

#adult a {
  color: white;
  padding: 10px 20px;
  margin: 30px auto !important;
  border-radius: 10px;
  border: 2px solid white;
  white-space: nowrap;
  display: block;
  width: 300px;
}

#adult h3 {
  font-size: 2.2rem;
}

#outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#table-container {
  height: 100%;
  width: 100%;
  display: table;
}

#table-cell {
  vertical-align: middle;
  height: 100%;
  display: table-cell;
  text-align: center;
  margin: auto;
  color: white !important;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

/* CROP */
#sample_image, #sample_image2, #uploaded_image, #uploaded_image2 {
  display: block;
  max-width: 100%;
}

.img_for_crop {
  margin: auto;
}

#uploaded_image {
  border-radius: 50%;
  cursor: pointer;
  width: 400px;
  height: 400px;
}

#uploaded_image2 {
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

.modal-lg {
  max-width: 1000px !important;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: 0.3s ease;
  width: 100%;
}

.image_area:hover .overlay, .image_area:active .overlay, .image_area2:hover .overlay, .image_area2:active .overlay {
  height: 65%;
  cursor: pointer;
}

.overlay img {
  width: 40px;
  height: 40px;
  transition: 0.3s ease;
  position: absolute;
  left: 50px;
  top: -50px;
}

.image_area2 .overlay img {
  left: 45% !important;
}

.image_area2 {
  margin: 10px 0;
}

.image_area:hover .overlay img, .image_area:active .overlay img, .image_area2:hover .overlay img, .image_area2:active .overlay img {
  width: 60px;
  height: 60px;
  left: 40px;
  top: -10px;
}

#modal .cropper-crop-box, #modal .cropper-view-box {
  border-radius: 50%;
}

#modal .cropper-view-box {
  box-shadow: 0 0 0 1px #39f;
  outline: 0;
}

#modal .cropper-face {
  background-color: inherit !important;
}

#modal .cropper-dashed, .cropper-point.point-se, .cropper-point.point-sw, .cropper-point.point-nw, .cropper-point.point-ne, .cropper-line {
  display: none !important;
}

#modal .cropper-view-box {
  outline: inherit !important;
}

#modal .btn-large {
  margin-right: 20px !important;
}

#modal .modal-footer {
  height: 75px;
}

/* CROP END */
/*COLORS*/
#color, #color0, #color1 {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f09433", endColorstr="#bc1888",GradientType=1 );
}

#color2 {
  background: linear-gradient(45deg, #4393cc 0%, #6575cc 25%, #7b60cc 50%, #8954cc 75%, #9c41cc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#45deg", endColorstr="#9c41cc",GradientType=1 );
}

#color3 {
  background: #ec008c;
  background: linear-gradient(to right, #fc6767, #ec008c);
}

#color4 {
  background: #12c2e9;
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
}

#color5 {
  background: #ad5389;
  background: linear-gradient(to right, #3c1053, #ad5389);
}

#color6 {
  background: #C6FFDD;
  background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);
}

#color7 {
  background: #ee9ca7;
  background: linear-gradient(to right, #ffdde1, #ee9ca7);
}

#color8 {
  background: #00b09b;
  background: linear-gradient(to right, #96c93d, #00b09b);
}

#color9 {
  background: #B2FEFA;
  background: linear-gradient(to right, #0ED2F7, #B2FEFA);
}

#color10 {
  background: #536976;
  background: linear-gradient(to right, #292E49, #536976);
}

#color11 {
  background: #24C6DC;
  background: linear-gradient(to right, #514A9D, #24C6DC);
}

#color12 {
  background: #ADD100;
  background: linear-gradient(to right, #7B920A, #ADD100);
}

#color13 {
  background: #ee0979;
  background: linear-gradient(to right, #ff6a00, #ee0979);
}

#color14 {
  background: #e7d196;
}

#color15 {
  background: #df5a96;
}

#color16 {
  background: #b8aae0;
}

#color17 {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#color18 {
  background: #eac3c3;
}

#color19 {
  background: #ADD100;
}

#color20 {
  background: #6d6d6d;
}

#color21 {
  background: black;
}

#color22 {
  background: linear-gradient(-45deg, #FF0080, #FF8C00, #40E0D0);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

#color23 {
  background: linear-gradient(-45deg, #fdc78d, #fcb0bc, #f994f3);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

/* COLORS END */
.domain_input {
  position: relative;
  background: white;
  border-radius: 10px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  height: 50px !important;
}

.domain_input .dom_inp {
  position: absolute;
  left: 133px;
  top: -5px;
  width: 60% !important;
  overflow: hidden;
}

.domain_input .log_site {
  position: absolute;
  color: #999;
  font-size: 14px !important;
  left: 20px;
  top: 13px;
}

.domain_input input, .domain_input input:focus, .domain_input input:active, .domain_input:focus, .domain_input:active, .reg_design input {
  border: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

#modal_settings .col {
  font-size: 16px !important;
}

.share_instructions {
  width: 90%;
  max-width: 100%;
  margin: 10px auto auto auto;
}

.share_instructions a {
  display: block;
  font-size: 14px;
  color: black;
  padding: 5px 5px 5px 40px;
  background-size: 25px !important;
}

/*a#modal_inst { background:url('/img/services/instagram.svg') left center  no-repeat; }*/
/*a#modal_tw { background:url('/img/services/twitter.svg') left center  no-repeat; }*/
/*a#modal_fb { background:url('/img/services/facebook.svg') left center  no-repeat; }*/
.yes, .no {
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.yes {
  background: #d7f0bb;
}

.no {
  background: #f7ebce;
}

video::-webkit-media-controls {
  display: none !important;
  border: none !important;
}

.round_choise, .round_color {
  cursor: pointer;
  background: #f2f2f2;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  outline: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
  border-radius: 30px;
  float: left;
  margin: 10px 10px 5px 0;
}

.round_choise input, .round_choise input:focus {
  padding: 0 15px 5px 15px !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8em;
  border-bottom: none !important;
  box-shadow: none !important;
}

.round_choise:hover, .round_choise:active, .round_color:hover, .round_color:active {
  border: 2px solid white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.yep, .yep img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  opacity: 1 !important;
}

.round_color.yep {
  border: 2px solid #B388FF;
}

#light_overlay, #circle_overlay, #light_overlay2, #circle_overlay2, #light_overlay3, #circle_overlay3, #light_overlay4, #circle_overlay4, #light_overlay5, #circle_overlay5, #light_overlay6, #circle_overlay6, #light_overlay7, #circle_overlay7, #light_overlay8, #circle_overlay8, #light_overlay9, #circle_overlay9, #light_overlay10, #circle_overlay10 {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#light_overlay, #light_overlay2, #light_overlay3, #light_overlay4, #light_overlay5, #light_overlay6, #light_overlay7, #light_overlay8, #light_overlay9, #light_overlay10 {
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  opacity: 0.75;
}

.post_med_img {
  display: block;
  margin: auto;
  width: 100%;
}

.gray-outline {
  background: none;
  border: 2px solid #ccc;
  padding: 10px;
  border-radius: 10px;
  margin: 20px 0 !important;
}

.share_soc {
  font-size: 14px;
  color: #999;
}

#qrcode #qrcode2 img, #qrcode img {
  margin: auto;
  width: 200px !important;
  height: 200px !important;
}

#add_text, #add_text2 {
  border: 1px solid #ccc;
  border-radius: 10px;
  font-weight: 300;
  height: 160px;
  margin: 10px;
  max-height: 87px;
  max-width: 95%;
  min-height: 77px;
  min-width: 95%;
  padding: 20px;
  text-align: center;
}

#share_name {
  color: #bcb9c1;
  font-size: 12px;
  margin: 10px;
  word-wrap: break-word;
  background: #f1eff5;
  padding: 10px 5px;
  border-radius: 10px;
}

#share_name span, #settings_check {
  color: black;
  font-size: 16px;
}

.hidden {
  display: none;
}

#show_choise {
  display: none;
}

#round_comment {
  background: none !important;
  border: none !important;
  outline: none !important;
  border-bottom: none !important;
  box-sizing: border-box !important;
}

#round_col1, .mgreen, #round_col1e {
  background: #40bc32;
  color: white;
}

#round_col2, .myellow, #round_col2e {
  background: #f1cf31;
  color: black;
}

#round_col3, .mred, #round_col3e {
  background: #ff2a1c;
  color: white;
}

#round_col4, .mblack {
  background: #000000;
  color: white;
}

#round_col5, .mgorange, #round_col4e {
  background: #ff620c;
  color: white;
}

#round_col6, .mblue, #round_col5e {
  background: #169fff;
  color: white;
}

#round_col1 input::-moz-placeholder, #round_col1e input::-moz-placeholder {
  color: white !important;
}

#round_col1 input, #round_col1 input::placeholder, #round_col1e input, #round_col1e input::placeholder {
  color: white !important;
}

#round_col2 input::-moz-placeholder, #round_col2e input::-moz-placeholder {
  color: black !important;
}

#round_col2 input::placeholder, #round_col2e input::placeholder {
  color: black !important;
}

#round_col3 input::-moz-placeholder, #round_col3e input::-moz-placeholder {
  color: white !important;
}

#round_col3 input, #round_col3 input::placeholder, #round_col3e input, #round_col3e input::placeholder {
  color: white !important;
}

#round_col4 input::-moz-placeholder {
  color: white !important;
}

#round_col4 input, #round_col4 input::placeholder {
  color: white !important;
}

#round_col5 input::-moz-placeholder, #round_col5e input::-moz-placeholder, #round_col4e input::-moz-placeholder {
  color: white !important;
}

#round_col5 input, #round_col5 input::placeholder, #round_col5e input, #round_col5e input::placeholder, #round_col4e input, #round_col4e input::placeholder {
  color: white !important;
}

#round_col6 input::-moz-placeholder, #round_col5e input::-moz-placeholder {
  color: white !important;
}

#round_col6 input, #round_col6 input::placeholder, #round_col6e input, #round_col5e input::placeholder {
  color: white !important;
}

/* .modal { max-height: 95%; overflow: visible;} */
.tenround {
  border-radius: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

.tenpxborder {
  border-radius: 10px;
}

.avatar {
  width: 140px !important;
  height: 140px !important;
  border: 3px solid #fff;
  min-width: 110px;
}

.image_area, .image_area2 {
  position: relative;
}

.image_area label, .image_area form {
  width: 140px !important;
  height: 140px !important;
  display: inline-block;
  clear: both;
  position: relative;
  margin: auto;
}

.image_area2 label, .image_area2 form {
  width: 100% !important;
  display: inline-block;
  clear: both;
  position: relative;
  margin: auto;
}

.avatar3 {
  width: 70px !important;
  height: 70px !important;
  min-width: 70px;
}

.avatar2 {
  width: 45px;
  height: 45px;
  border: 0;
  margin: 10px 0 0 0 !important;
  padding: 0 !important;
}

#avatar_link {
  height: 66px !important;
}

.white_container {
  border-radius: 10px;
  background: white;
  padding: 10px 20px;
}

.easy_gray {
  background: #f3f3f3 !important;
}

.ava_div {
  width: 206px;
  height: 206px !important;
  overflow: hidden;
  position: relative;
  left: 0;
  top: 20px;
  margin-bottom: 40px;
}

.ava_div a img {
  margin: 0 !important;
}

.user_fio2 {
  position: absolute;
  left: 240px;
  top: 55px;
}

.username2 {
  position: absolute;
  left: 240px;
  top: 70px;
}

.username_desc2 {
  font-weight: 300;
  color: white;
  font-size: 16px;
  position: absolute;
  left: 240px;
  top: 155px;
}

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

.username2 h2 {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 500 !important;
}

.nav-wrapper ul li a {
  font-weight: 500; /* text-transform:uppercase; */
}

/* label color */
.input-field label {
  color: #999;
}

/* label focus color */
.input-field input[type=text]:focus + label {
  color: #b388ff;
}

/* label underline focus color */
.input-field input[type=text]:focus {
  border-bottom: 1px solid #b388ff;
  box-shadow: 0 1px 0 0 #b388ff;
}

/* valid color */
.input-field input[type=text].valid {
  border-bottom: 1px solid #b388ff;
  box-shadow: 0 1px 0 0 #b388ff;
}

/* invalid color */
.input-field input[type=text].invalid {
  border-bottom: 1px solid #b388ff;
  box-shadow: 0 1px 0 0 #b388ff;
}

/* icon prefix focus color */
.input-field .prefix.active {
  color: #b388ff;
}

.qcontact_list li a img {
  width: 50px;
  height: auto;
  border-radius: 50%;
}

.qcontact_list {
  text-align: center;
}

.qcontact_list li {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 3px;
}

.qcontact_list li a {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
}

.link_counter {
  position: absolute !important;
  width: 85%;
  text-align: center;
  bottom: -15px;
  left: 37px;
  font-weight: 500;
  color: #b7b7b7;
  font-size: 0.7em;
}

.link_counter span {
  font-weight: 900;
}

.theme1 h1 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.username {
  color: white;
  font-size: 16px;
  margin: 10px 0;
  font-weight: 500;
}

.main_links li {
  margin: 6px 0;
  position: relative;
  border-radius: 10px;
}

.main_links li a div {
  margin: 0 0 1.2em 0;
  position: relative;
}

.text {
  color: white;
  padding: 5px 0;
  font-weight: 300;
  word-wrap: break-word;
}

.markers {
  position: absolute !important;
  top: -1em;
  right: 10px;
  border-radius: 30px;
  padding: 5px 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8em;
}

.nav {
  position: absolute !important;
  bottom: 10px;
  width: 30px;
  height: 30px;
  background-size: 30px;
  cursor: pointer !important;
  margin: 0 !important;
  z-index: 130;
}

.navq {
  position: absolute !important;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background-size: 35px;
  cursor: pointer !important;
  margin: 0 !important;
  z-index: 130;
  /*background:url('/img/close.svg') center center  no-repeat; */
}

.navclose {
  background: url("/close.svg") center center no-repeat;
  right: 10px;
}

.modal {
  border-radius: 10px;
}

.modal-close {
  color: black;
  right: 15px;
  top: 15px;
}

/*.modal-content { padding-top:0!important; }*/
/*.navedit { background:url('/img/edit.svg') center center  no-repeat; right:50px; }*/
.main_links li a div h2 {
  font-size: 15px;
  display: block;
  font-weight: 700;
  color: black;
  margin: 0 10px;
  align-items: center;
}

.main_links li a div h2 span {
  font-size: 14px;
  margin: 0 !important;
  color: #969696;
  font-weight: 500;
}

.editlink a div h2 {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0));
}

.main_links li a div h3 {
  font-size: 12px;
  margin: 0 !important;
  position: absolute;
  bottom: 0.8em;
  left: 91px;
  color: #969696;
  width: 70%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0));
}

.main_links li a div img {
  width: 30px;
}

.username_desc {
  font-weight: 300;
  color: white;
  font-size: 12px;
  margin-bottom: 1.5em;
}

.profile_views {
  font-weight: 300;
  color: white;
  font-size: 12px;
  margin-bottom: 1.5em;
}

.profile_views span {
  font-weight: 500;
  font-size: 18px;
}

#copyright_panel ul li a {
  color: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  font-size: 12px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.unactivelnk {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.carousel a img {
  border-radius: 50% !important;
}

.carousel a {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.owl-carousel .owl-item img {
  width: 60px !important;
  height: 60px !important;
}

.gallery .carousel .carousel-item img {
  height: 100%;
  width: auto;
}

#virified {
  width: 20px;
  height: auto;
}

.vidik, .gallery .carousel {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 (if 4:3 = 75%) */
  height: 0;
  overflow: hidden;
}

.vidik iframe, .editvidik div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
  border-radius: 10px;
  overflow: hidden;
}

.owl-stage-outer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.owl-stage-outer > .owl-stage {
  margin: 0 auto;
}

.red_alert {
  color: white;
  background: #ff8a80;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 20px 10px;
  font-size: 14px;
  line-height: 200%;
}

.red_alert span a {
  color: black;
  font-weight: bold;
  background: white;
  border-radius: 50px;
  padding: 3px 10px;
  white-space: nowrap;
}

.red_alert span a:hover {
  background: #F0DDDD;
}

.video2-container iframe, .video2 iframe {
  border-radius: 10px;
}

.editvidik iframe {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  height: 80%;
  left: 30px;
}

/*.vidioc {  background: url(/img/drag_white.svg) #282828 5px center no-repeat !important;   background-size:22px !important; position:relative; padding:30px; border-radius: 10px; }*/
.video2 {
  margin: 10px 0 !important;
}

.vidioc iframe, .gal_edit img {
  border-radius: 10px;
}

/*.editvidik div {  background: url(/img/drag_white.svg) #282828 5px center no-repeat;   background-size:22px; }*/
.navedit {
  background: url("/edit.svg");
}

/*.headerr_close, .headerr .navclose, .text .navclose, .video2 .navclose{  position: absolute; top: 50%; transform: translateY(-50%); z-index:999; background:url('/img/close.svg') center center no-repeat;  width:30px; height:30px; background-size:30px; border-radius:50%; right:5px; }*/
.carousel a img {
  width: auto;
  height: 100% !important;
}

.gallery {
  border-radius: 10px;
  overflow: hidden;
  background: #282828;
}

/*.gal_edit {  background: url(/img/drag_white.svg) #282828 5px center no-repeat !important;   background-size:22px !important; position:relative; padding:30px;  border-radius: 10px;}*/
.collapsible-header {
  padding: 0.7rem;
}

.swipe {
  background: green;
}

/*.main_links .editlink a .collapsible-header { padding-left:40px; background: url(/img/drag.svg) #fff  7px center no-repeat; background-size:1.5em; }*/
.editlink, .editlink a, .editlink a div, .edith, .editvidik div, .gal_edit, .vidioc, .editt {
  cursor: move;
}

.headerr h2 {
  font-size: 18px;
  margin: 10px 0;
  position: relative;
  color: white;
  word-wrap: break-word;
}

/*.edith h2, .editt{  background: url(/img/drag_white.svg)  7px center no-repeat;  background-size:18px; }*/
.edith h2, .editt {
  position: relative;
  padding-left: 40px !important;
  padding-right: 70px !important;
}

.dropdown-content li a {
  color: #000;
}

.dropdown-content {
  width: 240px !important;
  border-radius: 10px;
}

.topmenu {
  padding: 10px 0;
}

/*#google_button { background:  url(/img/google_button_icon.svg) left center no-repeat #4285f4;  color:white; padding:20px 20px 20px 60px; border-radius:10px; }*/
#google_button:hover {
  background-color: #6da6f7;
}

#sep_title, #sep_title2 {
  text-align: center;
}

#vk_button {
  background: url(/img/services/vk_onlywhite.svg) 10px center no-repeat #4285f4;
  color: white;
  padding: 20px 20px 20px 70px;
  border-radius: 10px;
  background-size: 50px;
}

#vk_button:hover {
  background-color: #659cf8;
}

.social_enter li {
  margin: 10px 20px 0 0;
  display: inline-flex;
}

.social_enter, .social_enter li {
  line-height: 10px !important;
}

.social_enter li a {
  margin-bottom: 10px;
}

.carou {
  background: black;
  overflow: hidden;
}

.small_gray, .small_gray a {
  font-size: 12px;
  color: #999;
  text-decoration: underline;
}

.g-recaptcha, .g-recaptcha div {
  overflow: hidden;
  max-width: 100%;
  display: table;
  margin: 0 auto 5px auto;
}

.topmenu {
  position: relative;
}

.settings {
  position: absolute;
  border-radius: 18px;
  padding: 7px 10px;
  background-color: rgba(0, 0, 0, 0.0784313725);
  right: 0;
  margin: 0;
  color: white;
  border: 2px solid white;
}

.settings#set1 {
  border: none;
}

.settings#set1 i {
  font-size: 30px;
}

.main_links {
  padding-top: 10px;
}

#google_interview {
  width: 320px;
}

.reg_design {
  position: relative;
  height: 60px;
  background: white;
  margin: 10px auto;
  width: 320px;
  overflow: hidden;
  border-radius: 200px;
  border: 2px solid #AC9BFF;
}

.reg_design img, .reg_design input, .reg_design span, .reg_design p, .reg_design button {
  position: absolute;
}

.reg_design span, .reg_design input, .reg_design p {
  font-size: 14px !important;
}

.reg_design img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: 0;
  top: 7px;
}

.reg_design span {
  left: 43px;
  top: 16px;
}

.reg_design input {
  left: 153px;
  top: 2px;
  width: 110px !important;
}

.reg_design p {
  left: 153px;
  top: 16px;
  margin: 0 !important;
  color: #b5b5b5;
}

.reg_design button {
  right: 7px;
  top: 8px;
  width: 40px !important;
  height: 40px !important;
}

.reg_design button i {
  line-height: 40px !important;
}

.alert_info {
  border-radius: 10px;
  background: white;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 50px;
  text-align: center;
  width: 300px;
  padding: 40px 20px 20px 20px;
  box-shadow: 4px 4px 57px 4px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.alert_info .nav {
  bottom: 0 !important;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-size: 30px;
}

.main_h5 {
  font-size: 16px;
}

.main_h1 {
  font-size: 22px;
  margin: 15px 10px;
}

.main_row {
  margin: 50px 0;
}

#main_logo_img {
  display: inline-block;
}

#main_logo_mp4 {
  display: none;
}

.container h2 {
  font-size: 28px;
  font-weight: bold;
}

.container h3 {
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (min-width: 601px) {
  .main_row h5 {
    font-size: 36px;
  }
  #main_logo_img {
    display: none;
  }
  #main_logo_mp4 {
    display: inline-block;
  }
  .xdiv {
    position: relative;
  }
  .xcent {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 400px;
  }
  .main_h5 {
    font-size: 22px;
    font-weight: 300;
  }
  .main_h1 {
    font-size: 30px;
  }
  .reg_design {
    width: 500px;
    height: 70px;
  }
  .reg_design span, .reg_design input, .reg_design p {
    font-size: 20px !important;
  }
  .reg_design img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    left: 0;
    top: 2px;
  }
  .reg_design span {
    left: 80px;
    top: 16px;
  }
  .reg_design input {
    left: 238px;
    top: 7px;
    width: 195px !important;
  }
  .reg_design p {
    left: 238px;
    top: 16px;
    margin: 0 !important;
    color: #b5b5b5;
  }
  .reg_design button {
    right: 9px;
    top: 9px;
    width: 45px !important;
    height: 45px !important;
  }
  .reg_design button i {
    line-height: 45px !important;
  }
  .image_area2 .overlay img {
    left: 145px !important;
  }
  .post_med_img {
    display: block;
    margin: auto;
    width: 90%;
  }
  .share_instructions {
    width: 60%;
    max-width: 100%;
    margin: 10px auto auto auto;
  }
  .share_instructions a {
    font-size: 16px;
  }
  .link_counter {
    bottom: -18px;
    left: 37px;
  }
  .overlay img {
    width: 50px;
    height: 50px;
    left: 60px;
    top: -60px;
  }
  .image_area:hover .overlay img, .image_area:active .overlay img {
    width: 80px;
    height: 80px;
    left: 45px;
    top: -15px;
  }
  .qcontact_list li a img {
    width: 60px;
  }
  .qcontact_list li {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  .main_links li {
    margin: 20px 0;
  }
  .text {
    padding: 10px 0;
    text-align: center;
  }
  #share_name {
    font-size: 20px;
    margin: 0;
  }
  #share_name span {
    color: black;
    font-size: 24px;
  }
  .round_choise {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
  #link_pic, #link_pic2 {
    width: 50px;
    height: 50px;
  }
  .white_container {
    border-radius: 20px;
    background: white;
    padding: 40px;
  }
  .editvidik iframe {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    height: 80%;
    left: 40px;
  }
  .headerr h2 {
    font-size: 20px;
    margin: 15px 0;
  }
  .nav {
    bottom: 10px;
    width: 35px;
    height: 35px;
    background-size: 35px;
  }
  .navclose {
    right: 10px;
  }
  .navedit {
    right: 60px;
  }
  .theme1 h1 {
    font-size: 28px;
  }
  .main_links li a div h2 {
    font-size: 16px;
  }
  .markers {
    font-size: 1em;
    padding: 7px 15px;
  }
  .main_links li a div img {
    width: 40px;
  }
  .main_links li a div {
    margin: 0 0 1.5em 0;
  }
  .collapsible-header {
    padding: 0.8rem;
  }
  .main_links li a div h3 {
    bottom: 1.2em;
    left: 102px;
  }
  #copyright_panel ul li a {
    font-size: 14px;
  }
  .profile_views span {
    font-weight: 500;
    font-size: 22px;
  }
  .username {
    font-size: 18px;
    margin: 15px 0;
  }
  .username_desc {
    font-size: 14px;
  }
  .carousel a {
    width: 70px;
    height: 70px;
  }
  .owl-carousel .owl-item img {
    width: 70px !important;
    height: 70px !important;
  }
  #virified {
    width: 25px;
    height: auto;
  }
  .headerr_edit, .headerr_close, .headerr .navedit, .headerr .navclose, .text .navedit, .text .navclose, .video2 .navedit, .video2 .navclose {
    width: 35px;
    height: 35px;
    background-size: 35px;
  }
  .headerr_edit, .headerr .navedit, .text .navedit, .video2 .navedit {
    right: 50px;
  }
  .headerr_close, .headerr .navclose, .text .navclose, .video2 .navclose {
    right: 10px;
  }
  .avatar {
    width: 170px !important;
    height: 170px !important;
  }
  .image_area label, .image_area form {
    width: 170px !important;
    height: 170px !important;
  }
  .avatar3 {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px;
  }
  .main_links {
    padding-top: 10px;
  }
  #google_interview {
    width: 580px;
  }
}
@media only screen and (min-width: 993px) {
  .main_row h5 {
    font-size: 42px;
  }
  #main_logo_img {
    display: none;
  }
  #main_logo_mp4 {
    display: inline-block;
  }
  .main_h5 {
    font-size: 28px;
  }
  .main_h1 {
    font-size: 40px;
  }
  .reg_design {
    width: 800px;
    height: 80px;
  }
  .reg_design span, .reg_design input, .reg_design p {
    font-size: 32px !important;
  }
  .reg_design img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    left: 4px;
    top: 2px;
  }
  .reg_design span {
    left: 134px;
    top: 12px;
  }
  .reg_design input {
    left: 387px;
    top: 9px;
    width: 320px !important;
  }
  .reg_design p {
    left: 390px;
    top: 12px;
    margin: 0 !important;
    color: #b5b5b5;
  }
  .reg_design button {
    right: 9px;
    top: 9px;
    width: 56px !important;
    height: 56px !important; /*56*/
  }
  .reg_design button i {
    line-height: 56px !important; /*56*/
  }
  .image_area2 .overlay img {
    left: 210px !important;
  }
  .post_med_img {
    display: block;
    margin: auto;
    width: 60%;
  }
  .share_instructions {
    width: 45%;
    max-width: 100%;
    margin: 10px auto auto auto;
  }
  .share_instructions a {
    font-size: 16px;
  }
  #google_interview {
    width: 960px;
  }
  .link_counter {
    bottom: -21px;
    left: 37px;
  }
  .overlay img {
    width: 50px;
    height: 50px;
    left: 75px;
    top: -60px;
  }
  .image_area:hover .overlay img, .image_area:active .overlay img {
    width: 100px;
    height: 100px;
    left: 50px;
    top: -20px;
  }
  .qcontact_list li a img {
    width: 70px;
  }
  .qcontact_list li {
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  .main_links li {
    margin: 30px 0;
  }
  #share_name {
    font-size: 20px;
    margin: 0;
  }
  #share_name span {
    color: black;
    font-size: 30px;
  }
  #link_pic, #link_pic2 {
    width: 60px;
    height: 60px;
  }
  .round_choise {
    width: 50px;
    height: 50px;
    border-radius: 50px;
  }
  .headerr_edit, .headerr_close, .headerr .navedit, .headerr .navclose, .text .navedit, .text .navclose, .video2 .navedit, .video2 .navclose {
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
  .headerr_edit, .headerr .navedit, .text .navedit, .video2 .navedit {
    right: 60px;
  }
  .headerr_close, .headerr .navclose, .text .navclose, .video2 .navclose {
    right: 10px;
  }
  .editvidik iframe {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    height: 80%;
    left: 40px;
  }
  .headerr h2 {
    font-size: 22px;
    margin: 20px 0;
  }
  .navclose {
    right: 20px;
  }
  .navedit {
    right: 80px;
  }
  .avatar {
    width: 200px !important;
    height: 200px !important;
  }
  .image_area label, .image_area form {
    width: 200px !important;
    height: 200px !important;
  }
  .avatar3 {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px;
  }
  .theme1 h1 {
    font-size: 36px;
  }
  .markers {
    font-size: 1.1em;
    padding: 8px 17px;
  }
  .main_links li a div img {
    width: 50px;
  }
  .main_links li a div {
    margin: 0 0 1.7em 0;
  }
  .main_links li a div h2 {
    font-size: 22px;
  }
  .collapsible-header {
    padding: 1rem;
  }
  .main_links li a div h3 {
    bottom: 1.2em;
    left: 126px;
    font-size: 14px;
  }
  #copyright_panel ul li a {
    font-size: 14px;
  }
  .username {
    font-size: 20px;
    margin: 20px 0;
  }
  .username_desc {
    font-size: 16px;
  }
  .carousel a {
    width: 80px;
    height: 80px;
  }
  .owl-carousel .owl-item img {
    width: 80px !important;
    height: 80px !important;
  }
  .headerr h2 {
    font-size: 26px;
    margin: 20px 0;
  }
  #virified {
    width: 25px;
    height: auto;
  }
}
.center, .center-align {
  text-align: center;
}

li a div h2 span {
  font-size: 14px;
  margin: 0 !important;
  color: #969696;
  font-weight: 500;
}

*, ::before, ::after {
  box-sizing: inherit;
}

@media only screen and (min-width: 993px) {
  li a div h2 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 601px) {
  li a div h2 {
    font-size: 16px;
  }
}
li a div h2 {
  font-size: 15px;
  font-weight: 700;
  color: black;
}

/*h2 {*/
/*    font-size: 3.56rem;*/
/*    line-height: 110%;*/
/*}*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.3;
}

.editlink, .editlink a, .editlink a div, .edith, .editvidik div, .gal_edit, .vidioc, .editt {
  cursor: move;
}

.collapsible-header {
  cursor: pointer;
  line-height: 1.5;
}

a {
  color: #039be5;
}

ul:not(.browser-default) > li {
  list-style-type: none;
}

ul:not(.browser-default) {
  list-style-type: none;
}

@media only screen and (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  html {
    font-size: 18px;
  }
}
@media only screen and (min-width: 0px) {
  html {
    font-size: 16px;
  }
}
.text-danger {
  background-color: #ffe0db;
  border-color: #ffc5bb;
  color: #ff3e1d;
}

.lang-flag {
  margin-right: 8px;
  padding: 0 !important;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.reasons-m-t {
  margin-top: 6rem;
}

.reasons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reasons img {
  height: 40px;
}
.reasons h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.reasons p {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  background: #e1eeff;
  border-radius: 99px;
  color: #23225c !important;
  padding: 22px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
}

.swiper-pagination-bullet-active {
  background: #23225c !important;
}

.swiper {
  padding: 0 60px !important;
  padding-bottom: 40px !important;
  margin-left: -15px !important;
  margin-right: -20px !important;
}

.swiper-pagination {
  bottom: -5px !important;
}

.alert-danger {
  background: #f36e6e;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 14px;
  font-weight: normal;
}

.alert-success {
  background: #0e8917;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 14px;
  font-weight: normal;
}

#card-element {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 4px 15px;
}

.data-wrapper-continue {
  display: flex;
  justify-content: flex-end;
}
.data-wrapper-continue .button-darkblue {
  font-size: 16px;
  font-weight: 600;
  height: 58px;
  width: auto;
  padding: 0px 52px;
}

.star {
  width: 45px !important;
  height: 45px !important;
  display: inline !important;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
}

.reservation-success .success-container {
  display: flex;
  justify-content: center;
}

.btn-green {
  color: #fff;
  background-color: #55a539;
  border: none;
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 50px;
  border-radius: 8px;
  cursor: pointer;
  padding: 4px 18px;
  margin: 0px;
  font-weight: bold;
  transition: 0.5s;
  text-decoration: none;
  width: auto;
}
@media (max-width: 769px) {
  .btn-green {
    padding: 0px 18px;
  }
}
.btn-green:hover, .btn-green:active, .btn-green:focus {
  background-color: #417b2c;
}

.js-cookie-consent {
  background: #f1f6fe;
  bottom: 0;
  color: #333;
  font-size: 14px;
  padding: 0px !important;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 100;
  box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.0509803922);
}
.js-cookie-consent .flex-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.js-cookie-consent .flex-wrap .mt-2 {
  margin-top: 0 !important;
}
.js-cookie-consent .js-cookie-consent-agree {
  background: #23225c;
  border-radius: 8px;
  border: none;
  color: #fff;
  margin-left: 10px;
  transition: 0.5s;
}
.js-cookie-consent .js-cookie-consent-agree:hover, .js-cookie-consent .js-cookie-consent-agree:active, .js-cookie-consent .js-cookie-consent-agree:focus {
  background: #1a1943;
}

.load-cars h1 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  color: #23225c;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.load-cars .row-logos {
  margin-bottom: 5rem;
}
.load-cars .row-logos div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-cars .loader {
  height: 50px;
  margin-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-cars .car__body {
  animation: shake 0.2s ease-in-out infinite alternate;
}
.load-cars .car__line {
  transform-origin: center right;
  stroke-dasharray: 22;
  animation: line 0.8s ease-in-out infinite;
  animation-fill-mode: both;
}
.load-cars .car__line--top {
  animation-delay: 0s;
}
.load-cars .car__line--middle {
  animation-delay: 0.2s;
}
.load-cars .car__line--bottom {
  animation-delay: 0.4s;
}
@keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}
@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}

.full-container {
  gap: 0px;
  grid-template-columns: 100%;
}

@media only screen and (min-width: 993px) {
  .main_links_img {
    width: 50px;
  }
}
@media only screen and (min-width: 601px) {
  .main_links_img {
    width: 40px;
  }
}
.main_links_img {
  width: 30px;
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

.circle {
  border-radius: 50%;
}

.center, .center-align {
  text-align: center;
}

img {
  border-style: none;
}

*, ::before, ::after {
  box-sizing: inherit;
}

.collapsible-header {
  cursor: pointer;
  line-height: 1.5;
}

a {
  color: #039be5;
}

ul:not(.browser-default) > li {
  list-style-type: none;
}

ul:not(.browser-default) {
  list-style-type: none;
}
