

/* Start:/local/templates/main/css/main.css?1750857297345473*/
@charset "UTF-8";

/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: url("/local/templates/main/css/../fonts/jost/Jost-Medium.woff2") format("woff2"), url("/local/templates/main/css/../fonts/jost/Jost-Medium.woff") format("woff");
  font-family: "Jost";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("/local/templates/main/css/../fonts/jost/Jost-Regular.woff2") format("woff2"), url("/local/templates/main/css/../fonts/jost/Jost-Regular.woff") format("woff");
  font-family: "Jost";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("/local/templates/main/css/../fonts/jost/Jost-Light.woff2") format("woff2"), url("/local/templates/main/css/../fonts/jost/Jost-Light.woff") format("woff");
  font-family: "Jost";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("/local/templates/main/css/../fonts/forum/Forum.woff2") format("woff2"), url("/local/templates/main/css/../fonts/forum/Forum.woff") format("woff");
  font-family: "Forum";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*!
 * 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-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 12px);
  padding-left: var(--bs-gutter-x, 12px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 577px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 744px;
  }
}

@media (min-width: 1008px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 920px;
  }
}

@media (min-width: 1304px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1280px;
  }
}

.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.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) * .5);
  padding-left: calc(var(--bs-gutter-x) * .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.33333%;
}

.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.66667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.col-13 {
  flex: 0 0 auto;
  width: 81.25%;
}

.col-14 {
  flex: 0 0 auto;
  width: 87.5%;
}

.col-15 {
  flex: 0 0 auto;
  width: 93.75%;
}

.col-16 {
  flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.offset-13 {
  margin-left: 81.25%;
}

.offset-14 {
  margin-left: 87.5%;
}

.offset-15 {
  margin-left: 93.75%;
}

.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.33333%;
  }

  .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.66667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-sm-13 {
    flex: 0 0 auto;
    width: 81.25%;
  }

  .col-sm-14 {
    flex: 0 0 auto;
    width: 87.5%;
  }

  .col-sm-15 {
    flex: 0 0 auto;
    width: 93.75%;
  }

  .col-sm-16 {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-13 {
    margin-left: 81.25%;
  }

  .offset-sm-14 {
    margin-left: 87.5%;
  }

  .offset-sm-15 {
    margin-left: 93.75%;
  }

  .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.33333%;
  }

  .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.66667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-md-13 {
    flex: 0 0 auto;
    width: 81.25%;
  }

  .col-md-14 {
    flex: 0 0 auto;
    width: 87.5%;
  }

  .col-md-15 {
    flex: 0 0 auto;
    width: 93.75%;
  }

  .col-md-16 {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-13 {
    margin-left: 81.25%;
  }

  .offset-md-14 {
    margin-left: 87.5%;
  }

  .offset-md-15 {
    margin-left: 93.75%;
  }

  .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: 1008px) {
  .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.33333%;
  }

  .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.66667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-lg-13 {
    flex: 0 0 auto;
    width: 81.25%;
  }

  .col-lg-14 {
    flex: 0 0 auto;
    width: 87.5%;
  }

  .col-lg-15 {
    flex: 0 0 auto;
    width: 93.75%;
  }

  .col-lg-16 {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-13 {
    margin-left: 81.25%;
  }

  .offset-lg-14 {
    margin-left: 87.5%;
  }

  .offset-lg-15 {
    margin-left: 93.75%;
  }

  .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: 1304px) {
  .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.33333%;
  }

  .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.66667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-xl-13 {
    flex: 0 0 auto;
    width: 81.25%;
  }

  .col-xl-14 {
    flex: 0 0 auto;
    width: 87.5%;
  }

  .col-xl-15 {
    flex: 0 0 auto;
    width: 93.75%;
  }

  .col-xl-16 {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-13 {
    margin-left: 81.25%;
  }

  .offset-xl-14 {
    margin-left: 87.5%;
  }

  .offset-xl-15 {
    margin-left: 93.75%;
  }

  .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;
  }
}

.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: 1008px) {
  .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: 1304px) {
  .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 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;
  }
}

/*!
 * Bootstrap Utilities 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)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}

.link-primary:hover,
.link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}

.link-secondary:hover,
.link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}

.link-success:hover,
.link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}

.link-info:hover,
.link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}

.link-warning:hover,
.link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}

.link-danger:hover,
.link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}

.link-light:hover,
.link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}

.link-dark:hover,
.link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1008px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1304px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.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;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !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;
}

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !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;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .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;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

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

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

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

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

  .gap-sm-5 {
    gap: 3rem !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;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .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;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

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

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

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

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

  .gap-md-5 {
    gap: 3rem !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;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 1008px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .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;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

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

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !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;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1304px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .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;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !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;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !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;
  }
}

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    transform: rotate(1turn);
  }
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.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;
  -webkit-clip-path: inset(50%) !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;
  outline: none;
}


.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: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 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 #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 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 #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  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, #fff 0%, #eee 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, #eee 50%, #fff 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 #aaa;
  border-radius: 4px;
  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 #aaa;
  border-radius: 4px;
  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: 4px;
  border-bottom-left-radius: 4px;
  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: 4px;
  border-bottom-right-radius: 4px;
}

.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 #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  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: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top]>.tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top]>.tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left]>.tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left]>.tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right]>.tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right]>.tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! jQuery UI - v1.13.2 - 2022-07-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(/local/templates/main/css/%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(/local/templates/main/css/%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(/local/templates/main/css/%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(/local/templates/main/css/%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(/local/templates/main/css/%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(/local/templates/main/css/%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(/local/templates/main/css/%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em;
}

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup>.ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

.ui-controlgroup-vertical .ui-spinner-input {
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  -ms-filter: "alpha(opacity=25)";
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: .8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative;
  padding: .2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}

.ui-widget-content a {
  color: #333;
}

.ui-widget-header {
  border: 1px solid #ddd;
  background: #e9e9e9;
  color: #333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #ccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #fff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #fff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #fff;
  text-decoration: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  -ms-filter: "alpha(opacity=70)";
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  -ms-filter: "alpha(opacity=35)";
  background-image: none;
}

.ui-state-disabled .ui-icon {
  -ms-filter: "alpha(opacity=35)";
}

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("/local/templates/main/css/images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("/local/templates/main/css/images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("/local/templates/main/css/images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("/local/templates/main/css/images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("/local/templates/main/css/images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("/local/templates/main/css/images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("/local/templates/main/css/images/ui-icons_777777_256x240.png");
}

.ui-icon-blank.ui-icon-blank.ui-icon-blank {
  background-image: none;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

.ui-widget-overlay {
  background: #aaa;
  opacity: .003;
  -ms-filter: Alpha(Opacity=0.3);
}

.ui-widget-shadow {
  box-shadow: 0 0 5px #666;
}

h2,
.h2 {
  font-family: "Forum", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 47px;
  line-height: 0.91;
  margin: 0;
}

@media (max-width: 1007.98px) {

  h2,
  .h2 {
    font-size: 30px;
    line-height: 1.07;
  }
}

h3,
.h3 {
  margin: 0;
  font-family: "Forum", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
}

@media (max-width: 767.98px) {

  h3,
  .h3 {
    font-size: 23px;
    line-height: 1.16;
    color: #2C2C2C;
  }
}

.menu-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.12;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .menu-item {
    font-size: 14px;
  }
}

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

.link {
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.link-primary {
  color: #736035;
  transition: color 0.4s ease-out;
}

.link-primary:hover {
  color: #AE9958;
}

.link-photo {
  color: #FFF;
  transition: color 0.4s ease-out;
}

.link-photo:hover {
  color: #E0E0E0;
}

.link--big {
  font-size: 16px;
  line-height: 1.12;
  padding: 12px 0;
}

@media (max-width: 575.98px) {
  .link--big {
    font-size: 14px;
    line-height: 1.29;
  }
}

.link--small {
  font-size: 10px;
  line-height: 1.8;
  padding: 6px 0;
}

.link-personal {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.29;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.link-icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  margin-top: -2px;
}

.link-or-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.29;
}

.link-or-text--underline {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.link-or-text--primary {
  color: #736035;
}

.tag {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #98938C;
}

.favorite-icon {
  stroke: currentColor;
  fill: transparent;
  transition: fill 0.4s ease-out;
}

.favorite-icon--btn.is-active .favorite-icon {
  fill: currentColor;
}

.counter {
  position: absolute;
  top: -4px;
  right: -10px;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 22px;
  height: 22px;
  color: #FFF;
  background-color: rgba(115, 96, 53, 0.95);
  padding: 3px 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  pointer-events: none;
}

.form-row {
  margin-bottom: 24px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-control {
  position: relative;
}

.form-control--input {
  width: 100%;
  padding: 16px 11px;
  font-size: 14px;
  line-height: 1.29;
  font-family: "Jost", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  border: 1px solid #736035;
  background: #FFF;
  outline: none;
  border-radius: 4px;
  transition: padding 0.3s;
  color: #2C2C2C;
  font-weight: 300;
}

.form-control--input::-moz-placeholder {
  color: transparent;
}

.form-control--input::placeholder {
  color: transparent;
}

.form-control--input:not(:-moz-placeholder-shown) {
  padding: 22px 11px 10px;
}

.form-control--input:not(:placeholder-shown) {
  padding: 23px 11px 9px;
}

.form-control--input:not(:-moz-placeholder-shown)+.form-control--label {
  padding: 10px 11px 22px;
  font-size: 12px;
}

.form-control--input:not(:placeholder-shown)+.form-control--label {
  padding: 7px 11px 30px;
  font-size: 12px;
}

.form-control--input--phone {
  padding: 22px 11px 10px !important;
}

.form-control--input--phone+.form-control--label {
  padding: 8px 11px 22px !important;
  font-size: 12px;
}

.form-control--input--phone::-moz-placeholder {
  color: #2C2C2C;
}

.form-control--input--phone::placeholder {
  color: #2C2C2C;
}

.form-control--label {
  pointer-events: none;
  position: absolute;
  color: #98938C;
  top: 0;
  left: 0;
  border: 1px solid transparent;
  padding: 16px 11px;
  font-size: 14px;
  line-height: 1.29;
  transition: padding 0.3s, font-size 0.3s;
  font-weight: 300;
}

.form-control--icon {
  width: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  color: #6B6452;
}

.form-control--icon-left .form-control--icon {
  left: 12px;
}

.form-control--icon-left .form-control--input,
.form-control--icon-left .form-control--label {
  padding: 19px 11px 19px 44px;
}

.form-control--icon-left .form-control--input:not(:-moz-placeholder-shown) {
  padding: 28px 11px 10px 44px;
}

.form-control--icon-left .form-control--input:not(:placeholder-shown) {
  padding: 28px 11px 10px 44px;
}

.form-control--icon-left .form-control--input:not(:-moz-placeholder-shown)+.form-control--label {
  padding: 10px 11px 28px 44px;
}

.form-control--icon-left .form-control--input:not(:placeholder-shown)+.form-control--label {
  padding: 10px 11px 28px 44px;
}

.form-control--icon-right .form-control--icon {
  right: 12px;
}

.form-control--icon-right .form-control--input,
.form-control--icon-right .form-control--label {
  padding: 19px 44px 19px 11px;
}

.form-control--icon-right .form-control--input:not(:-moz-placeholder-shown) {
  padding: 28px 44px 10px 11px;
}

.form-control--icon-right .form-control--input:not(:placeholder-shown) {
  padding: 28px 44px 10px 11px;
}

.form-control--icon-right .form-control--input:not(:-moz-placeholder-shown)+.form-control--label {
  padding: 10px 44px 28px 11px;
}

.form-control--icon-right .form-control--input:not(:placeholder-shown)+.form-control--label {
  padding: 10px 44px 28px 11px;
}

.form-control--notify {
  font-size: 12px;
  line-height: 1.33;
  color: #98938C;
  font-weight: 300;
  margin-top: 4px;
}

.form-control.is-disabled {
  pointer-events: none;
}

.form-control.is-disabled .form-control {
  color: #98938C;
}

.form-control.is-disabled .form-control--icon {
  color: #98938C;
}

.form-control.is-disabled .form-control--input {
  color: #98938C;
  border-color: #E0E0E0;
}

.form-control.is-disabled .form-control--label {
  color: #E0E0E0;
}

.form-control.is-error .form-control {
  color: #C72A33;
}

.form-control.is-error .form-control--input {
  border-color: #C72A33;
}

.form-control--notify.is-error {
  display: none;
}

.form-control.is-error~.form-control--notify.is-error {
  display: block;
  color: #C72A33;
}

.form-control--file {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.form .info-top {
  color: #98938C;
  font-family: "Jost", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: -0.1px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-input {
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

.checkbox-box {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  color: #FFF;
  transition: background-color 0.4s ease-out;
  position: relative;
}

.checkbox-box:before {
  content: "";
  border: 1px solid #998057;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  transition: border-color 0.4s ease-out;
}

.checkbox-text {
  line-height: 1.33;
  margin-left: 6px;
  font-weight: 300;
  color: #98938C;
  transition: color 0.4s ease-out;
}

.checkbox-text--big {
  font-size: 18px;
}

.checkbox-text--small {
  font-size: 12px;
}

.checkbox-text a {
  text-decoration: underline;
  text-decoration-thickness: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.checkbox-input:checked+.checkbox-box {
  background-color: #736035;
}

.checkbox-input:checked+.checkbox-box:before {
  border-color: #736035;
}

.checkbox-input:checked+.checkbox-box+.checkbox-text {
  color: #6B6452;
}

.checkbox-input:disabled+.checkbox-box,
.checkbox-input:disabled+.checkbox-box+.checkbox-text {
  opacity: 0.3;
}

.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.radio-input {
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

.radio-box {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  color: #FFF;
  position: relative;
  border: 1px solid #998057;
}

.radio-box:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border-radius: 100%;
  transition: background-color 0.4s ease-out;
  background-color: transparent;
}

.radio-text {
  line-height: 1.33;
  margin-left: 6px;
  font-weight: 300;
  color: #98938C;
  transition: color 0.4s ease-out;
}

.radio-text--big {
  font-size: 18px;
}

.radio-text--small {
  font-size: 14px;
  line-height: 1.07;
}

.radio-input:checked+.radio-box {
  border-color: #736035;
}

.radio-input:checked+.radio-box:before {
  background-color: #736035;
}

.radio-input:checked+.radio-box+.radio-text {
  color: #6B6452;
}

.tumblr {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.tumblr-input {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
}

.tumblr-caption {
  font-size: 14px;
  line-height: 1.29;
  color: #98938C;
  margin-right: 8px;
  transition: color 0.4s ease-out;
}

.tumblr-caption:last-child {
  margin-right: 0;
  margin-left: 8px;
}

.tumblr-box {
  width: 36px;
  height: 20px;
  background: #EBEBEB;
  border-radius: 50px;
  position: relative;
  transition: background 0.4s ease-out;
}

.tumblr-box:before {
  content: "";
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
  background: #FFF;
  position: absolute;
  display: block;
  border-radius: 100%;
  transition: left 0.4s ease-out;
}

.tumblr-input:checked~.tumblr-box {
  background: #736035;
}

.tumblr-input:checked~.tumblr-box:before {
  left: 18px;
}

.tumblr-input:checked~.tumblr-caption {
  color: #736035;
}

.list li {
  padding-left: 27px;
  position: relative;
  margin-bottom: 8px;
  color: #2C2C2C;
}

.list li:last-child {
  margin-bottom: 0;
}

.list li:before {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: absolute;
  display: block;
  left: 12px;
  top: 10px;
}

.arrow {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: #EDEDED;
  border-radius: 100%;
}

.arrow.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.slick-dots {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .slick-dots {
    /*display: none !important;*/
  }
}

.slick-dots li {
  flex: 0 0 12px;
  margin-right: 8px;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  display: block;
  font-size: 0;
  background-color: #E0E0E0;
  border-radius: 100%;
}

.slick-dots li.slick-active button {
  background: #736035;
}

.progress {
  background-image: linear-gradient(to right, #736035, #736035);
  background-repeat: no-repeat;
  background-size: 0 100%;
  border-radius: 2px;
  height: 100%;
  transition: background-size 0.4s ease-out;
}

.progress-wrapper {
  display: block;
  width: 100px;
  height: 9px;
  border-radius: 2px;
  overflow: hidden;
  background-color: #F4F4F4;
  padding: 2px;
  margin: 36px auto 0;
}

@media (min-width: 768px) {
  .progress-wrapper {
    display: none;
  }
}

.typography-main {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  color: #2C2C2C;
}

.typography-main p {
  margin-bottom: 12px;
}

.typography-main p:last-child {
  margin-bottom: 0;
}

.return-link {
  display: flex;
  align-items: center;
}

.return-link--icon {
  height: 24px;
  width: 24px;
  flex: 0 0 24px;
}

.return-link--text {
  color: #2C2C2C;
  letter-spacing: 0.5px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.29;
  text-transform: uppercase;
}

html {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: "Jost", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

html.has-cursor,
html.has-cursor * {
  cursor: none !important;
}

html.is-lock-scroll,
html.is-lock-scroll body {
  overflow: hidden;
}

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

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
  text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

main {
  flex: 1;
}

p {
  margin: 0;
}

a,
button {
  outline: none;
  transition: 0.4s;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: currentColor;
}

svg {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0;
}

figure img,
picture img {
  width: 100%;
}

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none;
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  padding: 0;
  border: none;
  background: none;
  color: inherit;
}

video {
  outline: none;
  width: 100%;
  height: 100%;
}

iframe {
  display: block;
}

.btn {
  font-size: 16px;
  line-height: 1.12;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 4px;
  padding: 19px 23px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .btn {
    transition-duration: 0s;
  }
}

.btn-primary {
  border: 1px solid transparent;
  color: #FFF;
  background: #736035;
}

.btn-primary:hover {
  background: #998057;
}

.btn-primary:disabled,
.btn-primary.is-disabled {
  pointer-events: none;
  opacity: 0.4;
}

.btn-secondary {
  border: 1px solid #736035;
  color: #736035;
}

.btn-secondary:hover {
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.15);
  border-color: #998057;
}

.btn-secondary:disabled,
.btn-secondary.is-disabled {
  pointer-events: none;
  color: #998057;
  border-color: #998057;
  opacity: 0.4;
}

.btn-darken {
  border: 1px solid #FFF;
  color: #FFF;
}

.btn-darken:hover {
  background-color: #FFF;
  color: #736035;
}

.btn-darken:disabled,
.btn-darken.is-disabled {
  pointer-events: none;
  opacity: 0.4;
}

.js-lazy-load:not(.is-loaded) {
  max-height: 50vh;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh);
}

.is-hidden {
  opacity: 0;
  overflow: hidden;
}

.fz-0 {
  font-size: 0;
  line-height: 0;
}

.mb-120 {
  margin-bottom: 120px;
}

@media (max-width: 767.98px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

.mt-120 {
  margin-top: 120px;
}

@media (max-width: 767.98px) {
  .mt-120 {
    margin-top: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media (max-width: 767.98px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

.pt-120 {
  padding-top: 120px;
}

@media (max-width: 767.98px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
  .mb-60 {
    margin-bottom: 36px;
  }
}

.mt-60 {
  margin-top: 60px;
}

@media (max-width: 767.98px) {
  .mt-60 {
    margin-top: 36px;
  }
}

.pb-60 {
  padding-bottom: 60px;
}

@media (max-width: 767.98px) {
  .pb-60 {
    padding-bottom: 36px;
  }
}

.pt-60 {
  padding-top: 60px;
}

@media (max-width: 767.98px) {
  .pt-60 {
    padding-top: 36px;
  }
}

.mb-48 {
  margin-bottom: 48px;
}

@media (max-width: 767.98px) {
  .mb-48 {
    margin-bottom: 24px;
  }
}

.mt-48 {
  margin-top: 48px;
}

@media (max-width: 767.98px) {
  .mt-48 {
    margin-top: 24px;
  }
}

.mb-36 {
  margin-bottom: 36px;
}

@media (max-width: 767.98px) {
  .mb-36 {
    margin-bottom: 24px;
  }
}

.mt-36 {
  margin-top: 36px;
}

@media (max-width: 767.98px) {
  .mt-36 {
    margin-top: 24px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}

@media (max-width: 767.98px) {
  .mb-24 {
    margin-bottom: 12px;
  }
}

.mt-24 {
  margin-top: 24px;
}

@media (max-width: 767.98px) {
  .mt-24 {
    margin-top: 12px;
  }
}

.mb-12 {
  margin-bottom: 12px;
}

.mt-12 {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .mb-desktop-120 {
    margin-bottom: 120px;
  }

  .mt-desktop-120 {
    margin-top: 120px;
  }

  .pb-desktop-120 {
    padding-bottom: 120px;
  }

  .pt-desktop-120 {
    padding-top: 120px;
  }

  .mb-desktop-60 {
    margin-bottom: 60px;
  }

  .mt-desktop-60 {
    margin-top: 60px;
  }

  .pb-desktop-60 {
    padding-bottom: 60px;
  }

  .pt-desktop-60 {
    padding-top: 60px;
  }

  .mb-desktop-48 {
    margin-bottom: 48px;
  }

  .mt-desktop-48 {
    margin-top: 48px;
  }

  .mb-desktop-36 {
    margin-bottom: 36px;
  }

  .mt-desktop-36 {
    margin-top: 36px;
  }

  .mb-desktop-24 {
    margin-bottom: 24px;
  }

  .mt-desktop-24 {
    margin-top: 24px;
  }

  .mb-desktop-12 {
    margin-bottom: 12px;
  }

  .mt-desktop-12 {
    margin-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .mb-mobile-120 {
    margin-bottom: 120px;
  }

  .mt-mobile-120 {
    margin-top: 120px;
  }

  .pb-mobile-120 {
    padding-bottom: 120px;
  }

  .pt-mobile-120 {
    padding-top: 120px;
  }

  .mb-mobile-60 {
    margin-bottom: 60px;
  }

  .mt-mobile-60 {
    margin-top: 60px;
  }

  .pb-mobile-60 {
    padding-bottom: 60px;
  }

  .pt-mobile-60 {
    padding-top: 60px;
  }

  .mb-mobile-48 {
    margin-bottom: 48px;
  }

  .mt-mobile-48 {
    margin-top: 48px;
  }

  .mb-mobile-36 {
    margin-bottom: 36px;
  }

  .mt-mobile-36 {
    margin-top: 36px;
  }

  .mb-mobile-24 {
    margin-bottom: 24px;
  }

  .mt-mobile-24 {
    margin-top: 24px;
  }

  .mb-mobile-12 {
    margin-bottom: 12px;
  }

  .mt-mobile-12 {
    margin-top: 12px;
  }
}

.city-box {
  position: relative;
}

.city-box-head {
  display: flex;
  align-items: center;
}

.city-box-head--label.menu-item {
  color: #98938C;
  margin-right: 4px;
}

.city-box-head__current {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.city-box-head__current-text {
  color: #2C2C2C;
}

.city-box-head__current-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.city-box__list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  width: 296px;
  max-height: 210px;
  background: #FFF;
  box-shadow: 1px 1px 20px rgba(44, 44, 44, 0.05);
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.city-box__list::-webkit-scrollbar {
  width: 9px;
  border-radius: 10px;
  overflow: hidden;
}

.city-box__list::-webkit-scrollbar-track {
  background: #F4F4F4;
  padding: 2px;
}

.city-box__list::-webkit-scrollbar-thumb {
  border: 2px solid #f4f4f4;
  background-color: #736035;
  border-radius: 10px;
}

.city-box__list-item {
  display: flex;
  padding: 9px 8px 9px 14px;
}

.city-box__list-item:nth-child(even) {
  background: #FCFCFC;
}

.popup {
  display: none;
  width: 614px;
  padding: 72px 24px;
  box-shadow: 1px 1px 20px rgba(44, 44, 44, 0.05);
  background: #FCFCFC;
  color: #2C2C2C;
  border-radius: 6px;
}

@media (max-width: 767.98px) {
  .popup {
    padding: 72px 12px;
    border-radius: 0;
  }
}

.popup .fancybox-close-small.fancybox-button {
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #2C2C2C;
}

.popup__size-table {
  width: 100%;
  border-spacing: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
}

.popup__size-table thead {
  color: #FFF;
}

.popup__size-table thead tr {
  background: #736035;
  border-radius: 6px;
}

.popup__size-table tbody {
  color: #2C2C2C;
}

.popup__size-table th:first-child,
.popup__size-table td:first-child {
  padding-left: 55px;
}

@media (max-width: 767.98px) {

  .popup__size-table th:first-child,
  .popup__size-table td:first-child {
    padding-left: 8px;
  }
}

.popup__size-table th:last-child,
.popup__size-table td:last-child {
  padding-right: 55px;
}

@media (max-width: 767.98px) {

  .popup__size-table th:last-child,
  .popup__size-table td:last-child {
    padding-right: 8px;
  }
}

.popup__size-table th {
  font-weight: 300;
  padding: 16px 27px;
}

@media (max-width: 767.98px) {
  .popup__size-table th {
    padding: 16px 4px;
  }
}

.popup__size-table th:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.popup__size-table th:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.popup__size-table td {
  padding: 12px 27px;
}

@media (max-width: 767.98px) {
  .popup__size-table td {
    padding: 12px 4px;
  }
}

.popup__cart-content {
  display: flex;
}

.popup__cart-content--img {
  flex: 0 0 196px;
  width: 196px;
  margin-right: 6px;
  border-radius: 6px;
}

@media (max-width: 767.98px) {
  .popup__cart-content--img {
    flex: 0 0 105px;
    width: 105px;
  }
}

.popup__cart-content--name {
  color: #6B6452;
  margin-bottom: 6px;
}

.popup__cart-content__price {
  display: flex;
  align-items: flex-end;
}

.popup__cart-content__price-current {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
}

@media (max-width: 767.98px) {
  .popup__cart-content__price-current {
    font-size: 16px;
  }
}

.popup__cart-content__price-old {
  margin-left: 8px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4375;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #98938C;
}

@media (max-width: 767.98px) {
  .popup__cart-content__price-old {
    font-size: 12px;
    margin-left: 6px;
  }
}

.popup__cart-actions {
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .popup__cart-actions {
    flex-direction: column;
  }
}

.popup__cart-actions .link {
  margin-left: 96px;
}

@media (max-width: 767.98px) {
  .popup__cart-actions .link {
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.popup__subscribe {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
}

@media (max-width: 767.98px) {
  .popup__subscribe {
    font-size: 16px;
    line-height: 1.25;
  }
}

.popup__subscribe-name {
  margin-bottom: 4px;
}

.popup__subscribe-color span {
  color: #98938C;
}

.popup__subscribe-size {
  max-width: 296px;
}

@media (max-width: 767.98px) {
  .popup__subscribe-size {
    max-width: 100%;
  }
}

.popup__subscribe-separate {
  height: 1px;
  background: #E0E0E0;
  border-radius: 1px;
}

.popup__subscribe-text {
  color: #98938C;
}

.popup__subscribe-btn .btn {
  width: 100%;
}

.popup__subscribe-checkboxes--item {
  display: flex;
}

.popup__subscribe-checkboxes--item:first-child {
  margin-bottom: 6px;
}

.popup__subscribe__thank {
  color: #2C2C2C;
}

.popup__subscribe__thank-text {
  font-size: 18px;
  line-height: 1.33;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .popup__subscribe__thank-text {
    font-size: 16px;
    line-height: 1.25;
  }
}

@media (max-width: 767.98px) {
  .fancybox-slide--html {
    padding: 0;
  }
}

.select2-container .select2-selection--single {
  height: 58px;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #998057;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 58px;
  padding: 20px 12px;
  font-size: 14px;
  line-height: 1.29;
  font-weight: 300;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 24px;
}

.select2-selection__placeholder-top {
  position: absolute;
  left: 12px;
  top: 11px;
  font-size: 12px;
  line-height: 1.33;
}

.select2-selection__rendered-value {
  position: relative;
  top: 7px;
  font-size: 14px;
  line-height: 1.29;
  font-weight: 300;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 24px;
  height: 24px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b svg {
  transform: rotate(180deg);
}

.select2-results__option {
  padding: 9px 8px 9px 14px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.33;
  color: #98938C;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #F7F7F7;
  color: #98938C;
}

.select2-container--default .select2-results__option--selected {
  background: transparent;
  color: #6B6452;
}

.select2-container--default .select2-selection--single:hover {
  background: #F7F7F7;
}

.select2-dropdown {
  border: none;
  box-shadow: 1px 1px 20px rgba(44, 44, 44, 0.05);
  border-radius: 6px !important;
  overflow: hidden;
}

.select2-container {
  padding: 4px 0;
}

.select2-container.select2-container--default.select2-container--open {
  z-index: 100000;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 9px;
  border-radius: 10px;
  overflow: hidden;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #F4F4F4;
  padding: 2px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  border: 2px solid #f4f4f4;
  background-color: #736035;
  border-radius: 10px;
}

.block_cover {
  position: relative;
  height: 100vh;
  max-height: 800px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 60px;
}

.block_cover:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(46, 46, 46, 0.6) 0%, rgba(46, 46, 46, 0.5) 13.03%, rgba(46, 46, 46, 0) 73.39%, rgba(46, 46, 46, 0.6) 81.04%, rgba(46, 46, 46, 0.7) 100%);
  z-index: 2;
}

.block_cover-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.block_cover-btn {
  position: relative;
  z-index: 3;
}

.block_banners-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

@media (max-width: 767.98px) {
  .block_banners-item--wrapper {
    margin-bottom: 48px;
  }

  .block_banners-item--wrapper:last-child {
    margin-bottom: 0;
  }
}

.block_banners-img {
  display: block;
  transition: transform 0.4s ease-out;
}

.block_banners-content {
  position: relative;
  border-top: 1px solid #FFF;
  z-index: 3;
  padding: 24px 0;
  transition: padding-bottom 0.4s ease-out;
}

@media (max-width: 575.98px) {
  .block_banners-content {
    padding: 12px 0;
  }
}

.block_banners-content--wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 24px;
}

.block_banners-content--wrapper:before,
.block_banners-content--wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  border-radius: 0 0 4px 4px;
  z-index: 2;
  transition: opacity 0.4s ease-out;
}

.block_banners-content--wrapper:before {
  background: linear-gradient(180deg, rgba(53, 53, 53, 0) 16.98%, rgba(44, 44, 44, 0.2) 51.35%, rgba(32, 32, 32, 0.5) 100%);
}

.block_banners-content--wrapper:after {
  background: linear-gradient(180deg, rgba(53, 53, 53, 0) 0%, rgba(44, 44, 44, 0.6) 51.35%, rgba(32, 32, 32, 0.5) 100%);
  opacity: 0;
}

.block_banners-item:hover .block_banners-img {
  transform: scale(1.1);
}

.block_banners-item:hover .block_banners-content {
  padding-bottom: 36px;
}

.block_banners-item:hover .block_banners-content--wrapper:before {
  opacity: 0;
}

.block_banners-item:hover .block_banners-content--wrapper:after {
  opacity: 1;
}

.block_content_aside {
  overflow: hidden;
  width: 100%;
}

.block_content_aside-item {
  margin-bottom: 60px;
}

.block_content_aside-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .block_content_aside-item {
    border-bottom: 1px solid #E0E0E0;
    border-left: none;
    border-right: none;
    margin-bottom: 0;
  }

  .block_content_aside-item:first-child {
    border-top: 1px solid #E0E0E0;
  }
}

.block_content_aside-content {
  margin: 36px 0 0;
  padding: 48px 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .block_content_aside-content {
    margin: 0;
    padding: 36px 0;
  }
}

@media (min-width: 768px) {

  .block_content_aside-content:before,
  .block_content_aside-content:after {
    content: "";
    width: 9999px;
    height: 1px;
    background: #E0E0E0;
    position: absolute;
  }

  .block_content_aside-content:before {
    top: 0;
  }

  .block_content_aside-content:after {
    bottom: 0;
  }

  .block_content_aside-content--left:before,
  .block_content_aside-content--left:after {
    right: 0;
  }

  .block_content_aside-content--right:before,
  .block_content_aside-content--right:after {
    left: 0;
  }
}

.block_content_aside-title {
  color: #2C2C2C;
}

.block_content_aside-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  color: #2C2C2C;
}

.block_content_aside-img {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .block_content_aside-img {
    height: 492px;
    width: 100%;
  }

  .block_content_aside-img img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}

.block_consulting {
  padding: 256px 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .block_consulting {
    padding: 96px 0;
  }
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .block_consulting {
    padding: 140px 0;
  }
}

.block_consulting-img img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.block_consulting-content {
  color: #FFF;
  position: relative;
  z-index: 1;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
}

.block_subscribe-heading {
  color: #2C2C2C;
}

.block_subscribe-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  color: #2C2C2C;
}

@media (max-width: 1007.98px) {
  .block_subscribe-text {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

.block_subscribe-row {
  display: flex;
  align-items: center;
}

@media (max-width: 1007.98px) {
  .block_subscribe-row {
    display: block;
  }
}

.block_subscribe-input {
  flex: 0 0 296px;
  margin-right: 16px;
}

@media (max-width: 1007.98px) {
  .block_subscribe-input {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

@media (max-width: 1007.98px) {
  .block_subscribe-btn .btn {
    width: 100%;
  }
}

.block_products_slider__slider-wrapper {
  position: relative;
}

.block_products_slider__slider--arrow {
  position: absolute;
  top: 222px;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .block_products_slider__slider--arrow {
    top: 142px;
  }
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .block_products_slider__slider--arrow {
    top: 176px;
  }
}

@media (max-width: 767.98px) {
  .block_products_slider__slider--arrow {
    display: none !important;
  }
}

.block_products_slider__slider--arrow--left {
  left: -25px;
}

@media (max-width: 1303.98px) {
  .block_products_slider__slider--arrow--left {
    left: 24px;
  }
}

.block_products_slider__slider--arrow--right {
  right: -25px;
}

@media (max-width: 1303.98px) {
  .block_products_slider__slider--arrow--right {
    right: 24px;
  }
}

.block_products_slider__slider-item {
  padding: 0 12px;
}

@media (max-width: 1007.98px) {
  .block_products_slider__slider-item {
    width: 261px !important;
    padding: 0 6px;
  }
}

.block_products_slider__slider .slick-list {
  margin: 0 -12px;
}

@media (max-width: 1007.98px) {
  .block_products_slider__slider .slick-list {
    margin: 0 -6px;
  }
}

.block_products_slider__slider .slick-track {
  display: flex;
}

.block_products_slider__slider .slick-track .slick-slide {
  display: flex;
  height: auto;
}

.block_look_slider__slider-wrapper {
  position: relative;
}

.block_look_slider__slider--arrow {
  position: absolute;
  top: 222px;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .block_look_slider__slider--arrow {
    top: 142px;
  }
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .block_look_slider__slider--arrow {
    top: 176px;
  }
}

@media (max-width: 767.98px) {
  .block_look_slider__slider--arrow {
    display: none !important;
  }
}

.block_look_slider__slider--arrow--left {
  left: -25px;
}

@media (max-width: 1303.98px) {
  .block_look_slider__slider--arrow--left {
    left: 24px;
  }
}

.block_look_slider__slider--arrow--right {
  right: -25px;
}

@media (max-width: 1303.98px) {
  .block_look_slider__slider--arrow--right {
    right: 24px;
  }
}

.block_look_slider__slider-item {
  padding: 0 12px;
}

@media (max-width: 1007.98px) {
  .block_look_slider__slider-item {
    width: 261px !important;
    padding: 0 6px;
  }
}

.block_look_slider__slider .slick-list {
  margin: 0 -12px;
}

@media (max-width: 1007.98px) {
  .block_look_slider__slider .slick-list {
    margin: 0 -6px;
  }
}

.block_video {
  position: relative;
  height: 700px;
}

@media (min-width: 768px) and (max-width: 1303.98px) {
  .block_video {
    height: 490px;
  }
}

@media (max-width: 767.98px) {
  .block_video {
    height: 350px;
  }
}

@media (max-width: 575.98px) {
  .block_video {
    height: 200px;
  }
}

.block_video-thumb--image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00000080;
  transition: background-color 0.4s ease-out;
}

.block_video-thumb--image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.block_video-thumb--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  width: 150px;
  height: 150px;
}

@media (max-width: 767.98px) {
  .block_video-thumb--icon {
    height: 50px;
    width: 50px;
  }
}

.block_video-thumb:hover .block_video-thumb--image:after {
  background: #0000001a;
}

.block_video-frame {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block_gallery-list {
  margin: 0 -12px;
}

.block_gallery-col {
  padding: 0 12px;
}

@media (min-width: 1008px) {
  .block_gallery-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -24px;
  }

  .block_gallery-col {
    margin-bottom: 24px;
  }

  .block_gallery-full {
    flex: 0 0 100%;
  }

  .block_gallery-half {
    flex: 0 0 50%;
  }

  .block_gallery-one-third {
    flex: 0 0 33%;
  }
}

.block_gallery-item {
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

@media (max-width: 767.98px) {
  .block_gallery-item {
    width: 276px;
  }
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .block_gallery-item {
    width: 560px;
  }
}

.block_gallery-item picture,
.block_gallery-item img {
  display: block;
}

.header {
  color: #FFF;
  transition: 0.4s ease-out background-color;
  z-index: 30;
}

@media (max-width: 767.98px) {
  .header {
    padding: 12px 0;
  }
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .header {
    padding: 24px 0;
  }
}

.header.is-cover {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
}

.header.is-open,
.header.is-dark,
.header:hover {
  background: #FFF;
  color: #2C2C2C;
}

.header.is-open .header__actions-personal--label,
.header.is-dark .header__actions-personal--label,
.header:hover .header__actions-personal--label {
  color: #98938C;
}

.header.is-open .header__actions-favorite,
.header.is-dark .header__actions-favorite,
.header:hover .header__actions-favorite {
  color: #2C2C2C;
}

.header-brand {
  display: block;
  max-width: 173px;
}

@media (max-width: 767.98px) {
  .header-brand {
    max-width: 104px;
    height: 36px;
  }
}

.header-brand img {
  display: block;
}

.header__nav {
  display: flex;
}

.header__nav-item {
  margin-right: 24px;
  position: relative;
  padding: 45px 0;
}

.header__nav-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: transparent;
  transition: 0.4s ease-out background-color;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .header__nav-item {
    margin-right: 16px;
  }

  .header__nav-item:last-child {
    margin-right: 0;
  }
}

.header__nav-item.is-open:after {
  background-color: #736035;
}

.header__actions {
  display: flex;
  align-items: center;
}

.header__actions-search {
  width: 24px;
  height: 24px;
  margin-right: 24px;
}

@media (max-width: 575.98px) {
  .header__actions-search {
    margin-right: 12px;
  }
}

.header__actions-personal {
  align-items: center;
  margin-right: 24px;
}

@media (max-width: 575.98px) {
  .header__actions-personal {
    margin-right: 12px;
  }
}

.header__actions-personal--icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-right: 4px;
}

.header__actions-personal--label {
  transition: 0.4s ease-out color;
  /*color: #E0E0E0;*/
}

.header__actions-favorite {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-right: 24px;
  position: relative;
  color: #736035;
}

@media (max-width: 575.98px) {
  .header__actions-favorite {
    margin-right: 12px;
  }
}

.header__actions-cart {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  position: relative;
}

.header-burger {
  display: inline-flex;
  justify-content: space-between;
  flex-direction: column;
  height: 24px;
  width: 24px;
  padding: 8px 0;
}

.header-burger span {
  height: 1px;
  width: 24px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: top 0.4s ease-out, bottom 0.4s ease-out, left 0.4s ease-out, transform 0.4s ease-out, width 0.4s ease-out;
  will-change: transform, left, top, bottom, width;
}

.header-burger.is-open span {
  width: 18px;
  left: 3px;
}

.header-burger.is-open span:first-child {
  transform: rotate(45deg);
  top: 4px;
}

.header-burger.is-open span:last-child {
  transform: rotate(-45deg);
  bottom: 3px;
}

.burger {
  position: relative;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .burger {
    display: none;
  }
}

.burger-bg {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(44, 44, 44, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 10;
}

@media (max-width: 767.98px) {
  .burger-bg {
    background: #FFF;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.burger__window {
  color: #2C2C2C;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  will-change: transform;
  z-index: 25;
}

.burger__window.is-open {
  transform: translateX(0);
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .burger__window:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    left: 0;
    background: #FFF;
    z-index: 15;
  }
}

.burger__window-nav {
  padding: 84px 0 48px;
  overflow-y: scroll;
  height: 100vh;
  background: #FFF;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .burger__window-nav {
    padding: 108px 0 72px;
    position: relative;
  }
}

@media (max-width: 575.98px) {
  .burger__window-nav {
    margin: -12px;
  }
}

.burger__window-item {
  padding: 16px 12px;
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  width: 100%;
}

.burger__window-item--label {
  flex: 1 1;
}



.burger__window-item--button {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-left: 6px;
}

.burger__window-button {
  background: #F7F7F7;
  border-radius: 4px;
  border-bottom: none;
}

.burger__window-button--icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-right: 6px;
}

.burger__window-banner img {
  border-radius: 6px;
  display: block;
}

.mega-menu__window {
  position: absolute;
  top: 108px;
  left: 0;
  right: 0;
  z-index: 25;
  background: #FFF;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: 0.4s ease-out opacity, 0.4s ease-out overflow;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .mega-menu__window {
    top: 106px;
  }
}

.mega-menu__window.is-open {
  opacity: 1;
  overflow: visible;
  pointer-events: all;
}

.mega-menu__window--wrapper {
  padding: 58px 0 48px;
  border-top: 1px solid #F7F7F7;
}

.mega-menu__window-col {
  flex: 0 0 auto;
  margin-right: auto;
}

.mega-menu__window-col:last-child {
  margin-right: 0;
}

.mega-menu__window-heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.12;
  padding-bottom: 12px;
  margin-bottom: 24px;
  color: #98938C;
  border-bottom: 1px solid #E0E0E0;
}

.mega-menu__window-nav--item {
  display: block;
  margin-bottom: 8px;
}

.mega-menu__window-nav--item:last-child {
  margin-bottom: 0;
}

.mega-menu__window-nav--row div {
  margin-right: 60px;
}

.mega-menu__window-nav--row div:last-child {
  margin-right: 0;
}

.mega-menu__window-img {
  display: block;
  max-width: 402px;
}

.mega-menu__window-img picture,
.mega-menu__window-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.searchbar {
  position: absolute;
  top: 108px;
  left: 0;
  right: 0;
  z-index: 35;
  padding: 44px 0 48px;
  background: #FFF;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: 0.4s ease-out opacity, 0.4s ease-out overflow;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .searchbar {
    top: 0;
    padding: 0;
    background: none;
  }
}

@media (max-width: 767.98px) {
  .searchbar {
    top: 60px;
    padding: 24px 0;
    border-radius: 0px 0px 12px 12px;
  }
}

.searchbar.is-open {
  opacity: 1;
  overflow: visible;
  pointer-events: all;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .searchbar-input {
    position: absolute;
    top: 25px;
    width: 450px;
    transform: translateX(-50%);
  }
}

.cookie {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FFF;
  z-index: 10000;
  padding: 48px 0;
  display: none;
}

@media (max-width: 767.98px) {
  .cookie {
    padding: 24px 0;
    border-radius: 12px 12px 0 0;
  }
}

.cookie-text {
  font-size: 18px;
  color: #2C2C2C;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .cookie-text {
    margin-bottom: 24px;
  }
}

.cookie-text a {
  color: #98938C;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  text-decoration-thickness: from-font;
}

.cookie-text--more {
  display: inline;
}

@media (max-width: 767.98px) {
  .cookie-text--more {
    display: none;
  }
}

.cookie-text--more.is-open {
  display: inline;
}

.cookie-text--more-btn {
  display: inline;
}

@media (min-width: 768px) {
  .cookie-text--more-btn {
    display: none;
  }
}

.cookie-text--more-btn.is-open {
  display: none;
}

.cookie-btn {
  width: 100%;
}

.footer {
  background: #F7F7F7;
  padding: 60px 0 24px;
  color: #2C2C2C;
}

@media (max-width: 1007.98px) {
  .footer {
    padding: 48px 0 24px;
  }
}

.footer-top {
  padding-bottom: 48px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 24px;
}

@media (max-width: 767.98px) {
  .footer-top {
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .footer-col {
    margin-right: 0;
    margin-bottom: 36px;
  }
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .footer-col {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

.footer-col:last-child {
  margin-right: 0;
}

.footer-nav--item {
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .footer-nav--item {
    margin-bottom: 12px;
  }
}

.footer-nav--item:last-child {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  color: #736035;
}

.footer-social--item {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  transition: transform 0.4s ease-out;
}

.footer-social--item:hover {
  transform: scale(1.2);
}

@media (max-width: 767.98px) {
  .footer-social--item {
    margin-right: 24px;
  }
}

.footer-social--item:last-child {
  margin-right: 0;
}

@media (max-width: 767.98px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-copy {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.33;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .footer-copy {
    font-size: 14px;
    line-height: 1.07;
  }
}

@media (max-width: 767.98px) {
  .footer-copy {
    order: 2;
    text-align: center;
  }
}

.footer-payments {
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .footer-payments {
    order: 1;
    margin-bottom: 15px;
  }
}

.footer-payments>* {
  margin-right: 16px;
}

@media (max-width: 767.98px) {
  .footer-payments>* {
    margin-right: 4px;
  }
}

.footer-payments>*:last-child {
  margin-right: 0;
}

.footer-payments--label {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.29;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .footer-payments--label {
    line-height: 1.07;
  }
}

@media (max-width: 767.98px) {
  .footer-payments--label {
    font-size: 12px;
    line-height: 1.33;
    margin-right: auto;
  }
}

.footer-payments--item picture {
  display: block;
}

@media (max-width: 767.98px) {
  .footer-payments--item--mir {
    width: 32px;
  }

  .footer-payments--item--visa {
    width: 27px;
  }

  .footer-payments--item--mastercard {
    width: 52px;
  }

  .footer-payments--item--union {
    width: 21px;
  }
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 38px;
  top: 14px;
}

@media (max-width: 767.98px) {
  :root {
    --background: #fff;
    --foreground: #000;
    --divider: #dcdcdc;
    --overlay: #888;
  }

  /*html,*/
  /*body {*/
  /*  height: 100%;*/
  /*}*/

  button.open-sheet {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 1rem;
    border: 0.0625rem solid var(--divider);
    background: var(--background);
    color: var(--foreground);
    cursor: pointer;
  }

  .bottom-sheet {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    visibility: visible;
    transition: opacity 0.5s, visibility 0.5s;
  }

  .bottom-sheet[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .bottom-sheet .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--overlay);
    opacity: 0.5;
  }

  .bottom-sheet .contents {
    border-radius: 1rem 1rem 0 0;
    background: var(--background);
    position: relative;
    --default-transitions: transform 0.5s, border-radius 0.5s;
    transition: var(--default-transitions);
    transform: translateY(0);
    max-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    padding: 1rem;
    padding-top: 3rem;
    bottom: 0px;
    position: fixed;
  }

  .bottom-sheet .contents:not(.not-selectable) {
    transition: var(--default-transitions), height 0.5s;
  }

  .bottom-sheet .contents.fullscreen {
    border-radius: 0;
  }

  .bottom-sheet[aria-hidden="true"] .contents {
    transform: translateY(100%);
  }

  .bottom-sheet.from-top[aria-hidden="true"] .contents {
    transform: translateY(-100%);
  }

  .bottom-sheet .draggable-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 3rem;
    margin: auto;
    padding: 1rem;
    cursor: -webkit-grab;
    cursor: grab;
    display: flex;
    width: 80px;
  }

  .bottom-sheet .draggable-thumb {
    width: inherit;
    height: 0.25rem;
    background: var(--divider);
    border-radius: 0.125rem;
  }

  .bottom-sheet .close-sheet {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
  }

  .bottom-sheet .body {
    max-height: 100%;
    overflow-y: auto;
    gap: 1rem;
  }

  .bottom-sheet.from-top .contents {
    padding-bottom: 48px;
    padding-top: 16px;
    bottom: initial;
    position: relative;
    border-radius: 0 0 1rem 1rem;
  }

  .bottom-sheet.from-top .contents .controls {
    bottom: 40px;
    width: 90%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .bottom-sheet {
    display: none;
  }

  .bottom-sheet .contents {
    height: auto !important;
  }
}

.controls .draggable-area {
  width: 100%;
}

.controls .draggable-area .draggable-thumb {
  width: 48px;
  margin: 0 auto;
}

.bottom-sheet .contents-column {
  width: 100vw;
}

.bottom-full {
  display: none;
}

@media (max-width: 575.98px) {
  .fancybox-is-open .bottom-full {
    padding: 60px 15px !important;
    overflow: hidden;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 60px;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
  }

  .fancybox-is-open .bottom-full .contents.column {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .fancybox-is-open .bottom-full .body.fill.column {
    max-height: 80vh;
    overflow-y: scroll;
  }
}

.filter {
  display: flex;
  align-items: center;
  padding-bottom: 23px;
  position: relative;
  border-bottom: 1px solid #F7F7F7;
}

@media (max-width: 1007.98px) {
  .filter {
    display: block;
    border: none;
  }
}

.filter__params {
  display: flex;
  align-items: center;
}

@media (max-width: 1007.98px) {
  .filter__params {
    display: block;
  }
}

.filter__params-item {
  margin-right: 15px;
  position: relative;
}

@media (max-width: 1007.98px) {
  .filter__params-item {
    margin-right: 0;
    border-bottom: 1px solid #F7F7F7;
  }

  .filter__params-item:first-child {
    border-top: 1px solid #F7F7F7;
  }
}

.filter__params-item:last-child {
  margin-right: 0;
}

.filter__params-head {
  display: flex;
}

@media (max-width: 1007.98px) {
  .filter__params-head {
    width: 100%;
    padding: 16px 0;
  }
}

.filter__params-name {
  display: flex;
  align-items: center;
}

@media (max-width: 1007.98px) {
  .filter__params-name {
    width: 100%;
    justify-content: space-between;
  }
}

.filter__params-name--icon {
  margin-left: 4px;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.filter__params-current {
  display: none;
  align-items: center;
  padding: 4px 6px;
  background: #F7F7F7;
  border-radius: 2px;
  margin-left: 4px;
}

@media (max-width: 1007.98px) {
  .filter__params-current {
    position: absolute;
    white-space: nowrap;
    right: 36px;
  }
}

.filter__params-current--label {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.33;
  color: #998057;
}

.filter__params-current--icon {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #98938C;
}

.filter__params-current.is-active {
  display: flex;
}

.filter__params-list {
  max-height: 252px;
  overflow-y: scroll;
}

.filter__params-list--wrapper {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  width: 235px;
  background: #FFF;
  box-shadow: 1px 1px 20px rgba(44, 44, 44, 0.05);
  border-radius: 6px;
  z-index: 5;
}

@media (max-width: 1007.98px) {
  .filter__params-list--wrapper {
    position: relative;
    top: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}

.filter__params-list--wrapper--price {
  width: 320px;
  overflow: hidden;
}

.filter__params-list--wrapper--price .filter__params-list {
  padding: 16px;
  overflow: hidden;
}

@media (max-width: 1007.98px) {
  .filter__params-list--wrapper--price .filter__params-list {
    padding: 0 0 18px;
  }
}

@media (max-width: 1007.98px) {
  .filter__params-list--wrapper--price {
    width: 100%;
  }
}

.filter__params-list--item:nth-child(even) {
  background: #FCFCFC;
}

.filter__params-list--links .filter__params-list--item {
  display: block;
  padding: 9px 8px 9px 14px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  color: #98938C;
}

.filter__params-list--checkbox .filter__params-list--item {
  display: flex;
  padding: 9px 8px 9px 14px;
}

.filter__params-list--price--heading {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  color: #2C2C2C;
}

@media (max-width: 1007.98px) {
  .filter__params-list--price--heading {
    font-size: 14px;
    line-height: 1.29;
  }
}

.filter__params-list--price--inputs {
  display: flex;
  margin-bottom: 12px;
}

@media (max-width: 1007.98px) {
  .filter__params-list--price--inputs {
    margin-bottom: 24px;
  }
}

.filter__params-list--price--item {
  flex: 0 0 calc(50% - 6px);
  padding: 16px 11px;
  display: flex;
  align-items: center;
  border: 1px solid #736035;
  border-radius: 4px;
  height: 52px;
}

.filter__params-list--price--item:first-child {
  margin-right: 6px;
}

.filter__params-list--price--item:last-child {
  margin-left: 6px;
}

.filter__params-list--price--label,
.filter__params-list--price--currency {
  color: #98938C;
  font-size: 16px;
}

.filter__params-list--price--input {
  -moz-appearance: textfield;
  outline: none;
  border: none;
  padding: 0;
  max-width: 48px;
  margin: 0 4px;
  font-size: 16px;
}

.filter__params-list--price--input::-moz-placeholder {
  color: transparent;
}

.filter__params-list--price--input::placeholder {
  color: transparent;
}

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

.filter__params-list--price--currency {
  display: none;
}

.filter__params-list--price--input:not(:-moz-placeholder-shown)+.filter__params-list--price--currency {
  display: block;
}

.filter__params-list--price--input:not(:placeholder-shown)+.filter__params-list--price--currency {
  display: block;
}

.filter__params-list--price--track {
  height: 24px;
}

@media (max-width: 1007.98px) {
  .filter__params-list--price--track {
    margin: 0 17px;
  }
}

.filter__params-list--price--track.ui-widget-content.ui-widget-content {
  background: #EBEBEB;
  border-radius: 50px;
  box-shadow: none;
}

.filter__params-list--price--track.ui-widget-content.ui-widget-content .ui-slider-handle {
  width: 24px;
  height: 24px;
  top: 0;
  background: #FFFFFF;
  border: 1px solid #736035;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.15);
  border-radius: 50px;
  outline: none;
  margin-left: 0;
}

.filter__params-list--price--track.ui-widget-content.ui-widget-content .ui-slider-handle:last-child {
  margin-left: -24px;
}

.filter__params-list--price--track.ui-widget-content.ui-widget-content .ui-slider-handle.ui-state-focus {
  border: 1px solid #736035;
}

.filter__params-list--price--track.ui-widget-content.ui-widget-content .ui-slider-range {
  background: #736035;
  border-radius: 50px;
}

.filter__params-list--sort {
  background: #FFF;
}

.filter__params-list--sort .filter__params-list--item {
  display: flex;
  padding: 9px 8px 9px 14px;
}

.filter-reset {
  margin-left: 30px;
  color: #98938C;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .filter-reset {
    margin-left: 30px;
  }
}

.filter-sort {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.filter-sort--label {
  margin-right: 4px;
}

.filter-sort--icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.filter__mobile {
  display: flex;
}

.filter__mobile-show {
  display: flex;
  align-items: center;
}

.filter__mobile-show--label {
  margin-right: 4px;
}

.filter__mobile-show--icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

@media (min-width: 576px) and (max-width: 1007.98px) {
  .filter-popup {
    width: 400px;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-img {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.card-img picture {
  display: block;
}

.card-img img {
  display: block;
}

.card-img--wrapper {
  position: relative;
}

.card-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  color: #736035;
}

.card__content {
  display: flex;
  justify-content: space-between;
}

.card__content--wrapper {
  display: flex;
}

.card__content-name {
  display: block;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.11;
  color: #6B6452;
}

@media (max-width: 1303.98px) {
  .card__content-name {
    font-size: 14px;
  }
}

.card__content-price {
  margin-left: 12px;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .card__content-price {
    margin-left: 0;
    display: flex;
    align-items: center;
  }
}

.card__content-price--current {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.11;
}

@media (max-width: 1303.98px) {
  .card__content-price--current {
    font-size: 14px;
  }
}

.card__content-price--old {
  text-align: right;
  margin-top: 6px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4375;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #98938C;
}

@media (max-width: 1303.98px) {
  .card__content-price--old {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .card__content-price--old {
    text-align: left;
    margin-top: 0;
    margin-left: 4px;
  }
}

.card-color {
  color: #6B6452;
}

.card-color span {
  color: #98938C;
}

.card-add2cart {
  width: 100%;
  display: block;
  text-align: center;
}

@media (max-width: 767.98px) {
  .card .mb-12 {
    margin-bottom: 6px;
  }

  .card .mt-12 {
    margin-top: 6px;
  }
}

.card-lookbook {
  display: flex;
  flex-direction: row;
}

.card-lookbook--img {
  margin-right: 6px;
  width: 196px;
  flex: 0 0 196px;
}

.card-lookbook__content {
  margin-bottom: auto;
}

.card-lookbook__content--wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.card-lookbook__content-name {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 6px;
}

.card-lookbook__content-price {
  display: flex;
}

.card-lookbook__content-price--old {
  margin-left: 6px;
  margin-top: 0;
}

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

@media (max-width: 575.98px) {
  .navigation {
    justify-content: space-between;
  }
}

.navigation-arrow {
  height: 24px;
  width: 24px;
  flex: 0 0 24px;
  color: #98938C;
}

.navigation-arrow--disabled {
  color: #E0E0E0;
}

.navigation-list {
  margin: 0 24px;
}

.navigation-list a,
.navigation-list span {
  font-size: 18px;
  line-height: 1.33;
  font-weight: 300;
  margin-right: 12px;
}

.navigation-list a:last-child,
.navigation-list span:last-child {
  margin-right: 0;
}

.navigation-list a {
  color: #98938C;
}

.navigation-list span {
  color: #2C2C2C;
}

@media (max-width: 575.98px) {
  .navigation-btn .btn {
    width: 100%;
  }
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.29;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #98938C;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
}

.breadcrumbs-item--icon {
  margin: 0 8px;
  height: 18px;
  width: 6px;
  flex: 0 0 6px;
}

.breadcrumbs-item:last-child {
  color: #2C2C2C;
}

.breadcrumbs-prev {
  display: flex;
  align-items: center;
  color: #2C2C2C;
}

.breadcrumbs-prev--icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.breadcrumbs-prev--text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.29;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.accordion-item {
  border-bottom: 1px solid #F7F7F7;
}

.accordion-item:first-child {
  border-top: 1px solid #F7F7F7;
}

.accordion-heading {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 24px 0;
}

.accordion-heading--icon {
  height: 24px;
  width: 24px;
  flex: 0 0 24px;
  transition: transform 0.4s ease-out;
}

.accordion-heading--text {
  margin-left: 6px;
}

.accordion-heading.is-open .accordion-heading--icon {
  transform: rotate(90deg);
}

.accordion-content {
  display: none;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  color: #2C2C2C;
  margin-bottom: 24px;
  margin-top: -12px;
}

@media (max-width: 767.98px) {
  .accordion-content {
    font-size: 16px;
  }
}

.tabs-wrapper.map-list {
  margin-top: 6px;
}

.tabs-wrapper .select-tabs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: none !important;
}

.tabs-wrapper .select-tabs .border-wrapper {
  display: flex;
  border-bottom: 2px solid #F7F7F7;
  position: relative;
  padding-bottom: 2px;
  bottom: 4px;
  transition: none !important;
}

.tabs-wrapper .select-tabs .tab-label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #696969;
  position: relative;
  top: 4px;
  transition: none !important;
  margin-top: 5px;
}

.tabs-wrapper .select-tabs .tab-label:last-of-type {
  margin-left: 12px;
}

.tabs-wrapper .select-tabs .tab-label.active {
  color: #736035;
  border-bottom: 2px solid #736035;
  padding-bottom: 3px;
  margin-top: 11px;
}

.tabs-wrapper .tab-contents {
  display: none;
}

.tabs-wrapper .tab-contents.active {
  display: block;
}

.cta-form--wrapper {
  padding: 120px 0;
  background: #FCFCFC;
  border-radius: 6px;
  margin-bottom: 72px;
}

.cta-form-subtitle {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
}

@media (max-width: 767.98px) {
  .cta-form-subtitle {
    font-size: 16px;
  }
}

.cta-form-textarea {
  min-height: 96px;
  max-width: 100%;
  min-width: 100%;
}

.cta-form-btn {
  width: 100%;
}

.cta-form .form-row {
  margin-bottom: 12px;
}

.cta-form .form-row.mb-48 {
  margin-bottom: 48px;
}

.inner-auth-block h2 {
  text-align: center;
}

.inner-auth-block .form {
  max-width: 296px;
  margin: 0 auto;
}

.inner-auth-block .btn.btn-primary {
  width: 100%;
  font-weight: 300;
}

.inner-auth-block svg {
  fill: transparent;
  max-width: 15px;
  margin: auto;
}

.inner-auth-block .form-row {
  margin-bottom: 24px;
}

.inner-auth-block .form__group.sms-code {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.inner-auth-block .form__group.sms-code .form__group-input {
  max-width: 22%;
  text-align: center;
  padding: 16px 10px;
  border: 1px solid #98938C;
  border-radius: 5px;
}

.inner-auth-block .form__group.sms-code~.form-control--notify {
  text-align: right;
  margin-bottom: -20px;
}

.inner-auth-block .info-top {
  margin-top: 14px;
}

.inner-auth-block .info-top.timer {
  margin-top: 26px;
}

.inner-auth-block .resend-code {
  margin-top: 6px;
}

@media (min-width: 768px) {
  #modal-auth {
    max-width: 614px;
    border-radius: 5px;
    padding: 66px 132px;
    border-radius: 5px;
  }

  #modal-auth h2 {
    font-size: 30px;
    margin-bottom: 55px;
  }

  #modal-auth .btn.btn-primary {
    margin-bottom: 6px;
  }

  #modal-code {
    max-width: 614px;
    border-radius: 5px;
    padding: 66px 132px;
    border-radius: 5px;
  }

  #modal-code h2 {
    font-size: 30px;
    margin-bottom: 55px;
  }

  #modal-code .btn.btn-primary {
    margin-bottom: 6px;
  }
}

.personal-data .form-control--input:not(:-moz-placeholder-shown) {
  padding: 28px 11px 10px;
}

.personal-data .form-control--input:not(:placeholder-shown) {
  padding: 28px 11px 10px;
}

.personal-data .form-row {
  margin-bottom: 12px;
}

.personal-data .form-control--icon-left .form-control--icon {
  max-height: 57px;
}

.personal-data .form-control--icon-left .form-control--input:not(:-moz-placeholder-shown) {
  padding: 27px 11px 10px 44px;
}

.personal-data .form-control--icon-left .form-control--input:not(:placeholder-shown) {
  padding: 27px 11px 10px 44px;
}

.personal-data .form-control--icon-left .form-control--notify {
  margin-top: 6px;
}

.personal-data .policy {
  margin-top: 11px;
}

.personal-data .save {
  width: 100%;
  margin-top: 8px;
}

.personal .deliveries-block {
  margin-top: 47px;
  font-weight: 300;
}

.personal .addresses-block {
  margin-top: 13px;
}

.deliveries-block .save-delivery-desc {
  margin-top: 25px;
  font-size: 18px;
  letter-spacing: -0.1px;
  color: #2C2C2C;
}

.addresses-block {
  padding-right: 16px;
}

.addresses-block .item {
  border-radius: 6px;
  background: #F7F7F7;
  display: flex;
  align-items: center;
}

.addresses-block .item svg {
  fill: #FFF;
  width: 25px;
  height: 25px;
}

.addresses-block .item input[type="radio"] {
  display: none;
}

.addresses-block .item+.item {
  margin-top: 15px;
}

.addresses-block .item .text {
  height: auto;
  padding: 24px;
  font-size: 14px;
  line-height: 18px;
  flex-grow: 2;
  color: #2C2C2C;
}

.addresses-block .item .icon.edit {
  margin-right: 11px;
}

.addresses-block .item .icon.delete {
  margin-right: 23px;
}

.addresses-block .item.removed .text {
  color: #98938C;
}

.addresses-block .item .undo {
  margin-right: 23px;
  font-size: 14px;
  text-decoration: underline;
  color: #736035;
}

.addresses-block .new-address {
  font-size: 14px;
  margin-top: 12px;
  color: #736035;
  font-weight: 300;
}

.delete-account {
  text-align: right;
  margin-top: 50px;
  font-size: 14px;
  text-decoration: underline;
  color: #98938C;
  font-weight: 300;
}

.aside.personal-aside {
  background: #F7F7F7;
  max-width: 272px;
  padding-top: 50px;
  padding-left: 24px;
  padding-bottom: 56px;
  border-radius: 6px;
  font-weight: 300;
}

.aside.personal-aside ul li+li {
  margin-top: 13px;
}

.aside.personal-aside ul li.active a {
  color: #736035;
  text-decoration: underline;
}

.aside.personal-aside ul li a {
  color: #2C2C2C;
}

.aside.personal-aside .logout {
  margin-top: 60px;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: #98938C;
}

.personal {
  position: relative;
}

.personal .info-top-plate {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.personal .info-top-plate .info-plate {
  padding: 10px;
}

.personal .info-top-plate.notified {
  display: flex;
}

.personal .button {
  cursor: pointer;
}

.personal .button svg {
  width: 25px;
  fill: #736035;
}

@media (min-width: 1304px) {
  .personal-data .form-row {
    max-width: 296px;
  }

  .personal-data .save {
    max-width: 296px;
  }

  .address-block-wrap {
    max-width: 614px;
  }
}

.info-plate {
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
  box-shadow: 1px 1px 20px #e6e6e6;
  background: #fff;
  padding: 10px;
  font-weight: 300;
}

.info-plate .info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.info-plate .info svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-right: 15px;
}

.info-plate .info p {
  font-size: 18px;
  letter-spacing: -0.2px;
  color: #736035;
}

.email-wrap {
  display: none;
  position: relative;
}

.email-wrap .info-plate {
  position: absolute;
  left: 309px;
  width: 410px;
  top: -4px;
}

.email-wrap.notified {
  display: flex;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .email-wrap .info-plate {
    left: 329px;
    width: 350px;
  }
}

@media (max-width: 1007.98px) {
  .email-wrap .info-plate {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .addresses-block {
    padding-right: 0 !important;
  }

  .email-wrap .email {
    width: 100%;
  }
}

@media (max-width: 1007.98px) {
  .personal .info-top-plate {
    position: fixed;
    top: 20px;
  }
}

.orders-list {
  font-weight: 300;
  margin-right: 16px;
}

.orders-list .empty {
  font-size: 18px;
  letter-spacing: -0.2px;
  color: #000;
  margin-top: 24px;
  font-weight: 300;
}

.orders-list hr {
  margin-top: 20px;
  display: block;
}

.orders-list .item {
  border-radius: 6px;
  background-color: #FFF;
  padding: 24px;
}

.orders-list .item .info {
  display: flex;
  justify-content: space-between;
}

.orders-list .item .info .order-id {
  font-size: 18px;
  color: #2C2C2C;
}

.orders-list .item .info .number {
  font-size: 12px;
  margin-top: 6px;
  color: #98938C;
}

.orders-list .item .status {
  margin-top: 10px;
}

.orders-list .item .price {
  margin-top: 26px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.orders-list .item .delivery {
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.orders-list .item .delivery span {
  color: #98938C;
}

.orders-list .item+.item {
  margin-top: 24px;
}

.status {
  padding: 7px 12px;
  font-size: 14px;
  display: block;
  font-weight: 300;
  width: auto;
  border-radius: 6px;
  display: inline-block;
  color: #FFF;
}

.status.pending {
  background-color: #6B6452;
}

.status.completed {
  background-color: #2E5A45;
}

.status.cancelled {
  background-color: #EBEBEB;
  color: #2C2C2C;
}

.status.delivery {
  background-color: #B78041;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .personal.personal-orders .orders-list {
    margin-right: 0;
  }

  .personal.personal-orders .orders-list .item {
    padding: 24px 0px;
  }

  .personal.personal-orders .orders-list .item .info .order-id {
    font-size: 16px;
  }

  .personal.personal-orders .orders-list .item .delivery {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .personal.personal-orders {
    margin-top: 48px;
  }

  .personal.personal-orders .orders-list {
    margin-top: 46px;
    margin-right: 0;
  }

  .personal.personal-orders .orders-list .item {
    padding: 14px;
  }

  .personal.personal-orders .orders-list .item .info .order-id {
    font-size: 16px;
    margin-top: 3px;
  }

  .personal.personal-orders .orders-list .item .status {
    font-size: 12px;
    margin-top: 6px;
  }

  .personal.personal-orders .orders-list .item .price {
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 0.3px;
    font-weight: 500;
  }

  .personal.personal-orders .orders-list .item .delivery {
    font-size: 11px;
    letter-spacing: 0.4px;
  }

  .personal.personal-orders .orders-list .item+.item {
    margin-top: 22px;
  }
}

.orders .order-detail {
  color-color: #2C2C2C;
}

.orders .order-detail .back {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: -0.9px;
  font-weight: 300;
}

.orders .order-detail .back svg {
  width: 24px;
  height: 24px;
}

.orders .order-detail .headline {
  margin-top: 60px;
  display: flex;
}

.orders .order-detail .headline h3 {
  line-height: 32px;
}

.orders .order-detail .headline .headline-right {
  display: flex;
  flex-grow: 2;
}

.orders .order-detail .headline .status {
  height: 30px;
  margin-left: 13px;
}

.orders .order-detail .headline .date {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 300;
}

.orders .order-detail .order-contents .item {
  margin-top: 51px;
  display: flex;
  font-weight: 300;
}

.orders .order-detail .order-contents .item+.item {
  margin-top: 15px;
}

.orders .order-detail .order-contents .item .image-block {
  flex: 0 0 145px;
  margin-right: 12px;
}

.orders .order-detail .order-contents .item .description {
  display: flex;
  justify-content: space-between;
  flex: 1 1;
}

.orders .order-detail .order-contents .item .content-block {
  flex: 0 0 299px;
  margin-right: 70px;
}

.orders .order-detail .order-contents .item .content-block .title {
  margin-top: 12px;
  font-size: 18px;
}

.orders .order-detail .order-contents .item .content-block .color {
  margin-top: 42px;
  font-size: 14px;
}

.orders .order-detail .order-contents .item .content-block .size {
  margin-top: 8px;
  font-size: 14px;
}

.orders .order-detail .order-contents .item .price-block {
  flex: 0 0 150px;
  margin-right: 34px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.orders .order-detail .order-contents .item .price-block .old-price {
  text-decoration: line-through;
  margin-top: -18px;
  color: #98938C;
}

.orders .order-detail .order-contents .item .price-block .price {
  margin-top: 10px;
  font-size: 18px;
}

.orders .order-detail .order-contents .item .total-block {
  justify-content: space-between;
  display: flex;
  flex: 1 1;
  align-items: center;
}

.orders .order-detail .order-contents .item .total-block .amount {
  margin-top: 10px;
  font-size: 18px;
}

.orders .order-detail .order-contents .item .total-block .total-price {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.4px;
  margin-top: 10px;
}

.orders .order-detail .summary {
  padding: 25px;
  background: #F7F7F7;
  border-radius: 6px;
  font-weight: 300;
  max-width: 600px;
  padding: 25px;
}

.orders .order-detail .summary .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.orders .order-detail .summary .summary-row+.summary-row {
  margin-top: 16px;
}

.orders .order-detail .summary .summary-row.total {
  color: #2C2C2C;
  font-weight: 500;
}

.orders .order-detail .summary .summary-row.total .prop {
  color: #2C2C2C;
  font-weight: 500;
}

.orders .order-detail .summary .summary-row .prop {
  color: #98938C;
}

.orders .order-detail .bonuses {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  padding: 25px;
  border-bottom: 1px solid #E0E0E0;
  font-size: 18px;
  font-weight: 300;
}

.orders .order-detail .info {
  font-size: 18px;
  font-weight: 300;
}

.orders .order-detail .info div+div {
  margin-top: 10px;
}

.orders .order-detail .info div span {
  color: #98938C;
}

.orders .order-detail .info div a {
  color: #98938C;
  text-decoration: underline;
  font-size: 14px;
}

.orders .order-detail .actions .ml-24 {
  margin-left: 24px;
}

@media (max-width: 1303.98px) {
  .orders .order-detail .order-contents .item .content-block {
    flex: 0 0 199px;
    margin-right: 10px;
  }

  .orders .order-detail .order-contents .item .price-block {
    flex: 0 0 120px;
    margin-right: 0px;
  }

  .orders .order-detail .order-contents .item .total-block .total-price {
    text-align: right;
  }

  .orders .order-detail .order-contents .item .total-block {
    justify-content: flex-end;
  }
}

@media (max-width: 1303.98px) {
  .orders .order-detail .order-contents .item .description {
    display: block;
  }

  .orders .order-detail .order-contents .item .total-block {
    justify-content: flex-start;
  }

  .orders .order-detail .order-contents .item .price-block {
    flex-direction: row;
    justify-content: flex-start;
  }

  .orders .order-detail .order-contents .item .price-block .price {
    order: -1;
  }

  .orders .order-detail .order-contents .item .price-block {
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
  }

  .orders .order-detail .order-contents .item .price-block .old-price {
    margin-left: 10px;
  }

  .orders .order-detail .order-contents .item .total-block {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .orders .order-detail .order-contents .item .content-block .color {
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .orders .order-detail .actions {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .orders .order-detail .actions .btn+.btn {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .orders .order-detail .headline .headline-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .orders .order-detail .headline .headline-right .status {
    margin-left: 0;
    margin-top: 10px;
  }

  .orders .order-detail .order-contents .item .price-block .price {
    font-size: 14px;
  }

  .orders .order-detail .order-contents .item .price-block .old-price {
    font-size: 12px;
  }

  .orders .order-detail .order-contents .item .image-block {
    flex: 0 0 105px;
  }

  .orders .order-detail .headline {
    margin-top: 48px;
  }

  .orders .order-detail .headline .date {
    font-size: 16px;
  }

  .orders .order-detail .headline .headline-right .status {
    margin-top: 6px;
    font-size: 12px;
  }

  .orders .order-detail .order-contents .item .image-block {
    margin-right: 8px;
  }

  .orders .order-detail .order-contents .item {
    margin-top: 38px;
  }

  .orders .order-detail .order-contents .item .content-block .title {
    font-size: 14px;
  }

  .orders .order-detail .order-contents .item .content-block .color {
    font-size: 12px;
    margin-top: 14px;
  }

  .orders .order-detail .order-contents .item .content-block .size {
    margin-top: 4px;
    font-size: 12px;
  }

  .orders .order-detail .order-contents .item .total-block .amount {
    margin-top: 10px;
    font-size: 12px;
  }

  .orders .order-detail .order-contents .item .total-block .total-price {
    font-size: 14px;
  }

  .orders .order-detail .summary .summary-row {
    font-size: 16px;
  }

  .orders .order-detail .summary .summary-row+.summary-row {
    margin-top: 14px;
  }

  .orders .order-detail .summary .summary-row.total {
    font-size: 15px;
  }

  .orders .order-detail .bonuses {
    padding: 25px 10px;
    font-size: 16px;
  }

  .orders .order-detail .info {
    font-size: 16px;
  }

  .orders .order-detail .info div+div {
    margin-top: 15px;
  }

  .orders .order-detail .actions {
    margin-top: 50px;
  }

  .orders .order-detail .actions .btn+.btn {
    margin-top: 12px;
  }
}

.loyalty .loyalty-list .empty {
  font-size: 18px;
  margin-top: 60px;
  font-weight: 300;
}

.loyalty .loyalty-list .empty p+p {
  margin-top: 18px;
}

.loyalty .loyalty-list .item {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  margin-bottom: 28px;
}

.loyalty .loyalty-list .item .info {
  margin-left: 24px;
  font-weight: 300;
}

.loyalty .loyalty-list .item .info p {
  margin-top: 24px;
}

.loyalty .loyalty-list .item .info p+p {
  margin-top: 5px;
}

.loyalty .loyalty-list .item .info .card-info p {
  color: #98938C;
}

.loyalty .loyalty-list .item .info .card-info p span {
  color: #2C2C2C;
}

.loyalty .loyalty-list .item .info .the-next-level-play {
  max-width: 286px;
  font-size: 14px;
  font-weight: 300;
  border-top: 1px solid #E0E0E0;
  padding-top: 12px;
  margin-top: 27px;
  line-height: 18px;
}

.loyalty .loyalty-about {
  margin-top: 18px;
  font-weight: 300;
  font-size: 14px;
}

.loyalty .loyalty-about a {
  color: #736035;
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .loyalty-list img {
    max-width: 295px;
  }
}

@media (max-width: 767.98px) {
  .personal .loyalty h2 {
    margin-top: 12px;
  }

  .personal .loyalty .loyalty-list .item {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    margin-bottom: -5px;
    flex-direction: column;
  }

  .personal .loyalty .loyalty-list .item .info {
    flex-wrap: wrap;
    margin-left: 0;
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 16px;
  }

  .personal .loyalty .loyalty-list .item .info h3 {
    margin-top: 12px;
    font-size: 30px;
  }

  .personal .loyalty .loyalty-list .item .info p {
    margin-top: 0;
  }

  .personal .loyalty .loyalty-list .item .info p.the-next-level-play {
    margin-top: 14px;
    border-top: 1px solid #E0E0E0;
    padding-top: 14px;
    font-size: 12px;
    line-height: 15px;
    font-weight: 300;
  }

  .personal .loyalty .loyalty-list .item .info .card-info {
    margin-top: 14px;
    margin-left: 20px;
    flex: 1 1 180px;
  }

  .personal .loyalty .loyalty-list .item .info .card-info p+p {
    margin-top: 4px;
  }

  .personal .loyalty .loyalty-about {
    font-size: 12px;
  }
}

.personal .favourites .favourites-headline {
  display: flex;
}

.personal .favourites .favourites-headline .share-fav-link {
  margin-top: 20px;
  margin-left: 25px;
  font-weight: 300;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .personal .favourites .favourites-headline .share-fav-link {
    margin-top: 10px;
  }
}

.personal .favourites .favourites-headline a {
  display: flex;
}

.personal .favourites .favourites-headline a svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-right: 4px;
}

@media (max-width: 767.98px) {
  .personal .favourites .favourites-headline {
    flex-direction: column;
  }

  .personal .favourites .favourites-headline .share-fav-link {
    margin-left: 0;
  }
}

.personal .favourites .favourites-list .item {
  position: relative;
  margin-bottom: 48px;
}

.personal .favourites .favourites-list .item img {
  border-radius: 6px;
  max-width: auto;
}

@media (max-width: 575.98px) {
  .personal .favourites .favourites-list .item img {
    width: 100%;
  }
}

.personal .favourites .favourites-list .item .fav {
  position: absolute;
  top: 16px;
  right: 28px;
}

.personal .favourites .favourites-list .item .fav svg {
  width: 22px;
  height: 22px;
  stroke: #736035;
  fill: transparent;
}

.personal .favourites .favourites-list .item .fav svg.is-active {
  fill: #736035;
}

.personal .favourites .favourites-list .item .flexible {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}

.personal .favourites .favourites-list .item .item-left {
  font-size: 18px;
  font-weight: 300;
}

.personal .favourites .favourites-list .item .item-left a {
  color: #6B6452;
}

.personal .favourites .favourites-list .item .item-left p {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 6px;
  color: #98938C;
}

.personal .favourites .favourites-list .item .item-right {
  text-align: right;
  width: 140px;
}

.personal .favourites .favourites-list .item .item-right .price {
  font-size: 18px;
  font-weight: 300;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .personal .favourites .favourites-list .item .item-right .price {
    font-size: 16px;
  }
}

.personal .favourites .favourites-list .item .item-right .old-price {
  font-weight: 300;
  text-decoration: line-through;
  margin-top: 8px;
  color: #98938C;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .personal .favourites .favourites-list .item .item-right .old-price {
    font-size: 14px;
  }
}

.personal .favourites .favourites-list .item .item-bottom .color {
  margin-top: 15px;
  font-weight: 300;
  margin-bottom: 6px;
  color: #6B6452;
}

.personal .favourites .favourites-list .item .item-bottom .color span {
  color: #98938C;
}

.personal .favourites .favourites-list .item .item-bottom a.btn {
  margin-top: 2px;
  width: 100%;
  text-align: center;
}

@media (max-width: 575.98px) {
  .personal .subscriptions .subscriptions-list {
    margin-top: 48px;
  }
}

.personal .subscriptions .subscriptions-list .tumblr~.tumblr {
  margin-top: 8px;
}

.personal .subscriptions .subscriptions-list .btn {
  margin-top: 43px;
  width: 100%;
  max-width: 294px;
}

@media (max-width: 575.98px) {
  .personal .subscriptions .subscriptions-list .btn {
    margin-top: 19px;
  }
}

#tippy-1 {
  z-index: 999999 !important;
}

#tippy-1 .tippy-box {
  background-color: #736035;
}

#tippy-1 .tippy-arrow {
  background-color: #736035;
}

#tippy-1 .tippy-box[data-placement^=top]>.tippy-arrow:before {
  color: #736035;
}

#tippy-1 .tippy-content {
  padding: 8px 14px;
}

.share-modal-wrap .h3 {
  font-size: 30px;
}

.share-wrap {
  display: flex;
}

.share-wrap svg {
  width: 24px;
  height: 24px;
}

.share-wrap .social-links {
  display: flex;
}

.share-wrap .social-links a {
  margin-right: 24px;
  color: #736035;
}

.share-wrap .social-links a:last-child {
  margin-right: 0;
}

@media (max-width: 767.98px) {
  .share-wrap .social-links a {
    margin-right: 20px;
  }
}

.share-wrap .js-copy-to-clipboard {
  display: flex;
  margin-left: 48px;
  font-size: 14px;
  font-weight: 300;
  color: #736035;
}

.share-wrap .js-copy-to-clipboard svg {
  margin-right: 10px;
}

.share-wrap .js-copy-to-clipboard span {
  color: #2C2C2C;
}

@media (max-width: 767.98px) {
  .share-wrap .js-copy-to-clipboard {
    margin-left: 29px;
  }
}

@media (max-width: 767.98px) {
  .share-wrap {
    justify-content: center;
  }
}

#modal-share-favorite {
  border-radius: 6px;
}

#modal-share-favorite .contents {
  padding: 20px 97px 20px 97px;
}

@media (max-width: 575.98px) {
  #modal-share-favorite .contents {
    padding: 40px 0px;
  }
}

@media (min-width: 1008px) {
  .row-cols-lg-3 .catalog-item {
    margin-top: 48px;
  }

  .row-cols-lg-3 .catalog-item:nth-child(-n+3) {
    margin-top: 0;
  }
}

@media (min-width: 1008px) {
  .row-cols-lg-2 .catalog-item {
    margin-top: 48px;
  }

  .row-cols-lg-2 .catalog-item:nth-child(-n+2) {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .row-cols-2 .catalog-item {
    margin-top: 36px;
  }

  .row-cols-2 .catalog-item:nth-child(-n+2) {
    margin-top: 0;
  }
}

@media (min-width: 576px) and (max-width: 1007.98px) {
  .row-cols-sm-2 .catalog-item {
    margin-top: 48px;
  }

  .row-cols-sm-2 .catalog-item:nth-child(-n+2) {
    margin-top: 0;
  }
}

@media (min-width: 576px) and (max-width: 1007.98px) {
  .row-cols-sm-1 .catalog-item {
    margin-top: 48px;
  }

  .row-cols-sm-1 .catalog-item:first-child {
    margin-top: 0;
  }
}

.product__gallery {
  display: flex;
  align-items: center;
}

@media (min-width: 1008px) {
  .product__gallery {
    position: -webkit-sticky;
    position: sticky;
    top: 48px;
  }
}

@media (max-width: 1007.98px) {
  .product__gallery {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .product__gallery {
    margin-bottom: 24px;
  }
}

.product__gallery-thumb--wrapper {
  flex: 0 0 100px;
  margin-right: 12px;
  text-align: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 1007.98px) {
  .product__gallery-thumb--wrapper {
    flex: 0 0 auto;
    margin-right: 0;
    order: 2;
    margin-top: 12px;
  }
}

@media (max-width: 1007.98px) {
  .product__gallery-thumb--arrow {
    display: none !important;
  }
}

.product__gallery-thumb--arrow--up {
  margin-bottom: 24px;
}

.product__gallery-thumb--arrow--down {
  margin-top: 24px;
}

.product__gallery-thumb--item {
  display: block;
  border-radius: 6px;
}

.product__gallery-thumb--item--wrapper {
  display: block !important;
  margin: 6px 0;
  position: relative;
  cursor: pointer;
}

.product__gallery-thumb--item--wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #736035;
  opacity: 0;
  border-radius: 6px;
  transition: opacity 0.4s ease-out;
}

@media (max-width: 1007.98px) {
  .product__gallery-thumb--item--wrapper {
    margin: 0 6px;
    width: 100px !important;
  }
}

.product__gallery-thumb .slick-list {
  margin: -6px 0;
}

@media (max-width: 1007.98px) {
  .product__gallery-thumb .slick-list {
    margin: 0 -6px;
  }
}

.slick-slide.slick-current .product__gallery-thumb--item--wrapper:after {
  opacity: 1;
}

.product__gallery-preview--wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 1007.98px) {
  .product__gallery-preview--wrapper {
    order: 1;
  }
}

.product__gallery-preview--item {
  display: block;
}

@media (max-width: 767.98px) {
  .product__gallery-preview--item {
    border-radius: 6px;
  }
}

.product__gallery-preview--item--wrapper {
  display: block !important;
  cursor: pointer;
}

.product__gallery-preview--arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {
  .product__gallery-preview--arrow {
    display: none !important;
  }
}

.product__gallery-preview--arrow--left {
  left: 24px;
}

@media (max-width: 1007.98px) {
  .product__gallery-preview--arrow--left {
    left: 12px;
  }
}

.product__gallery-preview--arrow--right {
  right: 24px;
}

@media (max-width: 1007.98px) {
  .product__gallery-preview--arrow--right {
    right: 12px;
  }
}

.product__gallery-preview--zoom {
  height: 48px;
  width: 48px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  color: #736035;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .product__gallery-preview--zoom {
    display: none;
  }
}

.product__gallery__window {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100 !important;
  display: flex;
  background: #FFF;
}

@media (max-width: 767.98px) {
  .product__gallery__window {
    flex-direction: column;
    padding: 64px 12px 26px;
  }
}

.product__gallery__window--wrapper {
  display: none;
}

.product__gallery__window-thumb {
  overflow: hidden;
  width: 100%;
  flex: 1 1;
}

.product__gallery__window-thumb--wrapper {
  flex: 0 0 196px;
  padding: 90px 47px;
  width: 196px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 767.98px) {
  .product__gallery__window-thumb--wrapper {
    order: 2;
    width: 100%;
    flex: 0 0 auto;
    padding: 0;
    margin-top: 8px;
  }
}

.product__gallery__window-thumb--item {
  display: block;
  border-radius: 6px;
}

.product__gallery__window-thumb--item--wrapper {
  height: 120px;
  width: 100px;
  display: block !important;
  margin: 6px 0;
  position: relative;
  cursor: pointer;
}

.product__gallery__window-thumb--item--wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #736035;
  opacity: 0;
  border-radius: 6px;
  transition: opacity 0.4s ease-out;
}

@media (max-width: 767.98px) {
  .product__gallery__window-thumb--item--wrapper {
    margin: 0 6px;
    width: 100px !important;
  }
}

.product__gallery__window-thumb .slick-list {
  margin: -6px 0;
  overflow: visible;
}

@media (max-width: 767.98px) {
  .product__gallery__window-thumb .slick-list {
    margin: 0 -6px;
  }
}

.slick-slide.slick-current .product__gallery__window-thumb--item--wrapper:after {
  opacity: 1;
}

.product__gallery__window-thumb--arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767.98px) {
  .product__gallery__window-thumb--arrow {
    display: none !important;
  }
}

.product__gallery__window-thumb--arrow--up {
  top: 18px;
}

.product__gallery__window-thumb--arrow--down {
  bottom: 18px;
}

@media (max-width: 1007.98px) {
  .product__gallery__window-big {
    cursor: -webkit-grab;
    cursor: grab;
  }
}

.product__gallery__window-big--wrapper {
  height: 100vh;
}

@media (max-width: 1007.98px) {
  .product__gallery__window-big--wrapper {
    order: 1;
    height: auto;
    border-radius: 6px;
    overflow: hidden;
  }
}

@media (min-width: 1008px) {
  .product__gallery__window-big--wrapper {
    overflow-y: scroll;
  }
}

.product__gallery__window-big--item {
  display: block;
}

.product__gallery__window-big--item--wrapper {
  display: block !important;
}

.product__gallery__window-big--arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

@media (max-width: 767.98px) {
  .product__gallery__window-big--arrow {
    display: none !important;
  }
}

.product__gallery__window-big--arrow--left {
  left: 288px;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .product__gallery__window-big--arrow--left {
    left: 240px;
  }
}

.product__gallery__window-big--arrow--right {
  right: 92px;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .product__gallery__window-big--arrow--right {
    right: 44px;
  }
}

.product__gallery__window-big--close {
  width: 24px;
  height: 24px;
  position: fixed;
  top: 48px;
  right: 92px;
  color: #2C2C2C;
}

@media (max-width: 767.98px) {
  .product__gallery__window-big--close {
    top: 16px;
    right: 12px;
  }
}

.product__gallery__window-big--zoom {
  background: #F7F7F7;
  border-radius: 50px;
  width: 33px;
  height: 33px;
  position: fixed;
  right: 92px;
  padding: 4px;
  color: #98938C;
}

@media (min-width: 1008px) {
  .product__gallery__window-big--zoom {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .product__gallery__window-big--zoom {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .product__gallery__window-big--zoom {
    right: 44px;
    width: 66px;
    height: 66px;
    padding: 20px;
  }
}

.product__gallery__window-big--zoom--in {
  bottom: 93px;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .product__gallery__window-big--zoom--in {
    bottom: 134px;
  }
}

.product__gallery__window-big--zoom--out {
  bottom: 48px;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .product__gallery__window-big--zoom--out {
    bottom: 44px;
  }
}

.product-article_number {
  color: #2C2C2C;
}

.product-article_number span {
  color: #98938C;
}

.product__price {
  display: flex;
  align-items: center;
}

.product__price-current {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
}

.product__price-old {
  margin-left: 8px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4375;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #98938C;
}

.product__color-label {
  color: #2C2C2C;
}

.product__color-label span {
  color: #98938C;
}

.product__color-list {
  display: flex;
}

.product__color-list--item {
  margin-right: 12px;
  border-radius: 100%;
  overflow: hidden;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  position: relative;
  display: flex;
}

@media (max-width: 767.98px) {
  .product__color-list--item {
    margin-right: 8px;
  }

  .product__color-list--item:last-child {
    margin-right: 0;
  }
}

.product__color-list--item--value {
  flex: 1 1;
}

.product__color-list--item:last-child {
  margin-right: 0;
}

.product__color-list--item--active:before,
.product__color-list--item--active:after {
  content: "";
  position: absolute;
  border-radius: 100%;
}

.product__color-list--item--active:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #736035;
}

.product__color-list--item--active:after {
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border: 2px solid #FFF;
}

.product__size-label {
  display: block;
}

.product__actions {
  display: flex;
}

.product__actions-cart {
  flex: 1 1;
}

.product__actions-cart .btn {
  width: 100%;
  white-space: nowrap;
  text-align: center;
}

.product__actions-like {
  flex: 0 0;
  margin-left: 12px;
}

.product__actions-like .btn {
  padding-top: 17px;
  padding-bottom: 17px;
  width: 148px;
  height: 58px;
}

@media (max-width: 767.98px) {
  .product__actions-like .btn {
    width: 58px;
    padding: 17px 16px;
  }
}

@media (max-width: 767.98px) {
  .product__look .btn {
    width: 100%;
    text-align: center;
  }
}

.order {
  font-weight: 300;
}

.order .order-page {
  margin-bottom: -24px;
}

.order .order-page .mb-70 {
  margin-bottom: 63px;
}

.order .order-page .form-control--input:not(:-moz-placeholder-shown) {
  padding: 28px 11px 10px;
}

.order .order-page .form-control--input:not(:placeholder-shown) {
  padding: 28px 11px 10px;
}

.order .order-page .form-row {
  margin-bottom: 12px;
}

.order .order-page .btn-primary.btn-next {
  margin-top: 24px;
  width: 296px;
  max-width: 100%;
}

.order .order-page .recipient-block {
  max-width: 295px;
}

.order .order-page .recipient-block h3 {
  margin-bottom: 22px;
}

.order .order-page .back {
  display: flex;
  flex-direction: row;
  width: 100px;
  align-items: center;
  margin-bottom: 60px;
}

.order .order-page .back svg {
  width: 24px;
  height: 24px;
}

.order .order-page .back span {
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

.order .order-page .order-aside {
  width: 273px;
  padding: 24px;
  padding-bottom: 50px;
  background: #F7F7F7;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  float: right;
  border-radius: 6px;
}

@media (max-width: 1007.98px) {
  .order .order-page .order-aside {
    width: 100%;
    margin-top: 44px;
    padding-bottom: 37px;
  }
}

.order .order-page .order-aside .checkbox-wrap {
  width: 100%;
  padding-right: 40px;
  margin-top: 20px;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
}

.order .order-page .order-aside .btn-sub-asid {
  width: 100%;
  margin-top: 16px;
}

.order .order-page .order-aside .order-info {
  margin-top: 26px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order .order-page .order-aside .order-info.headline {
  font-size: 18px;
  margin-top: 2px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 25px;
}

@media (max-width: 1007.98px) {
  .order .order-page .order-aside .order-info.headline {
    font-size: 16px;
    margin-top: 16px;
    padding-bottom: 14px;
  }
}

@media (max-width: 1007.98px) {
  .order .order-page .order-aside .order-info {
    font-size: 16px;
  }
}

.order .order-page .order-aside .order-info span {
  color: #98938C;
}

.order .order-page .order-aside .order-info span+span {
  margin-top: 4px;
  color: #2C2C2C;
}

@media (max-width: 1007.98px) {
  .order .order-page .order-aside .order-info span+span {
    margin-top: 1px;
  }
}

.order .order-page .order-aside .order-info+.order-info+.order-info {
  margin-top: 14px;
}

.order .order-page .order-aside .grey-line {
  margin-top: 22px;
}

.order .order-page .order-aside .order-total {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-style: normal;
  color: #000000;
  font-size: 18px;
  margin-top: 16px;
}

@media (max-width: 1007.98px) {
  .order .order-page .order-aside .order-total {
    margin-top: 12px;
    font-size: 16px;
  }
}

.order .order-page .order-aside .order-total span+span {
  font-size: 19px;
  font-weight: 500;
  margin-top: 3px;
}

.order .order-page .order-data-completed {
  margin-bottom: 50px;
  margin-top: 9px;
}

.order .order-page .order-data-completed .order-data-completed-info {
  margin-bottom: 18px;
}

.order .order-page .get-way {
  margin-top: 46px;
}

.order .order-page .get-way h3 {
  font-size: 30px;
  margin-bottom: 22px;
}

.order .order-page .get-way .select-city {
  width: 264px;
}

.order .order-page .get-way .select-city .select2-search--dropdown.select2-search--hide {
  display: block;
}

.order .order-page .tabs-wrapper .delivery-info {
  max-width: 600px;
}

.order .order-page .tabs-wrapper.delivery-way {
  margin-top: 23px;
}

.order .order-page .tabs-wrapper #salon-list {
  max-height: 650px;
  overflow-y: auto;
}

.order .order-page .tabs-wrapper .select-tabs.tabs-primary {
  justify-content: start;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .select-tabs.tabs-primary {
    width: 100%;
  }
}

.order .order-page .tabs-wrapper .select-tabs.tabs-primary .border-wrapper {
  position: static;
  bottom: 0;
  padding: 5px;
  border-radius: 6px;
  background-color: #F7F7F7;
  border: none;
  color: #98938C;
}

@media (max-width: 767.98px) {
  .order .order-page .tabs-wrapper .select-tabs.tabs-primary .border-wrapper {
    width: 100%;
    justify-content: space-around;
  }
}

.order .order-page .tabs-wrapper .select-tabs.tabs-primary .border-wrapper .tab-label {
  top: 0;
  margin: 0 9px;
  padding: 11px;
}

.order .order-page .tabs-wrapper .select-tabs.tabs-primary .border-wrapper .tab-label:hover {
  padding: 0 11px;
  background: #fff;
  height: 42px;
  margin-top: 0;
  border-bottom: none;
  color: #736035;
  border-radius: 6px;
}

.order .order-page .tabs-wrapper .select-tabs.tabs-primary .border-wrapper .tab-label:first-of-type {
  margin-left: 0;
}

.order .order-page .tabs-wrapper .select-tabs.tabs-primary .border-wrapper .tab-label:last-of-type {
  margin-right: 0;
}

.order .order-page .tabs-wrapper .select-tabs.tabs-primary .border-wrapper .tab-label.active {
  padding: 0 11px;
  background: #fff;
  margin-top: 0;
  border-bottom: none;
  color: #736035;
  border-radius: 6px;
  box-shadow: 1px 1px 10px #e7e7e7;
}

.order .order-page .tabs-wrapper .delivery-period-info {
  padding-top: 6px;
}

.order .order-page .tabs-wrapper .delivery-period-info p {
  line-height: 26px;
}

.order .order-page .tabs-wrapper .salon-list {
  padding: 8px 10px 8px 0px;
}

.order .order-page .tabs-wrapper .salon-list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Jost;
}

.order .order-page .tabs-wrapper .salon-list .item:last-of-type {
  margin-bottom: 0 !important;
}

.order .order-page .tabs-wrapper .salon-list .item p {
  color: #98938C;
}

.order .order-page .tabs-wrapper .salon-list .item .choose {
  margin-top: -18px;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .salon-list .item .choose {
    margin-top: 0;
  }
}

.order .order-page .tabs-wrapper .salon-list .item .choose button {
  width: 150px;
  background: #fff;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .salon-list .item .choose button {
    padding: 0;
    width: auto;
    border: none;
    margin-top: 8px;
    font-size: 14px;
  }
}

.order .order-page .tabs-wrapper .salon-list .item+.item {
  margin-top: 15px;
}

.order .order-page .tabs-wrapper .add-address {
  max-width: 600px;
  margin-top: 26px;
}

.order .order-page .tabs-wrapper .add-address .address-input input {
  height: 57px;
}

.order .order-page .tabs-wrapper .add-address .tumblr {
  margin-top: 35px;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .add-address .tumblr {
    margin-top: 12px;
  }
}

.order .order-page .tabs-wrapper .add-address .form-group-info {
  font-size: 12px;
  margin-top: 7px;
}

.order .order-page .tabs-wrapper .add-address .magic-checkbox-wrap {
  margin-top: 18px;
  margin-bottom: 20px;
}

.order .order-page .tabs-wrapper .add-address .inline-labels {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 8px;
}

.order .order-page .tabs-wrapper .add-address .inline-labels .form__group-label {
  max-width: 20%;
}

.order .order-page .tabs-wrapper .add-address .inline-labels input {
  height: 40px;
  height: 52px;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .add-address .inline-labels label {
    font-size: 10px;
  }
}

.order .order-page .tabs-wrapper .addresses {
  margin-bottom: 0;
}

.order .order-page .tabs-wrapper .addresses .item {
  background: #F7F7F7;
  padding: 22px 25px;
  border-radius: 6px;
  align-items: center;
  border: none;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .addresses .item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 13px 6px;
  }
}

.order .order-page .tabs-wrapper .addresses .item .text {
  max-width: 75%;
  width: 75%;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 17px;
}

.order .order-page .tabs-wrapper .addresses .item.removed {
  padding-top: 22px;
  padding-bottom: 19px;
  color: #696969;
  justify-content: space-between;
}

.order .order-page .tabs-wrapper .addresses .item svg {
  width: 16px;
  height: 16px;
}

.order .order-page .tabs-wrapper .addresses .item .edit,
.order .order-page .tabs-wrapper .addresses .item .delete {
  display: flex;
  align-items: center;
}

.order .order-page .tabs-wrapper .addresses .item .edit span,
.order .order-page .tabs-wrapper .addresses .item .delete span {
  margin-left: 4px;
}

.order .order-page .tabs-wrapper .addresses .item .delete {
  margin-left: 10px;
}

.order .order-page .tabs-wrapper .addresses .new-address {
  padding: 14px 17px;
  margin-top: 12px;
}

.order .order-page .tabs-wrapper .address-block-wrap {
  margin-top: 20px;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .address-block-wrap {
    margin-top: 16px;
  }
}

.order .order-page .tabs-wrapper .address-block-wrap .addresses-block {
  padding-right: 0;
}

.order .order-page .tabs-wrapper .address-block-wrap .addresses-block .checkbox {
  margin-left: 24px;
  margin-top: -20px;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .address-block-wrap .addresses-block .checkbox {
    margin-left: 12px;
    margin-top: 0;
  }
}

.order .order-page .tabs-wrapper .address-block-wrap .addresses-block .checkbox svg {
  width: 16px;
  height: 16px;
}

.order .order-page .tabs-wrapper .address-block-wrap .addresses-block .item+.item {
  margin-top: 12px;
}

.order .order-page .tabs-wrapper .address-block-wrap .addresses-block .text {
  padding-left: 6px;
  padding-right: 60px;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .address-block-wrap .addresses-block .text {
    padding-right: 10px;
    font-size: 12px;
    line-height: 16px;
  }
}

.order .order-page .tabs-wrapper .address-block-wrap .addresses-block .new-address {
  text-decoration: underline;
  color: #98938C;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .address-block-wrap .addresses-block .delete {
    margin-right: 10px !important;
  }
}

.order .order-page .tabs-wrapper .data_deliv .form-row {
  margin-bottom: 0;
}

.order .order-page .tabs-wrapper .data_deliv .js-delivery-date {
  width: 294px;
  margin-top: 2px;
  max-width: 100%;
  height: 58px;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .data_deliv .js-delivery-date {
    width: 100%;
  }
}

.order .order-page .tabs-wrapper .data_deliv .select2-container {
  padding: 2px 0;
  margin-left: 12px;
  width: 100%;
}

@media (max-width: 1007.98px) {
  .order .order-page .tabs-wrapper .data_deliv .select2-container {
    margin-top: 10px;
    margin-left: 0;
  }
}

.order .order-page .tabs-wrapper .radio-group {
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
  max-width: 40px;
  width: 24px;
  height: 24px;
}

.order .order-page .tabs-wrapper .radio-group label {
  width: 24px;
  height: 24px;
}

.order .order-page h1 {
  margin-bottom: 70px;
  text-align: center;
  margin-top: 23px;
}

.order .order-page h2 {
  margin-top: 46px;
  margin-bottom: 22px;
}

.order .order-page h3 {
  font-size: 30px;
}

.order .order-page p {
  line-height: 29.3px;
}

.order .order-page .addresses h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 15px;
  margin-bottom: 6px;
}

.order .order-page .addresses .salon-list .item h3 {
  font-family: Jost;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: #2C2C2C;
  margin-bottom: 8px;
  margin-top: 4px;
}

@media (max-width: 1007.98px) {
  .order .order-page .addresses .salon-list .item h3 {
    margin-bottom: 0;
  }
}

.order .order-page .addresses .salon-list .item p {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #2C2C2C;
  margin-top: 16px;
  color: #98938C;
}

@media (max-width: 1007.98px) {
  .order .order-page .addresses .salon-list .item p {
    margin-top: 6px;
    font-size: 10px;
  }
}

.order .order-page .addresses .salon-list .item p+p {
  margin-top: 3px;
}

.order .order-page #mapSalon {
  max-width: 600px;
  width: 100%;
  height: 360px;
  margin-top: 8px;
  border-radius: 6px;
}

.order .order-page .salon-list-selected {
  margin-top: 12px;
}

.order .order-page .salon-list-selected h3 {
  margin-top: 5px;
  font-weight: 300;
  font-size: 18px;
  color: #2C2C2C;
  font-family: Jost;
  color: #2C2C2C;
}

@media (max-width: 1007.98px) {
  .order .order-page .salon-list-selected h3 {
    font-size: 16px;
  }
}

.order .order-page .salon-list-selected p {
  font-weight: 300;
  font-size: 14px;
  color: #98938C;
  line-height: 4px;
  margin-top: 18px;
}

@media (max-width: 1007.98px) {
  .order .order-page .salon-list-selected p {
    font-size: 12px;
    margin-top: 7px;
  }
}

@media (max-width: 1007.98px) {
  .order .order-page .salon-list-selected p+p {
    margin-top: 14px;
  }
}

.order .order-page .salon-list-selected p span {
  color: #2C2C2C;
}

.order .order-page .salon-list-selected .item {
  margin-top: 24px;
  padding: 22px 24px;
  align-items: center;
  border: none;
  display: flex;
  justify-content: space-between;
  background: #fff !important;
  box-shadow: 1px 1px 10px #7360351a;
}

@media (max-width: 1007.98px) {
  .order .order-page .salon-list-selected .item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.order .order-page .salon-list-selected .btn-change {
  padding: 14px 17px;
  margin-right: 30px;
  margin-top: 13px;
  color: #736035;
}

@media (max-width: 1007.98px) {
  .order .order-page .salon-list-selected .btn-change {
    padding: 0;
    margin-right: 30px;
    margin-top: 19px;
    color: #736035;
    font-size: 14px;
  }
}

.order .order-page .get-payment {
  margin-top: 50px;
}

.order .order-page .get-payment h3 {
  margin-left: 0;
}

.order .order-page .get-payment .get-payment_wrap {
  margin-top: 23px;
}

.order .order-page .get-payment .get-payment_wrap .radio~.radio {
  margin-top: 11px;
}

.order .order-page .promo-block {
  margin-top: 24px;
}

.order .order-page .promo-block .form-row {
  display: flex;
}

.order .order-page .promo-block .form-row input {
  width: 296px;
}

@media (max-width: 1007.98px) {
  .order .order-page .promo-block .form-row input {
    width: 150px;
  }
}

.order .order-page .promo-block .btn-bgless {
  font-weight: 500;
  line-height: 22px;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #736035;
}

.order .order-page .bonus-block-wrap {
  margin-top: 45px;
}

.order .order-page .promo-block_inp {
  padding: 16px;
  width: 418px;
  height: 98px;
  background: #F5F5F5;
  border-radius: 14px;
  margin-top: 50px;
  margin-bottom: 24px;
}

.order .order-page .promo-block_inp .fl_box {
  display: flex;
}

.order .order-page .promo-block_inp .fl_box>div {
  width: 84%;
  margin-right: 16px;
}

.order .order-page .promo-block_bonus {
  margin-top: 22px;
  padding: 16px;
  gap: 9px;
  width: 600px;
  max-width: 100%;
  background: #F5F5F5;
  border-radius: 6px;
  margin-bottom: 50px;
  display: flex;
  padding-bottom: 24px;
}

@media (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus {
    flex-direction: column;
  }
}

.order .order-page .promo-block_bonus .promo-block_bonus_img {
  width: 46%;
  margin-top: 8px;
  margin-left: 8px;
}

@media (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus .promo-block_bonus_img {
    width: 100%;
  }
}

.order .order-page .promo-block_bonus .promo-block_bonus_img img {
  border-radius: 6px;
}

.order .order-page .promo-block_bonus .withdraw {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

@media (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus .withdraw {
    margin-top: 7px;
  }
}

.order .order-page .promo-block_bonus .withdraw p {
  font-size: 18px;
  color: #98938C;
}

@media (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus .withdraw p {
    font-size: 16px;
    margin-left: 10px;
  }
}

.order .order-page .promo-block_bonus .withdraw .form__group-input {
  width: 192px;
  height: 51px;
  margin-right: 0px;
  margin-top: 3px;
  border-radius: 6px;
  border: 1px solid #736035;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus .withdraw .form__group-input {
    margin-top: 1px;
    max-width: 157px;
  }
}

.order .order-page .promo-block_bonus .withdraw .inputs-wrap {
  display: flex;
}

@media (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus .withdraw .inputs-wrap {
    margin-left: 8px;
  }
}

.order .order-page .promo-block_bonus .withdraw .inputs-wrap input {
  color: #2C2C2C;
}

.order .order-page .promo-block_bonus .withdraw .inputs-wrap button {
  margin-top: 2px;
  margin-left: 1px;
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus .withdraw .inputs-wrap button {
    padding-left: 11px !important;
  }
}

.order .order-page .promo-block_bonus .all_bonus {
  font-size: 18px;
  margin-top: 14px;
  color: #98938C;
}

@media (max-width: 1007.98px) {
  .order .order-page .promo-block_bonus .all_bonus {
    font-size: 16px;
    margin-top: 6px;
    margin-left: 9px;
  }
}

.order .order-page .promo-block_bonus .all_bonus span {
  color: #2C2C2C;
}

.order .order-page .agreement_block {
  margin-top: 50px;
}

.order .order-page .agreement_block .tumblr~.tumblr {
  margin-top: 6px;
}

.order .order-page .agreement_block .checkbox-wrap {
  margin-top: 45px;
}

.order .order-page .data_deliv {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

@media (max-width: 1007.98px) {
  .order .order-page .data_deliv {
    flex-direction: column;
  }
}

.order .order-page .data_deliv label {
  width: 216px;
}

.order .order-page .data_deliv label .form__group-input {
  height: 44px;
}

.order .order-page .submit-order {
  width: 296px;
  margin-top: 9px;
  text-align: center;
}

.bottom-inputset .checkbox-wrap {
  margin-top: 50px;
}

.bottom-inputset .btn-sub-asid {
  margin-top: 7px;
  max-width: 100%;
  width: 296px;
}

.btn-sub-bod {
  display: block;
}

.clear {
  clear: both;
}

.rel {
  position: relative;
}

.pseudo-radio {
  position: relative;
  padding-left: 30px;
}

.pseudo-radio:after {
  position: absolute;
  top: 3px;
  left: 3px;
  height: 16px;
  width: 16px;
  background: transparent;
  content: ' ';
  display: inline-block;
  border: 1px solid #736035;
  border-radius: 50%;
}

.pseudo-radio:before {
  position: absolute;
  left: 6px;
  top: 6px;
  height: 10px;
  width: 10px;
  background: #fff;
  content: ' ';
  display: inline-block;
  background-color: transparent;
  border-radius: 50%;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable .pseudo-radio:before {
  background-color: #736035;
}

.select-city {
  display: none;
}

.select-city+span.select2 .select2-selection--single:hover {
  background: #fff;
}

.select-city+span.select2 {
  max-width: 290px;
  padding: 0;
  margin-top: 2px;
  font-family: Jost;
}

.select-city+span.select2 .select2-selection--single {
  border: none;
}

.select-city+span.select2 .select2-selection--single .select2-selection__rendered {
  padding: 0;
  height: auto !important;
}

.select-city+span.select2 .select2-selection--single {
  height: auto !important;
}

.select-city+span.select2 svg {
  margin-left: 5px;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-thumb {
  background-color: #736035;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-track {
  background-color: #F4F4F4;
}

.form-control.text-area textarea.form-control--input {
  margin-top: 13px;
  height: 96px;
}

.form-control.text-area label.form-control--label {
  top: 14px;
}

.ui-datepicker-calendar thead {
  border-bottom: 2px solid #F5F9FC;
}

.ui-datepicker-calendar .col span {
  font-family: Jost;
  text-transform: lowercase;
}

.ui-datepicker th {
  font-family: 'Jost';
  text-transform: lowercase;
  color: #696969;
  font-size: 14px;
}

.ui-datepicker .ui-datepicker-header {
  background: #fff;
  border: none;
}

.ui-datepicker th span {
  font-size: 16px;
  color: #98938C;
  font-weight: 300;
}

.ui-datepicker .ui-datepicker-prev span {
  background-image: url("/local/templates/main/css/../images/sprites/svg/cleft.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 50%;
}

.ui-datepicker .ui-datepicker-next span {
  background-image: url("/local/templates/main/css/../images/sprites/svg/right.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 50%;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background: #fff !important;
  border-color: #fff !important;
}

.ui-datepicker .ui-datepicker-title {
  font-family: Jost;
}

.ui-datepicker-month {
  font-family: "Jost";
  font-size: 18px;
  font-weight: 300;
  color: #2C2C2C;
}

.ui-datepicker-year {
  font-family: "Jost";
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
  color: #2C2C2C;
}

.ui-widget.ui-widget-content {
  border: 1px solid #E6E6E6;
  border-radius: 0;
}

.ui-state-default.ui-state-highlight {
  display: inline-block;
}

.ui-datepicker-calendar td {
  font-family: "Jost";
  text-align: center;
  color: #2C2C2C;
  font-size: 16px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  display: inline-block;
  font-size: 16px;
  color: #2C2C2C;
  border: none;
  background: none;
  font-weight: 300;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #2C2C2C;
  background: #F5F5F5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  border: none;
  font-weight: 300;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}

.ui-datepicker-month {
  font-family: "Jost";
}

.ui-datepicker-year {
  font-family: "Jost";
  text-transform: uppercase;
}

.ui-widget.ui-widget-content {
  border: none;
  border-radius: 0;
  box-shadow: 1px 1px 10px #00000014;
  border-radius: 6px;
}

.ui-state-default.ui-state-highlight {
  display: inline-block;
}

.ui-datepicker-calendar td {
  font-family: "Jost";
  text-align: center;
  color: #2C2C2C;
  font-size: 16px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  display: inline-block;
  font-size: 16px;
  color: #2C2C2C;
  border: none;
  background: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #2C2C2C;
  background: #F5F5F5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  border: none;
}

.lookbook__image {
  display: block;
  border-radius: 4px;
}

@media (max-width: 575.98px) {
  .lookbook__image-wrapper {
    margin: -12px;
  }
}

.lookbook__list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-right: 12px;
}

.lookbook__list-wrapper {
  height: 100%;
  overflow-y: auto;
  position: relative;
}

.lookbook__list-item {
  margin-bottom: 24px;
}

.lookbook__list-item:last-child {
  margin-bottom: 0;
}

.contacts__card {
  background: #FCFCFC;
  border: 1px solid #F7F7F7;
  border-radius: 6px;
  padding: 24px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.33;
  color: #2C2C2C;
  height: 100%;
}

@media (max-width: 767.98px) {
  .contacts__card {
    font-size: 16px;
  }
}

.contacts__card--wrapper {
  margin-bottom: 72px;
}

.contacts__card-text--link {
  display: block;
  margin-bottom: 6px;
}

.contacts__card-text--link:last-child {
  margin-bottom: 0;
}

.contacts__card-hint {
  color: #98938C;
}

@media (max-width: 767.98px) {
  .contacts__card-hint {
    font-size: 12px;
  }

  .contacts__card-hint br {
    display: none;
  }
}

@media (max-width: 1007.98px) {
  .contacts__card-item {
    margin-bottom: 24px;
  }
}

.news__list--row {
  display: flex;
  margin: 0 -24px;
  flex-wrap: wrap;
}

@media (max-width: 1007.98px) {
  .news__list--row {
    margin: 0;
  }
}

.news__list--col {
  flex: 0 0 50%;
  padding: 0 24px;
  margin-bottom: 48px;
}

@media (max-width: 1007.98px) {
  .news__list--col {
    flex: 0 0 100%;
    margin-bottom: 36px;
    padding: 0;
  }
}

.news__list-item--aside {
  padding: 48px 0;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
}

@media (max-width: 1007.98px) {
  .news__list-item--aside {
    padding: 36px 0;
  }
}

.news__list-item--aside:first-child {
  border-bottom: none;
}

@media (max-width: 1007.98px) {
  .news__list-item--aside:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.news__list-img {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
  .news__list-img {
    height: 492px;
  }
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .news__list-img {
    height: 600px;
  }
}

@media (max-width: 767.98px) {
  .news__list-img {
    height: 296px;
  }
}

.news__list-img picture {
  display: block;
}

@media (max-width: 1303.98px) {
  .news__list-img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.news__list-date {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #98938C;
}

.news__detail-img {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.news__detail-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news__detail-info--share {
  display: flex;
}

.news__detail-info--share--label {
  margin-right: 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #2C2C2C;
}

.news__detail-info--share .share-wrap .social-links a {
  margin-right: 12px;
}

.news__detail-info--date {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #98938C;
}

.news__detail-content ul {
  margin-bottom: 12px;
}

.news__detail-content li {
  padding-left: 27px;
  position: relative;
  margin-bottom: 8px;
  color: #2C2C2C;
}

.news__detail-content li:last-child {
  margin-bottom: 0;
}

.news__detail-content li:before {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: absolute;
  display: block;
  left: 12px;
  top: 10px;
}

.career__section-list {
  max-height: 660px;
  overflow-y: auto;
  padding-right: 8px;
}

@media (max-width: 767.98px) {
  .career__section-list {
    max-height: 512px;
  }
}

.career__section-list--item {
  padding: 24px;
  background: #FCFCFC;
  border: 1px solid #F7F7F7;
  border-radius: 6px;
  margin-bottom: 12px;
}

@media (max-width: 767.98px) {
  .career__section-list--item {
    padding: 16px;
  }
}

.career__section-list--item:last-child {
  margin-bottom: 0;
}

.career__section-list--text {
  color: #98938C;
}

.career-card {
  padding: 24px;
  background: #FCFCFC;
  border: 1px solid #F7F7F7;
  border-radius: 6px;
}

@media (max-width: 767.98px) {
  .career-card {
    padding: 24px 16px;
  }
}

.b2b__location-map {
  height: 604px;
}

@media (max-width: 767.98px) {
  .b2b__location-map {
    height: 296px;
  }
}

.b2b__location-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #FCFCFC;
  border-radius: 6px;
}

@media (max-width: 1007.98px) {
  .b2b__location-content {
    margin-bottom: 24px;
    height: auto;
  }
}

.b2b__location-contacts {
  margin-top: auto;
}

@media (max-width: 1007.98px) {
  .b2b__location-contacts {
    margin-top: 48px;
  }
}

.b2b__location-contacts--item {
  display: block;
  margin-bottom: 6px;
  color: #98938C;
}

.b2b__location-contacts--item:last-child {
  margin-bottom: 0;
}

.boutiques-map {
  height: 724px;
}

@media (max-width: 767.98px) {
  .boutiques-map {
    height: 296px;
  }
}

@media (min-width: 768px) and (max-width: 1007.98px) {
  .boutiques-map {
    height: 604px;
  }
}

@media (max-width: 1007.98px) {
  .boutiques-map {
    margin-bottom: 48px;
  }
}

.boutiques-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (max-width: 1007.98px) {
  .boutiques-content {
    height: auto;
    position: static;
  }
}

.boutiques-content--wrapper {
  height: 100%;
  position: relative;
}

@media (max-width: 1007.98px) {
  .boutiques-content--wrapper {
    height: auto;
  }
}

.boutiques-content--city {
  max-width: 296px;
}

@media (max-width: 1007.98px) {
  .boutiques-content--city {
    margin: 0 auto 48px;
  }
}

.boutiques-content__list {
  display: none;
}

.boutiques-content__list.js-boutiques-list-current {
  display: block;
}

.boutiques-content__list--wrapper {
  flex: 1 1;
  overflow-y: auto;
}

.boutiques-content__list-item {
  margin-bottom: 12px;
  padding: 24px;
  background: #FCFCFC;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .boutiques-content__list-item {
    padding: 16px;
  }
}

.boutiques-content__list-item:last-child {
  margin-bottom: 0;
}

.boutiques-content__list-title {
  font-family: "Jost", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.boutiques-content__list__contact {
  font-family: "Jost", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.boutiques-content__list__contact-item {
  display: block;
  margin-bottom: 4px;
  color: #98938C;
}

.boutiques-content__list__contact-item:last-child {
  margin-bottom: 0;
}

#mapBoutique {
  max-width: 100%;
  width: 600px;
  border-radius: 5px;
  height: 360px;
}

.salon-list {
  max-height: 600px;
  overflow-y: auto;
}

.time-boxes-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 420px;
  width: 100%;
  margin-top: 14px;
}

.time-square {
  display: block;
  border: 1px solid #736035;
  color: #2C2C2C;
  border-radius: 5px;
  padding: 20px 0;
  width: 59px;
  text-align: center;
  margin-right: 11px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
}

.time-box input:disabled+.time-square {
  border-color: #e0e0e0;
  color: #e0e0e0;
  cursor: default;
}

.time-box input:checked+.time-square {
  border-color: #e0e0e0;
  background: #736647;
  color: #e0e0e0;
  cursor: default;
}

.time-box input {
  display: none;
}

main.book h2 {
  margin-top: 1px;
  margin-bottom: 0;
}

main.book .block_content_aside {
  margin-top: 59px;
}

main.book .block_content_aside-content {
  padding-left: 106px;
}

main.book .block_content_aside-content--right {
  padding-top: 60px;
  padding-bottom: 30px;
}

main.book .flex-vertical-center {
  display: flex;
  align-items: center;
}

main.book form {
  margin-top: 176px;
  margin-bottom: 61px;
  max-width: 620px;
  width: 100%;
}

main.book .form-row.city {
  width: 100%;
  max-width: 412px;
}

main.book .tabs-wrapper.map-list {
  position: relative;
}

main.book .tabs-wrapper.map-list .headline {
  position: absolute;
  font-weight: 300;
  font-size: 18px;
  top: 11px;
  color: #2C2C2C;
}

main.book .tabs-wrapper.map-list .select-tabs {
  margin-top: 38px;
  padding-right: 15px;
}

main.book .data_deliv {
  margin-top: 46px;
  width: 100%;
  max-width: 294px;
}

main.book .times {
  margin-top: 50px;
}

main.book .times p {
  font-weight: 300;
  font-size: 18px;
  color: #2C2C2C;
}

main.book .checkbox-wrap.fav {
  margin-top: 36px;
}

main.book .checkbox-wrap.fav .checkbox-text {
  font-size: 18px;
}

main.book .checkbox-wrap.fav p.desc {
  font-size: 14px;
  color: #2C2C2C;
  font-weight: 300;
  margin-top: 6px;
  max-width: 560px;
  line-height: 17px;
}

main.book .name-input {
  margin-top: 31px;
  margin-bottom: 0;
  max-width: 412px;
  width: 100%;
}

main.book .phone-input {
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 412px;
  width: 100%;
}

main.book .form-control.text-area textarea.form-control--input {
  margin-top: 12px;
  max-width: 412px;
  width: 100%;
}

main.book .bottom-inputset .checkbox-wrap {
  margin-top: 43px;
}

main.book .bottom-inputset .btn-sub-asid {
  margin-top: 8px;
  max-width: 100%;
  width: 296px;
}

main.book .tabs-wrapper .salon-list {
  padding: 8px 10px 8px 0px;
}

main.book .mapTooltip {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 20px;
}

main.book .mapTooltip .flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main.book .mapTooltip .flex-wrap h3 {
  font-family: Forum;
  font-size: 18px !important;
  font-weight: 300;
}

main.book .mapTooltip p {
  line-height: 18px;
  margin-top: 8px;
  font-family: 'Jost';
  font-weight: 300;
  color: #98938C;
  font-size: 14px;
}

main.book .mapTooltip .choose {
  position: relative;
  left: 10px;
}

main.book .salon-list {
  max-height: 600px;
  overflow-y: auto;
}

main.book .salon-list .item {
  background: #F7F7F7;
  padding: 22px 25px;
  border-radius: 6px;
  align-items: center;
  border: none;
  display: flex;
  justify-content: space-between;
}

main.book .salon-list .item+.item {
  margin-top: 15px;
}

main.book .salon-list .item h3 {
  font-family: Jost;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: #2C2C2C;
  margin-bottom: 8px;
  margin-top: 4px;
}

main.book .salon-list .item p {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #2C2C2C;
  margin-top: 16px;
  color: #98938C;
}

main.book .salon-list-selected {
  margin-top: 12px;
}

main.book .salon-list-selected .item {
  background: #fff !important;
  box-shadow: 1px 1px 10px #7360351a;
  padding: 22px 25px;
  border-radius: 6px;
  align-items: center;
  border: none;
  display: flex;
  justify-content: space-between;
}

main.book .salon-list-selected .item h3 {
  margin-top: 5px;
  font-weight: 300;
  font-size: 18px;
  color: #2C2C2C;
  font-family: Jost;
  color: #2C2C2C;
}

main.book .salon-list-selected .item p {
  font-weight: 300;
  font-size: 14px;
  color: #98938C;
  line-height: 4px;
  margin-top: 18px;
}

main.book .salon-list-selected .item .btn-change {
  padding: 14px 17px;
  margin-right: 30px;
  margin-top: 13px;
  color: #736035;
}

@media screen and (max-width: 1007px) {
  main.book .block_content_aside-content {
    padding-left: 20px;
  }

  main.book form {
    margin-top: 60px;
  }
}

@media screen and (max-width: 575px) {
  .salon-list-selected .item {
    flex-direction: column;
  }

  main.book .block_content_aside {
    margin-top: 0px;
  }

  #bookForm {
    margin-top: 0px !important;
    padding: 0px 20px 0px 20px;
  }

  main.book .salon-list-selected .item p {
    font-weight: 300;
    font-size: 14px;
    color: #98938C;
    line-height: 20px;
    margin-top: 14px;
  }

  main.book .salon-list .item {
    flex-direction: column;
    align-items: flex-start;
  }

  main.book .salon-list .item .btn-secondary {
    border: none;
    padding: 0;
    margin-top: 10px;
  }

  main.book form {
    margin-top: 10px;
  }

  main.book .mapTooltip {
    flex-direction: column;
    padding: 0;
  }

  main.book .mapTooltip .btn-primary {
    padding: 15px 20px;
    margin-top: 16px;
  }
}

/*# sourceMappingURL=main.css.map */

/* End */


/* Start:/local/components/bitrix/system.auth.authorize/templates/.default/style.css?16661049661425*/
div.bx-auth {max-width:600px; margin-top:16px; margin-bottom:24px;}
div.bx-auth form {padding:0; margin:0;}
div.bx-auth-line {border-bottom:1px solid #E3E3E3; padding-bottom:10px;}
div.bx-auth-title {font-size:140%; border-bottom:solid 2px #E3E3E3; padding-bottom:12px; }
div.bx-auth-note{margin:18px 0px 6px 0px;}
td.bx-auth-label{text-align:right; font-weight:bold;}
table.bx-auth-table{margin-top:8px; }
table.bx-auth-table td {padding:3px;}

div.bx-auth input.bx-auth-input {vertical-align:middle;}
div.bx-auth span.bx-auth-secure {background-color:#FFFAE3; border:1px solid #DEDBC8; padding:2px; display:inline-block; vertical-align:middle;}
div.bx-auth div.bx-auth-secure-icon {background-image:url(/local/components/bitrix/system.auth.authorize/templates/.default/images/sec.png); background-repeat:no-repeat; background-position:center; width:19px; height:18px;}
div.bx-auth div.bx-auth-secure-unlock {background-image:url(/local/components/bitrix/system.auth.authorize/templates/.default/images/sec-unlocked.png);}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.inner-auth-block .resend-code {
    margin-top: 24px !important;
}
.bottom-sheet .personal.mt-100 {
    margin-top: 0;
}
.form-control--input--phone {
    padding: 22px 11px 10px !important;
}
.form-control--input--phone + .form-control--label {
    padding: 8px 11px 22px !important;
    font-size: 12px;
}
.inner-auth-block .form__group.sms-code .form__group-input {
    outline: none;
}
/* End */


/* Start:/local/templates/main/template_styles.css?175085800613802*/
.table-responsive {
    overflow-x: auto;
}

.bx-livechat-body {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjExIiB3aWR0aD0iMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuNSI+PHJlY3QgaGVpZ2h0PSIxLjMiIHJ4PSIuNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDIuNzQyIDIuNjUpIiB3aWR0aD0iNS4yIiB4PSIuMTQyIiB5PSIyIi8+PHJlY3QgaGVpZ2h0PSIxLjMiIHJ4PSIuNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDUuNSA1LjQwOCkiIHdpZHRoPSIxMyIgeD0iLTEiIHk9IjQuNzU4Ii8+PC9nPjwvc3ZnPg==) !important;
    background-color: #fff !important;
}

svg.b24-crm-button-icon {
    height: auto;
    width: auto;
}

.but a {
    border-bottom: 1px solid;
}


.loyal p {
    padding: 16px;
    margin-bottom: 0px !important;
}

.loyal td {
    border: 1px solid #E6E6E6;
    width: 25%;
}

body.is-gray,
body.is-gray .header.is-open,
body.is-gray .header.is-dark,
body.is-gray .mega-menu__window {
    background: #FCFCFC;
}


.bottom-sheet {

}

.popup__subscribe-news {
    padding: 72px 147px;
    background: #FCFCFC;
    box-shadow: 1px 1px 20px rgba(44, 44, 44, 0.05);
    border-radius: 6px;
    overflow: hidden;
    max-width: 614px;
}
.popup__payment-before {
    width: 520px;
    padding: 56px 24px 24px 24px;
    border-radius: 6px;
    overflow: hidden;
    max-width: 520px;
}


.popup__subscribe-news--text {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.33;
}

.header.is-cover .header__actions-favorite {
    color: #FFF;
}

.header:hover .header__actions-favorite,
.header.is-open .header__actions-favorite,
.header.is-dark .header__actions-favorite {
    color: #2C2C2C;
}


@media (max-width: 767.98px) {
    .popup__subscribe-news {
        padding: 0;
    }

    .popup__subscribe-news--text {
        font-size: 16px;
        line-height: 1.25;
    }
    .popup__payment-before {
        padding: 0px;
    }
}


.js-popup-subscribe-form {
    position: relative;
}

.js-popup-subscribe-form--success {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.popup-subscribe-success {
    padding: 50px 20px;
}

.card-img {
    height: 490px;
    position: relative;
}

.card-img img {
    max-width: 410px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.form-control.is-error .checkbox-box:before {
    border-color: #C72A33;
}

@media (max-width: 1303.98px) {
    .card-img {
        height: 400px;
    }
}

@media (max-width: 1007.98px) {
    .card-img {
        height: 490px;
    }

    .card-img img {
        max-width: 400px;
    }
}

@media (max-width: 767.98px) {
    .popup__subscribe-news {
        padding: 0;
    }

    .popup__subscribe-news--text {
        font-size: 16px;
        line-height: 1.25;
    }

    .card-img {
        height: 340px;
    }

    .card-img img {
        max-width: 270px;
    }
}


@media (max-width: 575.98px) {
    .card-img {
        height: 280px;
    }

    .card-img img {
        /*max-width: 230px;*/
    }

    .header__actions-personal,
    .header__actions-search,
    .header__actions-favorite {
        margin-right: 6px;
    }

}

.header__board {
    width: 100%;
    position: sticky;
    top: 0px;
    height: auto;
    z-index: 10;
    background: #A4171F;
    margin-bottom: 60px;

}

.header__board--text {
    align-self: center;
    padding: 10px;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px; /* 133.333% */

}


.header__board--icon {
    color: rgba(255, 255, 255, 0.18);
    font-weight: 700;


}

.header__board__wrapper {
    display: flex;
    justify-content: center;

}

@media (max-width: 1007.98px) {
    .header__board {
        margin-top: 0px;
        margin-bottom: 16px;
    }

    .header__board--text {
        font-size: 16px;
        padding: 0 5px;
    }
}


@media (max-width: 868.98px) {
    .header__board--text {
        font-size: 13px;
        padding: 10px;
        line-height: 15px;
    }

    .header__board--icon {
        height: auto;
    }

    .popup.popup__sub__success {
        border-radius: 6px;
    }
}

@media (max-width: 575.98px) {
    .header__board--text {
        font-size: 12px;

    }

    .header__board {
        margin-top: 0px;
        height: auto;
    }

    .header__board--icon {
        top: 0;
        bottom: 0;
        position: absolute;
        right: 0;

    }
}

.aside.personal-aside ul li.active a {
    text-decoration: none !important;
    border-bottom: 1px solid;
}

.product-item-container {
    width: 100%;
}

img {
    pointer-events: none !important;
}

@media (max-width: 1007.98px) {

    .b24-widget-button-position-bottom-right {
        right: auto !important;
        left: 50px !important;
        bottom: 40px !important;
    }


    .block_cover {
        max-height: 700px;
    }
}

.cookie-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10150 !important;
    background: #1e1e1ee6;
    pointer-events: none;
}

.cookie {
    display: block !important;
    pointer-events: auto;
}

.block_cover-img {
    object-position: center top !important;
}

.block_cover:before {
    background: linear-gradient(180deg, rgba(46, 46, 46, 0.4) 0%, rgba(46, 46, 46, 0.3) 8.03%, rgba(46, 46, 46, 0) 16.39%, rgba(46, 46, 46, 0.3) 88.04%, rgba(46, 46, 46, 0.4) 100%);
}

.b24-widget-button-wrapper {
    z-index: 20 !important;
}

@media (min-width: 1008px) {
    .container.container-mini {
        max-width: 700px;
    }
}

.burger__window-item--adress {
    padding: 16px 12px;
}

.menu-item.burger__window-item--label.address {
    position: absolute;
    display: flex;
}

.burger__window-item--image {
    padding: 0px 12px 0px 0px;
}

@media (max-width: 575.98px) {
    .header__address {
        display: none;

    }
}

@media (max-width: 1023.98px) {
    .popup__cdek {
        width: 320px;
        padding: 56px 12px 24px;
    }
}

@media (min-width: 1024px) {
    .popup__cdek {
        width: 834px;
        padding: 48px 24px 24px;
    }
}

.popup__cdek-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 1024px) {
    .popup__cdek-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 1023.98px) {
    .popup__cdek-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.popup__cdek-img {
    display: block;
}

.popup__cdek-img--wrapper {
    overflow: hidden;
}

@media (max-width: 1023.98px) {
    .popup__cdek .fancybox-close-small.fancybox-button {
        top: 16px;
        right: 10px;
    }
}

@media (min-width: 1024px) {
    .popup__cdek-img--wrapper {
        width: 398px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 398px;
        flex: 0 0 398px;
    }
}

@media (min-width: 1024px) {
    .popup__cdek__content {
        padding: 0 0 0 24px;
    }
}

.popup__cdek__content-text {
    color: #2C2C2C;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 24px;
}

.popup__cdek__content-rules {
    font-size: 14px;
    line-height: 18px;
    color: #98938C;
    font-weight: 300;

    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

@media (max-width: 1023.98px) {
    .popup__cdek-img--wrapper {
        margin-bottom: 15px;
    }

    .popup__cdek__content-text {
        margin-bottom: 15px;
    }

    .popup.popup__sub__success {
        width: auto;
        margin: 0 10%;
    }
}


.b24-widget-button-pulse-animate {
    display: none !important;
}


.js-search {
    width: 100%;
    display: block;
    padding: 10px 10px;
    background: #FFF;
    border-radius: 6px;
    border: 2px solid #EBEBEB;
    line-height: 1;
    color: #272320;
    font-size: 16px;
    font-weight: 400;

    outline: none;

}

.js-search-item.is-hidden {
    display: none !important;
}

.js-search-empty {
    display: none;
}

.js-search-empty.is-show {
    display: block;
}

.js-search-input-wrapper {
    position: relative;
    margin: 12px 0 24px;
}

.js-search-input-icon {
    position: absolute;
    width: 23px;
    height: 23px;
    top: 12px;
    right: 10px;
}

@media (max-width: 1023.98px) {
    .js-search-btn {
        display: none;
    }

    .js-search {
        display: block;
        width: calc(100% - 10px);
        position: static;
        margin: 5px;
    }

    .js-search-empty {
        font-size: 14px;
    }
}

.thank {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.thank__logo {
    width: 156px;
    margin: 0 auto;
}

.thank__img {

}

.thank__content {
    text-align: center;
}

.popup.popup__sub__success {
    padding: 51px 24px 72px 24px;
    max-width: 614px;
}

.popup__sub__success__content-title {
    margin-top: 24px;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    font-family: Forum;
    line-height: 32px;
}

.popup__sub__success__content-text {
    margin-top: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

.popup.popup__sub__success .fancybox-button.fancybox-close-small {
}

.header-brand {
    /*max-width: 211px;*/
}

@media (max-width: 575.98px) {
    .b24-widget-button-position-bottom-right {
        left: 10px !important;
        bottom: 10px !important;
    }

    .popup.popup__sub__success {
        width: 320px;
        margin: 0;
        padding: 46px 12px 61px 12px;
    }

    .popup__sub__success__content-title {
    }

    .popup__sub__success__content-text {
        font-size: 16px;
        line-height: 20px; /* 125% */
    }

    .popup.popup__sub__success .fancybox-button.fancybox-close-small {
        right: 12px;
    }

    .header-brand {
        /*max-width: 110px;*/
    }
}


.arrow {
    background: transparent
}


.loyalty__hint {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #27232080;
    z-index: 100000;
}

.loyalty__hint.is-hidden {
    display: none;
}

.loyalty__hint-content--wrapper {
    width: 262px;
    position: absolute;
}

.loyalty__hint-content--wrapper:after {
    content: '';
    border: 1px dashed #EFEDED;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    position: absolute;
}

.loyalty__hint-content {
    color: #000;
    background: #EFEDED;
    padding: 16px;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    position: relative;
    z-index: 1;
}

.loyalty__hint-content--arrow {
    width: 34px;
    height: 67px;
    right: -54px;
    top: -20px;
    position: absolute;
}

@media (max-width: 1023.98px) {
    .loyalty__hint-content--wrapper {
        width: 249px;
    }

    .loyalty__hint-content--arrow {
        top: -40px;
        right: 69px;
    }
}

.slick-dots {
    /*display: none !important;*/
}

@media (min-width: 768px) {
    .progress-wrapper {
        display: block;
    }
}

div.popup__subscribe-news {
    max-width: 625px;
}

textarea {
    resize: none;
}

.popup__payment-before .fancybox-button.fancybox-close-small{
    right: 9px;
    top: 2px;
}
.survey{
    font-size: 14px;
    font-weight: 300;
}
.survey__epilogue{
    color: #98938C;
    font-size: 12px;
    font-weight: 300;
}
.form-sf-wrapper{
    padding: 24px;
    border-radius: 4px;
    background:  #FCFCFC;
}

.survey--question{
    font-size: 18px;
    font-weight: 300;
}
.survey--text{
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
}
.form-sf-wrapper .checkbox{
    margin-bottom: 6px;
}
.form-control--input.form-control--input--SF{
    /*height: 99px;*/
    /*padding: 10px 11px 9px;*/
}
@media (max-width: 768px) {
    .survey--text{
        font-size: 14px;

    }
}

.block_cover--custom {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.block_cover--custom--img {
    float: left;
    height: 100%;
    min-height: 1px;
    width: 100%; /* Добавлено для ширины блока */
}

.block_cover--custom--img img {
    width: 100%; /* Установлено на 100% */
    height: auto; /* Поддержка пропорций */
    object-fit: cover; /* Обеспечивает заполнение блока, сохраняя пропорции */
}

.block_cover--custom-btn--wrapper {
    text-align: -webkit-center;
    position: absolute;
    width: 100%;
    bottom: 50px;
    justify-items: center;
    justify-content: center;
    display: flex;

}
.card__promotion {
    text-align: center;
    max-width: 120px;
    background: #736035;
    padding: 2px 10px;
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;

}
.card__content-tag {
    margin-right: 12px;
}
@media (max-width: 768px) {

   .block_cover--custom-btn--wrapper{
       bottom: 20px;
   }
}

.block_products_slider__slider-item .card-img {
    height: 525px;
    position: relative;
}
.block_products_slider__slider-item .product-item-container {
    max-width: 350px;
    margin: 0 auto;
}
.block_products_slider__slider-item .card-img img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: none;
}

@media (min-width: 1008px) and (max-width: 1303.98px) {
    .block_products_slider__slider-item .card-img {
        height: 412px;
    }
}
@media (max-width: 1007.98px) {
    .block_products_slider__slider-item .card-img {
        height: 375px;
    }
    .b24-widget-button-wrapper {
        left: 6px !important;
    }
}
.bx-livechat-position-bottom-right{
    right: unset !important;
    left: 56px;
}
/* End */
/* /local/templates/main/css/main.css?1750857297345473 */
/* /local/components/bitrix/system.auth.authorize/templates/.default/style.css?16661049661425 */
/* /local/templates/main/template_styles.css?175085800613802 */
