

/* Start:/local/include/assets/css-v4/main.css?1729509069565385*/
/**
 * adds resets for buttons that are not covered by reset-and-normalize base
 */
[role="button"],
input[type="button"],
input[type="reset"],
input[type="submit"],
button {
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  color: inherit;
  text-align: inherit;
  background: none;
  appearance: button;
  user-select: none; }
  [role="button"]:not(:disabled),
  input[type="button"]:not(:disabled),
  input[type="reset"]:not(:disabled),
  input[type="submit"]:not(:disabled),
  button:not(:disabled) {
    cursor: pointer; }
  [role="button"]:-moz-focusring,
  input[type="button"]:-moz-focusring,
  input[type="reset"]:-moz-focusring,
  input[type="submit"]:-moz-focusring,
  button:-moz-focusring {
    outline: none; }
  [role="button"]:focus,
  input[type="button"]:focus,
  input[type="reset"]:focus,
  input[type="submit"]:focus,
  button:focus {
    outline: none; }

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */
a {
  color: inherit;
  text-decoration: none; }
  a:-moz-focusring {
    outline: none; }
  a:focus {
    outline: none; }

/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Reboot from Bootstrap 4.5.3
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name="viewport">` in some cases
 */
@-ms-viewport {
  width: device-width; }

/**
 * general reset
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/**
 * HTML5 display-role reset for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main, summary {
  display: block; }

/**
 * inherit box model for all elements
 */
*,
*::before,
*::after {
  box-sizing: inherit; }

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */
html {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/**
 * body rules
 * 1. reset line-height to 1
 * 2. set base font-family to sans-serif
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */
body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  text-align: left; }

/**
 * Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
 * on elements that programmatically receive focus but wouldn't normally show a visible
 * focus outline. In general, this would mean that the outline is only applied if the
 * interaction that led to the element receiving programmatic focus was a keyboard interaction,
 * or the browser has somehow determined that the user is primarily a keyboard user and/or
 * wants focus outlines to always be presented.
 *
 * See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
 * and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
 */
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important; }

/**
 * Lists
 */
ol, ul {
  list-style: none; }

/**
 * Quotes
 */
blockquote, q {
  quotes: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none; }

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

caption {
  caption-side: bottom; }

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 * 2. Fix alignment for Safari
 */
th {
  /* 1 */
  text-align: inherit;
  /* 2 */
  text-align: -webkit-match-parent; }

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

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace; }

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar; }

/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects; }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */
abbr[title] {
  /* 1 */
  border-bottom: 0;
  /* 2 */
  text-decoration: underline;
  text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  text-decoration-skip-ink: none; }

address {
  font-style: normal;
  line-height: inherit; }

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

/**
 * 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 {
  position: relative;
  font-size: 75%;
  line-height: 0; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/**
 * Prevent `em` being affected from global reset
 */
em {
  font-style: italic; }

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

/**
 * Hide SVG overflow in IE
 */
svg:not(:root) {
  overflow: hidden; }

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */
button {
  border-radius: 0; }

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */
button:focus {
  outline: none; }

/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */
input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="reset"],
[type="submit"],
[type="button"] {
  /* 2 */
  -webkit-appearance: button; }

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox; }

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  overflow: auto;
  resize: vertical; }

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

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

/**
 * Set the cursor for non-`<button>` buttons
 * Details at https://github.com/twbs/bootstrap/pull/30562
 */
[role="button"] {
  cursor: pointer; }

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */
select {
  word-wrap: normal; }

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

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

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */
[tabindex="-1"]:focus {
  outline: 0 !important; }

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
fieldset {
  min-width: 0; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */
legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block; }

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

/**
 * 1. Remove the default vertical scrollbar in IE 10+.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical; }

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

/**
 * 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"] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px; }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[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 {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit; }

/**
 * Correct element display for output
 */
output {
  display: inline-block; }

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

/**
 * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 * Needed for proper display in IE 10-.
 */
[hidden] {
  display: none; }

@font-face {
  font-display: swap;
  font-family: 'Inter';
  src: local("Inter Light BETA"), local("Inter-LightBETA"), url("/local/include/assets/css-v4/../fonts/inter/Inter-LightBETA.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/inter/Inter-LightBETA.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/inter/Inter-LightBETA.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Inter';
  src: local("Inter Italic"), local("Inter-Italic"), url("/local/include/assets/css-v4/../fonts/inter/Interitalic.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/inter/Interitalic.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/inter/Interitalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-display: swap;
  font-family: 'Inter';
  src: local("Inter Regular"), local("Inter-Regular"), url("/local/include/assets/css-v4/../fonts/inter/Interregular.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/inter/Interregular.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/inter/Interregular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Inter';
  src: local("Inter Medium"), local("Inter-Medium"), url("/local/include/assets/css-v4/../fonts/inter/Intermedium.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/inter/Intermedium.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/inter/Intermedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Inter';
  src: local("Inter Semi Bold"), local("Inter-SemiBold"), url("/local/include/assets/css-v4/../fonts/inter/Intersemibold.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/inter/Intersemibold.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/inter/Intersemibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Inter';
  src: local("Inter Bold"), local("Inter-Bold"), url("/local/include/assets/css-v4/../fonts/inter/Interbold.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/inter/Interbold.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/inter/Interbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Lora';
  src: url("/local/include/assets/css-v4/../fonts/lora/Lora-Regular.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Regular.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Lora';
  src: url("/local/include/assets/css-v4/../fonts/lora/Lora-Italic.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Italic.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-display: swap;
  font-family: 'Lora';
  src: url("/local/include/assets/css-v4/../fonts/lora/Lora-Medium.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Medium.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Lora';
  src: url("/local/include/assets/css-v4/../fonts/lora/Lora-SemiBold.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/lora/Lora-SemiBold.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/lora/Lora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-display: swap;
  font-family: 'Lora';
  src: url("/local/include/assets/css-v4/../fonts/lora/Lora-Bold.woff2") format("woff2"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Bold.woff") format("woff"), url("/local/include/assets/css-v4/../fonts/lora/Lora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

html {
  box-sizing: border-box;
  height: 100%;
  -ms-overflow-style: scrollbar; }

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

html,
body {
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; }

body {
  min-height: 100%;
  width: 100%;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #091922;
  line-height: 1.4;
  font-size: 1rem;
  background-color: #F3F3F3;
  position: relative; }

hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

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

button {
  background: none;
  border: none;
  padding: 0;
  outline: none; }

fieldset {
  margin: 0;
  padding: 0;
  border: none; }

[tabindex="-1"]:focus {
  outline: none !important; }

.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table; }

.clearfix:after {
  clear: both; }

.fix-opacity {
  opacity: 0; }

.d-none {
  display: none; }

.no-scroll {
  overflow: hidden; }

@media (max-width: 767.98px) {
  .no-scroll-mob {
    overflow: hidden; } }

@media (max-width: 575.98px) {
  .d-s-max-none {
    display: none !important; } }

@media (max-width: 767.98px) {
  .d-m-max-none {
    display: none !important; } }

.d-md-max-none {
  display: none; }
  @media (min-width: 768px) {
    .d-md-max-none {
      display: block; } }

.d-lg-max-none {
  display: none; }
  @media (min-width: 992px) {
    .d-lg-max-none {
      display: block; } }

.container {
  width: 100%;
  max-width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 992px) {
    .container {
      padding-right: 30px;
      padding-left: 30px; } }
  @media (min-width: 1260px) {
    .container {
      max-width: 1440px; } }

.d-flex-wrap {
  display: flex;
  flex-wrap: wrap; }
  .d-flex-wrap > div {
    flex: 0 1 auto; }

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

.a-desktop {
  display: none; }
  @media (min-width: 768px) {
    .a-desktop {
      display: block; } }

.hidden {
  display: none; }

html {
  font-size: 16px; }

h1 {
  font-size: 1.5rem; }
  @media (min-width: 768px) {
    h1 {
      font-size: 1.75rem; } }
  @media (min-width: 992px) {
    h1 {
      font-size: 2rem; } }

h2 {
  font-size: 1.375rem; }
  @media (min-width: 768px) {
    h2 {
      font-size: 1.5rem; } }
  @media (min-width: 992px) {
    h2 {
      font-size: 1.75rem; } }

h3 {
  font-size: 1.25rem; }
  @media (min-width: 768px) {
    h3 {
      font-size: 1.375rem; } }
  @media (min-width: 992px) {
    h3 {
      font-size: 1.5rem; } }

h4 {
  font-size: 1.125rem; }
  @media (min-width: 992px) {
    h4 {
      font-size: 1.25rem; } }

h5 {
  font-size: 1.0625rem; }

h6 {
  font-size: 0.9375rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
  font-weight: 500;
  color: #1A3853;
  margin: 0 0 .8em;
  line-height: 1.3; }

b,
strong {
  font-weight: 700;
  color: #091922; }

p {
  font-weight: 400;
  margin-top: 0; }

b {
  font-weight: 500; }

a {
  transition-duration: .2s;
  color: #da5128;
  text-decoration: none; }
  a:active, a:hover {
    outline-width: 0;
    color: #E76642; }

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  text-decoration: none; }

a:not([href]):not([tabindex]):focus {
  outline: 0; }

[role="button"] {
  cursor: pointer; }

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

ol,
ul,
dl {
  list-style: none;
  margin: 0;
  padding: 0; }

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

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

.f-medium {
  font-weight: 500; }

.f-bold {
  font-weight: 700; }

.link-border span {
  color: #da5128;
  font-size: 1rem;
  border-bottom: 1px dashed #da5128; }
  .link-border span:hover {
    border-bottom-color: transparent; }

.headline {
  line-height: 1.3; }
  .headline span {
    display: inline-block;
    font-weight: 500;
    color: #091922;
    position: relative; }
  .headline-big {
    margin-bottom: 30px; }
    @media (min-width: 576px) {
      .headline-big {
        margin-bottom: 40px; } }
    @media (min-width: 768px) {
      .headline-big {
        margin-bottom: 50px; } }
    .headline-big span {
      font-size: 1.5rem;
      text-transform: uppercase; }
      @media (min-width: 425px) {
        .headline-big span {
          font-size: 2rem; } }
      @media (min-width: 768px) {
        .headline-big span {
          font-size: 2.25rem; } }
      @media (min-width: 992px) {
        .headline-big span {
          font-size: 2.5rem; } }
  .headline-medium {
    margin-bottom: 25px; }
    @media (min-width: 576px) {
      .headline-medium {
        margin-bottom: 30px; } }
    @media (min-width: 768px) {
      .headline-medium {
        margin-bottom: 35px; } }
    .headline-medium span {
      font-size: 1.375rem; }
      @media (min-width: 425px) {
        .headline-medium span {
          font-size: 1.5rem; } }
      @media (min-width: 768px) {
        .headline-medium span {
          font-size: 1.75rem; } }
  .headline-small {
    margin-bottom: 20px; }
    @media (min-width: 576px) {
      .headline-small {
        margin-bottom: 25px; } }
    .headline-small span {
      font-size: 1.25rem; }
      @media (min-width: 768px) {
        .headline-small span {
          font-size: 1.5rem; } }
      .headline-small span:before, .headline-small span:after {
        width: 50px !important;
        height: 12px !important;
        background-size: contain !important;
        margin-bottom: 5px !important; }
      @media (min-width: 768px) {
        .headline-small span:before {
          left: -65px !important; } }
      @media (min-width: 768px) {
        .headline-small span:after {
          right: -65px !important; } }
  .headline-center {
    text-align: center; }
    .headline-center span:before, .headline-center span:after {
      content: '';
      width: 60px;
      height: 13px;
      background-size: contain; }
      @media (min-width: 992px) {
        .headline-center span:before, .headline-center span:after {
          position: absolute;
          top: 50%;
          transform: translateY(-50%); } }
    .headline-center span:before {
      background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg") center no-repeat;
      display: block;
      margin: 0 auto 10px; }
      @media (min-width: 992px) {
        .headline-center span:before {
          margin: 0;
          left: -85px; } }
    .headline-center span:after {
      background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-right.svg") center no-repeat;
      right: -85px; }
      @media (max-width: 767.98px) {
        .headline-center span:after {
          display: none; } }
  .headline-left span:before {
    content: '';
    display: block;
    margin-bottom: 6px;
    width: 60px;
    height: 13px;
    background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg") center no-repeat;
    background-size: contain; }

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

.mfp-zoom {
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 0;
    padding-right: 0; } }

.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0; }

.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

.selectric-wrapper {
  position: relative;
  cursor: pointer; }

.selectric-responsive {
  width: 100%; }

.selectric {
  border: 1px solid #7D96A4;
  border-radius: 2px;
  background: #fff;
  position: relative;
  overflow: hidden; }
  .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 46px 0 15px;
    font-size: 0.8125rem;
    line-height: 46px;
    color: #485059;
    height: 46px;
    user-select: none; }
  .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    background-color: transparent;
    color: #E76642; }

.selectric-focus .selectric {
  border-color: #4d626e; }

.selectric-hover .selectric {
  border-color: #627d8c; }
  .selectric-hover .selectric .button {
    color: #da451c; }
    .selectric-hover .selectric .button:after {
      border-top-color: #da451c; }

.selectric-open {
  z-index: 9999; }
  .selectric-open .selectric {
    border-color: #627d8c; }
  .selectric-open .selectric-items {
    display: block; }

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  user-select: none; }

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }
  .selectric-hide-select select {
    position: absolute;
    left: -100%; }
  .selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10; }
    .selectric-hide-select.selectric-is-native select {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      border: none;
      z-index: 1;
      box-sizing: border-box;
      opacity: 0; }

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font-size: 0 !important;
  background: none !important; }

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #F3F3F3;
  z-index: -1;
  box-shadow: 0 0 10px -6px rgba(9, 25, 34, 0.1); }
  .selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto; }
  .selectric-above .selectric-items {
    top: auto;
    bottom: 100%; }
  .selectric-items ul, .selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 20px;
    min-height: 20px; }
  .selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer; }
    .selectric-items li.selected {
      background: #E0E0E0;
      color: #444; }
    .selectric-items li.highlighted {
      background: #D0D0D0;
      color: #444; }
    .selectric-items li:hover {
      background: #D5D5D5;
      color: #444; }
  .selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    user-select: none; }
  .selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    user-select: none;
    background: none;
    color: #444; }
  .selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1; }
  .selectric-items .selectric-group li {
    padding-left: 25px; }

#checkout-tabs.simple_tabs .tabs_buttons {
  margin: 0;
  padding: 0;
  list-style: none; }

#checkout-tabs.simple_tabs .tabs_buttons .tab_button_wrapper {
  margin: 0;
  padding: 0;
  list-style: none; }

#checkout-tabs.simple_tabs .tabs_contents > div {
  display: none; }

#checkout-tabs.simple_tabs .tabs_contents > div.active {
  display: block; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  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; }

.tooltipster-base {
  display: flex;
  pointer-events: none;
  position: absolute;
  font-size: 0.875rem; }

.tooltipster-box {
  flex: 1 1 auto; }

.tooltipster-content {
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto; }

.tooltipster-ruler {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden; }

.tooltipster-fade {
  opacity: 0;
  transition-property: opacity; }

.tooltipster-fade.tooltipster-show {
  opacity: 1; }

@keyframes tooltipster-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.tooltipster-update-fade {
  animation: tooltipster-fading 400ms; }

.tooltipster-sidetip .tooltipster-box {
  background: #485059;
  border-radius: 3px; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px; }

.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
  text-align: center; }

.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  margin-left: -10px;
  top: 0;
  width: 20px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px; }

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0; }

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #485059;
  left: 0;
  top: 3px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #485059;
  left: -3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #485059;
  left: 3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #485059;
  left: 0;
  top: -3px; }

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #485059; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #485059; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #485059; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #485059; }

.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px; }

.tooltipster-sidetip.tooltipster-noir .tooltipster-box {
  border-radius: 0;
  border: none;
  background: #fff;
  padding: 0;
  box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05); }
  .tooltipster-sidetip.tooltipster-noir .tooltipster-box img {
    object-fit: contain;
    width: 100px;
    height: 80px; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #fff; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #fff; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #fff; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #fff; }

.tooltipster-sidetip.tooltipster-noir .tooltipster-content {
  color: #485059; }

.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow {
  height: 11px;
  margin-left: -11px;
  width: 22px; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow {
  height: 22px;
  margin-left: 0;
  margin-top: -11px;
  width: 11px; }

.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow-background {
  border: 11px solid transparent; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #fff;
  top: 4px; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #fff;
  left: -4px; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #fff;
  left: 4px; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #fff;
  top: -4px; }

.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow-border {
  border-width: 11px; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -11px; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow-uncropped {
  left: -11px; }

.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  box-shadow: 0 0 2px #FF0F00;
  padding: 4px 10px 4px 10px;
  border-radius: 2px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  border: none;
  border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  margin: 0 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #FF0F00;
  height: 1px;
  background: #FF0F00;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

.wrunner__division_theme_default.wrunner__division_direction_horizontal {
  height: 0.5rem;
  width: 0.1rem; }

.wrunner__division_theme_default.wrunner__division_direction_vertical {
  height: 0.1rem;
  width: 0.5rem; }

.wrunner__division_theme_default.wrunner__division {
  display: none; }

.wrunner__divisions_theme_default.wrunner__divisions_direction_horizontal {
  top: 3.5rem;
  width: 100%;
  justify-content: space-between; }

.wrunner__divisions_theme_default.wrunner__divisions_direction_vertical {
  height: 100%;
  width: 0.5rem;
  left: 0;
  justify-content: space-between;
  flex-direction: column; }

.wrunner__divisions_theme_default.wrunner__divisions {
  position: absolute;
  display: flex; }

.wrunner__handle_theme_default.wrunner__handle_direction_horizontal {
  margin-top: -0.35rem;
  margin-left: 0; }

.wrunner__handle_theme_default.wrunner__handle_direction_vertical {
  margin-top: -0.6rem;
  margin-left: -0.4rem; }

.wrunner__handle_theme_default.wrunner__handle {
  position: absolute;
  height: 18px;
  width: 6px;
  border-radius: 2px;
  background-color: #E76642;
  transition-duration: 0.2s;
  transition-property: transform, background-color, border-radius;
  cursor: pointer;
  z-index: 1; }

.wrunner__handle_theme_default.wrunner__handle:hover {
  transform: scale(1.1);
  background-color: #da5128; }

.wrunner__handle_theme_default.wrunner__handle:active {
  transform: scale(0.9);
  border-radius: 50%;
  background-color: #E76642; }

.wrunner__outer_theme_default.wrunner__outer_direction_horizontal {
  height: 23px;
  width: 100%; }

.wrunner__outer_theme_default.wrunner__outer {
  position: relative;
  padding-top: 0.1px; }

.wrunner__path_theme_default.wrunner__path_direction_horizontal {
  height: 6px;
  width: 100%;
  top: 15px; }

.wrunner__path_theme_default.wrunner__path_direction_vertical {
  height: 100%;
  width: 0.5rem;
  left: 1.2rem; }

.wrunner__path_theme_default.wrunner__path {
  position: absolute;
  background-color: #F3F3F3;
  border-radius: 0.25rem;
  cursor: pointer; }

.wrunner__pathPassed_theme_default.wrunner__pathPassed_direction_horizontal {
  height: 100%; }

.wrunner__pathPassed_theme_default.wrunner__pathPassed_direction_vertical {
  width: 100%;
  bottom: 0; }

.wrunner__pathPassed_theme_default.wrunner__pathPassed {
  position: absolute;
  background-color: #E76642; }

.wrunner__valueNote_theme_default.wrunner__valueNote_direction_horizontal {
  top: -20px;
  min-width: 1.5rem; }

.wrunner__valueNote_theme_default.wrunner__valueNote_display_hidden {
  display: none; }

.wrunner__valueNote_theme_default.wrunner__valueNote_display_visible {
  display: block; }

.wrunner__valueNote_theme_default.wrunner__valueNote {
  position: absolute;
  padding: 0.35rem;
  text-align: center;
  color: #091922;
  font-size: 0.75rem;
  cursor: default;
  display: block; }

.wrunner_theme_default.wrunner_direction_horizontal {
  width: 100%;
  padding-right: 0.625rem;
  box-sizing: border-box; }

.bg-main {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }

.bg-main-small {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }

.w-100 {
  width: 100%; }

.radio-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .radio-group > label:not(:last-child) {
    margin-bottom: 10px; }

.grid-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .grid-4-col {
    width: 100%; }
    @media (min-width: 425px) {
      .grid-4-col {
        width: calc(50% - 5px); } }
    @media (min-width: 768px) {
      .grid-4-col {
        width: calc(33.3333% - 7px); } }
    @media (min-width: 992px) {
      .grid-4-col {
        width: calc(25% - 8px); } }

.ico-inform {
  padding-left: 25px;
  position: relative; }
  .ico-inform .icon {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 0.9375rem;
    color: #9FB0BA; }
    .ico-inform .icon.icon-dish {
      top: 2px; }
    .ico-inform .icon.icon-glass {
      top: 4px;
      left: 3px; }
  .ico-inform span {
    font-size: 0.8125rem;
    color: #50667E; }
    .ico-inform span + span {
      color: #091922;
      margin-left: 5px; }

.pad-small {
  padding: 15px; }

.pad-medium {
  padding: 30px; }

.pad-big {
  padding: 30px; }
  @media (min-width: 992px) {
    .pad-big {
      padding: 50px; } }

.section-padding {
  padding: 15px; }
  @media (min-width: 768px) {
    .section-padding {
      padding: 30px; } }

body.overlay-color, body.overlay-side, body.overlay-side-2 {
  overflow: hidden; }
  body.overlay-color:after, body.overlay-side:after, body.overlay-side-2:after {
    content: '';
    position: absolute;
    background-color: rgba(26, 56, 83, 0.6);
    z-index: 99;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  body.overlay-color .header-offer, body.overlay-side .header-offer, body.overlay-side-2 .header-offer {
    z-index: 98; }

.distance-left {
  padding: 10px;
  width: 100%;
  background-color: #da5128; }

.link-icon {
  display: inline-flex;
  align-items: center; }
  .link-icon span {
    transition-duration: .2s; }
    .link-icon span:first-child {
      color: #da5128;
      font-size: 0.9375rem;
      font-weight: 500;
      border-bottom: 1px dashed #da5128;
      white-space: nowrap; }
    .link-icon span:nth-child(2) {
      display: block;
      width: 36px;
      height: 36px;
      margin-left: 20px;
      background-color: #E76642;
      border-radius: 50%;
      position: relative; }
      .link-icon span:nth-child(2) > .icon {
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .link-icon span:nth-child(2) > .icon.icon-arrow-long-right {
          font-size: 20px; }
  .link-icon:hover span:first-child {
    color: #da5128;
    border-color: transparent; }
  .link-icon:hover span:nth-child(2) {
    background-color: #da5128; }

.link-icon-circle {
  display: inline-flex;
  align-items: center; }
  .link-icon-circle-wrap {
    flex: 0 1 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative; }
    .link-icon-circle-wrap > .icon {
      color: #fff;
      font-size: 1rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .link-icon-circle-item {
    flex: 0 1 auto;
    width: calc(100% - 40px);
    padding-left: 15px;
    text-align: left; }

a.link-icon-circle span,
button.link-icon-circle span {
  font-weight: 500;
  color: #1A3853;
  border-bottom: 1px dashed #1A3853;
  transition-duration: .2s; }

a.link-icon-circle:hover .link-icon-circle-item span,
button.link-icon-circle:hover .link-icon-circle-item span {
  border-bottom-color: transparent; }

@media (max-width: 767.98px) {
  .chide-toggle {
    overflow: hidden;
    height: 140px;
    position: relative; }
    .chide-toggle:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 25px;
      background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.805782) 38%, rgba(255, 255, 255, 0.606902) 80%); } }

@media (min-width: 768px) {
  .chide-read {
    display: none; } }

@media (max-width: 767.98px) {
  .chide-read {
    display: block;
    margin-top: 15px; }
    .chide-read:after {
      content: '\e92a';
      font-family: "icomoon" !important;
      font-size: 8px;
      margin-left: 5px;
      color: #0d687e;
      display: inline-block;
      transform: rotate(180deg); }
    .chide-read span {
      color: #0d687e;
      font-size: 0.9375rem;
      border-bottom: 1px dotted #0d687e;
      transition-duration: .2s; }
      .chide-read span:before {
        content: attr(data-hide); }
    .chide-read:hover span {
      border-bottom-color: transparent; } }

.chide-toggle + .chide-read:after {
  transform: rotate(0deg); }

.chide-toggle + .chide-read span:before {
  content: attr(data-read); }

.dash-separate {
  width: 100%;
  margin: 20px 0;
  border-bottom: 2px dashed #F1F3F8; }

.tooltip-css {
  position: static !important; }
  .tooltip-css:before {
    content: attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #E76642;
    color: #fff;
    border-radius: 2px;
    font-size: 0.875rem;
    text-align: center;
    padding: 8px;
    box-shadow: 0 0 14px 6px rgba(80, 102, 126, 0.1);
    display: none; }
  .tooltip-css:after {
    content: '';
    position: absolute;
    bottom: calc(100% - 7px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #E76642 transparent transparent transparent;
    display: none; }
  .tooltip-css:hover:before, .tooltip-css:hover:after {
    display: block; }

.survey {
  padding: 0 20px 20px; }
  @media (min-width: 992px) {
    .survey {
      padding: 10px 40px 40px; } }
  .survey textarea {
    margin-top: 15px; }

.mobile-sort {
  background-color: #fff;
  padding: 15px; }
  @media (min-width: 576px) {
    .mobile-sort {
      display: none; } }
  .mobile-sort-title {
    margin-bottom: 8px; }
    .mobile-sort-title span {
      font-size: 0.8125rem;
      color: #717C89; }

.bb-grey {
  border-bottom: 1px solid #EBEBEB; }

.show-more {
  padding: 20px; }

.show-more-small {
  padding: 10px; }
  .show-more-small .btn .icon-refresh {
    transition-duration: .3s;
    font-size: 1.25rem !important; }
  .show-more-small .btn:hover .icon-refresh {
    rotate: 360deg; }

.print-visible {
  display: none; }

.float-right {
  float: right;
  margin: 0 0 5px 15px; }

.float-left {
  float: left;
  margin: 0 15px 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1 !important;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  text-decoration: none !important;
  box-sizing: border-box;
  max-width: 100% !important;
  transition-duration: .2s;
  border-radius: 3px; }
  .btn span,
  .btn .icon {
    transition-duration: .2s;
    color: #fff; }
  .btn:hover {
    cursor: pointer; }
  .btn:disabled {
    pointer-events: none !important;
    background-color: #F1F0EF !important; }
    .btn:disabled span {
      color: #7D96A4 !important; }
    .btn:disabled .icon {
      color: #B7B4B3 !important; }
  .btn.loading span,
  .btn.loading .icon {
    opacity: 0; }
  .btn.loading:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    height: 16px;
    width: 16px;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    animation: spin 1s infinite linear;
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .btn-thin {
    height: 32px;
    padding: 0 16px;
    border-radius: 2px;
    gap: 6px; }
    .btn-thin-round {
      border-radius: 16px; }
    .btn-thin span {
      font-size: 0.75rem; }
    .btn-thin .icon {
      font-size: 0.875rem; }
  .btn-small {
    height: 42px;
    padding: 0 25px; }
    .btn-small span,
    .btn-small .icon {
      font-size: 0.8125rem; }
    .btn-small span + .icon,
    .btn-small .icon + span {
      margin-left: 10px; }
  .btn-medium {
    height: 42px;
    padding: 0 25px; }
    @media (min-width: 768px) {
      .btn-medium {
        height: 48px;
        padding: 0 30px; } }
    .btn-medium span,
    .btn-medium .icon {
      font-size: 0.875rem; }
    .btn-medium span + .icon,
    .btn-medium .icon + span {
      margin-left: 15px; }
  .btn-big {
    height: 48px;
    padding: 0 30px; }
    @media (min-width: 768px) {
      .btn-big {
        height: 56px;
        padding: 0 35px; } }
    .btn-big span,
    .btn-big .icon {
      font-size: 0.9375rem; }
    .btn-big span + .icon,
    .btn-big .icon + span {
      margin-left: 20px; }
  .btn-dark {
    background-color: #1A3853; }
    .btn-dark:hover {
      background-color: #091922; }
  .btn-bright {
    background-color: #E76642; }
    .btn-bright:hover {
      background-color: #da5128; }
  .btn-theme {
    background-color: #50667E; }
    .btn-theme:hover {
      background-color: #1A3853; }
  .btn-green {
    background-color: #009432; }
    .btn-green:hover {
      background-color: #006722; }
  .btn-cayan {
    background-color: #1289A7; }
    .btn-cayan:hover {
      background-color: #0d687e; }
  .btn-grey {
    background-color: #7D96A4; }
    .btn-grey:hover {
      background-color: #50667E; }

.btn-icon.btn-small {
  padding: 0 12px; }

.btn-icon.btn-medium {
  padding: 0 20px; }

.btn-icon.btn-big {
  padding: 0 25px; }

.btn-to-top {
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 9;
  opacity: 0; }
  @media (min-width: 992px) {
    .btn-to-top {
      bottom: 80px; } }
  .btn-to-top > .icon {
    display: block;
    transform: rotate(180deg); }
  .btn-to-top.show {
    opacity: .7; }
    @media (min-width: 768px) {
      .btn-to-top.show {
        opacity: .5; }
        .btn-to-top.show:hover {
          opacity: 1; } }

.btn-border span {
  border-bottom: 1px dashed;
  font-size: 0.9375rem; }

.btn-border:hover span {
  border-bottom-color: transparent !important; }

.btn-border-dark span {
  color: #1A3853;
  border-bottom-color: #1A3853; }

.btn-border-dark:hover span {
  color: #da5128; }

.btn-rounds {
  width: 32px;
  height: 32px;
  border-radius: 16px; }
  .btn-rounds > .icon {
    font-size: 0.9375rem; }
    .btn-rounds > .icon.icon-trash {
      font-size: 1rem; }

.btn-icon-simple {
  display: flex;
  align-items: center;
  gap: 10px; }
  .btn-icon-simple .icon {
    font-size: 1.125rem;
    transition-duration: .2s; }
  .btn-icon-simple span {
    font-size: 0.9375rem;
    border-bottom: 1px dotted;
    transition-duration: .2s; }
  .btn-icon-simple:hover span {
    border-bottom-color: transparent !important; }
  .btn-icon-simple-red .icon {
    color: #9FB0BA; }
  .btn-icon-simple-red span {
    color: #163450;
    border-color: #7D96A4; }
  .btn-icon-simple-red:hover .icon,
  .btn-icon-simple-red:hover span {
    color: #FF0F00; }

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

.bc-orange {
  background-color: #EE5A24; }

.bc-red {
  background-color: #FF0F00; }

.bc-green {
  background-color: #009432; }

.bc-cayan {
  background-color: #1289A7; }

.bc-theme {
  background-color: #E76642; }

.bc-theme-2 {
  background-color: #50667E; }

.bc-light {
  background-color: #7D96A4; }

.bc-grey-light {
  background-color: #fafafa !important; }

.bc-grey-transparent {
  background-color: rgba(250, 250, 250, 0.5) !important; }

.c-theme {
  color: #50667E !important; }

.c-orange {
  color: #EE5A24 !important; }

.c-red {
  color: #FF0F00 !important; }

.c-green {
  color: #006722 !important; }

.c-cayan {
  color: #0d687e !important; }

.c-black {
  color: #000 !important; }

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

.content {
  line-height: 1.4;
  font-size: 1rem;
  color: #485059; }
  .content p {
    font-size: inherit;
    color: inherit;
    margin-bottom: 15px; }
    .content p:last-child {
      margin-bottom: 0; }
    .content p > a {
      text-decoration: underline; }
      .content p > a:hover {
        text-decoration: none; }
  .content strong {
    font-weight: 500;
    color: #000; }
  .content ul li,
  .content ol li {
    position: relative;
    margin-bottom: 10px;
    margin-left: 30px; }
  .content ul li:before {
    content: '';
    position: absolute;
    top: .5em;
    left: -15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #da5128; }
  .content ol li {
    list-style: decimal; }
    .content ol li::marker {
      font-size: inherit;
      color: #da5128; }

.content ol.nums-big {
  margin: 40px 0 0;
  counter-reset: numsBig; }
  .content ol.nums-big li {
    margin: 0 0 40px 0;
    list-style: none;
    padding-left: 51px;
    position: relative;
    line-height: 1.5; }
    .content ol.nums-big li:before {
      counter-increment: numsBig;
      content: counter(numsBig);
      position: absolute;
      top: -7px;
      left: 0;
      width: 36px;
      height: 36px;
      background-color: #E76642;
      border-radius: 50%;
      text-align: center;
      line-height: 36px;
      color: #fff;
      font-family: "Lora", serif;
      font-size: 1rem; }

.title-decor:before {
  content: '';
  display: block;
  background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg") center no-repeat;
  background-size: contain; }

h1.title-decor:before {
  width: 64px;
  height: 14px;
  margin-bottom: 10px; }

h2.title-decor:before {
  width: 56px;
  height: 13px;
  margin-bottom: 9px; }

h3.title-decor:before {
  width: 48px;
  height: 12px;
  margin-bottom: 8px; }

h4.title-decor:before {
  width: 42px;
  height: 11px;
  margin-bottom: 7px; }

.content dl:not(.accordion) dt:not(.accordion-title) {
  font-weight: 500;
  color: #091922;
  margin: 0 0 5px 30px;
  position: relative; }
  .content dl:not(.accordion) dt:not(.accordion-title) .icon {
    font-weight: normal;
    position: absolute;
    font-size: 1.125rem;
    top: 0;
    left: -30px;
    color: #E76642; }

.content dl:not(.accordion) dd:not(.accordion-item) {
  color: #485059;
  margin: 0 0 15px 30px;
  padding: 0; }

.content dl.list-green dt .icon {
  color: #009432; }

.content dl.list-theme dt .icon {
  color: #50667E; }

.content dl.list-red dt .icon {
  color: #FF0F00; }

.content dl.list-red dt .icon {
  color: #FF0F00; }

.content dl.list-cayan dt .icon {
  color: #1289A7; }

.content dl.list-orange dt .icon {
  color: #EE5A24; }

.content table {
  width: 100%; }
  .content table tr td,
  .content table tr th {
    padding: 12px;
    font-size: 0.9375rem;
    text-align: left; }
    @media (min-width: 768px) {
      .content table tr td,
      .content table tr th {
        padding: 15px; } }
  .content table thead tr td,
  .content table thead tr th {
    font-weight: 500;
    color: #1A3853; }
  .content table tbody tr:hover {
    background-color: #F3F3F3;
    transition-duration: .1s; }
  .content table.table-border tr th,
  .content table.table-border tr td {
    border: 1px solid #e0e0e0; }
  .content table.table-stripe tbody tr:nth-child(odd) {
    background-color: #F3F3F3; }
  .content table.table-stripe tbody tr:hover {
    background-color: #D1D1D1; }
  .content table.table-line tr {
    border-bottom: 1px solid #e0e0e0; }

.table-responsive {
  overflow-x: auto; }

.content .img-left {
  float: left;
  margin: 0 25px 10px 0; }

.content .img-right {
  float: right;
  margin: 0  0 10px 25px; }

.content .img-center {
  margin: 0 auto 10px;
  display: block; }

.contwice {
  padding: 20px; }
  @media (min-width: 576px) {
    .contwice {
      padding: 30px 30px 20px; } }
  @media (min-width: 768px) {
    .contwice-row {
      display: flex; } }
  @media (min-width: 768px) {
    .contwice-text {
      flex: 0 1 auto;
      width: calc(100% - 250px);
      padding-right: 20px; } }
  @media (min-width: 992px) {
    .contwice-text {
      padding-right: 30px;
      width: calc(100% - 420px); } }
  @media (min-width: 1260px) {
    .contwice-text {
      padding-right: 40px;
      width: calc(100% - 520px); } }
  .contwice-img {
    display: none; }
    @media (min-width: 768px) {
      .contwice-img {
        flex: 0 1 auto;
        width: 250px;
        display: flex;
        margin-bottom: 25px;
        position: relative;
        z-index: 1; } }
    @media (min-width: 992px) {
      .contwice-img {
        width: 420px; } }
    @media (min-width: 1260px) {
      .contwice-img {
        width: 520px; } }
    .contwice-img img {
      display: block;
      object-fit: cover; }
      .contwice-img img + img {
        display: none; }
        @media (min-width: 1260px) {
          .contwice-img img + img {
            display: block;
            margin-left: 20px; } }
  .contwice-more {
    position: relative;
    width: 100%;
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: 0 0;
    transform-style: preserve-3d;
    transform: rotateX(-75deg); }
  .contwice-toggle {
    position: relative;
    width: 100%; }
    .contwice-toggle:before {
      content: '';
      position: absolute;
      top: -60px;
      right: 0;
      left: 0;
      height: 60px;
      background: linear-gradient(0deg, #fff 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%); }
    .contwice-toggle-btn {
      position: relative;
      display: inline-flex;
      margin-bottom: 15px; }
      .contwice-toggle-btn:after {
        content: '\e92a';
        font-family: "icomoon" !important;
        font-size: 7px;
        position: absolute;
        top: 8px;
        right: -15px;
        color: #E76642;
        display: inline-block; }
      .contwice-toggle-btn span {
        font-size: 1rem;
        font-weight: 500;
        border-bottom: 1px dashed #E76642;
        color: #E76642;
        transition-duration: .2s; }
        .contwice-toggle-btn span:before {
          content: attr(data-read); }
      .contwice-toggle-btn:hover span {
        border-bottom-color: transparent; }

.contwice-more.open {
  opacity: 1;
  height: auto;
  visibility: visible;
  transform: rotateX(0deg); }
  .contwice-more.open + .contwice-toggle:before {
    display: none; }
  .contwice-more.open + .contwice-toggle .contwice-toggle-btn:after {
    transform: rotate(180deg); }
  .contwice-more.open + .contwice-toggle .contwice-toggle-btn span:before {
    content: attr(data-hide); }

.content-highlight {
  margin: 30px 0;
  padding: 10px 0 10px 30px;
  line-height: 1.5;
  border-left: 2px solid #E76642; }
  .content-highlight p {
    color: #1A3853; }
    .content-highlight p:last-child {
      margin-bottom: 0; }

.content blockquote {
  margin: 25px 0;
  padding: 30px 30px 30px 50px;
  background-color: #fafafa;
  border-radius: 10px;
  position: relative; }
  .content blockquote:before {
    content: '\e995';
    font-family: "icomoon" !important;
    color: #9FB0BA;
    font-size: 1.25rem;
    position: absolute;
    top: 15px;
    left: 15px; }

.inp-counter {
  position: relative; }
  .inp-counter .ch-count-input {
    width: 100%;
    background-color: #F1F3F8;
    border-radius: 3px;
    border-width: 0;
    text-align: center;
    color: #091922;
    padding: 0; }
  .inp-counter .ch-count-minus,
  .inp-counter .ch-count-plus {
    position: absolute;
    background-color: #717C89;
    border-radius: 2px;
    transition-duration: .3s; }
    .inp-counter .ch-count-minus:before,
    .inp-counter .ch-count-plus:before {
      font-family: "icomoon" !important;
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .inp-counter .ch-count-minus:hover,
    .inp-counter .ch-count-plus:hover {
      background-color: #50667E; }
  .inp-counter .ch-count-minus:before {
    content: '\e90e'; }
  .inp-counter .ch-count-plus:before {
    content: '\e90f'; }
  .inp-counter-small {
    width: 90px; }
    .inp-counter-small .ch-count-input {
      height: 32px;
      font-size: 0.8125rem; }
    .inp-counter-small .ch-count-minus,
    .inp-counter-small .ch-count-plus {
      width: 18px;
      height: 18px;
      top: 7px; }
      .inp-counter-small .ch-count-minus:before,
      .inp-counter-small .ch-count-plus:before {
        font-size: 8px; }
    .inp-counter-small .ch-count-minus {
      left: 5px; }
    .inp-counter-small .ch-count-plus {
      right: 5px; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button,
input[type='date']::-webkit-inner-spin-button,
input[type='date']::-webkit-calendar-picker-indicator {
  display: none;
  margin: 0; }

input[type="text"]::-ms-clear,
input[type="text"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

label,
input[type='number'],
input[type='date'] {
  -moz-appearance: textfield !important;
  user-select: none; }

input[type="number"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="number"],
input[type="password"],
input[type='date'],
input:not([type]),
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  padding: 16px 15px;
  border-radius: 2px;
  color: #091922;
  font-size: 0.9375rem; }
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="text"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  input[type='date']:focus,
  input:not([type]):focus,
  select:focus,
  textarea:focus {
    border-color: #717C89;
    outline: none; }
  input[type="number"]::placeholder,
  input[type="search"]::placeholder,
  input[type="email"]::placeholder,
  input[type="tel"]::placeholder,
  input[type="text"]::placeholder,
  input[type="number"]::placeholder,
  input[type="password"]::placeholder,
  input[type='date']::placeholder,
  input:not([type])::placeholder,
  select::placeholder,
  textarea::placeholder {
    color: #717C89;
    font-size: 0.875rem;
    font-weight: 300; }
  input[type="number"]:focus::placeholder,
  input[type="search"]:focus::placeholder,
  input[type="email"]:focus::placeholder,
  input[type="tel"]:focus::placeholder,
  input[type="text"]:focus::placeholder,
  input[type="number"]:focus::placeholder,
  input[type="password"]:focus::placeholder,
  input[type='date']:focus::placeholder,
  input:not([type]):focus::placeholder,
  select:focus::placeholder,
  textarea:focus::placeholder {
    color: transparent; }
  input[type="number"]:disabled,
  input[type="search"]:disabled,
  input[type="email"]:disabled,
  input[type="tel"]:disabled,
  input[type="text"]:disabled,
  input[type="number"]:disabled,
  input[type="password"]:disabled,
  input[type='date']:disabled,
  input:not([type]):disabled,
  select:disabled,
  textarea:disabled {
    background-color: #fff; }

input[type="text"].input-medium,
input[type="date"].input-medium,
input[type="email"].input-medium,
input[type="number"].input-medium {
  padding: 12px 15px;
  font-size: 0.8125rem; }
  input[type="text"].input-medium::placeholder,
  input[type="date"].input-medium::placeholder,
  input[type="email"].input-medium::placeholder,
  input[type="number"].input-medium::placeholder {
    font-size: 0.8125rem; }

input[type="text"].input-small,
input[type="date"].input-small,
input[type="email"].input-small,
input[type="number"].input-small {
  padding: 10px 10px;
  font-size: 0.8125rem; }
  input[type="text"].input-small::placeholder,
  input[type="date"].input-small::placeholder,
  input[type="email"].input-small::placeholder,
  input[type="number"].input-small::placeholder {
    font-size: 0.8125rem; }

input[type="date"]::-webkit-datetime-edit-text, input[type="date"]::-webkit-datetime-edit-year-field, input[type="date"]::-webkit-datetime-edit-month-field, input[type="date"]::-webkit-datetime-edit-day-field {
  color: #3f5267; }

input::-webkit-datetime-edit-text:focus,
input::-webkit-datetime-edit-day-field:focus,
input::-webkit-datetime-edit-month-field:focus,
input::-webkit-datetime-edit-year-field:focus {
  background: #E76642;
  color: #fff; }

label {
  display: inline-block; }

.f-label {
  font-weight: 500;
  font-size: 0.8125rem;
  margin-bottom: 7px;
  display: block;
  color: #1A3853; }
  .f-label.f-req:before {
    content: '*';
    margin-right: 5px;
    color: #E76642; }

.f-description {
  margin: 5px;
  line-height: 1.3; }
  .f-description span {
    font-size: 0.8125rem;
    color: #7D96A4; }

input[type='checkbox']:not(.switch) {
  vertical-align: top;
  margin: 0;
  width: 16px;
  height: 16px; }
  input[type='checkbox']:not(.switch) + span {
    z-index: 1;
    cursor: pointer; }
  input[type='checkbox']:not(.switch):not(checked) {
    position: absolute;
    opacity: 0; }
  input[type='checkbox']:not(.switch):not(checked) + span {
    position: relative;
    padding: 0 0 0 30px;
    display: inline-block;
    font-size: 0.9375rem;
    min-height: 16px; }
    input[type='checkbox']:not(.switch):not(checked) + span span {
      color: #485059; }
  input[type='checkbox']:not(.switch):not(checked) + span:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #7D96A4;
    border-radius: 2px;
    transition-duration: .2s; }
  input[type='checkbox']:not(.switch):not(checked) + span:hover:before {
    border-color: #B7B4B3; }
  input[type='checkbox']:not(.switch):disabled + span {
    cursor: default; }
  input[type='checkbox']:not(.switch):disabled:not(checked) + span span {
    color: #D1D1D1; }
  input[type='checkbox']:not(.switch):disabled:not(checked) + span:before {
    border-color: #D1D1D1 !important; }

input[type='radio']:not(.rate-radio) {
  vertical-align: top;
  margin: 0;
  width: 16px;
  height: 16px; }
  input[type='radio']:not(.rate-radio) + span {
    z-index: 1;
    cursor: pointer; }
  input[type='radio']:not(.rate-radio):not(checked) {
    position: absolute;
    opacity: 0; }
  input[type='radio']:not(.rate-radio):not(checked) + span {
    position: relative;
    padding: 0 0 0 30px;
    display: inline-block;
    font-size: 0.9375rem;
    min-height: 16px; }
    input[type='radio']:not(.rate-radio):not(checked) + span span {
      color: #485059; }
  input[type='radio']:not(.rate-radio):not(checked) + span:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #7D96A4;
    border-radius: 50%;
    transition-duration: .2s; }
  input[type='radio']:not(.rate-radio):not(checked) + span:hover:before {
    border-color: #B7B4B3; }
  input[type='radio']:not(.rate-radio):disabled + span {
    cursor: default; }
  input[type='radio']:not(.rate-radio):disabled:not(checked) + span span {
    color: #D1D1D1; }
  input[type='radio']:not(.rate-radio):disabled:not(checked) + span:before {
    border-color: #D1D1D1 !important; }

input[type='checkbox']:not(.switch):checked + span:before {
  border-color: #E76642 !important;
  z-index: 1; }

input[type='checkbox']:not(.switch):checked + span:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #E76642;
  z-index: 2; }

input[type='checkbox']:not(.switch):checked + span:hover:before {
  border-color: #E76642 !important; }

input[type='radio']:not(.rate-radio):checked + span:before {
  border-color: #E76642; }

input[type='radio']:not(.rate-radio):checked + span:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E76642 !important; }

input[type='radio']:not(.rate-radio):checked + span:hover:before, input[type='radio']:not(.rate-radio):checked + span:hover:after {
  border-color: #E76642 !important; }

.radio-choice {
  position: relative; }
  .radio-choice input[type='radio'] {
    opacity: 0;
    position: absolute; }
    .radio-choice input[type='radio'] + label {
      padding: 7px 10px;
      background-color: rgba(241, 243, 248, 0.7);
      border: 1px solid #E0E0E3;
      line-height: 1; }
      .radio-choice input[type='radio'] + label span {
        font-size: 0.8125rem;
        white-space: nowrap; }
      .radio-choice input[type='radio'] + label:hover {
        border-color: #7D96A4;
        cursor: pointer; }
    .radio-choice input[type='radio']:checked + label {
      border-color: #da5128 !important;
      background-color: #E76642;
      cursor: default; }
      .radio-choice input[type='radio']:checked + label span {
        color: #fff; }

.datalist {
  position: relative; }
  .datalist:after {
    content: '\e92a';
    font-family: "icomoon" !important;
    font-size: 0.875rem;
    color: #9FB0BA;
    position: absolute;
    bottom: 18px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    transition-duration: .2s; }
  .datalist:hover:after {
    opacity: 1; }

[list]::-webkit-calendar-picker-indicator {
  opacity: 0; }

select:not(.js-select-sort), select:not(.js-select-multi) {
  display: block;
  color: #485059;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  margin: 0;
  border: 1px solid #D1D1D1;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("/local/include/assets/css-v4/../images/site/select.svg");
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 15px; }
  select:not(.js-select-sort)::-ms-expand, select:not(.js-select-multi)::-ms-expand {
    display: none; }

.sel-grey select {
  background-color: #fafafa; }

.js-select-sort {
  opacity: 0; }

.selectric-js-select-sort .selectric,
.selectric-js-select-multi .selectric {
  border: none;
  background-color: transparent; }
  .selectric-js-select-sort .selectric-items,
  .selectric-js-select-multi .selectric-items {
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05); }
    .selectric-js-select-sort .selectric-items li:hover,
    .selectric-js-select-multi .selectric-items li:hover {
      background-color: #F3F3F3; }
    .selectric-js-select-sort .selectric-items li.selected,
    .selectric-js-select-multi .selectric-items li.selected {
      background-color: #F1F3F8; }
  .selectric-js-select-sort .selectric .label,
  .selectric-js-select-multi .selectric .label {
    height: auto;
    line-height: 1;
    color: #1A3853;
    font-size: 0.9375rem;
    border-bottom: 1px solid #D1D1D1;
    padding: 0 30px 7px 0;
    margin: 0; }
  .selectric-js-select-sort .selectric .button,
  .selectric-js-select-multi .selectric .button {
    width: 8px;
    height: 8px;
    right: 3px;
    line-height: 1; }
    .selectric-js-select-sort .selectric .button:after,
    .selectric-js-select-multi .selectric .button:after {
      content: '\e92a';
      font-family: "icomoon" !important;
      font-size: 8px;
      color: #1A3853; }

@media (min-width: 992px) {
  .selectric-js-select-sort .selectric {
    min-width: 220px; } }

.selectric-js-select-multi .selectric-items li {
  padding-left: 35px;
  position: relative; }
  .selectric-js-select-multi .selectric-items li:before {
    content: '';
    position: absolute;
    top: 11px;
    left: 10px;
    width: 16px;
    height: 16px;
    border: 1px solid #9FB0BA;
    border-radius: 2px; }
  .selectric-js-select-multi .selectric-items li.selected:before {
    border-color: #E76642; }
  .selectric-js-select-multi .selectric-items li.selected:after {
    content: '';
    position: absolute;
    top: 15px;
    left: 14px;
    width: 8px;
    height: 8px;
    background-color: #E76642;
    border-radius: 2px; }

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'].switch {
    --active: #E76642;
    --active-inner: #fff;
    --focus: 2px rgba($grey-3, .2);
    --border: #B7B4B3;
    --border-hover: #D1D1D1;
    --background: #fff;
    --disabled: #D1D1D1;
    --disabled-inner: #9FB0BA;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 23px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background .3s, border-color .3s, box-shadow .2s; }
    input[type='checkbox'].switch:after {
      content: '';
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t) var(--d-t-e, ease), opacity var(--d-o, 0.2s); }
    input[type='checkbox'].switch:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2); }
    input[type='checkbox'].switch:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: .9; }
      input[type='checkbox'].switch:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border); }
      input[type='checkbox'].switch:disabled + label {
        cursor: not-allowed; }
    input[type='checkbox'].switch:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover); }
    input[type='checkbox'].switch:focus {
      box-shadow: 0 0 0 var(--focus); }
    input[type='checkbox'].switch + label {
      font-size: 0.8125rem;
      line-height: 23px;
      display: inline-block;
      vertical-align: top;
      cursor: pointer;
      margin-left: 4px; }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px; }
    input[type='checkbox'].switch:after {
      left: 2px;
      top: 2px;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      background: var(--ab, var(--border));
      transform: translateX(var(--x, 0)); }
    input[type='checkbox'].switch:checked {
      --ab: var(--active-inner);
      --x: 16px; }
    input[type='checkbox'].switch:disabled:not(:checked):after {
      opacity: .6; } }

input[type='checkbox'].switch + span {
  margin-left: 10px; }
  input[type='checkbox'].switch + span span {
    font-size: 0.9375rem;
    display: inline-block;
    vertical-align: middle; }

.input-date {
  position: relative; }
  .input-date > input {
    padding-right: 40px !important;
    position: relative;
    z-index: 1; }
  .input-date:after {
    content: '\e9c0';
    font-family: "icomoon" !important;
    color: #7D96A4;
    position: absolute;
    bottom: 13px;
    right: 15px;
    font-size: 1.25rem;
    z-index: 1; }

.f-time {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .f-time-item {
    flex: 0 1 auto;
    padding: 0 12px 0 0;
    position: relative;
    width: 50%; }
    @media (min-width: 500px) {
      .f-time-item {
        width: 22%; } }
    .f-time-item + .f-time-item:before {
      content: ':';
      position: absolute;
      top: 50%;
      left: -8px;
      font-size: 1.25rem;
      color: #7D96A4;
      transform: translateY(-50%); }
  .f-time-interval {
    padding: 0 12px 0 0;
    flex: 0 1 auto;
    width: 100%;
    text-align: center; }
    @media (min-width: 500px) {
      .f-time-interval {
        width: auto; } }

@font-face {
  font-family: 'icomoon';
  src: url("/local/include/assets/css-v4/../fonts/icomoon/icomoon.woff2?2z89z7d") format("woff2"), url("/local/include/assets/css-v4/../fonts/icomoon/icomoon.ttf?2z89z7d") format("truetype"), url("/local/include/assets/css-v4/../fonts/icomoon/icomoon.woff?2z89z7d") format("woff"), url("/local/include/assets/css-v4/../fonts/icomoon/icomoon.svg?2z89z7d#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-pause:before {
  content: "\e9d5"; }

.icon-single-play:before {
  content: "\e9d4"; }

.icon-volume-high:before {
  content: "\e9d2"; }

.icon-volume-high-slash:before {
  content: "\e9d3"; }

.icon-yt:before {
  content: "\e9c7"; }

.icon-yz:before {
  content: "\e9c8"; }

.icon-pt:before {
  content: "\e9c9"; }

.icon-tg:before {
  content: "\e9ca"; }

.icon-vk:before {
  content: "\e9cb"; }

.icon-arrow-right-circle:before {
  content: "\e9be"; }

.icon-benzene-ring:before {
  content: "\e9bf"; }

.icon-calendar-dots:before {
  content: "\e9c0"; }

.icon-comment-dots:before {
  content: "\e9c1"; }

.icon-delivery-cart:before {
  content: "\e9c2"; }

.icon-flame:before {
  content: "\e9c3"; }

.icon-floppy-save:before {
  content: "\e9c4"; }

.icon-target-style:before {
  content: "\e9c5"; }

.icon-wallet-w:before {
  content: "\e9c6"; }

.icon-c_user:before {
  content: "\e9ae"; }

.icon-c_wish:before {
  content: "\e9ac"; }

.icon-c_phone:before {
  content: "\e9ad"; }

.icon-c_cart:before {
  content: "\e9a9"; }

.icon-c_menu:before {
  content: "\e9aa"; }

.icon-c_search:before {
  content: "\e9ab"; }

.icon-food-cheese:before {
  content: "\e9b6"; }

.icon-food-chicken:before {
  content: "\e9b7"; }

.icon-food-fruit:before {
  content: "\e9b8"; }

.icon-food-meat:before {
  content: "\e9b9"; }

.icon-food-vegetable:before {
  content: "\e9ba"; }

.icon-food-fish:before {
  content: "\e9bb"; }

.icon-canape-fill:before {
  content: "\e999"; }

.icon-coctail-fill:before {
  content: "\e99a"; }

.icon-coffe-fill:before {
  content: "\e99b"; }

.icon-dish-fill:before {
  content: "\e99c"; }

.icon-fork-spoon-fill:before {
  content: "\e99d"; }

.icon-imgs-set:before {
  content: "\e985"; }

.icon-calendar-line:before {
  content: "\e9cc"; }

.icon-line-accounting-2:before {
  content: "\e9cd"; }

.icon-line-manager-2:before {
  content: "\e9ce"; }

.icon-line-manager:before {
  content: "\e9cf"; }

.icon-line-accounting:before {
  content: "\e9d0"; }

.icon-line-cook:before {
  content: "\e9d1"; }

.icon-wallet-cash:before {
  content: "\e9b0"; }

.icon-delivery:before {
  content: "\e975"; }

.icon-cleaning:before {
  content: "\e976"; }

.icon-wed-02:before {
  content: "\e977"; }

.icon-wed-03:before {
  content: "\e978"; }

.icon-wed-04:before {
  content: "\e979"; }

.icon-wed-05:before {
  content: "\e97a"; }

.icon-wed-06:before {
  content: "\e97b"; }

.icon-wed-01:before {
  content: "\e97c"; }

.icon-cook:before {
  content: "\e971"; }

.icon-waiter:before {
  content: "\e972"; }

.icon-services:before {
  content: "\e973"; }

.icon-wallet:before {
  content: "\e9bd"; }

.icon-info-single:before {
  content: "\e9bc"; }

.icon-list-download:before {
  content: "\e9b1"; }

.icon-document-calculator:before {
  content: "\e9b2"; }

.icon-pdf-download:before {
  content: "\e9b3"; }

.icon-print-round:before {
  content: "\e9b4"; }

.icon-shares:before {
  content: "\e9af"; }

.icon-heat:before {
  content: "\e9a6"; }

.icon-clock-fast:before {
  content: "\e9a5"; }

.icon-telegram:before {
  content: "\e99e"; }

.icon-skype:before {
  content: "\e9a2"; }

.icon-whatsup:before {
  content: "\e9a3"; }

.icon-cloche:before {
  content: "\e99f"; }

.icon-news-paper:before {
  content: "\e9a0"; }

.icon-landline-phone:before {
  content: "\e998"; }

.icon-attachment:before {
  content: "\e997"; }

.icon-quote:before {
  content: "\e995"; }

.icon-printer:before {
  content: "\e994"; }

.icon-arrows-in-circle:before {
  content: "\e98d"; }

.icon-checkmark-circle:before {
  content: "\e98e"; }

.icon-direction:before {
  content: "\e98f"; }

.icon-sand-clock:before {
  content: "\e990"; }

.icon-search-loap-1:before {
  content: "\e991"; }

.icon-filter:before {
  content: "\e98c"; }

.icon-home-house:before {
  content: "\e98b"; }

.icon-calendar-sch:before {
  content: "\e97d"; }

.icon-calendar-time:before {
  content: "\e97e"; }

.icon-check-list:before {
  content: "\e97f"; }

.icon-coins:before {
  content: "\e980"; }

.icon-customer:before {
  content: "\e981"; }

.icon-dish:before {
  content: "\e982"; }

.icon-format:before {
  content: "\e983"; }

.icon-glass:before {
  content: "\e984"; }

.icon-rent:before {
  content: "\e986"; }

.icon-scales:before {
  content: "\e987"; }

.icon-type:before {
  content: "\e988"; }

.icon-users:before {
  content: "\e989"; }

.icon-star-round:before {
  content: "\e974"; }

.icon-trash-simple:before {
  content: "\e96c"; }

.icon-edit:before {
  content: "\e96d"; }

.icon-bag:before {
  content: "\e96e"; }

.icon-add-dotted:before {
  content: "\e96f"; }

.icon-min-dotted:before {
  content: "\e970"; }

.icon-copy:before {
  content: "\e96b"; }

.icon-percent:before {
  content: "\e967"; }

.icon-bonus:before {
  content: "\e968"; }

.icon-gift:before {
  content: "\e969"; }

.icon-settings:before {
  content: "\e96a"; }

.icon-trash:before {
  content: "\e966"; }

.icon-fork-spoon:before {
  content: "\e938"; }

.icon-clock:before {
  content: "\e939"; }

.icon-check:before {
  content: "\e937"; }

.icon-cart-single:before {
  content: "\e936"; }

.icon-support:before {
  content: "\e935"; }

.icon-info:before {
  content: "\e934"; }

.icon-download:before {
  content: "\e931"; }

.icon-tags:before {
  content: "\e930"; }

.icon-heart:before {
  content: "\e92c"; }

.icon-zoom:before {
  content: "\e92d"; }

.icon-email-square:before {
  content: "\e905"; }

.icon-ex-link:before {
  content: "\e906"; }

.icon-mail:before {
  content: "\e909"; }

.icon-menu-restaurant:before {
  content: "\e90a"; }

.icon-mobile:before {
  content: "\e90b"; }

.icon-pin:before {
  content: "\e90c"; }

.icon-refresh:before {
  content: "\e910"; }

.icon-star:before {
  content: "\e911"; }

.icon-check1:before {
  content: "\e9a8"; }

.icon-arrow-forward:before {
  content: "\e9a7"; }

.icon-arrow-back:before {
  content: "\e992"; }

.icon-arrows-split:before {
  content: "\e993"; }

.icon-arrow-round-right:before {
  content: "\e98a"; }

.icon-arrow-left:before {
  content: "\e932"; }

.icon-arrow-right:before {
  content: "\e933"; }

.icon-triangle:before {
  content: "\e92f"; }

.icon-arrow-down:before {
  content: "\e92a"; }

.icon-cart:before {
  content: "\e900"; }

.icon-wish-link:before {
  content: "\e901"; }

.icon-login:before {
  content: "\e903"; }

.icon-search:before {
  content: "\e902"; }

.icon-user:before {
  content: "\e904"; }

.icon-email-letter:before {
  content: "\e996"; }

.icon-chat:before {
  content: "\e9a1"; }

.icon-phone-circle:before {
  content: "\e92b"; }

.icon-request:before {
  content: "\e9a4"; }

.icon-scale:before {
  content: "\e92e"; }

.icon-grid-layout:before {
  content: "\e907"; }

.icon-menu-burger:before {
  content: "\e908"; }

.icon-play:before {
  content: "\e90d"; }

.icon-minus:before {
  content: "\e90e"; }

.icon-plus:before {
  content: "\e90f"; }

.icon-arrow-left-square:before {
  content: "\e913"; }

.icon-arrow-right-square:before {
  content: "\e914"; }

.icon-arrow-long-right:before {
  content: "\e912"; }

.icon-close:before {
  content: "\e915"; }

.icon-promo-00000:before {
  content: "\e93a"; }

.icon-promo-00001:before {
  content: "\e93b"; }

.icon-promo-00002:before {
  content: "\e93c"; }

.icon-promo-00003:before {
  content: "\e93d"; }

.icon-promo-00004:before {
  content: "\e93e"; }

.icon-promo-00005:before {
  content: "\e93f"; }

.icon-promo-00006:before {
  content: "\e940"; }

.icon-promo-00007:before {
  content: "\e941"; }

.icon-promo-00008:before {
  content: "\e942"; }

.icon-promo-00009:before {
  content: "\e943"; }

.icon-promo-00010:before {
  content: "\e944"; }

.icon-promo-00011:before {
  content: "\e945"; }

.icon-promo-00012:before {
  content: "\e9b5"; }

.icon-set-00000:before {
  content: "\e916"; }

.icon-set-00001:before {
  content: "\e917"; }

.icon-set-00002:before {
  content: "\e918"; }

.icon-set-00003:before {
  content: "\e919"; }

.icon-set-00004:before {
  content: "\e91a"; }

.icon-set-00005:before {
  content: "\e91b"; }

.icon-set-00006:before {
  content: "\e91c"; }

.icon-set-00007:before {
  content: "\e91d"; }

.icon-set-00008:before {
  content: "\e91e"; }

.icon-set-00009:before {
  content: "\e91f"; }

.icon-set-00010:before {
  content: "\e920"; }

.icon-set-00011:before {
  content: "\e921"; }

.icon-set-00012:before {
  content: "\e922"; }

.icon-set-00013:before {
  content: "\e923"; }

.icon-set-00014:before {
  content: "\e924"; }

.icon-set-00015:before {
  content: "\e925"; }

.icon-set-00016:before {
  content: "\e926"; }

.icon-set-00017:before {
  content: "\e927"; }

.icon-set-00018:before {
  content: "\e928"; }

.icon-set-00019:before {
  content: "\e929"; }

.icon-set-00020:before {
  content: "\e946"; }

.icon-set-00021:before {
  content: "\e947"; }

.icon-set-00022:before {
  content: "\e948"; }

.icon-set-00023:before {
  content: "\e949"; }

.icon-set-00024:before {
  content: "\e94a"; }

.icon-set-00025:before {
  content: "\e94b"; }

.icon-set-00026:before {
  content: "\e94c"; }

.icon-set-00027:before {
  content: "\e94d"; }

.icon-set-00028:before {
  content: "\e94e"; }

.icon-set-00029:before {
  content: "\e94f"; }

.icon-set-00030:before {
  content: "\e950"; }

.icon-set-00031:before {
  content: "\e951"; }

.icon-set-00032:before {
  content: "\e952"; }

.icon-set-00033:before {
  content: "\e953"; }

.icon-set-00034:before {
  content: "\e954"; }

.icon-set-00035:before {
  content: "\e955"; }

.icon-set-00036:before {
  content: "\e956"; }

.icon-set-00037:before {
  content: "\e957"; }

.icon-set-00038:before {
  content: "\e958"; }

.icon-set-00039:before {
  content: "\e959"; }

.icon-set-00040:before {
  content: "\e95a"; }

.icon-set-00041:before {
  content: "\e95b"; }

.icon-set-00042:before {
  content: "\e95c"; }

.icon-set-00043:before {
  content: "\e95d"; }

.icon-set-00044:before {
  content: "\e95e"; }

.icon-set-00045:before {
  content: "\e95f"; }

.icon-set-00046:before {
  content: "\e960"; }

.icon-set-00047:before {
  content: "\e961"; }

.icon-set-00048:before {
  content: "\e962"; }

.icon-set-00049:before {
  content: "\e963"; }

.icon-set-00050:before {
  content: "\e964"; }

.icon-set-00051:before {
  content: "\e965"; }

.label-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1 !important;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  text-decoration: none !important;
  box-sizing: border-box;
  max-width: 100% !important;
  border-radius: 2px;
  border: 1px solid; }

.label-small {
  height: 28px;
  padding: 0 14px;
  font-size: 0.75rem; }

.label-medium {
  height: 32px;
  padding: 0 20px;
  font-size: 0.75rem; }

.label-orange {
  border-color: #fca700;
  background-color: #fff6e5;
  color: #bc780f; }

.label-green {
  border-color: #009432;
  background-color: #F0FFF5;
  color: #006722; }

.label-cayan {
  border-color: #1289A7;
  background-color: #E8F8FD;
  color: #0d687e; }

.label-grey {
  border-color: #9FB0BA;
  background-color: #fff;
  color: #717C89; }

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1 !important;
  white-space: nowrap;
  user-select: none;
  text-decoration: none !important;
  box-sizing: border-box;
  max-width: 100% !important;
  transition-duration: .2s;
  border-radius: 2px;
  height: 24px;
  font-size: 0.75rem;
  padding: 0 10px; }
  .mark-orange {
    border: 1px solid #f39c12;
    background-color: rgba(243, 156, 18, 0.07);
    color: #9d6202; }
  .mark-cayan {
    border: 1px solid #1289A7;
    background-color: #E8F8FD;
    color: #0d687e; }
  .mark-green {
    border: 1px solid #009432;
    background-color: #F0FFF5;
    color: #006722; }
  .mark-grey {
    border: 1px solid #95a5a6;
    background-color: rgba(149, 165, 166, 0.06);
    color: #34495e; }

.page-menu {
  background-color: #fff;
  box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  transform: rotateY(90deg); }
  @media (min-width: 425px) {
    .page-menu {
      top: 72px; } }
  @media (min-width: 768px) {
    .page-menu {
      top: 83px; } }
  @media (min-width: 992px) {
    .page-menu {
      top: 87px; } }
  .page-menu-wrap {
    display: flex;
    overflow: auto;
    width: 100%;
    padding-left: 15px; }
  .page-menu-item {
    flex-shrink: 0;
    position: relative;
    margin-right: 10px;
    padding: 5px 15px 5px 5px; }
    .page-menu-item:after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      bottom: 0;
      transform: translateY(-50%);
      width: 1px;
      height: 24px;
      background-color: #F3F3F3; }
    .page-menu-item a {
      padding: 15px;
      display: inline-block;
      color: #485059; }
      @media (min-width: 768px) {
        .page-menu-item a:hover {
          color: #E76642; } }
      .page-menu-item a span {
        white-space: nowrap;
        font-family: "Lora", serif;
        font-size: 0.9375rem;
        font-weight: 500; }
    .page-menu-item.current a {
      color: #E76642 !important;
      text-decoration: underline;
      cursor: default;
      font-weight: 500; }

.page-menu.fix-sticky {
  transform: rotateY(0deg);
  position: fixed;
  transition-duration: .2s; }

.page-menu-wrap {
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative; }
  .page-menu-wrap::-webkit-scrollbar {
    width: 0;
    background: transparent;
    display: none; }

.page-menu.sticky {
  position: fixed;
  top: 55px !important;
  background-color: #D1D1D2;
  left: 0;
  right: 0;
  transition-duration: .3s; }
  @media (min-width: 768px) {
    .page-menu.sticky {
      top: 87px !important; } }
  .page-menu.sticky + div,
  .page-menu.sticky + section {
    margin-top: 72px; }

.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(80, 102, 126, 0.3); }

.progress-bar {
  height: 4px;
  background: rgba(231, 102, 66, 0.7);
  width: 0; }

.pt-10 {
  padding-top: 10px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-20 {
  margin-top: 10px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-40 {
  margin-top: 40px !important; }

.mt-60 {
  margin-top: 40px !important; }
  @media (min-width: 768px) {
    .mt-60 {
      margin-top: 60px !important; } }

.mt-top {
  margin-top: 30px; }
  @media (min-width: 768px) {
    .mt-top {
      margin-top: 40px; } }

.mt-70 {
  margin-top: 40px; }
  @media (min-width: 768px) {
    .mt-70 {
      margin-top: 70px; } }

.mb-large {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .mb-large {
      margin-bottom: 70px; } }

.mb-big {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .mb-big {
      margin-bottom: 70px; } }

.mb-medium {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .mb-medium {
      margin-bottom: 40px; } }

.mb-small {
  margin-bottom: 30px; }

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

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

.mb-10 {
  margin-bottom: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

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

.pb-40 {
  padding-bottom: 40px !important; }

.header-top {
  display: flex;
  justify-content: center;
  padding: 5px 0 7px; }
  @media (min-width: 768px) {
    .header-top {
      justify-content: space-between;
      padding: 17px 0; } }
  .header-top-col {
    flex: 0 1 auto;
    display: flex; }
    .header-top-col > div {
      flex: 0 1 auto; }
      .header-top-col > div:not(:last-child) {
        margin-right: 15px;
        padding-right: 15px;
        position: relative; }
        @media (min-width: 1110px) {
          .header-top-col > div:not(:last-child) {
            margin-right: 20px;
            padding-right: 20px; } }
        @media (min-width: 1260px) {
          .header-top-col > div:not(:last-child) {
            margin-right: 25px;
            padding-right: 25px; } }
        .header-top-col > div:not(:last-child):after {
          content: '';
          position: absolute;
          top: calc(50% - 9px);
          right: 0;
          height: 18px;
          width: 1px;
          background-color: rgba(159, 176, 186, 0.3); }

@media (max-width: 991.98px) {
  .header-top-slogan {
    margin-right: 0 !important;
    padding-right: 0 !important; } }

@media (max-width: 991.98px) {
  .header-top-slogan:after {
    display: none; } }

.header-top-slogan span {
  font-size: 0.75rem;
  color: #1A3853; }
  @media (min-width: 768px) {
    .header-top-slogan span {
      font-size: 0.8125rem; } }

.header-top-external a {
  display: block;
  position: relative;
  padding-left: 22px; }
  .header-top-external a:before {
    content: '\e906';
    font-family: "icomoon" !important;
    font-size: 0.875rem;
    color: #50667E;
    position: absolute;
    left: 0;
    top: 3px;
    transition-duration: .2s; }
  .header-top-external a span {
    color: #1A3853;
    font-size: 0.8125rem;
    white-space: nowrap;
    font-weight: 500;
    border-bottom: 1px dashed #1A3853;
    transition-duration: .2s; }
  .header-top-external a:hover:before,
  .header-top-external a:hover span {
    color: #da5128; }
  .header-top-external a:hover span {
    border-color: transparent; }

.header-top-phone a, .header-top-mail a, .header-top-acc a {
  font-weight: 500;
  font-size: 0.875rem;
  color: #1A3853; }
  .header-top-phone a:hover, .header-top-mail a:hover, .header-top-acc a:hover {
    color: #da5128; }

.header-top-messengers {
  white-space: nowrap;
  line-height: 1; }
  .header-top-messengers a:not(:last-child) {
    margin-right: 10px; }
  .header-top-messengers a:hover {
    opacity: .7; }

.header-bottom {
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  @media (max-width: 767.98px) {
    .header-bottom {
      padding: 5px 0; } }
  .header-bottom-submenu {
    padding: 25px; }
    .header-bottom-submenu li:not(:last-child) {
      margin-bottom: 20px; }
    .header-bottom-submenu li a {
      display: block;
      white-space: nowrap;
      font-size: 0.9375rem;
      color: #091922; }
      .header-bottom-submenu li a:hover {
        color: #da5128; }
  .header-bottom-wrap {
    display: flex;
    position: relative; }
  .header-bottom > div {
    flex: 0 1 auto; }
  .header-bottom-menu {
    display: flex;
    width: calc(50% - 60px);
    align-items: center;
    line-height: 1; }
    @media (min-width: 768px) {
      .header-bottom-menu {
        width: calc(50% - 120px); } }
    .header-bottom-menu-phone {
      margin-left: 5px; }
      @media (min-width: 425px) {
        .header-bottom-menu-phone {
          margin-left: 30px; } }
      .header-bottom-menu-phone .ch-trigger {
        color: #9FB0BA;
        padding: 1px; }
        .header-bottom-menu-phone .ch-trigger > .icon {
          font-size: 2.25rem; }
        .header-bottom-menu-phone .ch-trigger:hover {
          color: #da5128; }
      @media (min-width: 768px) {
        .header-bottom-menu-phone {
          display: none; } }
    .header-bottom-menu-link span, .header-bottom-menu-info span {
      display: none; }
      @media (min-width: 768px) {
        .header-bottom-menu-link span, .header-bottom-menu-info span {
          text-transform: uppercase;
          font-size: 0.9375rem;
          color: #1A3853;
          font-weight: 500;
          white-space: nowrap;
          display: inline-block;
          transition-duration: .2s; } }
      .header-bottom-menu-link span + span, .header-bottom-menu-info span + span {
        margin-left: 5px;
        display: none; }
        @media (min-width: 1110px) {
          .header-bottom-menu-link span + span, .header-bottom-menu-info span + span {
            display: inline-block; } }
    .header-bottom-menu-link:hover span, .header-bottom-menu-info:hover span {
      color: #da5128; }
    .header-bottom-menu-link {
      width: 38px;
      height: 38px;
      position: relative; }
      @media (min-width: 768px) {
        .header-bottom-menu-link {
          width: auto;
          height: auto;
          padding-left: 52px;
          margin-right: 25px; } }
      @media (min-width: 1260px) {
        .header-bottom-menu-link {
          margin-right: 45px; } }
      .header-bottom-menu-link:before {
        content: '';
        position: absolute;
        top: calc(50% - 20px);
        left: 0;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: #E76642;
        transition-duration: .2s; }
      .header-bottom-menu-link:after {
        content: '\e908';
        font-family: "icomoon" !important;
        font-size: 1.0625rem;
        position: absolute;
        top: calc(50% - 9px);
        left: 12px;
        color: #fff; }
      .header-bottom-menu-link:hover:before {
        background-color: #da5128; }
    .header-bottom-menu li {
      margin-right: 5px; }
      .header-bottom-menu li.ch-parent {
        position: relative; }
        .header-bottom-menu li.ch-parent:hover .header-bottom-menu-info span:after {
          transform: rotate(-180deg); }
        .header-bottom-menu li.ch-parent .header-bottom-menu-info span:after {
          content: '\e92a';
          font-family: "icomoon" !important;
          font-size: 8px;
          display: inline-block;
          vertical-align: middle;
          margin-left: 5px;
          transition-duration: .2s; }
  .header-bottom-logo {
    width: 120px;
    display: flex;
    justify-content: center;
    position: relative; }
    @media (min-width: 768px) {
      .header-bottom-logo {
        width: 240px; } }
    @media (min-width: 768px) {
      .header-bottom-logo:before {
        content: '';
        position: absolute;
        top: -45px;
        left: calc(50% - 65px);
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 70px 47px 70px;
        border-color: transparent transparent #ffffff transparent;
        z-index: 0; } }
    .header-bottom-logo img {
      z-index: 1;
      width: 110px;
      height: auto; }
      @media (min-width: 425px) {
        .header-bottom-logo img {
          width: 115px; } }
      @media (min-width: 768px) {
        .header-bottom-logo img {
          position: relative;
          width: 170px;
          top: -15px; } }
      @media (min-width: 1110px) {
        .header-bottom-logo img {
          width: 200px; } }
      @media (min-width: 1260px) {
        .header-bottom-logo img {
          width: 228px; } }
  .header-bottom-area {
    width: calc(50% - 60px);
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media (min-width: 768px) {
      .header-bottom-area {
        width: calc(50% - 120px);
        padding-top: 5px; } }
    .header-bottom-area > div {
      flex: 0 1 auto; }
      .header-bottom-area > div:not(.header-bottom-cart) {
        margin-right: 10px; }
        @media (min-width: 425px) {
          .header-bottom-area > div:not(.header-bottom-cart) {
            margin-right: 30px; } }
        @media (min-width: 768px) {
          .header-bottom-area > div:not(.header-bottom-cart) {
            min-width: 55px;
            margin-right: 20px; } }
        @media (min-width: 992px) {
          .header-bottom-area > div:not(.header-bottom-cart) {
            margin-right: 25px; } }
        @media (min-width: 1260px) {
          .header-bottom-area > div:not(.header-bottom-cart) {
            margin-right: 30px; } }
    .header-bottom-area .ch-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin: 0 auto;
      outline: none !important; }
      .header-bottom-area .ch-group-icon {
        position: relative; }
        @media (min-width: 768px) {
          .header-bottom-area .ch-group-icon {
            margin-bottom: 5px; } }
        .header-bottom-area .ch-group-icon .icon {
          font-size: 2.25rem;
          color: #9FB0BA;
          transition-duration: .1s; }
      .header-bottom-area .ch-group-title {
        display: none; }
        @media (min-width: 768px) {
          .header-bottom-area .ch-group-title {
            display: inline-block;
            font-size: 0.7rem;
            color: #091922; } }
      .header-bottom-area .ch-group-count {
        position: absolute;
        top: -7px;
        right: -10px;
        background-color: #E76642;
        width: 21px;
        height: 21px;
        border-radius: 11px;
        transition-duration: .1s; }
        .header-bottom-area .ch-group-count > span {
          font-size: 0.625rem;
          color: #fff;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .header-bottom-area .ch-group:hover .icon {
        color: #da5128; }
      .header-bottom-area .ch-group:hover .ch-group-count {
        background-color: #da5128; }

.header-bottom-login {
  position: relative; }
  .header-bottom-login .icon-user {
    color: #50667E !important; }

@media (max-width: 767.98px) {
  .header-bottom-cart {
    display: none; } }

@media (min-width: 768px) {
  .header-bottom-cart {
    position: relative; }
    .header-bottom-cart .ch-group .icon {
      color: #50667E; }
    .header-bottom-cart .ch-group-title {
      font-weight: 500;
      color: #1A3853; } }

.header-bottom-account {
  margin-right: 0 !important; }
  @media (min-width: 768px) {
    .header-bottom-account {
      display: none; } }

.header-cart {
  min-width: 575px;
  line-height: 1.2; }
  .header-cart-table {
    padding: 15px;
    max-height: 300px;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    scrollbar-color: #50667E;
    scrollbar-width: thin;
    overflow-y: auto; }
    .header-cart-table::-webkit-scrollbar {
      -webkit-appearance: none;
      background-color: #F3F3F3;
      width: 6px; }
    .header-cart-table::-webkit-scrollbar-thumb {
      border-radius: 3px;
      background-color: #7D96A4;
      -webkit-box-shadow: 0 0 1px rgba(80, 102, 126, 0.5); }
  .header-cart table tr:hover {
    background-color: #F1F3F8; }
  .header-cart table tr td {
    padding: 10px;
    vertical-align: top; }
  .header-cart .ch-img {
    width: 44px;
    height: 40px;
    display: flex; }
    .header-cart .ch-img img {
      object-fit: cover;
      border-radius: 3px; }
  .header-cart .ch-title {
    font-size: 0.875rem;
    color: #091922;
    padding-top: 8px;
    display: inline-block;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: keep-all;
    line-break: normal;
    hyphens: auto; }
  .header-cart .ch-price {
    font-size: 0.875rem;
    color: #1A3853;
    white-space: nowrap;
    padding-top: 8px;
    display: inline-block; }
  .header-cart .ch-delete {
    width: 14px;
    height: 14px;
    position: relative;
    padding-top: 5px;
    opacity: .7; }
    .header-cart .ch-delete:hover {
      opacity: 1; }
    .header-cart .ch-delete:after {
      content: '\e915';
      font-family: "icomoon" !important;
      font-size: 0.625rem;
      color: #FF0F00; }

.header-cart-footer {
  padding: 15px 25px;
  background-color: #F1F3F8; }
  .header-cart-footer .ch-info-col {
    flex: 0 1 auto;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 10px; }
    .header-cart-footer .ch-info-col span:nth-child(1) {
      color: #485059;
      font-size: 0.8125rem;
      margin-right: 10px; }
    .header-cart-footer .ch-info-col span:nth-child(2) {
      color: #1A3853;
      font-size: 0.9375rem;
      font-weight: 500; }
    .header-cart-footer .ch-info-col-bonuses {
      margin-top: 10px;
      width: 100%; }
      .header-cart-footer .ch-info-col-bonuses span {
        color: #0d687e !important; }
  .header-cart-footer .ch-btns {
    padding: 10px 0 5px; }
    .header-cart-footer .ch-btns .btn:not(:last-child) {
      margin-right: 20px; }

.header-search {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  right: 0;
  width: 0;
  overflow: hidden;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  transition-duration: .15s; }
  .header-search input[type='text'] {
    height: 48px;
    width: 100%;
    border-width: 0;
    background-color: #fff;
    box-shadow: 0 0 60px 2px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding-left: 50px; }
  .header-search-close {
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 1.3;
    top: calc(50% - 10px);
    left: 15px;
    z-index: 9; }
    .header-search-close:after {
      content: '\e915';
      font-family: "icomoon" !important;
      color: #9FB0BA;
      font-size: 1.0625rem;
      transition-duration: .2s; }
    .header-search-close:hover:after {
      color: #50667E; }

.header-bottom-wrap.open-search .header-search {
  left: 0;
  overflow: visible;
  width: auto; }

.header-bottom-wrap.open-search .header-bottom-logo img {
  opacity: .1; }

.header-bottom-pad {
  height: 77px;
  display: none; }
  @media (min-width: 768px) {
    .header-bottom-pad {
      height: 87px; } }

.header-bottom.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 0 8px 4px rgba(142, 142, 142, 0.1);
  padding: 0; }
  .header-bottom.sticky + .header-bottom-pad {
    display: block; }
  .header-bottom.sticky .header-bottom-logo {
    padding: 10px 0; }
    @media (min-width: 768px) {
      .header-bottom.sticky .header-bottom-logo img {
        width: 140px;
        top: 0; } }

.header-bottom-area .header-bottom-menu {
  width: auto; }
  .header-bottom-area .header-bottom-menu li {
    margin-right: 40px; }
    @media (min-width: 992px) {
      .header-bottom-area .header-bottom-menu li {
        margin-right: 70px; } }

@media (min-width: 768px) {
  .header-bottom-area .header-bottom-mail {
    display: none; } }

.header-cart-clear {
  font-size: 0.875rem;
  color: #50667E; }
  .header-cart-clear span {
    border-bottom: 1px dotted #50667E; }
  .header-cart-clear:hover span {
    border-bottom-color: transparent; }

.pagetitle {
  position: relative;
  padding: 20px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  @media (min-width: 768px) {
    .pagetitle {
      padding: 40px 0; } }
  @media (min-width: 768px) {
    .pagetitle {
      padding: 60px 0; } }
  @media (min-width: 1110px) {
    .pagetitle {
      padding: 80px 0; } }
  .pagetitle:after {
    content: '';
    position: absolute;
    background: rgba(9, 25, 34, 0.7);
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .pagetitle-item {
    font-family: "Lora", serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #F1F3F8;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    line-height: 1.4; }
    @media (min-width: 576px) {
      .pagetitle-item {
        font-size: 1.75rem;
        margin-bottom: 25px; } }
    @media (min-width: 768px) {
      .pagetitle-item {
        font-size: 2rem;
        margin-bottom: 30px; } }
    @media (min-width: 992px) {
      .pagetitle-item {
        margin-bottom: 35px;
        font-size: 2.25rem; } }
    .pagetitle-item:before {
      content: '';
      display: block;
      width: 48px;
      height: 14px;
      margin: 0 auto 7px;
      background: transparent url("/local/include/assets/css-v4/../images/decor/decor-1-light.svg") center no-repeat;
      background-size: contain; }
      @media (min-width: 576px) {
        .pagetitle-item:before {
          width: 64px;
          height: 20px;
          margin: 0 auto 20px; } }

.breadcrumbs {
  position: relative;
  z-index: 1; }
  @media (max-width: 575.98px) {
    .breadcrumbs li:not(:nth-last-child(2)) {
      display: none; } }
  @media (min-width: 576px) {
    .breadcrumbs li {
      display: inline-block;
      vertical-align: top;
      position: relative;
      line-height: 1.3; } }
  .breadcrumbs li:not(:last-child):before, .breadcrumbs li:not(:last-child):after {
    content: '\e912';
    font-family: "icomoon" !important;
    font-size: 1.125rem;
    margin: 0 10px 0 12px;
    display: inline-block;
    vertical-align: top;
    color: #D1D1D1; }
    @media (max-width: 575.98px) {
      .breadcrumbs li:not(:last-child):before, .breadcrumbs li:not(:last-child):after {
        transform: rotate(180deg); } }
  @media (max-width: 575.98px) {
    .breadcrumbs li:not(:last-child):before {
      position: relative;
      margin-left: -10px;
      margin-top: -1px; } }
  @media (min-width: 576px) {
    .breadcrumbs li:not(:last-child):before {
      display: none; } }
  @media (max-width: 575.98px) {
    .breadcrumbs li:not(:last-child):after {
      display: none; } }
  .breadcrumbs li a,
  .breadcrumbs li span {
    font-size: 0.8125rem;
    display: inline-block; }
  .breadcrumbs li a {
    color: #fff; }
    .breadcrumbs li a:hover {
      color: #E76642; }
  .breadcrumbs li span {
    padding-top: 2px;
    color: #D1D1D1;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.pagetitle-simple {
  margin: 25px 0; }
  @media (min-width: 768px) {
    .pagetitle-simple {
      margin: 40px 0; } }
  .pagetitle-simple .breadcrumbs {
    padding-left: 3px;
    margin-bottom: 15px; }
    .pagetitle-simple .breadcrumbs li:not(:last-child):before, .pagetitle-simple .breadcrumbs li:not(:last-child):after {
      color: #B7B4B3; }
    .pagetitle-simple .breadcrumbs li a {
      color: #1A3853; }
    .pagetitle-simple .breadcrumbs li span {
      color: #7D96A4; }
  .pagetitle-simple-item {
    color: #091922;
    font-size: 1.375rem;
    margin-bottom: 12px; }
    @media (min-width: 576px) {
      .pagetitle-simple-item {
        font-size: 1.75rem; } }
    @media (min-width: 768px) {
      .pagetitle-simple-item {
        font-size: 2rem; } }
    @media (min-width: 992px) {
      .pagetitle-simple-item {
        font-size: 2.25rem; } }
  .pagetitle-simple-info {
    font-size: 1rem;
    color: #50667E;
    font-family: "Lora", serif;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .pagetitle-simple-info {
        font-size: 1.125rem; } }

@media (max-width: 767.98px) {
  .side-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.2s, opacity 0.2s;
    left: 0;
    transform-origin: 0 0;
    transform: rotateY(-75deg); } }

@media (max-width: 767.98px) {
  .side-panel.open {
    transition: transform 0.2s, opacity 0.2s;
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg); } }

.side-panel-title {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  background-color: #50667E; }
  @media (min-width: 768px) {
    .side-panel-title {
      display: none; } }
  .side-panel-title > .icon {
    color: #F1F3F8; }
  .side-panel-title > span {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-left: 15px; }
  .side-panel-title .ch-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    line-height: 1;
    opacity: .5; }
    .side-panel-title .ch-close:after {
      content: '\e915';
      font-family: "icomoon" !important;
      font-size: 0.9375rem;
      color: #fff; }

.side-panel-mobile {
  padding: 15px 20px;
  border-radius: 3px;
  text-align: left;
  width: 100%;
  background-color: #50667E;
  display: flex;
  align-items: center;
  color: #fff;
  transition-duration: .2s; }
  @media (min-width: 768px) {
    .side-panel-mobile {
      display: none; } }
  .side-panel-mobile:hover {
    background-color: #1A3853; }
  .side-panel-mobile > .icon {
    flex: 0 1 auto;
    font-size: 1rem;
    width: 20px; }
  .side-panel-mobile > span {
    flex: 0 1 auto;
    width: calc(100% - 20px);
    padding-left: 15px; }

@media (min-width: 768px) {
  .activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; } }

.activities-item, .activities-title {
  flex: 0 1 auto;
  margin-bottom: 10px; }
  @media (min-width: 768px) {
    .activities-item, .activities-title {
      width: calc(50% - 5px); } }
  @media (min-width: 992px) {
    .activities-item, .activities-title {
      width: calc(33.33333% - 6px); } }

.activities-title {
  padding-top: 30px; }
  .activities-title .headline {
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .activities-title .headline {
        margin-bottom: 40px; } }
    .activities-title .headline span {
      font-size: 1.875rem; }
      @media (min-width: 1110px) {
        .activities-title .headline span {
          font-size: 2.125rem; } }

.activities-item {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  transition-duration: .1s; }
  .activities-item:hover {
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
  .activities-item-wrap {
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-bottom: 0; }
  .activities-item-info {
    flex: 0 1 auto;
    width: calc(100% - 85px);
    padding: 20px 10px 20px 20px; }
    @media (min-width: 768px) {
      .activities-item-info {
        width: calc(100% - 148px); } }
    @media (min-width: 1110px) {
      .activities-item-info {
        padding: 30px 20px 10px 30px; } }
    @media (min-width: 1260px) {
      .activities-item-info {
        padding: 40px 20px 20px 40px; } }
    .activities-item-info > span {
      font-family: "Lora", serif; }
      .activities-item-info > span.ch-title {
        font-size: 1.375rem;
        font-weight: 500;
        color: #1A3853;
        margin-bottom: 10px;
        display: block; }
        @media (min-width: 1260px) {
          .activities-item-info > span.ch-title {
            font-size: 1.5rem; } }
      .activities-item-info > span.ch-price-before {
        font-size: 0.875rem;
        color: #50667E;
        display: inline-block;
        margin-right: 5px; }
        @media (min-width: 768px) {
          .activities-item-info > span.ch-price-before {
            margin: 0 0 10px 0; } }
      .activities-item-info > span.ch-price {
        font-size: 1.25rem;
        color: #1A3853;
        font-weight: 600;
        margin-bottom: 20px;
        display: inline-block; }
        @media (min-width: 768px) {
          .activities-item-info > span.ch-price {
            display: block; } }
        .activities-item-info > span.ch-price > span {
          font-size: 0.9375rem; }
    .activities-item-info .ch-footer-link {
      border-top: 1px solid rgba(159, 176, 186, 0.4);
      display: inline-block;
      padding-top: 20px;
      font-size: 0.875rem;
      white-space: nowrap; }
      .activities-item-info .ch-footer-link:after {
        content: '\e912';
        font-family: "icomoon" !important;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        font-size: 1rem;
        position: relative;
        top: -1px; }
  .activities-item-img {
    line-height: 1;
    flex: 0 1 auto;
    width: 85px;
    margin-left: auto;
    display: flex;
    height: 160px; }
    @media (min-width: 768px) {
      .activities-item-img {
        width: 148px;
        height: auto; } }
    .activities-item-img img {
      object-fit: contain; }

.added-text {
  margin-top: 10px;
  text-align: center;
  padding: 20px 20px 30px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }
  .added-text:before {
    content: '';
    display: block;
    width: 120px;
    height: 43px;
    background: transparent url("/local/include/assets/css-v4/../images/decor/decor-2.svg") center no-repeat;
    background-size: contain;
    margin: 0 auto 10px; }
  .added-text .added-text-item {
    line-height: 1.5;
    margin-bottom: 30px; }
    .added-text .added-text-item span {
      color: #485059;
      font-style: italic; }

.article-pagetitle {
  position: relative;
  padding: 30px 0 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (min-width: 992px) {
    .article-pagetitle {
      padding: 30px 0 60px; } }
  .article-pagetitle:after {
    content: '';
    position: absolute;
    background-color: rgba(9, 25, 34, 0.7);
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .article-pagetitle > .container {
    position: relative;
    z-index: 2; }
  .article-pagetitle-item {
    font-size: 1.625rem;
    color: #fff;
    margin-top: 30px;
    font-weight: 400;
    line-height: 1.4; }
    @media (min-width: 768px) {
      .article-pagetitle-item {
        font-size: 2rem; } }
    @media (min-width: 992px) {
      .article-pagetitle-item {
        font-size: 2.25rem; } }
  .article-pagetitle-subtitle span {
    color: #F3F3F3;
    font-weight: 300; }
    @media (min-width: 768px) {
      .article-pagetitle-subtitle span {
        font-size: 1.125rem; } }

.art-divider {
  margin: 30px 0;
  border-top: 1px solid #E0E0E3;
  position: relative; }
  @media (min-width: 576px) {
    .art-divider {
      margin: 40px 0; } }
  @media (min-width: 992px) {
    .art-divider {
      margin: 50px 0; } }
  .art-divider:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background-color: #fff; }
  .art-divider:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 12px;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent url("/local/include/assets/css-v4/../images/decor/decor-2.svg") center no-repeat;
    background-size: contain; }
  .art-divider + .article-row {
    padding-top: 0; }

.art-divider-title {
  margin: 30px 0;
  position: relative; }
  @media (min-width: 500px) {
    .art-divider-title {
      margin: 40px 0; } }
  @media (min-width: 768px) {
    .art-divider-title {
      margin: 50px 0; } }
  @media (min-width: 576px) {
    .art-divider-title:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background-color: #E0E0E3; } }
  .art-divider-title-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 2px 15px; }
    @media (min-width: 500px) {
      .art-divider-title-item {
        flex-direction: row; } }
    @media (min-width: 576px) {
      .art-divider-title-item {
        max-width: 90%; } }
    @media (min-width: 768px) {
      .art-divider-title-item {
        max-width: 80%; } }
    @media (min-width: 992px) {
      .art-divider-title-item {
        max-width: 70%; } }
    @media (min-width: 1260px) {
      .art-divider-title-item {
        max-width: 60%; } }
    .art-divider-title-item span {
      flex: 0 1 auto;
      font-family: "Lora", serif;
      font-size: 1.25rem;
      width: calc(100% - 92px); }
    .art-divider-title-item:before, .art-divider-title-item:after {
      content: '';
      flex: 0 1 auto;
      display: block;
      width: 46px;
      height: 12px; }
    .art-divider-title-item:before {
      margin-right: 15px;
      background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg") center no-repeat;
      background-size: contain; }
      @media (max-width: 499.98px) {
        .art-divider-title-item:before {
          margin: 0 0 10px 0; } }
    .art-divider-title-item:after {
      margin-left: 15px;
      background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-right.svg") center no-repeat;
      background-size: contain; }
      @media (max-width: 499.98px) {
        .art-divider-title-item:after {
          display: none; } }

.article {
  padding: 15px; }
  @media (min-width: 576px) {
    .article {
      padding: 30px; } }
  @media (min-width: 768px) {
    .article {
      padding: 30px 40px; } }
  @media (min-width: 1260px) {
    .article {
      padding: 40px 50px; } }
  @media (min-width: 1440px) {
    .article {
      padding: 50px 60px; } }
  @media (min-width: 768px) {
    .article.content {
      font-size: 1.0625rem;
      line-height: 1.5; } }
  .article-row {
    padding: 10px 0; }
    @media (min-width: 768px) {
      .article-row {
        padding: 15px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start; } }
    @media (min-width: 1110px) {
      .article-row {
        padding: 15px 30px; } }
    @media (min-width: 768px) {
      .article-row.pb-0 {
        padding-bottom: 0; } }
    .article-row + .art-divider,
    .article-row + .art-divider-title {
      margin-top: 30px; }
    .article-row + .headline {
      margin-top: 20px; }
  .article-text {
    flex: 0 1 auto; }
  .article-img {
    flex: 0 1 auto;
    position: relative;
    padding: 10px;
    background-color: #F1F3F8;
    text-align: center; }
    .article-img span {
      padding: 10px 0 0;
      font-style: italic;
      font-size: 0.9375rem;
      color: #50667E;
      display: inline-block; }
    .article-img img {
      width: 100%;
      display: block; }
  .article-row-img .article-text {
    width: 100%; }
    @media (min-width: 768px) {
      .article-row-img .article-text {
        padding-top: 10px;
        width: calc(50% - 20px); } }
    @media (min-width: 992px) {
      .article-row-img .article-text {
        width: calc(60% - 20px); } }
    @media (min-width: 1260px) {
      .article-row-img .article-text {
        width: calc(65% - 30px); } }
  .article-row-img .article-img {
    width: 100%; }
    @media (min-width: 768px) {
      .article-row-img .article-img {
        width: 50%; } }
    @media (min-width: 992px) {
      .article-row-img .article-img {
        width: 40%; } }
    @media (min-width: 1260px) {
      .article-row-img .article-img {
        width: 35%; } }
  .article-row-img .article-text + .article-img,
  .article-row-img .article-img + .article-text {
    margin: 20px 0 0 0; }
    @media (min-width: 768px) {
      .article-row-img .article-text + .article-img,
      .article-row-img .article-img + .article-text {
        margin: 0 0 0 20px; } }
    @media (min-width: 1260px) {
      .article-row-img .article-text + .article-img,
      .article-row-img .article-img + .article-text {
        margin: 0 0 0 30px; } }
  .article-row-img-full .article-row-img {
    display: flex; }
    .article-row-img-full .article-row-img img {
      object-fit: cover; }
  .article-info {
    margin: 10px 0;
    padding: 30px;
    background-color: rgba(241, 243, 248, 0.7);
    border-left: 4px solid #E76642;
    font-style: italic; }

.article-row + .title-decor {
  margin-top: 30px; }

.article-row h2, .article-row h3, .article-row h4, .article-row h5 {
  color: #091922; }
  .article-row h2:only-child, .article-row h3:only-child, .article-row h4:only-child, .article-row h5:only-child {
    margin-bottom: 0; }

.article-row .article-img:only-child {
  width: 100%; }

.article-img {
  position: relative; }
  .article-img > a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    .article-img > a:before {
      content: '';
      position: absolute;
      top: 10px;
      right: 10px;
      width: 42px;
      height: 42px;
      background-color: #F1F3F8;
      z-index: 2; }
    .article-img > a:after {
      content: '';
      font-family: "icomoon" !important;
      position: absolute;
      top: 9px;
      right: 15px;
      font-size: 1.5rem;
      z-index: 3;
      color: #9FB0BA;
      transition-duration: .2s; }
    .article-img > a.js-popup-img:after {
      content: '\e92d'; }
    .article-img > a.js-popup-img:hover:after {
      color: #50667E; }
    .article-img > a.js-popup-media:after {
      content: '\e90d'; }
    .article-img > a.js-popup-media:hover:after {
      color: #FF0F00; }

.article-inside {
  margin: 30px -15px;
  padding: 10px 0 !important;
  background-color: #F3F3F3;
  position: relative;
  justify-content: center; }
  @media (min-width: 576px) {
    .article-inside:before, .article-inside:after {
      content: '';
      position: absolute;
      top: calc(50% - 10px);
      height: 10px;
      background-color: #F3F3F3;
      box-shadow: inset 0 0 4px 2px rgba(142, 142, 142, 0.05);
      width: 40px; } }
  @media (min-width: 768px) {
    .article-inside:before, .article-inside:after {
      width: 50px; } }
  @media (min-width: 1440px) {
    .article-inside:before, .article-inside:after {
      width: 60px; } }
  @media (min-width: 576px) {
    .article-inside:before {
      left: -40px; } }
  @media (min-width: 768px) {
    .article-inside:before {
      left: -50px; } }
  @media (min-width: 1440px) {
    .article-inside:before {
      left: -60px; } }
  @media (min-width: 576px) {
    .article-inside:after {
      right: -40px; } }
  @media (min-width: 768px) {
    .article-inside:after {
      right: -50px; } }
  @media (min-width: 1440px) {
    .article-inside:after {
      right: -60px; } }
  @media (min-width: 500px) {
    .article-inside {
      box-shadow: inset 0 0 4px 2px rgba(142, 142, 142, 0.05);
      margin: 30px 0;
      border-radius: 5px;
      padding: 20px; } }

.article-formats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px; }

.article-format {
  flex: 0 1 auto;
  width: 100%;
  display: flex;
  align-items: flex-start; }
  @media (min-width: 992px) {
    .article-format {
      width: calc(50% - 20px); } }
  .article-format-img {
    flex: 0 1 auto;
    width: 90px; }
    @media (min-width: 425px) {
      .article-format-img {
        width: 122px; } }
    @media (min-width: 500px) {
      .article-format-img {
        width: 162px; } }
    .article-format-img a {
      display: block; }
    .article-format-img a,
    .article-format-img img {
      border-radius: 50%; }
    .article-format-img img {
      border: 6px solid #fff;
      box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05); }
  .article-format-item {
    flex: 0 1 auto;
    width: calc(100% - 90px);
    padding: 0 0 0 10px; }
    @media (min-width: 425px) {
      .article-format-item {
        width: calc(100% - 122px); } }
    @media (min-width: 500px) {
      .article-format-item {
        padding: 10px 0 0 15px;
        width: calc(100% - 162px); } }
    @media (min-width: 1260px) {
      .article-format-item {
        padding: 15px 0 0 25px; } }
  .article-format-title {
    margin-bottom: 15px; }
    .article-format-title a {
      font-family: "Lora", serif;
      font-size: 1rem;
      font-weight: 600;
      color: #1A3853; }
      @media (min-width: 425px) {
        .article-format-title a {
          font-size: 1.125rem; } }
      .article-format-title a:hover {
        color: #da5128; }
  .article-format-text {
    font-size: 0.875rem;
    color: #717C89;
    margin-bottom: 20px; }
  .article-format-link > .icon {
    font-size: 1.75rem; }

.article-footer {
  margin-top: 40px;
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid #E0E0E3;
  position: relative; }
  @media (min-width: 768px) {
    .article-footer {
      margin-top: 50px;
      padding: 40px 0 0; } }
  .article-footer:before {
    content: '';
    position: absolute;
    top: -18px;
    left: calc(50% - 43px);
    width: 96px;
    height: 30px;
    background: transparent url("/local/include/assets/css-v4/../images/decor/decor-1.svg") center no-repeat;
    background-size: contain;
    z-index: 2; }
  .article-footer:after {
    content: '';
    position: absolute;
    top: -3px;
    left: calc(50% - 88px);
    width: 176px;
    height: 6px;
    background-color: #fff;
    z-index: 1; }
  .article-footer p {
    font-size: 1.125rem;
    font-family: "Lora", serif;
    font-style: italic;
    margin-bottom: 35px; }
    @media (min-width: 768px) {
      .article-footer p {
        font-size: 1.25rem; } }

.article-tags {
  border-top: 3px solid #F3F3F3;
  padding: 15px; }
  @media (min-width: 768px) {
    .article-tags {
      padding: 25px 35px 15px 35px; } }
  .article-tags-items {
    position: relative;
    padding-left: 25px; }
    @media (min-width: 768px) {
      .article-tags-items {
        padding-left: 40px; } }
    .article-tags-items:before {
      content: '\e930';
      font-family: "icomoon" !important;
      font-size: 1.125rem;
      color: rgba(159, 176, 186, 0.6);
      position: absolute;
      top: 0;
      left: 0; }
      @media (min-width: 768px) {
        .article-tags-items:before {
          top: -3px;
          font-size: 1.5rem; } }
    .article-tags-items a {
      font-size: 0.9375rem;
      display: inline-block;
      margin: 0 20px 15px 0;
      border-bottom: 1px dashed #E76642;
      line-height: 1.3; }
      .article-tags-items a:hover {
        color: #da5128;
        border-bottom-color: transparent; }

.article-analog {
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 0 0 3px 3px;
  border-top: 4px solid #E76642;
  padding: 15px; }
  @media (min-width: 768px) {
    .article-analog {
      padding: 30px 30px 10px; } }
  .article-analog-title {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #7D96A4;
    margin-bottom: 5px; }
  .article-analog-item {
    padding: 25px 5px;
    display: block; }
    .article-analog-item:not(:last-child) {
      border-bottom: 1px solid #E0E0E3; }
    .article-analog-item-title, .article-analog-item-text {
      font-family: "Lora", serif;
      display: block; }
    .article-analog-item-title {
      margin-bottom: 10px;
      font-size: 1.125rem;
      font-weight: 500;
      color: #091922; }
    .article-analog-item-text {
      font-size: 1rem;
      color: #50667E; }
    .article-analog-item:hover {
      background-color: #fafafa; }
      .article-analog-item:hover .article-analog-item-title {
        color: #da5128; }

.article-media {
  display: flex;
  flex-wrap: wrap; }
  .article-media-img {
    display: flex;
    line-height: 1;
    position: relative;
    height: 330px;
    flex: 0 1 auto;
    width: 100%; }
    @media (min-width: 768px) {
      .article-media-img {
        width: 30%;
        height: auto; } }
    .article-media-img img {
      object-fit: cover;
      border: 1px solid #F7F9FA;
      width: 100%; }
  .article-media-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    max-width: 80%;
    border-radius: 3px; }
    @media (min-width: 425px) {
      .article-media-video {
        max-width: 50%; } }
    @media (min-width: 768px) {
      .article-media-video {
        transform: translateY(-50%);
        left: auto;
        max-width: 170px;
        right: -20px; } }
    .article-media-video > .icon {
      font-size: 2.625rem;
      color: #da5128; }
    .article-media-video > span {
      margin-top: 15px;
      display: block;
      font-size: 0.9375rem;
      font-weight: 500;
      color: #1A3853; }
    .article-media-video:hover {
      box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
      .article-media-video:hover > span {
        color: #da5128; }
  .article-media-text {
    margin: 20px 0;
    flex: 1 0 auto;
    width: 100%; }
    @media (min-width: 768px) {
      .article-media-text {
        width: 70%;
        padding-left: 30px; } }
    @media (min-width: 992px) {
      .article-media-text {
        padding-left: 40px; } }
  .article-media-title {
    padding: 0 0 30px;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Lora", serif;
    align-self: flex-start;
    flex: 0 1 auto;
    width: 100%; }
    @media (min-width: 768px) {
      .article-media-title {
        padding: 30px 30px 30px 0; } }
    @media (min-width: 992px) {
      .article-media-title {
        width: 30%; } }
    .article-media-title-item {
      color: #1A3853; }
  .article-media-icons {
    background-color: #F7F9FA;
    padding: 20px 15px 5px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 1 0 auto;
    width: 100%; }
    @media (min-width: 992px) {
      .article-media-icons {
        width: 70%;
        padding: 25px 25px 5px; } }
    .article-media-icons .contents-counter-item {
      margin-bottom: 20px; }
    .article-media-icons.icon-3 .contents-counter-item {
      width: auto;
      flex: 1 0 auto; }
      @media (min-width: 768px) {
        .article-media-icons.icon-3 .contents-counter-item {
          width: calc(100% / 3); } }
    .article-media-icons.icon-4 .contents-counter-item {
      width: auto;
      flex: 1 0 auto; }
      @media (min-width: 992px) {
        .article-media-icons.icon-4 .contents-counter-item {
          width: 25%; } }
    .article-media-icons.icon-5 .contents-counter-item {
      width: auto;
      flex: 1 0 auto; }
      @media (min-width: 576px) {
        .article-media-icons.icon-5 .contents-counter-item {
          flex: 0 1 auto;
          width: calc(100% / 3); } }
      @media (min-width: 992px) {
        .article-media-icons.icon-5 .contents-counter-item {
          width: 20%; } }
    .article-media-icons .contents-counter-item .ch-info {
      padding-left: 15px; }
    .article-media-icons .contents-counter-item .ch-info-title {
      font-size: 1.375rem;
      font-weight: 500; }
    .article-media-icons .contents-counter-item .ch-img {
      width: 32px;
      height: 32px; }

.article-promo {
  margin: 30px 0;
  padding: 30px;
  position: relative;
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (min-width: 576px) {
    .article-promo {
      padding: 45px; } }
  .article-promo:before {
    content: '';
    background-color: rgba(9, 25, 34, 0.7);
    z-index: 1;
    position: absolute;
    border-radius: 5px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .article-promo:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    border-radius: 3px; }
  .article-promo-wrap {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff; }
  .article-promo-title {
    margin-bottom: 20px; }
    .article-promo-title span {
      font-family: "Lora", serif;
      font-size: 1.5rem; }
      @media (min-width: 576px) {
        .article-promo-title span {
          font-size: 1.625rem; } }
      @media (min-width: 992px) {
        .article-promo-title span {
          font-size: 1.75rem; } }
  .article-promo-text {
    margin-bottom: 30px; }
    .article-promo-text span {
      font-size: 1.0625rem;
      font-weight: 300;
      color: #F3F3F3; }

@media (min-width: 992px) {
  .article-faq-wrap {
    display: flex;
    align-items: center; } }

@media (min-width: 992px) {
  .article-faq-questions {
    flex: 0 1 auto;
    width: 65%; } }

.article-faq-img {
  display: none; }
  @media (min-width: 992px) {
    .article-faq-img {
      flex: 0 1 auto;
      width: 35%;
      display: flex;
      line-height: 1;
      padding-left: 30px; }
      .article-faq-img img {
        object-fit: cover;
        width: 100%; } }

.article-menu-wrap {
  padding: 15px 25px; }
  @media (min-width: 992px) {
    .article-menu-wrap {
      display: flex;
      align-items: stretch; } }

@media (min-width: 992px) {
  .article-menu-list {
    flex: 0 1 auto;
    width: 60%;
    padding: 40px 40px 20px 0; } }

.article-menu-img {
  display: none; }
  @media (min-width: 992px) {
    .article-menu-img {
      flex: 0 1 auto;
      width: 40%;
      display: flex;
      min-height: 300px;
      max-height: 100%; }
      .article-menu-img img {
        width: 100%;
        display: block;
        object-fit: cover;
        border-radius: 5px;
        box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); } }

.article-menu-footer {
  text-align: center;
  margin: 0 0 30px 0; }
  @media (min-width: 992px) {
    .article-menu-footer {
      margin: 30px 0;
      padding: 0 40px; } }
  .article-menu-footer p {
    font-size: 1rem;
    color: #717C89; }
  .article-menu-footer button {
    margin-top: 20px; }

.benefits-grid {
  background: #fff url("/local/include/assets/css-v4/../images/bgs/bg-benefits.png") 100% 50% no-repeat;
  background-size: contain;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 10px;
  padding: 10px 0 10px 0; }
  @media (min-width: 768px) {
    .benefits-grid {
      padding: 10px 0 20px 10px;
      flex: 0 1 auto;
      border-radius: 10px 0 0 10px; } }
  @media (min-width: 992px) {
    .benefits-grid {
      padding: 10px 10px 30px;
      background-size: 200px; } }
  @media (min-width: 1260px) {
    .benefits-grid {
      background-size: 250px; } }
  .benefits-grid-wrap {
    background-color: rgba(255, 255, 255, 0.9);
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px; }
    @media (min-width: 992px) {
      .benefits-grid-wrap {
        padding-right: 0;
        background-color: transparent;
        margin-right: 180px; } }
    @media (min-width: 1260px) {
      .benefits-grid-wrap {
        margin-right: 220px; } }
  .benefits-grid-item {
    padding: 20px 0 10px 20px; }
    @media (min-width: 992px) {
      .benefits-grid-item {
        padding: 20px 20px 10px;
        width: 50%; } }
    @media (min-width: 1260px) {
      .benefits-grid-item {
        padding: 30px 30px 10px; } }
    .benefits-grid-item-title {
      margin-bottom: 15px;
      padding-right: 15%;
      display: flex;
      align-items: flex-start; }
      @media (min-width: 992px) {
        .benefits-grid-item-title {
          display: block; } }
      .benefits-grid-item-title > .icon {
        flex: 0 1 auto;
        width: 30px;
        font-size: 1.75rem;
        color: #E76642; }
        @media (min-width: 992px) {
          .benefits-grid-item-title > .icon {
            width: auto;
            display: block;
            margin-bottom: 15px; } }
      .benefits-grid-item-title > span {
        font-family: "Lora", serif;
        font-size: 1.0625rem;
        font-weight: 500;
        color: #091922;
        flex: 0 1 auto;
        width: calc(100% - 30px);
        padding-left: 10px;
        display: inline-block;
        margin-top: 3px; }
        @media (min-width: 992px) {
          .benefits-grid-item-title > span {
            width: auto;
            padding-left: 0;
            margin-top: 0; } }
    .benefits-grid-item-text {
      line-height: 1.4; }
      .benefits-grid-item-text span {
        font-size: 0.9375rem;
        color: #50667E; }

.benefits-info-btns {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px; }
  @media (min-width: 768px) {
    .benefits-info-btns {
      gap: 50px;
      flex-direction: row; } }
  @media (min-width: 992px) {
    .benefits-info-btns {
      padding: 30px 30px 0; } }

@media (min-width: 992px) {
  .bid {
    display: flex;
    align-items: flex-start; } }

@media (min-width: 992px) {
  .bid-wrap {
    flex: 0 1 auto;
    width: calc(100% - 500px);
    padding-top: 30px; } }

@media (min-width: 1110px) {
  .bid-wrap {
    width: calc(100% - 550px); } }

@media (min-width: 1440px) {
  .bid-wrap {
    width: calc(100% - 600px); } }

.bid-wrap .title-decor {
  margin-bottom: 30px; }

.bid-img {
  display: none; }
  @media (min-width: 992px) {
    .bid-img {
      flex: 0 1 auto;
      width: 500px;
      display: flex;
      line-height: 1;
      position: relative;
      z-index: 1; } }
  @media (min-width: 1110px) {
    .bid-img {
      width: 550px; } }
  @media (min-width: 1440px) {
    .bid-img {
      width: 600px; } }
  .bid-img img {
    display: block;
    object-fit: cover;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    border-radius: 3px; }

.bid-form {
  padding: 20px;
  position: relative; }
  @media (min-width: 768px) {
    .bid-form {
      padding: 30px; } }
  @media (min-width: 1260px) {
    .bid-form {
      padding: 40px 60px 40px 40px; } }
  .bid-form:before {
    content: '';
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0; }
    @media (min-width: 992px) {
      .bid-form:before {
        right: -100px; } }
  .bid-form-row, .bid-form-footer {
    position: relative;
    z-index: 1; }
  .bid-form-row {
    margin-bottom: 25px; }
    @media (min-width: 768px) {
      .bid-form-row input {
        max-width: 90%; } }
    @media (min-width: 1260px) {
      .bid-form-row input {
        max-width: 70%; } }
    .bid-form-row input,
    .bid-form-row textarea {
      background-color: #fafafa !important; }
  @media (min-width: 576px) {
    .bid-form-footer {
      display: flex;
      align-items: center; } }
  .bid-form-footer .agree {
    text-align: left; }
    @media (min-width: 576px) {
      .bid-form-footer .agree {
        padding: 0 0 0 30px;
        margin: 0; } }

.blog {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .blog-item {
    flex: 0 1 auto;
    width: 100%;
    padding: 15px 15px 10px;
    display: flex;
    flex-direction: column; }
    @media (min-width: 992px) {
      .blog-item {
        width: calc(50% - 5px);
        padding: 20px 20px 15px; } }
    .blog-item-top {
      display: flex;
      flex-wrap: wrap; }
    .blog-item > div {
      flex: 0 1 auto; }
    .blog-item-img {
      line-height: 1;
      width: 120px;
      height: 120px;
      margin-bottom: 15px; }
      @media (min-width: 500px) {
        .blog-item-img {
          width: 140px;
          height: 140px; } }
      .blog-item-img a {
        display: flex;
        height: 100%; }
        .blog-item-img a img {
          border-radius: 3px;
          object-fit: cover; }
      .blog-item-img:hover img {
        opacity: .8; }
    .blog-item-info {
      width: calc(100% - 140px);
      padding-left: 15px; }
      @media (min-width: 992px) {
        .blog-item-info {
          padding-left: 20px; } }
      .blog-item-info-title {
        margin-bottom: 15px; }
        .blog-item-info-title .ch-title {
          color: #091922;
          font-size: 1rem;
          font-family: "Lora", serif;
          font-weight: 500; }
          @media (min-width: 425px) {
            .blog-item-info-title .ch-title {
              font-size: 1.125rem; } }
          .blog-item-info-title .ch-title:hover {
            color: #da5128; }
      .blog-item-info-text {
        display: none; }
        @media (min-width: 425px) {
          .blog-item-info-text {
            display: block;
            margin-bottom: 15px; } }
        .blog-item-info-text span {
          font-size: 0.9375rem;
          color: #717C89; }
    .blog-item-footer {
      margin-top: auto;
      border-top: 1px solid #F3F3F3;
      padding-top: 15px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: space-between; }
      .blog-item-footer .ico-inform {
        flex: 0 1 auto;
        margin-bottom: 5px;
        padding-right: 20px; }
      .blog-item-footer-tags {
        position: relative;
        padding-left: 25px;
        line-height: 1.2; }
        .blog-item-footer-tags:before {
          content: '\e930';
          font-family: "icomoon" !important;
          font-size: 1rem;
          color: #9FB0BA;
          position: absolute;
          top: 2px;
          left: 0; }
        .blog-item-footer-tags > a {
          font-size: 0.8125rem;
          white-space: nowrap;
          border-bottom: 1px dotted #E76642;
          display: inline-block;
          margin-bottom: 5px; }
          .blog-item-footer-tags > a:not(:last-child) {
            margin-right: 10px; }
          .blog-item-footer-tags > a:hover {
            border-bottom-color: transparent; }

.carousel-compact {
  margin: 0 -5px; }
  .carousel-compact .slick-track {
    display: flex;
    align-items: stretch; }
    .carousel-compact .slick-track .item {
      padding: 0 5px;
      height: auto;
      flex: 0 0 auto; }
      .carousel-compact .slick-track .item > div,
      .carousel-compact .slick-track .item > a {
        height: 100%;
        border: 1px solid #e0e0e0; }

.compact .clients-item {
  line-height: 1; }
  @media (min-width: 768px) {
    .compact .clients-item:hover {
      border-color: #50667E !important; }
      .compact .clients-item:hover .clients-item-title {
        border-color: #50667E !important; } }
  .compact .clients-item .clients-item-info-data {
    gap: 10px; }

.compact .carousel-compact .clients-item,
.compact .carousel-compact .products {
  width: 100% !important; }

.compact .carousel-compact .clients-item {
  height: 300px !important; }

@media (max-width: 575.98px) {
  .compact .carousel-compact .recipes-info .ico-inform {
    padding-left: 0; }
    .compact .carousel-compact .recipes-info .ico-inform i {
      display: none; }
    .compact .carousel-compact .recipes-info .ico-inform span {
      display: block; }
      .compact .carousel-compact .recipes-info .ico-inform span + span {
        margin-left: 0; }
  .compact .carousel-compact .recipes-category,
  .compact .carousel-compact .recipes-price-btn {
    display: none; }
  .compact .carousel-compact .recipes-info,
  .compact .carousel-compact .recipes-price,
  .compact .carousel-compact .recipes-title {
    margin-left: 8px;
    margin-right: 8px; }
  .compact .carousel-compact .clients-item {
    flex-direction: column;
    height: 270px !important; }
    .compact .carousel-compact .clients-item-info {
      width: 100% !important; }
    .compact .carousel-compact .clients-item-title {
      width: 100%;
      padding: 10px;
      text-align: center;
      border-left-width: 0;
      border-top: 1px solid #E0E0E3;
      margin-top: auto; }
      .compact .carousel-compact .clients-item-title span {
        writing-mode: inherit;
        transform: rotate(0); }
  .compact .carousel-compact .clients-item-info-img {
    width: auto; }
    .compact .carousel-compact .clients-item-info-img img {
      max-width: 100%; }
  .compact .carousel-compact .clients-item-info-data .ch-info {
    padding: 0;
    white-space: wrap; }
    .compact .carousel-compact .clients-item-info-data .ch-info span {
      text-wrap: balance;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
  .compact .carousel-compact .clients-hidden-wrap {
    padding: 10px; }
  .compact .carousel-compact .projects-title a {
    font-size: 0.9375rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: keep-all;
    line-break: normal;
    hyphens: auto; }
  .compact .carousel-compact .projects-logo {
    max-width: 75%; }
  .compact .carousel-compact .projects-img {
    height: 120px; }
  .compact .carousel-compact .projects-date, .compact .carousel-compact .projects-title, .compact .carousel-compact .projects-info {
    margin-left: 8px;
    margin-right: 8px; }
  .compact .carousel-compact .places-img {
    height: 120px; }
  .compact .carousel-compact .places-location {
    display: none !important; }
  .compact .carousel-compact .places-title {
    line-height: 1.3; }
    .compact .carousel-compact .places-title span {
      font-size: 0.9375rem;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
  .compact .carousel-compact .places-info {
    margin-top: 0; }
  .compact .carousel-compact .places-price {
    margin-top: auto; }
  .compact .carousel-compact .places-location, .compact .carousel-compact .places-title, .compact .carousel-compact .places-info, .compact .carousel-compact .places-price {
    margin-left: 8px;
    margin-right: 8px; } }

.compact {
  padding: 25px 10px; }
  @media (min-width: 576px) {
    .compact {
      padding: 30px 25px; } }
  .compact-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px; }
    .compact-title .headline {
      width: calc(100% - 100px);
      margin-bottom: 25px; }
  .compact .content {
    margin-bottom: 25px; }
  .compact-arrows {
    display: none; }
    @media (min-width: 576px) {
      .compact-arrows {
        display: flex;
        gap: 10px;
        padding-top: 10px; }
        .compact-arrows span .icon {
          font-size: 2.125rem;
          color: rgba(80, 102, 126, 0.7); }
        .compact-arrows span:hover {
          cursor: pointer; }
          .compact-arrows span:hover .icon {
            color: #da5128; } }

.compact-btn {
  padding-top: 25px; }
  @media (min-width: 768px) {
    .compact-btn {
      padding-top: 40px; } }

.carousel-title {
  padding-right: 80px; }
  @media (min-width: 992px) {
    .carousel-title {
      padding-right: 100px; } }

.carousel-four {
  position: relative;
  margin: 0 -5px; }
  .carousel-four .slick-track {
    display: flex;
    align-items: stretch; }
    .carousel-four .slick-track .item {
      padding: 0 5px;
      height: auto;
      flex: 0 0 auto; }
      .carousel-four .slick-track .item .projects {
        height: 100%; }
  .carousel-four .slick-arrow {
    position: absolute;
    top: -74px;
    transition-duration: .2s;
    z-index: 9;
    font-size: 32px;
    color: #50667E; }
    @media (min-width: 576px) {
      .carousel-four .slick-arrow {
        top: -80px; } }
    @media (min-width: 768px) {
      .carousel-four .slick-arrow {
        top: -95px; } }
    @media (min-width: 992px) {
      .carousel-four .slick-arrow {
        top: -100px;
        font-size: 36px; } }
    .carousel-four .slick-arrow.slick-next {
      right: 10px; }
    .carousel-four .slick-arrow.slick-prev {
      right: 50px; }
      @media (min-width: 992px) {
        .carousel-four .slick-arrow.slick-prev {
          right: 60px; } }
    .carousel-four .slick-arrow:hover {
      cursor: pointer;
      color: #E76642; }
    .carousel-four .slick-arrow.slick-disabled {
      color: #9FB0BA;
      cursor: default; }

.carousel-grid {
  margin-top: 20px;
  display: flex; }
  @media (min-width: 576px) {
    .carousel-grid {
      margin-top: 40px; } }
  .carousel-grid-info {
    display: none; }
    @media (min-width: 768px) {
      .carousel-grid-info {
        display: flex;
        flex: 0 1 auto;
        width: 400px; } }
    @media (min-width: 992px) {
      .carousel-grid-info {
        width: 470px; } }
  .carousel-grid-images {
    flex: 0 1 auto;
    width: 100%; }
    @media (min-width: 768px) {
      .carousel-grid-images {
        width: calc(100% - 400px); } }
    @media (min-width: 992px) {
      .carousel-grid-images {
        width: calc(100% - 470px); } }

.carousel-grid-info {
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 0 15px; }
  @media (min-width: 768px) {
    .carousel-grid-info {
      padding: 0 30px; } }
  @media (min-width: 992px) {
    .carousel-grid-info {
      padding: 0 50px 0 30px; } }
  .carousel-grid-info-arrow {
    display: flex;
    margin-bottom: 40px;
    position: relative; }
    .carousel-grid-info-arrow .carousel-grid-prev {
      margin-right: 10px; }
    .carousel-grid-info-arrow .carousel-grid-prev,
    .carousel-grid-info-arrow .carousel-grid-next {
      position: relative;
      flex: 0 1 auto;
      width: 34px;
      height: 34px;
      transition-duration: .2s;
      z-index: 2; }
      .carousel-grid-info-arrow .carousel-grid-prev > .icon,
      .carousel-grid-info-arrow .carousel-grid-next > .icon {
        color: #9FB0BA;
        font-size: 2.125rem; }
      .carousel-grid-info-arrow .carousel-grid-prev:hover,
      .carousel-grid-info-arrow .carousel-grid-next:hover {
        background: none; }
        .carousel-grid-info-arrow .carousel-grid-prev:hover .icon,
        .carousel-grid-info-arrow .carousel-grid-next:hover .icon {
          color: #50667E; }

.carousel-grid-info-wrap .ch-title {
  line-height: 1.3;
  margin-bottom: 20px; }
  .carousel-grid-info-wrap .ch-title span {
    font-size: 1.75rem;
    font-weight: 500;
    font-family: "Lora", serif;
    color: #1A3853;
    text-transform: uppercase; }
    @media (min-width: 992px) {
      .carousel-grid-info-wrap .ch-title span {
        font-size: 2.25rem; } }

.carousel-grid-info-wrap .ch-text {
  margin-bottom: 40px;
  line-height: 1.5; }
  .carousel-grid-info-wrap .ch-text span {
    font-size: 1.0625rem;
    color: #485059; }

.carousel-grid-info-img {
  padding: 0 10px; }
  .carousel-grid-info-img .ch-wrap {
    width: 320px;
    position: relative;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
    .carousel-grid-info-img .ch-wrap img {
      border-radius: 5px; }
    .carousel-grid-info-img .ch-wrap-info {
      position: absolute;
      bottom: 15px;
      left: 15px;
      right: 15px;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 20px 15px 30px;
      text-align: center;
      line-height: 1.5;
      border-radius: 3px; }
      @media (min-width: 768px) {
        .carousel-grid-info-img .ch-wrap-info {
          padding: 20px 25px; } }
      .carousel-grid-info-img .ch-wrap-info-text > span {
        display: none; }
        @media (min-width: 768px) {
          .carousel-grid-info-img .ch-wrap-info-text > span {
            color: #091922;
            font-size: 1.0625rem;
            display: inline-block; } }
  .carousel-grid-info-img .ch-info-hide {
    position: relative;
    z-index: 5; }
    @media (min-width: 768px) {
      .carousel-grid-info-img .ch-info-hide {
        display: none; } }
    .carousel-grid-info-img .ch-info-hide-title {
      margin-bottom: 20px;
      line-height: 1.2; }
      .carousel-grid-info-img .ch-info-hide-title span {
        font-family: "Lora", serif;
        font-size: 1.375rem; }
    .carousel-grid-info-img .ch-info-hide-text {
      margin-bottom: 20px; }

.slick-current .ch-wrap-info {
  background-color: rgba(26, 56, 83, 0.7); }
  .slick-current .ch-wrap-info span {
    color: #fff !important; }

.carte {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .carte-item {
    flex: 0 1 auto;
    width: calc(50% - 5px); }
    @media (min-width: 992px) {
      .carte-item {
        display: flex; } }
    .carte-item-img {
      width: 100%;
      height: 120px;
      border-radius: 5px 5px 0 0;
      overflow: hidden; }
      @media (min-width: 992px) {
        .carte-item-img {
          border-radius: 5px 0 0 5px;
          height: auto;
          flex: 0 1 auto;
          width: 140px; } }
      @media (min-width: 1260px) {
        .carte-item-img {
          width: 160px; } }
      .carte-item-img a {
        display: flex;
        height: 100%; }
        .carte-item-img a img {
          width: 100%;
          object-fit: cover;
          transition-duration: .2s; }
      .carte-item-img:hover img {
        opacity: .8; }
    .carte-item-title {
      padding: 20px;
      line-height: 1.3; }
      @media (min-width: 992px) {
        .carte-item-title {
          flex: 0 1 auto;
          width: calc(50% - 70px);
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column; } }
      @media (min-width: 1260px) {
        .carte-item-title {
          width: calc(55% - 80px); } }
      .carte-item-title a {
        color: #091922;
        font-weight: 500;
        font-family: "Lora", serif;
        font-size: 1.0625rem; }
        .carte-item-title a:hover {
          color: #da5128; }
    .carte-item-price {
      padding: 0 20px 20px;
      position: relative; }
      @media (min-width: 992px) {
        .carte-item-price {
          flex: 0 1 auto;
          width: calc(50% - 70px);
          padding: 20px; } }
      @media (min-width: 1260px) {
        .carte-item-price {
          padding: 20px 25px;
          width: calc(45% - 80px); } }
      .carte-item-price:before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 0;
        width: 1px;
        background-color: #EBEBEB; }
      .carte-item-price-item {
        margin-bottom: 15px;
        font-family: "Lora", serif; }
        .carte-item-price-item .ch-before {
          color: #50667E;
          font-size: 0.875rem; }
        .carte-item-price-item .ch-price {
          color: #091922;
          font-size: 1.25rem;
          font-weight: 600; }
          .carte-item-price-item .ch-price span {
            font-size: 0.875rem;
            font-weight: 400;
            margin-left: 5px; }
      .carte-item-price-link a {
        display: inline-block; }
        .carte-item-price-link a:before {
          content: '\e931';
          font-family: "icomoon" !important;
          display: inline-block;
          vertical-align: middle;
          margin-right: 10px;
          font-size: 1rem; }
        .carte-item-price-link a span {
          font-size: 0.875rem;
          border-bottom: 1px dashed #E76642;
          transition-duration: .2s; }
        .carte-item-price-link a:hover {
          color: #da5128; }
          .carte-item-price-link a:hover span {
            border-bottom-color: transparent; }

.case-banner {
  padding: 20px; }
  @media (min-width: 1110px) {
    .case-banner {
      padding: 30px; } }
  @media (min-width: 768px) {
    .case-banner-info {
      width: 70%;
      padding-right: 30px; } }
  .case-banner-img {
    display: none; }
    @media (min-width: 768px) {
      .case-banner-img {
        width: 30%;
        display: flex; } }
    .case-banner-img img {
      object-fit: cover;
      display: block;
      width: 100%; }
  .case-banner-content, .case-banner-grid {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dotted rgba(181, 198, 207, 0.5); }
  .case-banner-content p:first-of-type {
    padding-top: 5px; }
  .case-banner-content img {
    display: block;
    border: 1px solid #B5C6CF; }
  .case-banner-grid, .case-banner-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; }
    @media (min-width: 425px) {
      .case-banner-grid, .case-banner-footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px; } }
    @media (min-width: 992px) {
      .case-banner-grid, .case-banner-footer {
        grid-template-columns: repeat(3, 1fr); } }

.categories-grid-bg-1 {
  position: relative; }
  @media (min-width: 992px) {
    .categories-grid-bg-1:after, .categories-grid-bg-1:before {
      content: '';
      position: absolute;
      top: 120px;
      width: 315px;
      height: 315px;
      z-index: 0; } }
  @media (min-width: 992px) {
    .categories-grid-bg-1:after {
      left: -165px;
      background: url("/local/include/assets/css-v4/../images/bgs/plate-1.png") center no-repeat; } }
  @media (min-width: 992px) {
    .categories-grid-bg-1:before {
      right: -165px;
      background: url("/local/include/assets/css-v4/../images/bgs/plate-2.png") no-repeat 100% 0; } }

.categories-grid-bg-2 {
  position: relative; }
  @media (min-width: 992px) {
    .categories-grid-bg-2:after, .categories-grid-bg-2:before {
      content: '';
      position: absolute;
      top: 120px;
      width: 315px;
      height: 315px;
      z-index: 0;
      background: url("/local/include/assets/css-v4/../images/bgs/plate-vector.svg") center no-repeat; } }
  @media (min-width: 992px) {
    .categories-grid-bg-2:after {
      left: -165px; } }
  @media (min-width: 992px) {
    .categories-grid-bg-2:before {
      right: -165px; } }

.categories-grid {
  overflow: hidden; }
  .categories-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1; }

.categories-grid-item {
  flex: 0 1 auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
  border-right: 1px solid #F3F3F3;
  border-bottom: 1px solid #F3F3F3; }
  @media (min-width: 768px) {
    .categories-grid-item {
      width: 25%; } }
  @media (min-width: 992px) {
    .categories-grid-item {
      padding: 40px; } }
  @media (min-width: 1260px) {
    .categories-grid-item {
      padding: 55px; } }
  .categories-grid-item-icon {
    width: 80px;
    height: 80px;
    position: relative;
    background-color: #F3F8FA;
    border-radius: 50%;
    margin-bottom: 25px;
    transition-duration: .2s; }
    @media (min-width: 992px) {
      .categories-grid-item-icon {
        width: 110px;
        height: 110px; } }
    .categories-grid-item-icon > .icon {
      font-size: 2.5rem;
      transition-duration: .2s;
      color: #da5128;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media (min-width: 992px) {
        .categories-grid-item-icon > .icon {
          font-size: 3rem; } }
  .categories-grid-item-title {
    text-align: center;
    min-height: 45px; }
    .categories-grid-item-title span {
      font-size: 0.9375rem;
      text-transform: uppercase;
      color: #1A3853;
      font-weight: 500; }
  .categories-grid-item > a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .categories-grid-item:hover {
    background-color: rgba(80, 102, 126, 0.03); }
    .categories-grid-item:hover .categories-grid-item-icon {
      background-color: #E76642; }
      .categories-grid-item:hover .categories-grid-item-icon > .icon {
        color: #fff; }

.categories-grid-item-img {
  margin-bottom: 10px; }

.categories-grid-item-more {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E76642;
  position: relative;
  box-sizing: content-box;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (min-width: 992px) {
    .categories-grid-item-more {
      border: 15px solid #fff; } }
  .categories-grid-item-more > .icon {
    transition-duration: .3s;
    font-size: 2rem;
    color: #fff; }

.categories-grid-item:hover .categories-grid-item-more {
  background-color: #da5128; }
  .categories-grid-item:hover .categories-grid-item-more > .icon {
    transform: rotate(180deg); }

.clients {
  overflow: hidden; }
  @media (min-width: 576px) {
    .clients {
      display: flex;
      flex-wrap: wrap; } }
  .clients-item {
    flex: 0 1 auto;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E0E0E3;
    border-right: 1px solid #E0E0E3;
    height: 230px; }
    @media (max-width: 575.98px) {
      .clients-item {
        border-right-width: 0; } }
    @media (min-width: 576px) {
      .clients-item {
        width: 50%; } }
    @media (min-width: 992px) {
      .clients-item {
        width: 33.3333%; } }
    @media (min-width: 1260px) {
      .clients-item {
        width: 25%; } }
    .clients-item:nth-child(1) {
      border-top-width: 0; }
    @media (min-width: 576px) {
      .clients-item:nth-child(2) {
        border-top-width: 0; } }
    @media (min-width: 992px) {
      .clients-item:nth-child(3) {
        border-top-width: 0; } }
    @media (min-width: 1260px) {
      .clients-item:nth-child(4) {
        border-top-width: 0; } }
    .clients-item:nth-child(2n + 2) {
      border-right-width: 0; }
      @media (min-width: 992px) {
        .clients-item:nth-child(2n + 2) {
          border-right-width: 1px; } }
    @media (min-width: 992px) {
      .clients-item:nth-child(3n + 3) {
        border-right-width: 0; } }
    @media (min-width: 1260px) {
      .clients-item:nth-child(3n + 3) {
        border-right-width: 1px; } }
    @media (min-width: 1260px) {
      .clients-item:nth-child(4n + 4) {
        border-right-width: 0; } }
    .clients-item-info {
      padding: 10px;
      flex: 0 1 auto;
      width: calc(100% - 60px);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      .clients-item-info-img {
        width: 170px;
        height: 130px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px; }
        .clients-item-info-img img {
          display: block;
          object-fit: contain; }
      .clients-item-info-data {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 100%; }
        @media (min-width: 1260px) {
          .clients-item-info-data {
            width: 80%; } }
        .clients-item-info-data .ch-info {
          white-space: nowrap;
          padding: 0 5px; }
          .clients-item-info-data .ch-info .icon {
            font-size: 0.9375rem;
            color: #9FB0BA;
            display: inline-block;
            vertical-align: middle;
            margin-right: 8px; }
          .clients-item-info-data .ch-info span {
            font-size: 0.8125rem;
            color: #091922; }
    .clients-item-title {
      flex: 0 1 auto;
      text-align: center;
      line-height: 1.2;
      overflow: hidden;
      width: 60px;
      padding: 20px 5px;
      border-left: 1px solid #E0E0E3; }
      .clients-item-title span {
        position: relative;
        font-size: 0.9375rem;
        font-family: "Lora", serif;
        color: #717C89;
        display: inline-block;
        height: 100%;
        writing-mode: vertical-rl;
        transform: rotate(180deg); }
  .clients-hidden {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background-color: #7D96A4;
    z-index: 2; }
    .clients-hidden-wrap {
      display: flex;
      flex-direction: column;
      padding: 25px;
      height: 100%;
      position: relative; }
      .clients-hidden-wrap > a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    .clients-hidden .ch-title {
      margin-bottom: 15px; }
      .clients-hidden .ch-title span {
        font-family: "Lora", serif;
        font-size: 1.0625rem;
        color: #fff; }
    .clients-hidden .ch-info {
      margin-bottom: 10px;
      position: relative;
      padding-left: 30px; }
      .clients-hidden .ch-info > .icon {
        font-size: 1.125rem;
        color: #F1F3F8;
        opacity: .5;
        position: absolute;
        top: 2px;
        left: 0; }
      .clients-hidden .ch-info > span {
        font-size: 0.8125rem;
        color: #fff; }
        .clients-hidden .ch-info > span + span:before {
          content: '/';
          margin: 0 8px;
          color: rgba(255, 255, 255, 0.5); }
    .clients-hidden .ch-link {
      text-align: right;
      margin-top: auto; }
      .clients-hidden .ch-link .icon {
        color: #fff;
        font-size: 1.625rem; }

.clients-item:hover .clients-hidden {
  transition-duration: .2s;
  left: 0; }

@media (max-width: 575.98px) {
  .clients.clients-minimal {
    display: flex;
    flex-wrap: wrap; }
    .clients.clients-minimal .clients-item {
      width: 50%; }
      .clients.clients-minimal .clients-item:nth-child(odd) {
        border-right: 1px solid #E0E0E3; }
      .clients.clients-minimal .clients-item:nth-child(2) {
        border-top-width: 0; }
      .clients.clients-minimal .clients-item-title {
        display: none; }
      .clients.clients-minimal .clients-item-info {
        width: 100%; } }

.contents-1 {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  @media (min-width: 576px) {
    .contents-1 {
      padding: 30px; } }
  .contents-1 .content-top {
    position: relative; }
    .contents-1 .content-top-bg {
      display: none; }
      @media (min-width: 992px) {
        .contents-1 .content-top-bg {
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          overflow: hidden;
          border-radius: 3px;
          width: 380px;
          height: 320px;
          background-color: transparent;
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover; } }
      @media (min-width: 1260px) {
        .contents-1 .content-top-bg {
          width: 430px;
          height: 340px; } }
      .contents-1 .content-top-bg:after {
        content: '';
        position: absolute;
        background-color: rgba(9, 25, 34, 0.4);
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    @media (min-width: 992px) {
      .contents-1 .content-top-title {
        margin-left: 430px; } }
    @media (min-width: 1260px) {
      .contents-1 .content-top-title {
        padding-top: 20px;
        margin-left: 480px; } }
  .contents-1 .contents-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse; }
    @media (min-width: 992px) {
      .contents-1 .contents-bottom {
        padding-left: 35px;
        flex-direction: row; } }
    @media (min-width: 1260px) {
      .contents-1 .contents-bottom {
        padding-left: 65px; } }
    .contents-1 .contents-bottom .contents-media {
      flex: 0 1 auto;
      width: 100%; }
      @media (min-width: 992px) {
        .contents-1 .contents-bottom .contents-media {
          height: auto;
          width: 420px; } }
      @media (min-width: 1260px) {
        .contents-1 .contents-bottom .contents-media {
          width: 450px; } }
      .contents-1 .contents-bottom .contents-media-img {
        display: flex;
        position: relative;
        margin-bottom: 40px;
        overflow: hidden;
        height: 300px; }
        .contents-1 .contents-bottom .contents-media-img img {
          display: block;
          width: 100%;
          border-radius: 0 0 5px 5px;
          object-fit: cover; }
          @media (min-width: 992px) {
            .contents-1 .contents-bottom .contents-media-img img {
              box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
              border-radius: 5px; } }
        .contents-1 .contents-bottom .contents-media-img > a {
          position: absolute;
          color: #fff;
          opacity: .8;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0; }
          .contents-1 .contents-bottom .contents-media-img > a:after {
            content: '\e90d';
            font-family: "icomoon" !important;
            font-size: 80px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
          .contents-1 .contents-bottom .contents-media-img > a:hover {
            color: #FF0F00;
            opacity: 1; }
      .contents-1 .contents-bottom .contents-media-link {
        display: flex;
        justify-content: center; }
        @media (min-width: 992px) {
          .contents-1 .contents-bottom .contents-media-link {
            justify-content: flex-start; } }
    .contents-1 .contents-bottom .contents-text {
      flex: 0 1 auto;
      width: 100%; }
      @media (min-width: 992px) {
        .contents-1 .contents-bottom .contents-text {
          width: calc(100% - 420px); } }
      @media (min-width: 1260px) {
        .contents-1 .contents-bottom .contents-text {
          width: calc(100% - 450px); } }
      @media (min-width: 1260px) {
        .contents-1 .contents-bottom .contents-text .content {
          padding: 20px 40px 0; } }

.contents-2 {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }
  @media (min-width: 576px) {
    .contents-2 {
      padding: 30px; } }
  .contents-2 .contents-top,
  .contents-2 .contents-bottom {
    display: flex;
    flex-direction: column-reverse; }
    @media (min-width: 1110px) {
      .contents-2 .contents-top,
      .contents-2 .contents-bottom {
        flex-direction: row; } }
  .contents-2 .contents-top .contents-media {
    display: flex;
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
    padding-bottom: 20px; }
    @media (min-width: 1110px) {
      .contents-2 .contents-top .contents-media {
        height: auto;
        overflow: visible; } }
    .contents-2 .contents-top .contents-media img {
      width: 100%;
      display: block;
      object-fit: cover;
      border-radius: 3px; }
    .contents-2 .contents-top .contents-media-link {
      padding: 30px 25px;
      border-radius: 5px;
      box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
      background-color: rgba(255, 255, 255, 0.8);
      position: absolute;
      top: 50%;
      right: calc(50% - 75px);
      transform: translateY(-50%);
      transition-duration: .2s; }
      @media (min-width: 1110px) {
        .contents-2 .contents-top .contents-media-link {
          background-color: #fff;
          right: -25px; } }
      .contents-2 .contents-top .contents-media-link .ch-icon {
        display: block;
        margin-bottom: 20px;
        color: #da5128;
        transition-duration: .2s; }
        .contents-2 .contents-top .contents-media-link .ch-icon > .icon {
          font-size: 3rem; }
      .contents-2 .contents-top .contents-media-link .ch-title {
        font-weight: 500;
        color: #1A3853;
        font-size: 0.9375rem; }
      .contents-2 .contents-top .contents-media-link > a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
      .contents-2 .contents-top .contents-media-link:hover {
        box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
        .contents-2 .contents-top .contents-media-link:hover .ch-icon {
          color: #FF0F00; }
  @media (min-width: 768px) {
    .contents-2 .contents-top .contents-info-description {
      column-count: 2;
      column-gap: 2em;
      line-height: 1.4; } }
  .contents-2 .contents-top .contents-info-description p,
  .contents-2 .contents-top .contents-info-description ul {
    page-break-inside: avoid;
    break-inside: avoid; }
  .contents-2 .contents-bottom {
    border-top: 2px solid #F3F3F3;
    padding-top: 30px; }
    .contents-2 .contents-bottom .contents-download {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-top: 30px; }
      @media (min-width: 1110px) {
        .contents-2 .contents-bottom .contents-download {
          margin-top: 0;
          padding: 20px 20px 20px 0;
          align-items: flex-start; } }
      .contents-2 .contents-bottom .contents-download .link-icon-circle-wrap.bc-theme {
        background-color: #E76642; }

.contents-counter {
  background-color: #fff;
  border-radius: 0 5px 5px 5px;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 1110px) {
    .contents-counter {
      padding-right: 30px; } }
  .contents-counter-item {
    flex: 0 1 auto;
    display: flex;
    padding-right: 15px;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .contents-counter-item {
        margin-bottom: 0;
        width: calc(100% / 3); } }
    .contents-counter-item .ch-img {
      flex: 0 1 auto;
      width: 36px;
      height: 36px;
      line-height: 1; }
      .contents-counter-item .ch-img > img {
        object-fit: contain; }
    .contents-counter-item .ch-info {
      flex: 0 1 auto;
      width: calc(100% - 36px);
      padding-left: 20px;
      font-family: "Lora", serif; }
      .contents-counter-item .ch-info-title {
        font-size: 1.75rem;
        color: #da5128;
        line-height: 1;
        white-space: nowrap;
        margin: 5px 0 10px; }
      .contents-counter-item .ch-info-text {
        color: #1A3853;
        font-size: 0.9375rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: keep-all;
        line-break: normal;
        hyphens: auto; }

@media (min-width: 1110px) {
  .contents-2 .contents-top .contents-media,
  .contents-2 .contents-bottom .contents-download {
    flex: 0 1 auto;
    width: 40%; } }

@media (min-width: 1260px) {
  .contents-2 .contents-top .contents-media,
  .contents-2 .contents-bottom .contents-download {
    width: 30%; } }

@media (min-width: 1110px) {
  .contents-2 .contents-top .contents-info,
  .contents-2 .contents-bottom .contents-counter {
    flex: 0 1 auto;
    width: 60%;
    padding-left: 40px; } }

@media (min-width: 1260px) {
  .contents-2 .contents-top .contents-info,
  .contents-2 .contents-bottom .contents-counter {
    width: 70%;
    padding-left: 60px; } }

.contents-3 {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  @media (min-width: 576px) {
    .contents-3 {
      padding: 30px; } }
  @media (min-width: 992px) {
    .contents-3 {
      display: flex;
      align-items: flex-start; } }
  @media (min-width: 1260px) {
    .contents-3 {
      align-items: stretch; } }
  .contents-3 .contents-img-grid {
    display: flex;
    margin-bottom: 30px; }
    @media (min-width: 992px) {
      .contents-3 .contents-img-grid {
        margin-bottom: 0;
        flex: 0 1 auto;
        width: 50%; } }
    @media (min-width: 1260px) {
      .contents-3 .contents-img-grid {
        width: 45%; } }
    .contents-3 .contents-img-grid .ch-left {
      display: none; }
      @media (min-width: 425px) {
        .contents-3 .contents-img-grid .ch-left {
          flex: 0 1 auto;
          width: calc(60% - 5px);
          margin-right: 5px;
          display: flex; } }
      .contents-3 .contents-img-grid .ch-left > img {
        display: block;
        object-fit: cover;
        border-radius: 3px 0 0 3px; }
    .contents-3 .contents-img-grid .ch-right {
      width: 100%; }
      @media (min-width: 425px) {
        .contents-3 .contents-img-grid .ch-right {
          flex: 0 1 auto;
          width: 40%;
          display: flex;
          flex-direction: column; } }
      .contents-3 .contents-img-grid .ch-right .ch-title {
        flex: 0 1 auto;
        display: block;
        margin-bottom: 5px;
        background-color: #7D96A4;
        padding: 20px;
        border-radius: 0 3px 0 0; }
        @media (min-width: 425px) {
          .contents-3 .contents-img-grid .ch-right .ch-title {
            border-top-right-radius: 3px; } }
        @media (min-width: 768px) {
          .contents-3 .contents-img-grid .ch-right .ch-title {
            padding: 25px; } }
        @media (min-width: 1260px) {
          .contents-3 .contents-img-grid .ch-right .ch-title {
            padding: 40px 30px; } }
        .contents-3 .contents-img-grid .ch-right .ch-title span {
          color: #fff;
          font-family: "Lora", serif;
          font-size: 1.125rem; }
          .contents-3 .contents-img-grid .ch-right .ch-title span.ch-large {
            font-weight: 500;
            font-size: 2.25rem;
            white-space: nowrap;
            line-height: 1;
            display: block;
            margin-top: 10px; }
      .contents-3 .contents-img-grid .ch-right .ch-img {
        flex: 1 0 auto;
        display: flex;
        height: 180px;
        overflow: hidden; }
        @media (min-width: 425px) {
          .contents-3 .contents-img-grid .ch-right .ch-img {
            height: auto; } }
        .contents-3 .contents-img-grid .ch-right .ch-img > img {
          display: block;
          width: 100%;
          object-fit: cover;
          border-radius: 0 0 5px 0; }
          @media (min-width: 425px) {
            .contents-3 .contents-img-grid .ch-right .ch-img > img {
              border-bottom-right-radius: 3px; } }
  @media (min-width: 992px) {
    .contents-3 .contents-info {
      flex: 0 1 auto;
      width: 50%;
      padding-left: 30px; } }
  @media (min-width: 1260px) {
    .contents-3 .contents-info {
      width: 55%;
      padding-left: 40px; } }
  @media (min-width: 1440px) {
    .contents-3 .contents-info {
      padding: 20px 0 0 40px; } }

.contents-4 {
  padding: 20px;
  position: relative;
  overflow: hidden; }
  @media (min-width: 500px) {
    .contents-4 {
      padding: 25px; } }
  @media (min-width: 992px) {
    .contents-4 {
      padding: 30px; } }
  .contents-4:before {
    content: '';
    position: absolute;
    top: -90px;
    left: -90px;
    width: 180px;
    height: 180px;
    border-radius: 90px;
    background-color: #E76642;
    z-index: 1; }
  @media (min-width: 992px) {
    .contents-4 {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start; } }
  .contents-4 .contents-info {
    flex: 0 1 auto;
    padding: 15px;
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    background-color: #fff; }
    @media (min-width: 500px) {
      .contents-4 .contents-info {
        padding: 25px; } }
    @media (min-width: 992px) {
      .contents-4 .contents-info {
        margin-bottom: 0;
        width: 35%;
        padding: 35px; } }
    .contents-4 .contents-info .contents-links .link-icon-circle:last-child {
      margin-bottom: 0; }
    .contents-4 .contents-info-benefit {
      font-family: "Lora", serif; }
      .contents-4 .contents-info-benefit .ch-info {
        font-size: 1.75rem;
        color: #da5128;
        font-weight: 500;
        margin-right: 5px; }
      .contents-4 .contents-info-benefit .ch-text {
        font-size: 1.125rem;
        color: #1A3853; }
    @media (min-width: 992px) {
      .contents-4 .contents-info-description {
        line-height: 1.5; } }
    .contents-4 .contents-info-description p {
      color: #1A3853; }
  @media (min-width: 992px) {
    .contents-4 > .contents-text {
      flex: 0 1 auto;
      width: 65%; } }
  .contents-4 > .content {
    width: 100%; }
    @media (min-width: 992px) {
      .contents-4 > .content {
        margin-top: 20px; } }
  .contents-4 > .contents-text,
  .contents-4 > .content {
    padding: 0 15px 15px; }
    @media (min-width: 500px) {
      .contents-4 > .contents-text,
      .contents-4 > .content {
        padding: 25px 25px 15px; } }
    @media (min-width: 768px) {
      .contents-4 > .contents-text,
      .contents-4 > .content {
        padding: 20px 30px 10px; } }

.contents-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .contents-links > .link-icon-circle {
    flex: 0 1 auto;
    margin-bottom: 20px; }

.covers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .covers-item {
    padding: 5px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition-duration: .2s;
    flex: 1 1 auto;
    width: calc(50% - 5px); }
    @media (min-width: 576px) {
      .covers-item {
        padding: 12px; } }
    @media (min-width: 768px) {
      .covers-item {
        width: calc(100% / 3 - 8px); } }
    @media (min-width: 1260px) {
      .covers-item {
        width: calc(20% - 8px); } }
    .covers-item:hover {
      box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
    .covers-item-borders-top, .covers-item-borders-bottom {
      width: 100%;
      display: flex;
      justify-content: space-between; }
      .covers-item-borders-top:after, .covers-item-borders-top:before, .covers-item-borders-bottom:after, .covers-item-borders-bottom:before {
        content: '';
        width: 20px;
        height: 20px;
        display: block;
        border-top: 1px solid #E0E0E3;
        border-left: 1px solid #E0E0E3; }
        @media (min-width: 576px) {
          .covers-item-borders-top:after, .covers-item-borders-top:before, .covers-item-borders-bottom:after, .covers-item-borders-bottom:before {
            width: 40px;
            height: 40px; } }
    .covers-item-borders-top:after {
      transform: rotate(90deg); }
    .covers-item-borders-bottom {
      margin-top: auto; }
      .covers-item-borders-bottom:before {
        transform: rotate(270deg); }
      .covers-item-borders-bottom:after {
        transform: rotate(180deg); }
    .covers-item-title {
      margin: 0 0 25px; }
      @media (min-width: 576px) {
        .covers-item-title {
          margin: 10px 0 35px; } }
      @media (min-width: 1260px) {
        .covers-item-title {
          margin: 20px 0 50px; } }
      .covers-item-title span {
        display: inline-block;
        font-family: "Lora", serif;
        font-size: 1.25rem;
        color: #1A3853;
        text-transform: uppercase; }
        @media (min-width: 425px) {
          .covers-item-title span {
            font-size: 1.5rem; } }
        @media (min-width: 576px) {
          .covers-item-title span {
            font-size: 1.625rem; } }
        @media (min-width: 1260px) {
          .covers-item-title span {
            font-size: 1.75rem; } }
        .covers-item-title span:before {
          content: '';
          display: block;
          margin: 0 auto 10px;
          width: 56px;
          height: 17px;
          background: transparent url("/local/include/assets/css-v4/../images/decor/decor-1.svg") center no-repeat;
          background-size: contain; }
    .covers-item-icon {
      position: relative;
      margin-bottom: 25px; }
      @media (min-width: 576px) {
        .covers-item-icon {
          margin-bottom: 35px; } }
      @media (min-width: 1260px) {
        .covers-item-icon {
          margin-bottom: 50px; } }
      .covers-item-icon:before, .covers-item-icon:after {
        content: '';
        position: absolute;
        width: 32px;
        height: 1px;
        background-color: #E0E0E3;
        top: 50%; }
      .covers-item-icon:before {
        left: calc(50% + 32px); }
      .covers-item-icon:after {
        right: calc(50% + 32px); }
      .covers-item-icon .icon {
        font-size: 24px;
        color: #E76642; }
        @media (min-width: 425px) {
          .covers-item-icon .icon {
            font-size: 28px; } }
        @media (min-width: 576px) {
          .covers-item-icon .icon {
            font-size: 32px; } }
    @media (min-width: 576px) {
      .covers-item-price {
        margin-bottom: 20px; } }
    .covers-item-price span {
      font-family: "Lora", serif;
      color: #1A3853;
      font-weight: 600;
      font-size: 1rem; }
      @media (min-width: 425px) {
        .covers-item-price span {
          font-size: 1.125rem; } }
      @media (min-width: 576px) {
        .covers-item-price span {
          font-size: 1.25rem; } }
      .covers-item-price span:before, .covers-item-price span:after {
        font-weight: 500;
        font-size: 0.75rem; }
        @media (min-width: 576px) {
          .covers-item-price span:before, .covers-item-price span:after {
            font-size: 0.8125rem; } }
      .covers-item-price span:before {
        content: attr(data-before);
        margin-right: 7px; }
      .covers-item-price span:after {
        content: attr(data-after);
        margin-left: 7px; }

.directions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; }
  .directions-item {
    flex: 0 1 auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition-duration: .1s;
    width: calc(50% - 5px); }
    @media (min-width: 768px) {
      .directions-item {
        width: calc(33.3333% - 7px); } }
    @media (min-width: 992px) {
      .directions-item {
        width: calc(20% - 8px); } }
    .directions-item:hover {
      box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
    .directions-item > a {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .directions-item-info {
      flex: 0 1 auto;
      padding: 20px 10px; }
      @media (min-width: 425px) {
        .directions-item-info {
          padding: 30px 15px 0; } }
      .directions-item-info .ch-title {
        margin-bottom: 40px;
        position: relative; }
        .directions-item-info .ch-title:after {
          content: '';
          position: absolute;
          bottom: -20px;
          left: calc(50% - 18px);
          width: 36px;
          height: 2px;
          background: #E76642; }
        .directions-item-info .ch-title span {
          font-family: "Lora", serif;
          font-size: 1.0625rem;
          font-weight: 500;
          color: #1A3853; }
          @media (max-width: 424.98px) {
            .directions-item-info .ch-title span {
              overflow-wrap: break-word;
              word-wrap: break-word;
              word-break: keep-all;
              line-break: normal;
              hyphens: auto; } }
          @media (min-width: 425px) {
            .directions-item-info .ch-title span {
              font-size: 1.25rem; } }
      .directions-item-info .ch-price {
        margin-bottom: 5px;
        font-family: "Lora", serif; }
        @media (min-width: 425px) {
          .directions-item-info .ch-price {
            margin-bottom: 30px; } }
        .directions-item-info .ch-price span {
          white-space: nowrap; }
        .directions-item-info .ch-price-before {
          color: #50667E;
          font-size: 0.8125rem;
          margin-right: 5px; }
        .directions-item-info .ch-price-item {
          color: #1A3853;
          font-weight: 600;
          font-size: 1.0625rem; }
          .directions-item-info .ch-price-item span {
            font-size: 0.875rem;
            margin-left: 2px; }
    .directions-item-img {
      flex: 0 1 auto;
      line-height: 1;
      margin-top: auto;
      overflow: hidden; }
      .directions-item-img img {
        position: relative;
        bottom: -2px; }

@media (min-width: 992px) {
  .directions-4 .directions-item {
    width: calc(25% - 8px); } }

@media (min-width: 1260px) {
  .directions-6 .directions-item {
    width: calc(100% / 6 - 9px); } }

.features {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }
  @media (min-width: 1110px) {
    .features {
      display: flex;
      flex-wrap: wrap; } }
  @media (min-width: 1110px) {
    .features-square {
      flex: 0 1 auto;
      width: 45%; } }
  @media (min-width: 1110px) {
    .features-text {
      flex: 0 1 auto;
      width: 55%; } }
  @media (min-width: 1110px) {
    .features-square {
      padding-right: 20px; } }
  .features-square-wrap {
    padding: 60px 30px;
    position: relative; }
    @media (min-width: 500px) {
      .features-square-wrap {
        padding: 50px; } }
    @media (min-width: 1110px) {
      .features-square-wrap {
        padding: 70px; } }
  .features-square__left-bg, .features-square__right-bg {
    position: absolute;
    width: 160px;
    height: 160px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0; }
  .features-square__left-bg {
    top: 0;
    left: 0; }
  .features-square__right-bg {
    bottom: 0;
    right: 0; }
  .features-square__conent-wr {
    position: relative;
    padding: 30px 25px;
    background-color: #fff;
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    z-index: 1;
    height: 100%; }
    @media (min-width: 500px) {
      .features-square__conent-wr {
        padding: 40px; } }
    .features-square__conent-wr .content {
      line-height: 1.5;
      color: #50667E; }
  .features-text {
    padding: 10px 25px 25px; }
    @media (min-width: 500px) {
      .features-text {
        padding: 40px 40px 30px; } }
    @media (min-width: 1110px) {
      .features-text {
        padding: 50px 40px 0 0; } }
    .features-text-list li {
      margin-bottom: 20px;
      position: relative;
      padding-left: 30px;
      color: #485059; }
      .features-text-list li:before {
        content: '\e937';
        font-family: "icomoon" !important;
        font-size: 1.125rem;
        color: #E76642;
        position: absolute;
        top: -2px;
        left: 0; }
      .features-text-list li strong {
        display: block;
        margin-bottom: 10px;
        font-weight: 500;
        color: #1A3853;
        font-family: "Lora", serif;
        font-size: 1.125rem; }
  .features > .content {
    padding: 0 25px 25px; }
    @media (min-width: 500px) {
      .features > .content {
        padding: 0 40px 40px; } }

.features-content {
  display: flex;
  flex-wrap: wrap; }
  .features-content > div {
    flex: 0 1 auto; }
  .features-content-title {
    width: 100%; }
  .features-content-txt {
    width: 100%; }
    @media (min-width: 768px) {
      .features-content-txt {
        width: 60%;
        padding-right: 35px; } }
  .features-content-img {
    width: 100%;
    height: 300px;
    display: flex;
    margin-top: 30px; }
    @media (min-width: 768px) {
      .features-content-img {
        margin-top: 0;
        height: auto;
        width: 40%; } }
    .features-content-img > img {
      object-fit: cover;
      width: 100%; }

.fixed-cart-wrap {
  display: flex;
  align-items: center;
  background-color: #50667E;
  padding: 8px 30px 8px 15px;
  border-radius: 3px 3px  0 0;
  position: relative; }
  .fixed-cart-wrap:after {
    content: '\e9a7';
    font-family: "icomoon" !important;
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7); }
    @media (min-width: 425px) {
      .fixed-cart-wrap:after {
        right: 20px; } }

.fixed-cart > div {
  flex: 0 1 auto; }

.fixed-cart-icon {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 3px;
  background-color: #E76642; }
  .fixed-cart-icon > .icon {
    font-size: 1.125rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.fixed-cart-info {
  width: calc(100% - 40px);
  padding-left: 15px; }
  .fixed-cart-info > span {
    display: block; }
  .fixed-cart-info-sum {
    font-size: 1rem;
    font-weight: 500;
    color: #fff; }
  .fixed-cart-info-bonus {
    font-size: 0.8125rem;
    font-weight: 300;
    color: #F3F3F3; }

.fixed-cart-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.footer {
  padding-bottom: 20px;
  background: #091922 url("/local/include/assets/css-v4/../images/bgs/footer-bg.jpg") center no-repeat;
  background-size: cover;
  position: relative; }
  @media (min-width: 576px) {
    .footer {
      padding-bottom: 70px; } }
  @media (min-width: 992px) {
    .footer {
      padding-bottom: 120px;
      margin-top: 100px; } }
  .footer:before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    @media (min-width: 992px) {
      .footer:before {
        background-color: rgba(0, 0, 0, 0.75); } }

.footer-top,
.footer-middle,
.footer-bottom {
  position: relative;
  z-index: 1; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(183, 180, 179, 0.3);
  line-height: 1; }
  .footer-top-logo {
    display: none; }
    @media (min-width: 576px) {
      .footer-top-logo {
        display: block; } }

.footer-social {
  display: flex;
  gap: 15px; }
  .footer-social a {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background-color: rgba(247, 247, 247, 0.2);
    position: relative; }
    .footer-social a > .icon {
      font-size: 1.5rem;
      transition-duration: .2s;
      color: #9FB0BA;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .footer-social a:hover > .icon {
      color: #fff; }
    .footer-social a:hover.social-vk {
      background-color: #4C75A3; }
    .footer-social a:hover.social-yz {
      background-color: #000; }
    .footer-social a:hover.social-tg {
      background-color: #229ED9; }
    .footer-social a:hover.social-pt {
      background-color: #E93F33; }
    .footer-social a:hover.social-yt {
      background-color: #FF0000; }

.footer-middle {
  padding: 30px 0;
  border-bottom: 1px dashed rgba(183, 180, 179, 0.3); }
  @media (min-width: 768px) {
    .footer-middle {
      display: flex;
      flex-wrap: wrap; } }
  @media (min-width: 992px) {
    .footer-middle {
      padding: 50px 0; } }

@media (min-width: 768px) {
  .footer-menu {
    flex: 0 1 auto;
    width: 75%; } }

.footer-info {
  margin-top: 30px; }
  @media (min-width: 768px) {
    .footer-info {
      margin-top: 0;
      flex: 0 1 auto;
      width: 25%; } }
  @media (max-width: 767.98px) {
    .footer-info .footer-list {
      column-count: 2; } }
  @media (max-width: 575.98px) {
    .footer-info .footer-list {
      column-count: auto; } }

.footer-title {
  position: relative;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(159, 176, 186, 0.2); }
  @media (min-width: 576px) {
    .footer-title {
      padding: 0;
      background-color: transparent; } }
  @media (max-width: 575.98px) {
    .footer-title:hover {
      cursor: pointer;
      background-color: rgba(159, 176, 186, 0.3); } }
  .footer-title:after {
    content: '\e92a';
    font-family: "icomoon" !important;
    color: #E76642;
    position: absolute;
    top: 19px;
    right: 20px;
    font-size: 12px; }
    @media (min-width: 576px) {
      .footer-title:after {
        display: none; } }
  .footer-title span {
    font-size: 1.0625rem;
    font-family: "Lora", serif;
    color: #E76642;
    text-transform: uppercase; }

.footer-list {
  padding: 0 15px;
  display: none; }
  @media (min-width: 576px) {
    .footer-list {
      display: block;
      padding: 0; } }
  .footer-list li {
    margin-bottom: 15px; }
    .footer-list li a {
      color: #F1F3F8;
      font-weight: 300; }
      .footer-list li a:hover {
        color: #E76642; }

.footer-middle-col.open-block .footer-list {
  display: block; }

.footer-middle-col.open-block .footer-title:after {
  transform: rotate(180deg); }

@media (min-width: 576px) {
  .footer-list-menu {
    column-count: 2;
    column-gap: 25px; } }

@media (min-width: 992px) {
  .footer-list-menu {
    column-count: 3; } }

.footer-bottom {
  padding: 40px 0 20px; }
  @media (min-width: 576px) {
    .footer-bottom {
      display: flex;
      flex-wrap: wrap; } }

.footer-contact {
  margin-bottom: 20px;
  display: flex; }
  @media (min-width: 576px) {
    .footer-contact {
      flex: 0 1 auto;
      width: 50%;
      display: block; } }
  @media (min-width: 992px) {
    .footer-contact {
      width: 25%; } }
  .footer-contact-icon {
    margin-bottom: 15px;
    width: 30px; }
    .footer-contact-icon .icon {
      color: #E76642;
      font-size: 1.25rem; }
  .footer-contact-data {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 1.5;
    padding-left: 10px; }
    @media (min-width: 576px) {
      .footer-contact-data {
        padding-left: 0; } }
    .footer-contact-data .ch-info,
    .footer-contact-data .ch-info-item,
    .footer-contact-data .ch-info-small {
      color: #F1F3F8;
      font-weight: 300;
      margin-bottom: 20px; }
    .footer-contact-data .ch-info-title {
      color: #B7B4B3;
      font-weight: 300; }
    .footer-contact-data .ch-info-border {
      border-bottom: 1px dashed #F1F3F8; }
      .footer-contact-data .ch-info-border:hover {
        border-bottom-color: transparent; }
    .footer-contact-data a.ch-info:hover, .footer-contact-data a.ch-info-item:hover {
      color: #E76642; }
    .footer-contact-data .ch-info {
      margin-bottom: 20px; }
      .footer-contact-data .ch-info-title {
        display: block;
        margin-bottom: 3px;
        font-size: 0.8125rem; }
      .footer-contact-data .ch-info-small {
        font-size: 0.875rem; }
      .footer-contact-data .ch-info-messengers {
        margin-bottom: 20px; }
        .footer-contact-data .ch-info-messengers a {
          margin-right: 15px; }

.formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .formats-item {
    flex: 0 1 auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition-duration: .2s;
    position: relative; }
    .formats-item:hover {
      box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
    .formats-item > a {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .formats-item-top {
      flex: 0 1 auto;
      margin-bottom: 25px;
      position: relative; }
      .formats-item-top img {
        border-radius: 50%;
        display: block; }
      .formats-item-top-price {
        height: 94px;
        width: 94px;
        border: 8px solid #fff;
        border-radius: 50%;
        background-color: #50667E;
        position: absolute;
        bottom: -16px;
        right: -15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden; }
        @media (min-width: 576px) {
          .formats-item-top-price {
            right: -24px; } }
        .formats-item-top-price span {
          color: #fff;
          white-space: nowrap; }
          .formats-item-top-price span.ch-price {
            font-family: "Lora", serif;
            font-size: 1.0625rem;
            font-weight: 500;
            margin: 3px 0 2px; }
            .formats-item-top-price span.ch-price-before, .formats-item-top-price span.ch-price-after {
              font-size: 0.7rem;
              line-height: 1; }
    .formats-item-info {
      margin-bottom: 20px; }
      @media (min-width: 576px) {
        .formats-item-info {
          margin-bottom: 30px; } }
      .formats-item-info-title {
        margin-bottom: 15px; }
        .formats-item-info-title span {
          font-family: "Lora", serif;
          font-size: 1.25rem;
          color: #091922;
          font-weight: 500; }
          @media (min-width: 576px) {
            .formats-item-info-title span {
              font-size: 1.5rem; } }
      .formats-item-info-text span {
        font-size: 0.9375rem;
        color: #717C89;
        line-height: 1.5; }
    .formats-item-bottom {
      margin-top: auto; }
      .formats-item-bottom .icon {
        font-size: 1.75rem;
        color: #da5128; }

.formats .formats-item {
  width: 100%; }
  @media (min-width: 425px) {
    .formats .formats-item {
      width: calc(50% - 5px); } }
  @media (min-width: 768px) {
    .formats .formats-item {
      width: calc(33.33333% - 7px); } }
  @media (min-width: 992px) {
    .formats .formats-item {
      width: calc(25% - 8px); } }

@media (min-width: 1260px) {
  .formats.formats-3 .formats-item {
    width: calc(33.33333% - 8px); } }

@media (min-width: 1260px) {
  .formats.formats-5 .formats-item {
    width: calc(20% - 8px); } }

.gallery {
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 5px;
  column-fill: balance;
  gap: 10px;
  column-gap: 10px; }
  @media (min-width: 425px) {
    .gallery {
      column-count: 2; } }
  @media (min-width: 992px) {
    .gallery {
      column-count: 3; } }
  .gallery:after {
    content: '';
    flex-grow: 999; }

.slick-dots {
  padding: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center; }
  .slick-dots li {
    flex: 0 1 auto;
    padding: 0 5px; }
    .slick-dots li button {
      font-size: 0;
      width: 8px;
      height: 8px;
      background-color: #7D96A4;
      border-radius: 50%; }
    .slick-dots li.slick-active button {
      background-color: #E76642; }

.gallery-filter {
  margin-bottom: 25px;
  text-align: center;
  line-height: 1;
  position: relative; }
  .gallery-filter:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40px;
    background: linear-gradient(270deg, #f3f3f3 0%, rgba(243, 243, 243, 0.8) 30%, rgba(243, 243, 243, 0.6) 60%, rgba(243, 243, 243, 0.5) 80%, rgba(243, 243, 243, 0.3) 100%);
    z-index: 2; }
    @media (min-width: 576px) {
      .gallery-filter:after {
        width: 80px; } }
  .gallery-filter .item {
    padding-right: 10px;
    display: inline-block; }
  .gallery-filter .btn-gallery {
    border: 2px solid #50667E; }
    .gallery-filter .btn-gallery span {
      font-size: 0.875rem; }
    .gallery-filter .btn-gallery:not(.btn-active) {
      background-color: #fff; }
      .gallery-filter .btn-gallery:not(.btn-active) span {
        color: #1A3853; }
    .gallery-filter .btn-gallery.btn-active {
      background-color: #50667E; }

.gallery > a {
  display: block;
  position: relative;
  margin-bottom: 5px; }
  .gallery > a > img {
    transition-duration: .2s;
    filter: brightness(0.8);
    width: 100%; }
  .gallery > a[data-video]:after {
    content: '\e90d';
    font-family: "icomoon" !important;
    font-size: 3.75rem;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .gallery > a:hover {
    cursor: zoom-in; }
    .gallery > a:hover > img {
      filter: brightness(1); }

.gallery-filter,
.block-menu-gallery {
  display: none; }
  @media (min-width: 576px) {
    .gallery-filter,
    .block-menu-gallery {
      display: block; } }

.lg-video-container video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
  display: block;
  margin: 0 auto;
  object-fit: contain; }

.vjs-big-play-button {
  display: none !important; }

.lg-object.lg-video-poster {
  object-fit: cover !important; }

.lg-thumb-item.active {
  border: 2px solid #FF0F00 !important; }

@media (max-width: 767.98px) {
  .lg-prev.lg-icon,
  .lg-next.lg-icon {
    display: none !important; } }

.gallery-mobile {
  display: block; }
  @media (min-width: 576px) {
    .gallery-mobile {
      display: none; } }

.gallery-mobile-list,
.gallery-mobile-single {
  padding: 25px 15px; }

.gallery-mobile-list-item {
  position: relative;
  background-color: #F3F8FA;
  display: flex;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 3px; }
  .gallery-mobile-list-item:before {
    content: '';
    position: absolute;
    right: 10px;
    top: calc(50% - 18px);
    width: 36px;
    height: 36px;
    z-index: 2;
    background-color: rgba(181, 198, 207, 0.15); }
  .gallery-mobile-list-item:after {
    content: '\e92d';
    font-family: "icomoon" !important;
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
    color: #E76642;
    font-size: 1rem; }
  .gallery-mobile-list-item .ch-img {
    flex: 0 1 auto;
    width: 48px;
    height: 48px;
    line-height: 1;
    border: 1px solid rgba(181, 198, 207, 0.5);
    border-radius: 2px;
    display: flex; }
    .gallery-mobile-list-item .ch-img > img {
      display: block;
      object-fit: cover; }
  .gallery-mobile-list-item .ch-info {
    flex: 0 1 auto;
    width: calc(100% - 48px);
    padding: 2px 0 0 12px; }
    .gallery-mobile-list-item .ch-info-title {
      margin-bottom: 2px; }
      .gallery-mobile-list-item .ch-info-title span {
        font-size: 1rem;
        font-family: "Lora", serif;
        color: #1A3853;
        font-weight: 500; }
    .gallery-mobile-list-item .ch-info-data span {
      font-size: 0.8125rem;
      font-weight: 500;
      color: #50667E; }
  .gallery-mobile-list-item > .lightgallery > a:first-of-type {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .gallery-mobile-list-item > .lightgallery img {
    display: none; }
  .gallery-mobile-list-item:hover, .gallery-mobile-list-item:focus {
    cursor: pointer;
    outline: 1px solid #E76642; }

.gallery-mobile-single-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  gap: 10px;
  height: 330px; }
  .gallery-mobile-single-grid > a {
    display: flex;
    line-height: 1;
    position: relative; }
    .gallery-mobile-single-grid > a:nth-child(n+5) {
      display: none !important; }
    .gallery-mobile-single-grid > a > img {
      object-fit: cover;
      width: 100%;
      transition-duration: .2s;
      border-radius: 2px;
      filter: brightness(0.7); }
    .gallery-mobile-single-grid > a[data-video]:after {
      content: '\e90d';
      font-family: "icomoon" !important;
      font-size: 3.5rem;
      color: rgba(255, 255, 255, 0.5);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .gallery-mobile-single-grid > a .ch-data {
      padding: 10px;
      z-index: 2;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .gallery-mobile-single-grid > a .ch-data-info {
        margin-bottom: 10px; }
        .gallery-mobile-single-grid > a .ch-data-info span {
          white-space: nowrap;
          font-size: 0.875rem;
          color: #F3F8FA; }
      .gallery-mobile-single-grid > a .ch-data .btn {
        height: 28px;
        padding: 0 10px; }
    .gallery-mobile-single-grid > a:hover, .gallery-mobile-single-grid > a:focus {
      cursor: zoom-in; }
      .gallery-mobile-single-grid > a:hover > img, .gallery-mobile-single-grid > a:focus > img {
        filter: brightness(1); }
  .gallery-mobile-single-grid .grid-item-1 {
    grid-row: 1 / 4;
    grid-column: 1 / 2; }
  .gallery-mobile-single-grid .grid-item-2 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    height: 115px; }
  .gallery-mobile-single-grid .grid-item-3 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: 115px; }
  .gallery-mobile-single-grid .grid-item-4 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    height: 84px; }
    .gallery-mobile-single-grid .grid-item-4 > img {
      filter: brightness(0.5) !important; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; }
  @media (min-width: 576px) {
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 20px; } }
  @media (min-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(5, 1fr); } }
  .gallery-grid-item {
    transition-duration: .2s; }
    .gallery-grid-item img {
      display: block;
      border: 2px solid #F1F3F8; }
    .gallery-grid-item:hover {
      opacity: .8; }

@media (max-width: 767.98px) {
  .grid-filter {
    background-color: #fff; } }

@media (max-width: 767.98px) {
  .grid-filter-wrap {
    padding: 20px 20px 70px; } }

@media (min-width: 768px) {
  .grid-filter-wrap {
    display: flex;
    flex-wrap: wrap; } }

.grid-filter-item {
  flex: 0 1 auto;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .grid-filter-item {
      margin-bottom: 0;
      border-right: 1px solid #E0E0E3; } }
  @media (min-width: 768px) {
    .grid-filter-item .ch-title {
      padding: 10px 20px;
      background-color: #7D96A4; } }
  .grid-filter-item .ch-title span {
    font-weight: 500;
    color: #091922;
    font-size: 0.875rem;
    text-transform: uppercase; }
    @media (min-width: 768px) {
      .grid-filter-item .ch-title span {
        text-transform: none;
        color: #fff; } }
  .grid-filter-item:nth-child(1) .ch-title {
    border-top-left-radius: 3px; }
  @media (min-width: 1260px) {
    .grid-filter-item:last-child .ch-title {
      border-top-right-radius: 3px; } }
  .grid-filter-item .ch-element {
    padding: 25px 20px;
    background-color: #fff; }
    .grid-filter-item .ch-element .range-slider > input {
      display: none; }

@media (min-width: 768px) {
  .grid-filter-5 .grid-filter-item {
    width: 33.3333%; } }

@media (min-width: 1260px) {
  .grid-filter-5 .grid-filter-item {
    width: 20%; } }

@media (min-width: 768px) {
  .grid-filter-4 .grid-filter-item {
    width: 33.3333%; } }

@media (min-width: 1260px) {
  .grid-filter-4 .grid-filter-item {
    width: 25%; } }

@media (min-width: 768px) {
  .grid-filter-3 .grid-filter-item {
    width: 33.3333%; } }

.grid-links {
  padding: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr); }
  @media (min-width: 768px) {
    .grid-links {
      grid-template-columns: repeat(3, 1fr); } }
  .grid-links-item {
    display: flex;
    position: relative;
    border-radius: 3px; }
    .grid-links-item > img {
      display: block;
      object-fit: cover;
      width: 100%; }
    .grid-links-item:after {
      content: '';
      border-radius: 3px;
      background: rgba(24, 26, 32, 0.4);
      position: absolute;
      z-index: 1;
      transition-duration: .2s;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .grid-links-item-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 15px;
      min-height: 50%;
      display: flex;
      flex-direction: column;
      background: linear-gradient(0deg, #181A20 0%, rgba(12, 13, 16, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
      z-index: 3;
      border-radius: 0 0 3px 3px; }
      @media (min-width: 500px) {
        .grid-links-item-title {
          padding: 25px; } }
      .grid-links-item-title-wrap {
        margin-top: auto;
        position: relative;
        padding: 10px;
        border-left: 1px solid #E76642; }
        @media (min-width: 500px) {
          .grid-links-item-title-wrap {
            padding: 10px 15px 15px; } }
        .grid-links-item-title-wrap:before, .grid-links-item-title-wrap:after {
          content: '';
          position: absolute;
          background-color: #E76642; }
        .grid-links-item-title-wrap:before {
          height: 10px;
          width: 1px;
          bottom: -10px;
          left: -1px; }
        .grid-links-item-title-wrap:after {
          bottom: 0;
          left: -10px;
          height: 1px;
          width: 75px; }
      .grid-links-item-title-item {
        font-family: "Lora", serif;
        font-weight: 500;
        color: #fff;
        font-size: 1rem; }
        @media (min-width: 500px) {
          .grid-links-item-title-item {
            font-size: 1.125rem; } }
        @media (min-width: 768px) {
          .grid-links-item-title-item {
            font-size: 1.25rem; } }
      .grid-links-item-title-price {
        display: none; }
        @media (min-width: 500px) {
          .grid-links-item-title-price {
            display: block;
            margin-top: 8px;
            color: #F1F0EF;
            font-size: 0.875rem; } }
    .grid-links-item:hover:after {
      background: transparent; }

@media (min-width: 992px) {
  .grid-links.grid-links-4 {
    grid-template-columns: repeat(4, 1fr); }
    .grid-links.grid-links-4 .grid-links-item-title-item {
      font-size: 1.125rem; }
    .grid-links.grid-links-4 .grid-links-item-title-price {
      font-size: 0.8125rem; } }

.grid-sets {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr); }
  @media (min-width: 500px) {
    .grid-sets {
      grid-template-columns: repeat(2, 1fr); } }

.grid-set {
  display: flex;
  padding: 10px;
  flex-direction: column;
  background-image: url("/local/include/assets/css-v4/../images/site/logo-short-grey.svg");
  background-repeat: no-repeat;
  background-position: 98% 98%;
  background-size: 40px; }
  @media (min-width: 768px) {
    .grid-set {
      align-items: center;
      flex-direction: row; } }
  .grid-set .grid-links-item {
    flex: 0 1 auto;
    width: 100%; }
    @media (min-width: 768px) {
      .grid-set .grid-links-item {
        width: 50%;
        min-height: 260px; } }
  .grid-set .grid-set-links {
    padding: 15px 10px; }
    @media (min-width: 768px) {
      .grid-set .grid-set-links {
        width: 50%;
        padding: 0 0 0 20px; } }
    .grid-set .grid-set-links-title {
      margin-bottom: 15px; }
      .grid-set .grid-set-links-title span {
        color: #7D96A4;
        font-family: "Lora", serif;
        font-weight: 500; }
    .grid-set .grid-set-links-list a {
      display: block;
      position: relative;
      padding-left: 15px;
      color: #181A20;
      font-family: "Lora", serif; }
      .grid-set .grid-set-links-list a:hover {
        color: #da5128; }
      .grid-set .grid-set-links-list a:before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #E76642;
        position: absolute;
        top: 7px;
        left: 0; }
      .grid-set .grid-set-links-list a:not(:last-of-type) {
        margin-bottom: 15px; }

.historical-row {
  margin-top: 35px;
  position: relative;
  padding-left: 50px; }

.historical-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #7D96A4; }
  .historical-icon > .icon {
    color: #fff;
    font-size: 1.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.historical-info-date {
  margin-bottom: 3px; }
  .historical-info-date span {
    font-family: "Lora", serif;
    font-size: 0.875rem;
    color: #50667E; }

.historical-info-title {
  font-size: 1.125rem;
  color: #181A20; }

.historical-info-content {
  font-size: 0.9375rem;
  color: #444444; }

.history-carousel {
  position: relative;
  padding: 20px 0 0 35px; }
  .history-carousel:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  .history-carousel .slick-track {
    display: flex;
    align-items: stretch;
    min-height: 0; }
    .history-carousel .slick-track .slick-slide {
      height: 100%; }
  .history-carousel .slick-arrow {
    position: absolute;
    top: 0;
    transition-duration: .2s;
    z-index: 9;
    color: #50667E;
    height: 75px;
    width: 40px;
    background-color: #F3F8FA; }
    .history-carousel .slick-arrow > .icon {
      font-size: 15px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .history-carousel .slick-arrow.slick-next {
      right: 0;
      box-shadow: -3px 0 4px 0 rgba(0, 0, 0, 0.05); }
    .history-carousel .slick-arrow.slick-prev {
      left: 0;
      box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.05); }
    .history-carousel .slick-arrow.slick-disabled {
      box-shadow: none; }
    .history-carousel .slick-arrow:hover {
      cursor: pointer;
      background-color: #E76642;
      color: #fff; }
    .history-carousel .slick-arrow.slick-disabled {
      color: transparent;
      background-color: transparent;
      cursor: default; }

.history {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 10px; }
  .history-year {
    flex: 0 1 auto;
    line-height: 1;
    margin-bottom: 40px; }
    .history-year span {
      display: inline-block;
      font-family: "Lora", serif;
      font-weight: 600;
      font-size: 1.125rem;
      color: #fff;
      position: relative;
      padding: 10px 20px;
      background-color: #9FB0BA;
      border-radius: 0 20px 20px 0; }
  .history-text {
    flex: 1 1 auto;
    background-color: #fff;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    padding: 15px;
    position: relative; }
    .history-text:before {
      content: '';
      position: absolute;
      top: -60px;
      left: 0;
      bottom: 0;
      width: 3px;
      background-color: #9FB0BA;
      z-index: 1; }
    .history-text span {
      font-size: 0.875rem;
      color: #485059; }

.slick-current .history-year span {
  background-color: #E76642; }
  .slick-current .history-year span:after {
    border-color: #E76642; }

.slick-current .history-text:before {
  background-color: #E76642; }

.informer {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 18px 40px 14px 18px;
  border-radius: 2px;
  color: #fff; }
  .informer-icon {
    flex: 0 1 auto;
    width: 24px; }
    .informer-icon > .icon {
      font-size: 1.5rem;
      opacity: .7; }
  .informer-text {
    flex: 0 1 auto;
    width: calc(100% - 24px);
    padding-left: 20px; }
    .informer-text span {
      font-size: 0.9375rem; }
  .informer-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 16px;
    height: 22px;
    opacity: .5; }
    @media (min-width: 576px) {
      .informer-close {
        top: 18px;
        right: 20px; } }
    .informer-close:after {
      content: '\e915';
      font-family: "icomoon" !important;
      color: #fff;
      font-size: 0.75rem; }
    .informer-close:hover {
      opacity: 1; }

.mfp-wrap {
  z-index: 999999; }

.video-popup {
  margin: 0 auto;
  text-align: center;
  line-height: 1; }
  .video-popup-wrap {
    display: inline-block;
    position: relative; }
    .video-popup-wrap .mfp-close {
      color: #FFF;
      text-align: right;
      padding-right: 6px;
      width: 100%;
      top: -40px; }
    .video-popup-wrap video {
      width: 100%;
      height: auto;
      max-height: 100%; }

.popup-item .mfp-close {
  font-size: 0;
  padding: 5px;
  width: auto;
  height: auto;
  top: 20px;
  right: 20px;
  line-height: 1;
  opacity: .4; }
  .popup-item .mfp-close:after {
    content: '\e915';
    font-family: "icomoon" !important;
    color: #7D96A4;
    font-size: 1.125rem; }
  .popup-item .mfp-close:hover {
    opacity: 1; }

.popup-item input[type='text'],
.popup-item input[type='date'],
.popup-item select,
.popup-item textarea,
.popup-item input[type='checkbox']:not(.switch):not(checked) + span:before,
.popup-item input[type='radio']:not(.rate-radio):not(checked) + span:before {
  background-color: #fafafa; }

.popup-item .agree {
  text-align: left !important;
  padding: 0 !important; }

.popup-item {
  margin: 0 auto;
  width: 100%;
  background: #fff;
  position: relative;
  overflow-y: auto;
  height: 100vh; }
  @media (min-width: 768px) {
    .popup-item {
      border-radius: 5px;
      width: 700px;
      height: auto;
      max-height: 90vh; } }
  @media (min-width: 992px) {
    .popup-item {
      width: 860px; } }

@media (min-width: 768px) {
  .popup-big {
    width: 700px; } }

@media (min-width: 992px) {
  .popup-big {
    width: 860px; } }

@media (min-width: 768px) {
  .popup-medium {
    width: 500px; } }

@media (min-width: 992px) {
  .popup-medium {
    width: 600px; } }

.popup-wrap {
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .popup-wrap {
      padding: 30px 30px 10px; } }
  @media (max-width: 991.98px) {
    .popup-wrap .content {
      font-size: 0.9375rem; } }

@media (min-width: 992px) {
  .popup-big .popup-wrap {
    padding: 30px 30px 10px; } }

.popup-title {
  margin-bottom: 20px;
  text-align: left; }
  .popup-title-item {
    color: #1A3853;
    font-family: "Lora", serif;
    font-size: 1.5rem;
    font-weight: 500; }
  .popup-title:before {
    content: '';
    display: block;
    width: 50px;
    height: 14px;
    margin-bottom: 10px;
    background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg") no-repeat left top;
    background-size: contain; }

@media (min-width: 992px) {
  .popup-big .popup-title-item {
    font-size: 1.75rem; } }

@media (min-width: 992px) {
  .popup-big .popup-title:before {
    width: 120px;
    height: 14px; } }

.popup-content {
  text-align: left; }

.popup-footer {
  margin-top: auto;
  padding: 20px 20px 90px;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 768px) {
    .popup-footer {
      padding: 0 30px 25px;
      border-radius: 0 0 5px 5px; } }
  .popup-footer.justify-between {
    gap: 20px; }
    @media (max-width: 575.98px) {
      .popup-footer.justify-between {
        flex-direction: column; } }

.popup-footer-justify {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px; }

.popup-form.hiding .select-hide {
  opacity: .2;
  pointer-events: none; }

.agree {
  flex: 0 1 auto;
  width: 100%;
  color: #50667E;
  font-size: 0.75rem;
  margin-top: 25px; }
  @media (min-width: 768px) {
    .agree {
      padding: 0 10%; } }

.popup-chat {
  padding-top: 30px; }
  .popup-chat a {
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1; }
    .popup-chat a:not(:last-child) {
      border-bottom: 1px solid #E0E0E3; }
    .popup-chat a .icon {
      flex: 0 1 auto;
      width: 26px;
      text-align: center;
      font-size: 1.5rem; }
      .popup-chat a .icon.icon-telegram {
        font-size: 1.375rem;
        color: #0088cc; }
      .popup-chat a .icon.icon-whatsup {
        color: #25D366; }
      .popup-chat a .icon.icon-skype {
        color: #00aff0; }
    .popup-chat a span {
      flex: 0 1 auto;
      font-size: 1.125rem;
      color: #1A3853;
      padding-left: 15px; }
    .popup-chat a:focus span, .popup-chat a:active span {
      color: #da5128; }

.popup-sign-btn {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dashed #E0E0E3;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .popup-sign-btn > button {
    flex: 0 1 auto;
    min-width: 195px; }
  .popup-sign-btn > p {
    flex: 0 1 auto;
    width: calc(100% - 165px);
    padding-right: 10px;
    font-size: 0.9375rem;
    color: #50667E;
    margin: 0; }

.popup-sign-info {
  margin-bottom: 15px; }
  .popup-sign-info .icon {
    color: #da5128;
    font-size: 0.875rem;
    display: inline-block;
    margin-right: 10px; }
  .popup-sign-info span {
    color: #50667E;
    font-size: 0.875rem; }

#popupPresentFull .popup-footer {
  padding-top: 20px; }

.btn-yandex {
  height: 56px;
  border: 1px solid #000;
  padding: 0 45px;
  gap: 12px; }
  .btn-yandex span {
    font-weight: 500;
    color: #000;
    font-size: 0.9375rem; }

#popupProductDesktop .popup-title {
  line-height: 1.2; }
  #popupProductDesktop .popup-title-item {
    font-size: 1.5rem; }

#popupProductDesktop .popup-product {
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap; }
  #popupProductDesktop .popup-product > div {
    flex: 0 1 auto; }
  #popupProductDesktop .popup-product .product-info,
  #popupProductDesktop .popup-product .product-gallery {
    width: 50%; }
  #popupProductDesktop .popup-product .product-popup-content {
    border-top: 1px dashed #B5C6CF;
    padding-top: 15px;
    margin-top: 30px;
    width: 100%; }
  #popupProductDesktop .popup-product .product-info-price .ch-price-item {
    font-size: 1.375rem !important; }
  #popupProductDesktop .popup-product .product-info-price .ch-price-currency {
    font-size: 0.875rem !important; }
  #popupProductDesktop .popup-product .product-gallery-top .ch-img {
    height: 280px; }
    #popupProductDesktop .popup-product .product-gallery-top .ch-img:before, #popupProductDesktop .popup-product .product-gallery-top .ch-img:after {
      display: none; }
  #popupProductDesktop .popup-product .product-gallery-bottom .item .ch-img {
    height: 90px; }

#popupProductDesktop .popup-product-ingredients {
  width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #B5C6CF; }
  #popupProductDesktop .popup-product-ingredients .product-ingredient {
    gap: 25px 10px; }
  @media (min-width: 576px) {
    #popupProductDesktop .popup-product-ingredients .products-btns-counter {
      width: 130px;
      left: calc(50% - 65px); } }
  #popupProductDesktop .popup-product-ingredients .product-ingredient-item {
    border: 1px solid #E0E0E3; }
    @media (min-width: 576px) {
      #popupProductDesktop .popup-product-ingredients .product-ingredient-item {
        width: calc(100% / 4 - 8px); } }
    @media (min-width: 992px) {
      #popupProductDesktop .popup-product-ingredients .product-ingredient-item {
        width: calc(100% / 5 - 8px); } }
    @media (min-width: 576px) {
      #popupProductDesktop .popup-product-ingredients .product-ingredient-item-img {
        height: 130px; } }
    @media (min-width: 576px) {
      #popupProductDesktop .popup-product-ingredients .product-ingredient-item-info {
        height: calc(100% - 130px);
        padding: 10px 5px 30px; } }

#popupProductDesktop .popup-product-acc {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #B5C6CF; }
  #popupProductDesktop .popup-product-acc .product-acc-wrap {
    flex-wrap: wrap; }
  #popupProductDesktop .popup-product-acc .product-acc-col {
    width: 100% !important; }
    #popupProductDesktop .popup-product-acc .product-acc-col .accordion {
      border: 1px solid #E0E0E3; }
      #popupProductDesktop .popup-product-acc .product-acc-col .accordion .accordion-item-row:not(:last-child) {
        border-bottom-color: #B5C6CF;
        border-bottom-width: 1px; }

.media-list-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 0 30px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }
  @media (min-width: 768px) {
    .media-list-wrap {
      background: none;
      box-shadow: none;
      border-radius: 0;
      padding: 60px 0; } }
  @media (min-width: 768px) {
    .media-list-wrap:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 5%;
      background-color: #fff;
      border-radius: 5px;
      box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
      z-index: 0; } }
  @media (min-width: 576px) {
    .media-list-wrap:before {
      right: 15%; } }
  @media (min-width: 992px) {
    .media-list-wrap:before {
      right: 25%; } }

.media-list-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .media-list-item {
      flex-direction: row; } }
  .media-list-item:not(:last-child) {
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .media-list-item:not(:last-child) {
        margin-bottom: 60px; } }
  .media-list-item-img {
    margin-left: auto;
    position: relative; }
    @media (min-width: 768px) {
      .media-list-item-img {
        padding-left: 10px; } }
    .media-list-item-img img {
      display: block; }
      @media (min-width: 768px) {
        .media-list-item-img img {
          box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
          border-radius: 0 5px 5px 0; } }
    .media-list-item-img > a {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
      .media-list-item-img > a:before {
        content: '\e90d';
        font-family: "icomoon" !important;
        font-size: 80px;
        color: rgba(255, 255, 255, 0.85);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: calc(50% - 40px);
        transition-duration: .2s; }
        @media (min-width: 768px) {
          .media-list-item-img > a:before {
            right: 12%; } }
        @media (min-width: 992px) {
          .media-list-item-img > a:before {
            font-size: 98px;
            right: 15%; } }
        @media (min-width: 1260px) {
          .media-list-item-img > a:before {
            right: 25%; } }
      .media-list-item-img > a:hover:before {
        color: white; }
  .media-list-item-info {
    padding: 20px 0 10px 10px;
    display: flex; }
    @media (min-width: 576px) {
      .media-list-item-info {
        padding: 20px 20% 20px 10px; } }
    @media (min-width: 768px) {
      .media-list-item-info {
        background-color: #fff;
        border-radius: 0 5px 5px 0;
        transform: translateY(-50%);
        position: absolute;
        top: 50%;
        left: 0;
        right: 30%;
        padding: 30px; } }
    @media (min-width: 992px) {
      .media-list-item-info {
        padding: 40px;
        right: 40%; } }
    @media (min-width: 1260px) {
      .media-list-item-info {
        padding: 50px 40px 60px 80px; } }
    .media-list-item-info .ch-icon {
      display: none; }
      @media (min-width: 425px) {
        .media-list-item-info .ch-icon {
          display: block;
          flex: 0 1 auto;
          width: 42px;
          margin-bottom: 10px; } }
      @media (min-width: 576px) {
        .media-list-item-info .ch-icon {
          width: 62px; } }
      @media (min-width: 768px) {
        .media-list-item-info .ch-icon {
          margin-bottom: 0; } }
      .media-list-item-info .ch-icon > .icon {
        font-size: 40px;
        color: #7D96A4;
        opacity: .5; }
        @media (min-width: 576px) {
          .media-list-item-info .ch-icon > .icon {
            font-size: 48px; } }
        @media (min-width: 768px) {
          .media-list-item-info .ch-icon > .icon {
            font-size: 62px; } }
    .media-list-item-info .ch-content {
      flex: 0 1 auto;
      padding: 5px; }
      @media (min-width: 425px) {
        .media-list-item-info .ch-content {
          padding: 5px 0 0 10px;
          width: calc(100% - 42px); } }
      @media (min-width: 576px) {
        .media-list-item-info .ch-content {
          padding: 8px 0 0;
          width: calc(100% - 62px); } }
      @media (min-width: 768px) {
        .media-list-item-info .ch-content {
          padding: 15px 0 0 30px; } }
      .media-list-item-info .ch-content-title {
        font-family: "Lora", serif;
        font-size: 1.375rem;
        font-weight: 500;
        color: #1A3853;
        margin-bottom: 15px;
        text-transform: uppercase; }
        @media (min-width: 576px) {
          .media-list-item-info .ch-content-title {
            font-size: 1.625rem; } }
        @media (min-width: 768px) {
          .media-list-item-info .ch-content-title {
            margin-bottom: 20px; } }
      .media-list-item-info .ch-content-text {
        margin-bottom: 15px; }
        @media (min-width: 768px) {
          .media-list-item-info .ch-content-text {
            margin-bottom: 25px; } }
        .media-list-item-info .ch-content-text span {
          color: #717C89;
          font-size: 1rem; }
        @media (max-width: 424.98px) {
          .media-list-item-info .ch-content-text + .link-icon .ch-arrow {
            display: none; } }

.menubar {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap; }
  .menubar-info, .menubar-include {
    flex: 0 1 auto;
    background-color: #fff;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  .menubar-info {
    padding: 30px 15px 10px;
    border-radius: 3px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    gap: 15px; }
    @media (min-width: 768px) {
      .menubar-info {
        width: 40%; } }
    @media (min-width: 992px) {
      .menubar-info {
        padding: 30px 25px 15px; } }
    @media (min-width: 1260px) {
      .menubar-info {
        width: 35%; } }
    @media (min-width: 1440px) {
      .menubar-info {
        width: 33%; } }
    .menubar-info-img {
      line-height: 1;
      box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
      display: flex;
      width: 120px;
      height: 120px; }
      .menubar-info-img img {
        object-fit: cover;
        border-radius: 3px; }
    .menubar-info-title {
      flex: 0 1 auto;
      width: calc(100% - 105px);
      order: 0; }
      @media (min-width: 500px) {
        .menubar-info-title {
          width: 100%; } }
      .menubar-info-title span {
        font-size: 1.25rem;
        font-weight: 500;
        color: #091922;
        font-family: "Lora", serif; }
        @media (min-width: 500px) {
          .menubar-info-title span {
            font-size: 1.375rem; } }
    .menubar-info-calc {
      order: 2;
      position: relative;
      border: 2px solid #F3F3F3;
      border-radius: 3px;
      padding: 15px;
      width: 100%; }
      .menubar-info-calc-title {
        margin-bottom: 15px; }
        .menubar-info-calc-title span {
          font-family: "Lora", serif;
          font-size: 1rem;
          color: #163450;
          font-weight: 500; }
      .menubar-info-calc-itog .ch-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 15px; }
        .menubar-info-calc-itog .ch-row > div {
          flex: 0 1 auto; }
      .menubar-info-calc-itog .ch-title {
        width: 100%;
        line-height: 1.2;
        margin-bottom: 12px; }
        .menubar-info-calc-itog .ch-title span {
          display: block;
          font-style: italic;
          font-size: 0.8125rem;
          color: #50667E; }
      .menubar-info-calc-itog .ch-row .ch-col {
        white-space: nowrap; }
        .menubar-info-calc-itog .ch-row .ch-col .icon {
          font-size: 1.125rem;
          color: #9FB0BA;
          margin-right: 8px;
          display: inline-block;
          vertical-align: text-bottom;
          text-align: center;
          min-width: 20px; }
        .menubar-info-calc-itog .ch-row .ch-col span {
          font-size: 0.875rem;
          font-weight: 500;
          color: #091922; }
      .menubar-info-calc-itog .ch-bottom {
        margin-top: 20px; }
        .menubar-info-calc-itog .ch-bottom .ch-col {
          flex: 0 1 auto;
          line-height: 1.2; }
          .menubar-info-calc-itog .ch-bottom .ch-col > span {
            font-size: 0.8125rem;
            font-style: italic;
            color: #50667E;
            display: block;
            margin-bottom: 10px; }
            .menubar-info-calc-itog .ch-bottom .ch-col > span > br {
              display: none; }
          .menubar-info-calc-itog .ch-bottom .ch-col > .cart-table-row {
            padding: 0;
            margin-bottom: 20px;
            display: block !important;
            border-bottom-width: 0 !important; }
          .menubar-info-calc-itog .ch-bottom .ch-col-sum {
            display: flex;
            justify-content: center;
            flex-direction: column;
            line-height: 1; }
            .menubar-info-calc-itog .ch-bottom .ch-col-sum span {
              font-family: "Lora", serif;
              color: #da5128;
              font-weight: 600;
              font-size: 1.25rem;
              white-space: nowrap; }
    .menubar-info-btns {
      order: 3;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
      width: 100%; }
      @media (min-width: 425px) {
        .menubar-info-btns {
          flex-direction: row; } }
      .menubar-info-btns > .btn {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin: 5px 0; }
  .menubar-include {
    padding: 30px 30px 20px;
    width: 100%;
    border-radius: 3px; }
    @media (min-width: 768px) {
      .menubar-include {
        border-radius: 3px;
        width: calc(60% - 10px);
        margin-left: 10px; } }
    @media (min-width: 1110px) {
      .menubar-include {
        margin-left: 10px; } }
    @media (min-width: 1260px) {
      .menubar-include {
        padding: 40px 40px 20px;
        width: calc(65% - 10px); } }
    @media (min-width: 1440px) {
      .menubar-include {
        width: calc(67% - 10px);
        padding: 50px 40px 20px; } }
    .menubar-include-title {
      margin-bottom: 30px; }
      @media (min-width: 1260px) {
        .menubar-include-title {
          margin-bottom: 40px; } }
      .menubar-include-title span {
        font-family: "Lora", serif;
        color: #7D96A4;
        font-size: 1.5rem;
        text-transform: uppercase; }
    @media (min-width: 500px) {
      .menubar-include-list {
        display: flex;
        flex-wrap: wrap; } }
    .menubar-include-list .ch-list {
      display: flex;
      margin-bottom: 20px; }
      @media (min-width: 500px) {
        .menubar-include-list .ch-list {
          flex: 0 1 auto;
          width: 50%;
          padding-right: 20px;
          margin-bottom: 30px; } }
      @media (min-width: 992px) {
        .menubar-include-list .ch-list {
          padding-right: 30px; } }
      @media (min-width: 1260px) {
        .menubar-include-list .ch-list {
          padding-right: 40px;
          margin-bottom: 40px; } }
      @media (min-width: 1440px) {
        .menubar-include-list .ch-list {
          margin-bottom: 45px; } }
      .menubar-include-list .ch-list-icon {
        flex: 0 1 auto;
        width: 26px; }
        @media (min-width: 500px) {
          .menubar-include-list .ch-list-icon {
            width: 30px; } }
        @media (min-width: 992px) {
          .menubar-include-list .ch-list-icon {
            width: 36px; } }
        .menubar-include-list .ch-list-icon > .icon {
          color: #da5128;
          font-size: 1.5rem; }
          @media (min-width: 500px) {
            .menubar-include-list .ch-list-icon > .icon {
              font-size: 1.875rem; } }
          @media (min-width: 992px) {
            .menubar-include-list .ch-list-icon > .icon {
              font-size: 2rem; } }
      .menubar-include-list .ch-list-info {
        flex: 0 1 auto;
        width: calc(100% - 26px);
        padding-left: 10px; }
        @media (min-width: 500px) {
          .menubar-include-list .ch-list-info {
            width: calc(100% - 30px); } }
        @media (min-width: 992px) {
          .menubar-include-list .ch-list-info {
            width: calc(100% - 36px);
            padding-left: 20px; } }
        .menubar-include-list .ch-list-info-title {
          margin-bottom: 5px; }
          @media (min-width: 500px) {
            .menubar-include-list .ch-list-info-title {
              margin-bottom: 10px; } }
          .menubar-include-list .ch-list-info-title span {
            font-family: "Lora", serif;
            font-size: 1rem;
            font-weight: 500;
            color: #1A3853; }
            @media (min-width: 500px) {
              .menubar-include-list .ch-list-info-title span {
                font-size: 1.125rem; } }
        .menubar-include-list .ch-list-info-text {
          line-height: 1.4; }
          .menubar-include-list .ch-list-info-text span {
            color: #717C89;
            font-size: 0.9375rem; }
    .menubar-include-footer {
      padding-top: 30px;
      border-top: 1px solid #E0E0E3; }
      .menubar-include-footer p {
        margin-bottom: 15px;
        font-style: italic;
        font-size: 0.9375rem;
        color: #485059; }
        .menubar-include-footer p span {
          color: #da5128;
          white-space: nowrap; }

.block-menu {
  margin-bottom: 10px;
  padding: 15px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }
  @media (min-width: 768px) {
    .block-menu {
      padding: 25px;
      text-align: center; } }
  .block-menu .slick-dots {
    display: none !important; }
  .block-menu-list {
    background-color: transparent;
    box-shadow: none;
    position: relative; }
    @media (min-width: 768px) {
      .block-menu-list {
        padding: 0 20px;
        display: inline-block; } }
    @media (min-width: 992px) {
      .block-menu-list {
        padding: 0 50px; } }
    @media (max-width: 767.98px) {
      .block-menu-list .slick-list {
        padding-top: 10px !important;
        padding-bottom: 10px !important; } }
    .block-menu-list .slick-arrow {
      position: absolute;
      top: -5px;
      height: 40px;
      width: 40px;
      z-index: 9;
      cursor: pointer; }
      .block-menu-list .slick-arrow > .icon {
        position: absolute;
        top: 11px;
        font-size: 18px;
        color: #717C89;
        font-weight: 700; }
      .block-menu-list .slick-arrow.slick-prev {
        left: -10px;
        background: linear-gradient(90deg, #f3f3f3 0%, rgba(243, 243, 243, 0.95) 30%, rgba(243, 243, 243, 0.9) 60%, rgba(243, 243, 243, 0.7) 80%, rgba(243, 243, 243, 0.5) 100%); }
        .block-menu-list .slick-arrow.slick-prev .icon {
          left: 10px; }
      .block-menu-list .slick-arrow.slick-next {
        right: -10px;
        background: linear-gradient(270deg, #f3f3f3 0%, rgba(243, 243, 243, 0.95) 30%, rgba(243, 243, 243, 0.9) 60%, rgba(243, 243, 243, 0.7) 80%, rgba(243, 243, 243, 0.5) 100%); }
        .block-menu-list .slick-arrow.slick-next .icon {
          right: 10px; }
      .block-menu-list .slick-arrow.slick-disabled {
        opacity: 0; }
    .block-menu-list button {
      position: relative;
      vertical-align: top;
      white-space: nowrap;
      color: #1A3853;
      display: inline-block;
      margin: 0 20px; }
      @media (min-width: 768px) {
        .block-menu-list button {
          margin: 0 30px; } }
      .block-menu-list button span {
        border-bottom: 1px dashed #1A3853;
        font-size: 0.9375rem;
        font-weight: 500;
        position: relative;
        z-index: 1; }
      .block-menu-list button:hover {
        color: #da5128; }
        .block-menu-list button:hover span {
          border-bottom-color: transparent; }
      .block-menu-list button.active {
        color: #fff;
        cursor: default; }
        .block-menu-list button.active:before {
          content: '';
          position: absolute;
          top: -10px;
          bottom: -10px;
          left: -20px;
          right: -20px;
          background-color: #E76642;
          z-index: 0;
          border-radius: 20px; }
          @media (min-width: 992px) {
            .block-menu-list button.active:before {
              left: -25px;
              right: -25px; } }
        .block-menu-list button.active span {
          border-bottom-color: transparent; }

.menus {
  padding: 15px; }
  @media (min-width: 992px) {
    .menus {
      display: flex;
      align-items: stretch; } }
  .menus-img {
    display: none; }
    @media (min-width: 992px) {
      .menus-img {
        display: flex;
        flex: 0 1 auto;
        width: 50%; } }
    @media (min-width: 1260px) {
      .menus-img {
        width: 52%; } }
    .menus-img img {
      border-radius: 2px;
      display: block;
      object-fit: cover;
      width: 100%; }
  .menus-info {
    padding: 15px; }
    @media (min-width: 992px) {
      .menus-info {
        flex: 0 1 auto;
        width: 48%;
        padding: 15px 15px 15px 30px; } }
    @media (min-width: 1260px) {
      .menus-info {
        padding: 20px 20px 20px 40px; } }
    .menus-info-item {
      border-bottom: 1px dashed #9FB0BA;
      padding-bottom: 20px;
      margin-bottom: 20px;
      position: relative; }
      .menus-info-item:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 52px;
        height: 5px;
        background-color: #fff;
        z-index: 5; }
      @media (min-width: 576px) {
        .menus-info-item {
          padding-bottom: 0;
          margin-bottom: 30px;
          display: flex;
          align-items: flex-end;
          justify-content: space-between; } }
      @media (min-width: 992px) {
        .menus-info-item {
          margin-bottom: 40px; } }
      .menus-info-item-left {
        flex: 0 1 auto;
        display: flex;
        padding-bottom: 6px; }
      .menus-info-item-download {
        flex: 0 1 auto;
        display: block;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #E76642;
        position: relative; }
        .menus-info-item-download > .icon {
          font-size: 0.875rem;
          color: #fff;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
        .menus-info-item-download:hover {
          background-color: #da5128; }
      .menus-info-item-title {
        flex: 0 1 auto;
        padding: 2px 0 0 20px;
        width: calc(100% - 32px); }
        .menus-info-item-title span {
          display: block;
          font-family: "Lora", serif; }
          .menus-info-item-title span.ch-title {
            font-size: 1.125rem;
            color: #1A3853;
            font-weight: 500; }
          .menus-info-item-title span.ch-subtitle {
            font-size: 0.875rem;
            color: #50667E;
            margin-top: 5px; }
      .menus-info-item-price {
        display: flex;
        align-items: flex-end;
        margin-left: 48px; }
        @media (min-width: 576px) {
          .menus-info-item-price {
            padding: 10px;
            background-color: #fff;
            z-index: 2;
            position: relative;
            margin-bottom: -10px;
            flex: 0 1 auto;
            margin-left: auto; } }
        .menus-info-item-price span {
          flex: 0 1 auto;
          font-family: "Lora", serif;
          white-space: nowrap; }
          .menus-info-item-price span.ch-price-before {
            font-size: 0.875rem;
            color: #50667E;
            margin-right: 5px; }
          .menus-info-item-price span.ch-price {
            font-weight: 600;
            font-size: 1.25rem;
            color: #1A3853;
            line-height: 1.2; }
          .menus-info-item-price span.ch-price-after {
            font-size: 0.875rem;
            margin-left: 5px;
            color: #1A3853;
            font-weight: 500; }
    .menus-info-text {
      font-size: 0.9375rem;
      color: #50667E; }
      .menus-info-text button {
        margin-top: 10px; }

.pagination {
  display: flex;
  justify-content: center; }
  .pagination-row {
    padding: 15px;
    line-height: 1;
    background-color: #fff;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    border-radius: 23px;
    text-align: center; }
    @media (min-width: 425px) {
      .pagination-row {
        padding: 15px 20px;
        border-radius: 33px;
        min-width: 320px; } }
    .pagination-row > a,
    .pagination-row > span {
      position: relative;
      display: inline-block;
      vertical-align: top;
      font-size: 1rem;
      font-weight: 500;
      padding: 10px;
      margin: 0 10px; }
    .pagination-row > a {
      color: #1A3853; }
      .pagination-row > a:hover {
        color: #da5128; }
    .pagination-row > span > span {
      position: relative;
      color: #fff;
      z-index: 2; }
    .pagination-row > span:before {
      content: '';
      width: 36px;
      height: 36px;
      background-color: #E76642;
      border-radius: 50%;
      z-index: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.places {
  display: flex;
  flex-direction: column; }
  .places > div {
    flex: 0 1 auto; }
  .places-img {
    width: 100%;
    height: 160px;
    position: relative;
    margin-bottom: 20px; }
    @media (min-width: 576px) {
      .places-img {
        height: 200px; } }
    @media (min-width: 1110px) {
      .places-img {
        height: 220px; } }
    .places-img a {
      display: flex;
      height: 100%; }
      .places-img a > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
        transition-duration: .2s; }
      .places-img a:hover img {
        opacity: .8; }
  .places-location, .places-title, .places-info, .places-price {
    margin-left: 20px;
    margin-right: 20px; }
  .places-location {
    margin-bottom: 10px; }
  .places-title {
    margin-bottom: 15px; }
    .places-title a {
      font-size: 1.0625rem;
      font-family: "Lora", serif;
      color: #091922; }
      @media (min-width: 1260px) {
        .places-title a {
          font-size: 1.125rem; } }
      .places-title a:hover {
        color: #da5128; }
  .places-info {
    margin-bottom: 10px;
    margin-top: auto; }
    @media (min-width: 576px) {
      .places-info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between; } }
    .places-info-item {
      margin-bottom: 5px; }
      @media (min-width: 576px) {
        .places-info-item {
          flex: 0 1 auto; } }
  .places-price {
    padding: 15px 0 15px;
    border-top: 1px solid #E0E0E3;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    line-height: 1; }
    .places-price span {
      flex: 0 1 auto;
      margin-bottom: 5px; }
      .places-price span:first-child {
        color: #7D96A4;
        font-size: 0.8125rem;
        margin-right: 8px; }
      .places-price span:nth-child(2) {
        color: #da5128;
        font-weight: 500;
        font-family: "Lora", serif; }

.rate-list {
  display: inline-flex;
  flex-direction: row-reverse; }

.rate-radio {
  display: none; }
  .rate-radio + label {
    flex: 0 1 auto;
    width: 12px;
    height: 24px;
    transition-duration: .2s;
    margin: 0 3px; }
    .rate-radio + label:hover {
      cursor: pointer;
      transform: scale(1.2); }
  .rate-radio:not(:checked) + label {
    background-color: #EBEBEB; }
  .rate-radio:nth-of-type(-n + 3):checked + label,
  .rate-radio:nth-of-type(-n + 3):checked + label ~ label:nth-of-type(-n + 3) {
    background-color: #009432; }
  .rate-radio:nth-of-type(-n + 3):checked + label ~ label:nth-of-type(n + 4):nth-of-type(-n + 7) {
    background-color: #FF9F43; }
  .rate-radio:nth-of-type(-n + 3):checked + label ~ label:nth-of-type(n + 8):nth-of-type(-n + 10) {
    background-color: #FF0F00; }
  .rate-radio:nth-of-type(n + 4):nth-of-type(-n + 7):checked + label,
  .rate-radio:nth-of-type(n + 4):nth-of-type(-n + 7):checked + label ~ label:nth-of-type(n + 4):nth-of-type(-n + 7) {
    background-color: #FF9F43; }
  .rate-radio:nth-of-type(n + 4):nth-of-type(-n + 7):checked + label ~ label:nth-of-type(n + 8):nth-of-type(-n + 10) {
    background-color: #FF0F00; }
  .rate-radio:nth-of-type(n + 8):nth-of-type(-n + 10):checked + label,
  .rate-radio:nth-of-type(n + 8):nth-of-type(-n + 10):checked + label ~ label:nth-of-type(n + 8):nth-of-type(-n + 10) {
    background-color: #FF0F00; }

.popup-rate-title {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Lora", serif;
  color: #1A3853;
  margin-bottom: 10px; }

@media (min-width: 768px) {
  .popup-rate-wrap {
    display: flex;
    flex-wrap: wrap; } }

.popup-rate-block {
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .popup-rate-block {
      margin-bottom: 20px;
      padding-right: 20px;
      flex: 0 1 auto;
      width: calc(100% / 3); } }
  .popup-rate-block-title {
    margin-bottom: 8px;
    width: 100%; }
    .popup-rate-block-title span {
      text-transform: uppercase;
      color: #50667E;
      font-weight: 500;
      font-size: 0.8125rem; }

.portfolio-wrap {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px; }
  @media (min-width: 768px) {
    .portfolio-wrap {
      padding: 30px 30px 60px; } }

.portfolio-menu {
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }
  .portfolio-menu-wrap {
    position: relative; }
    @media (min-width: 768px) {
      .portfolio-menu-wrap {
        padding-left: 35px; } }
    .portfolio-menu-wrap .ch-link {
      max-width: 220px;
      padding: 10px 15px 4px;
      position: relative;
      text-align: center; }
      .portfolio-menu-wrap .ch-link:after {
        content: '';
        position: absolute;
        top: calc(50% - 25px);
        right: 0;
        width: 1px;
        height: 50px;
        background-color: #F3F3F3; }
      @media (min-width: 425px) {
        .portfolio-menu-wrap .ch-link {
          max-width: 200px;
          padding: 12px 20px 6px; } }
      @media (min-width: 576px) {
        .portfolio-menu-wrap .ch-link {
          max-width: 240px;
          padding: 12px 25px 8px; } }
      @media (min-width: 768px) {
        .portfolio-menu-wrap .ch-link {
          padding: 15px 30px 10px; } }
      .portfolio-menu-wrap .ch-link-item span {
        font-size: 0.875rem;
        color: #091922;
        text-overflow: ellipsis;
        height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical; }
      .portfolio-menu-wrap .ch-link-item:hover span {
        color: #E76642; }
    .portfolio-menu-wrap .slick-current.ch-link {
      background-color: #E76642; }
      .portfolio-menu-wrap .slick-current.ch-link:after {
        background-color: transparent; }
      .portfolio-menu-wrap .slick-current.ch-link .ch-link-item span {
        color: #fff; }

.portfolio-menu .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35px;
  transition-duration: .2s;
  z-index: 9;
  font-size: 0;
  background-color: #F3F8FA; }
  .portfolio-menu .slick-arrow:after {
    font-family: "icomoon" !important;
    font-size: 0.9375rem;
    font-weight: bold;
    color: #50667E;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .portfolio-menu .slick-arrow.slick-next {
    right: 0;
    box-shadow: -3px 0 4px 0 rgba(0, 0, 0, 0.05); }
    .portfolio-menu .slick-arrow.slick-next:after {
      content: '\e933'; }
  .portfolio-menu .slick-arrow.slick-prev {
    left: 0;
    box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.05); }
    .portfolio-menu .slick-arrow.slick-prev:after {
      content: '\e932'; }

@media (min-width: 768px) {
  .portfolio-carousel {
    display: flex; } }

.portfolio-carousel-img {
  position: relative;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .portfolio-carousel-img {
      margin-bottom: 0;
      flex: 0 1 auto;
      width: 45%; } }
  .portfolio-carousel-img .item {
    width: 100%;
    height: 320px; }
    @media (min-width: 768px) {
      .portfolio-carousel-img .item {
        height: 480px; } }
  .portfolio-carousel-img .ch-img {
    height: 100%;
    line-height: 1; }
    .portfolio-carousel-img .ch-img > a {
      height: 100%;
      display: flex; }
      .portfolio-carousel-img .ch-img > a > img {
        width: 100%;
        object-fit: cover;
        border-radius: 3px; }
        @media (min-width: 768px) {
          .portfolio-carousel-img .ch-img > a > img {
            width: auto; } }
  .portfolio-carousel-img .ch-mobile {
    position: absolute;
    bottom: -17px;
    right: 10px;
    background-color: #50667E;
    border-radius: 2px;
    z-index: 9; }
    @media (min-width: 768px) {
      .portfolio-carousel-img .ch-mobile {
        display: none; } }
    .portfolio-carousel-img .ch-mobile a {
      display: flex;
      align-items: center;
      color: #fff;
      padding: 8px 15px; }
      .portfolio-carousel-img .ch-mobile a .icon {
        opacity: .6; }
      .portfolio-carousel-img .ch-mobile a span {
        font-size: 0.875rem;
        padding-left: 10px; }

.portfolio-carousel-prev {
  position: relative; }
  @media (min-width: 768px) {
    .portfolio-carousel-prev {
      display: flex;
      flex-direction: column;
      flex: 0 1 auto;
      width: 58%;
      left: -3%; } }
  .portfolio-carousel-prev-slider {
    display: none; }
    @media (min-width: 768px) {
      .portfolio-carousel-prev-slider {
        display: block;
        border: 3px solid #fff;
        border-radius: 3px;
        position: relative;
        margin: auto 0 -40px; }
        .portfolio-carousel-prev-slider:after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          right: 0;
          width: 30px;
          background: linear-gradient(270deg, white 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.1) 90%, rgba(255, 255, 255, 0.05) 100%); } }
    @media (min-width: 768px) {
      .portfolio-carousel-prev-slider .item {
        height: 130px; } }
    @media (min-width: 768px) {
      .portfolio-carousel-prev-slider .ch-prev {
        height: 100%;
        line-height: 1;
        display: flex;
        border: 5px solid #fff;
        overflow: hidden; } }
    .portfolio-carousel-prev-slider .ch-prev > img {
      object-fit: cover;
      border-radius: 3px; }

.portfolio-carousel-nav {
  padding: 20px 15px 0;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E0E0E3; }
  @media (min-width: 768px) {
    .portfolio-carousel-nav {
      display: none; } }
  .portfolio-carousel-nav > div {
    flex: 0 1 auto; }
  .portfolio-carousel-nav .ch-arrow-link .icon {
    font-size: 1.75rem;
    color: #7D96A4; }
  .portfolio-carousel-nav .ch-arrow-link:hover .icon, .portfolio-carousel-nav .ch-arrow-link:focus .icon, .portfolio-carousel-nav .ch-arrow-link:active .icon {
    color: #EE5A24; }
  .portfolio-carousel-nav .ch-counter span {
    font-size: 1.125rem;
    font-family: "Lora", serif; }
    .portfolio-carousel-nav .ch-counter span:first-child {
      color: #50667E; }
    .portfolio-carousel-nav .ch-counter span:nth-child(2) {
      color: #9FB0BA; }
      .portfolio-carousel-nav .ch-counter span:nth-child(2):before {
        content: '/';
        margin: 0 5px; }

.portfolio-info {
  padding: 15px 0 0;
  display: flex;
  flex-direction: column; }
  @media (min-width: 425px) {
    .portfolio-info {
      padding: 15px 15px 0; } }
  @media (min-width: 576px) {
    .portfolio-info {
      display: block; } }
  @media (min-width: 768px) {
    .portfolio-info {
      margin-left: 3%;
      padding: 10px 0 10px 30px; } }
  @media (min-width: 992px) {
    .portfolio-info {
      padding: 20px 0 20px 50px; } }
  @media (min-width: 1260px) {
    .portfolio-info {
      padding: 30px 0 30px 60px; } }
  .portfolio-info-date {
    padding-left: 30px;
    position: relative;
    margin-bottom: 25px; }
    @media (max-width: 575.98px) {
      .portfolio-info-date {
        order: 1; } }
    @media (min-width: 1260px) {
      .portfolio-info-date {
        margin-bottom: 35px; } }
    .portfolio-info-date:before {
      content: '\e97d';
      font-family: "icomoon" !important;
      font-size: 1.125rem;
      color: #9FB0BA;
      position: absolute;
      top: 0;
      left: 0; }
    .portfolio-info-date span {
      font-size: 0.875rem;
      color: #50667E; }
  .portfolio-info-title {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px; }
    @media (min-width: 576px) {
      .portfolio-info-title {
        margin-bottom: 30px;
        flex-direction: row; } }
    @media (min-width: 768px) {
      .portfolio-info-title {
        margin-bottom: 40px; } }
    .portfolio-info-title img,
    .portfolio-info-title span {
      flex: 0 1 auto; }
    @media (max-width: 575.98px) {
      .portfolio-info-title img {
        margin-bottom: 10px; } }
    @media (min-width: 576px) {
      .portfolio-info-title img + span {
        padding-left: 15px; } }
    .portfolio-info-title span {
      font-size: 1.125rem;
      font-family: "Lora", serif;
      color: #1A3853;
      font-weight: 500;
      -webkit-line-clamp: 3;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
      @media (min-width: 576px) {
        .portfolio-info-title span {
          font-size: 1.25rem; } }
      @media (min-width: 1260px) {
        .portfolio-info-title span {
          font-size: 1.375rem; } }
  .portfolio-info-links {
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    order: 2; }
    @media (min-width: 576px) {
      .portfolio-info-links {
        flex-direction: row; } }
    .portfolio-info-links > .ch-link {
      margin-bottom: 15px;
      flex: 0 1 auto;
      padding-right: 10px; }
      @media (min-width: 576px) {
        .portfolio-info-links > .ch-link {
          width: 50%; } }
      .portfolio-info-links > .ch-link:last-child {
        order: 2; }
      @media (max-width: 575.98px) {
        .portfolio-info-links > .ch-link-down {
          order: 1; } }

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }

.products {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  display: flex;
  flex-direction: column;
  max-width: none;
  flex: 0 1 auto;
  width: calc(50% - 5px); }
  @media (min-width: 768px) {
    .products {
      width: calc(100% / 3 - 7px); } }
  @media (min-width: 1110px) {
    .products {
      width: calc(25% - 8px); } }
  .products-img {
    border-bottom: 1px solid #B5C6CF;
    position: relative;
    display: flex;
    line-height: 1; }
    .products-img img {
      border-radius: 5px 5px 0 0;
      display: block;
      width: 100%;
      object-fit: cover; }
    .products-img > .a-mobile:after,
    .products-img > .a-desktop:after {
      content: '';
      position: absolute;
      background-color: #fff;
      z-index: 1;
      opacity: 0;
      transition-duration: .2s;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .products-img > .a-mobile:hover:after,
    .products-img > .a-desktop:hover:after {
      opacity: .3; }
    .products-img-label {
      position: absolute;
      top: 10px;
      padding: 6px 10px;
      line-height: 1;
      z-index: 2; }
      @media (min-width: 768px) {
        .products-img-label {
          padding: 10px 14px; } }
      .products-img-label span {
        white-space: nowrap;
        font-size: 0.75rem;
        color: #fff;
        font-weight: 500; }
        @media (min-width: 768px) {
          .products-img-label span {
            font-size: 0.8125rem; } }
    .products-img-label {
      display: flex;
      align-items: center; }
      .products-img-label .icon {
        color: #fff;
        margin-right: 10px;
        font-size: 0.9375rem; }
    .products-img-label {
      left: -4px;
      border-radius: 4px 24px 24px 4px; }
      .products-img-label + .products-img-label {
        margin-top: 40px; }
        @media (min-width: 768px) {
          .products-img-label + .products-img-label {
            margin-top: 50px; } }
    .products-img-warming {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 36px;
      height: 36px;
      border: 3px solid #F3F3F3;
      border-radius: 50%;
      background-color: #FF0F00;
      z-index: 2; }
      .products-img-warming > .icon {
        font-size: 0.8125rem;
        color: #fff;
        z-index: 999;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .products-img-warming:hover {
        cursor: help; }
  .products-panel {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 34px;
    top: -20px;
    background-color: #fff;
    box-shadow: 0 2px 6px 3px rgba(68, 68, 68, 0.07);
    border-radius: 4px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2; }
    @media (min-width: 576px) {
      .products-panel {
        border-radius: 21px;
        height: 42px;
        top: -21px; } }
    @media (min-width: 992px) {
      .products-panel {
        left: 20px;
        right: 20px; } }
    .products-panel .ch-zoom,
    .products-panel .ch-wish {
      flex: 0 1 auto; }
      .products-panel .ch-zoom-item,
      .products-panel .ch-wish-item {
        display: block;
        width: 32px;
        height: 32px;
        position: relative;
        transition-duration: .2s; }
        @media (min-width: 576px) {
          .products-panel .ch-zoom-item,
          .products-panel .ch-wish-item {
            background-color: #B5C6CF;
            border-radius: 50%; } }
        .products-panel .ch-zoom-item > .icon,
        .products-panel .ch-wish-item > .icon {
          font-size: 16px;
          color: #7D96A4;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
          @media (min-width: 576px) {
            .products-panel .ch-zoom-item > .icon,
            .products-panel .ch-wish-item > .icon {
              font-size: 17px;
              color: #fff; } }
          .products-panel .ch-zoom-item > .icon.icon-heart,
          .products-panel .ch-wish-item > .icon.icon-heart {
            font-size: 1rem;
            padding-top: 2px; }
        .products-panel .ch-zoom-item:hover,
        .products-panel .ch-wish-item:hover {
          background-color: #9FB0BA; }
    .products-panel .ch-weight,
    .products-panel .ch-time,
    .products-panel .ch-spoon {
      line-height: 1;
      padding: 8px 0; }
      .products-panel .ch-weight span,
      .products-panel .ch-time span,
      .products-panel .ch-spoon span {
        white-space: nowrap;
        color: #1A3853;
        font-size: 0.875rem; }
        .products-panel .ch-weight span:before,
        .products-panel .ch-time span:before,
        .products-panel .ch-spoon span:before {
          display: none; }
          @media (min-width: 576px) {
            .products-panel .ch-weight span:before,
            .products-panel .ch-time span:before,
            .products-panel .ch-spoon span:before {
              font-family: "icomoon" !important;
              font-size: 1rem;
              color: #9FB0BA;
              margin-right: 10px;
              display: inline-block;
              vertical-align: text-top; } }
    .products-panel .ch-weight span:before {
      content: '\e92e'; }
    .products-panel .ch-time span:before {
      content: '\e990';
      position: relative;
      bottom: -1px; }
    .products-panel .ch-spoon span:before {
      content: '\e938';
      position: relative;
      bottom: -1px; }
  .products-info {
    padding: 25px 10px 0;
    position: relative; }
    @media (min-width: 576px) {
      .products-info {
        padding: 35px 10px 0; } }
  .products-bottom {
    margin-top: auto; }
    @media (max-width: 575.98px) {
      .products-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 0 10px 15px; } }
    @media (min-width: 576px) {
      .products-bottom {
        text-align: center;
        padding: 0 15px 20px; } }
  .products-notify {
    position: relative;
    height: 20px;
    width: 100%;
    order: -1; }
    @media (min-width: 576px) {
      .products-notify {
        text-align: center; } }
    .products-notify span {
      position: absolute;
      font-size: 0.7rem;
      white-space: nowrap;
      left: 0;
      right: 0; }
      @media (min-width: 425px) {
        .products-notify span {
          font-size: 0.75rem; } }
      @media (min-width: 576px) {
        .products-notify span {
          top: 3px;
          left: 10px;
          right: 10px; } }
  .products-title {
    font-family: "Lora", serif;
    margin-bottom: 3px;
    font-size: 1rem;
    line-height: 1.3; }
    @media (min-width: 576px) {
      .products-title {
        text-align: center;
        font-size: 1.0625rem; } }
    .products-title a {
      font-weight: 500;
      letter-spacing: .4px;
      color: #091922; }
      .products-title a:hover {
        color: #da5128; }
  .products-text {
    font-family: "Lora", serif; }
    @media (min-width: 576px) {
      .products-text {
        margin-bottom: 5px;
        text-align: center; } }
    .products-text span {
      font-size: 0.875rem;
      color: #50667E; }
  @media (max-width: 575.98px) {
    .products-price {
      flex: 0 1 auto;
      padding-right: 5px;
      width: calc(100% - 36px); } }
  @media (min-width: 576px) {
    .products-price {
      margin-bottom: 5px;
      display: flex;
      align-items: center;
      justify-content: center; } }
  .products-price-old {
    font-size: 0.875rem;
    color: #444444;
    padding-top: 7px;
    margin-right: 10px;
    text-decoration: line-through;
    text-decoration-color: #FF0F00; }
  .products-price-item > span {
    color: #1A3853; }
    .products-price-item > span:nth-child(1) {
      font-size: 1rem;
      font-weight: 600;
      white-space: nowrap; }
      @media (min-width: 425px) {
        .products-price-item > span:nth-child(1) {
          font-size: 1.125rem; } }
      @media (min-width: 576px) {
        .products-price-item > span:nth-child(1) {
          font-size: 1.5rem; } }
    .products-price-item > span:nth-child(2) {
      font-size: 0.75rem;
      margin-left: 3px; }
      @media (min-width: 576px) {
        .products-price-item > span:nth-child(2) {
          display: inline-block;
          margin-left: 5px;
          font-size: 0.875rem; } }
  .products-bonuces {
    display: none; }
    @media (min-width: 576px) {
      .products-bonuces {
        display: flex;
        justify-content: center;
        align-items: center; } }
    .products-bonuces .icon {
      font-size: 9px;
      color: #E76642;
      margin-right: 3px; }
    .products-bonuces span {
      font-size: 0.8125rem; }
      .products-bonuces span:nth-child(2) {
        color: #E76642;
        font-weight: 500; }
      .products-bonuces span:nth-child(3) {
        margin-left: 3px;
        color: #717C89; }
  .products-btns {
    padding: 0;
    position: relative;
    height: 36px;
    width: 36px; }
    @media (min-width: 576px) {
      .products-btns {
        margin: 5px auto 0;
        height: 42px;
        width: 80%; } }
    @media (min-width: 992px) {
      .products-btns {
        height: 48px; } }
    .products-btns-counter {
      flex: 0 1 auto;
      height: 48px;
      top: 0;
      left: 0;
      position: absolute;
      width: 100%;
      transform: rotateY(90deg);
      transition-duration: .2s; }
      @media (min-width: 576px) {
        .products-btns-counter {
          width: 160px;
          left: calc(50% - 80px); } }
      .products-btns-counter .ch-count-input {
        height: 42px;
        line-height: 42px;
        border-radius: 24px;
        border-color: #E0E0E3;
        text-align: center; }
        @media (min-width: 576px) {
          .products-btns-counter .ch-count-input {
            height: 48px;
            line-height: 48px; } }
      .products-btns-counter .ch-count-minus,
      .products-btns-counter .ch-count-plus {
        width: 36px;
        height: 36px;
        background-color: #F1F3F8;
        border-radius: 50%;
        position: absolute;
        top: 3px; }
        @media (min-width: 576px) {
          .products-btns-counter .ch-count-minus,
          .products-btns-counter .ch-count-plus {
            top: 6px; } }
        .products-btns-counter .ch-count-minus:hover,
        .products-btns-counter .ch-count-plus:hover {
          background-color: #E0E0E3; }
        .products-btns-counter .ch-count-minus:after,
        .products-btns-counter .ch-count-plus:after {
          content: '\e92f';
          font-family: "icomoon" !important;
          font-size: 10px;
          color: #E76642;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .products-btns-counter .ch-count-minus {
        left: 3px; }
        @media (min-width: 576px) {
          .products-btns-counter .ch-count-minus {
            left: 6px; } }
        .products-btns-counter .ch-count-minus:after {
          transform: translate(-50%, -48%) rotate(180deg); }
      .products-btns-counter .ch-count-plus {
        right: 3px; }
        @media (min-width: 576px) {
          .products-btns-counter .ch-count-plus {
            right: 6px; } }
    .products-btns-button {
      position: absolute;
      top: 0;
      left: 0;
      width: auto;
      transition-duration: .2s; }
      @media (min-width: 576px) {
        .products-btns-button {
          left: calc(50% - 80px);
          width: 160px; } }
      .products-btns-button .btn {
        border-radius: 24px; }
        @media (min-width: 576px) {
          .products-btns-button .btn {
            width: 100%; } }
        @media (max-width: 991.98px) {
          .products-btns-button .btn {
            height: 42px; } }
        @media (max-width: 575.98px) {
          .products-btns-button .btn {
            flex: 0 1 auto;
            height: 36px;
            width: 36px;
            padding: 0; }
            .products-btns-button .btn:before {
              content: '\e936';
              font-family: "icomoon" !important;
              color: #fff;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%); } }
        @media (max-width: 575.98px) {
          .products-btns-button .btn span {
            display: none; } }

.products-price-old + .products-price-item span {
  color: #FF0F00; }

.opened .products-btns-button {
  transform: rotateY(90deg); }

.opened .products-btns-counter {
  transform: rotateY(0deg); }

@media (max-width: 575.98px) {
  .products-bottom.opened .products-price {
    width: 100%;
    margin-bottom: 5px;
    text-align: center; }
    .products-bottom.opened .products-price-item span {
      font-size: 0.8125rem !important; }
  .products-bottom.opened .products-btns {
    width: 100%; } }

.products-filter {
  position: relative; }
  .products-filter-wrap {
    padding: 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    z-index: 2; }
    @media (min-width: 768px) {
      .products-filter-wrap {
        gap: 15px;
        padding: 30px; } }
    @media (min-width: 992px) {
      .products-filter-wrap {
        gap: 20px; } }
    .products-filter-wrap a {
      display: inline-block;
      white-space: nowrap;
      background-color: #F1F3F8;
      padding: 8px 10px;
      border-radius: 2px;
      color: #091922;
      font-size: 0.9375rem; }
      @media (min-width: 576px) {
        .products-filter-wrap a {
          padding: 8px 20px;
          border-radius: 20px; } }
      @media (min-width: 992px) {
        .products-filter-wrap a {
          padding: 10px 25px; } }
      .products-filter-wrap a:hover {
        color: #da5128; }
      .products-filter-wrap a.active {
        color: #fff;
        background-color: #E76642; }
      .products-filter-wrap a.active {
        cursor: default; }

.products-swipe {
  height: 100%;
  padding-top: 50px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  width: 100%;
  z-index: 1006;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  max-width: 100%; }
  .products-swipe:before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(50% - 25px);
    width: 50px;
    height: 4px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.4); }
  @media (min-width: 768px) {
    .products-swipe {
      display: none; } }
  .products-swipe.opening {
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 300ms ease;
    opacity: 1;
    bottom: 0;
    visibility: visible; }
  .products-swipe .btn {
    transition-duration: 0s !important; }
  .products-swipe .product-info-mobile-fixed {
    position: sticky; }

.product-swipe-info,
.product-swipe-ingredients,
.product-swipe-accordions {
  padding-left: 15px;
  padding-right: 15px; }

.products-swipe-wrapper {
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 0;
  height: 100%;
  max-width: 100%;
  overflow-y: auto;
  will-change: scroll-position;
  pointer-events: all;
  touch-action: pan-y; }
  .products-swipe-wrapper .product-acc-top-title {
    font-size: 1.25rem;
    margin: 20px 0; }
  .products-swipe-wrapper .product-info-minimum {
    margin-bottom: 20px; }

.products-swipe-wrapper-wrap {
  height: 1200px; }

.products-swipe-title {
  margin: 0 0 20px; }
  .products-swipe-title .headline {
    display: flex;
    align-items: flex-start; }
    .products-swipe-title .headline span {
      flex: 0 1 auto;
      width: calc(100% - 35px); }
    .products-swipe-title .headline .shares-btn {
      flex: 0 1 auto;
      width: 35px;
      text-align: center;
      padding-top: 20px; }
      .products-swipe-title .headline .shares-btn-item {
        padding: 5px; }
      .products-swipe-title .headline .shares-btn .icon {
        font-size: 1.25rem;
        color: #7D96A4; }

.products-swipe-close,
.products-swipe-wish {
  position: absolute;
  top: 60px;
  width: 36px;
  height: 36px;
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 50%;
  line-height: 1;
  z-index: 99; }
  .products-swipe-close:after,
  .products-swipe-wish:after {
    content: '\e915';
    font-family: "icomoon" !important;
    color: #da5128;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .products-swipe-close:hover, .products-swipe-close:focus, .products-swipe-close:active,
  .products-swipe-wish:hover,
  .products-swipe-wish:focus,
  .products-swipe-wish:active {
    background-color: #50667E; }
    .products-swipe-close:hover:after, .products-swipe-close:focus:after, .products-swipe-close:active:after,
    .products-swipe-wish:hover:after,
    .products-swipe-wish:focus:after,
    .products-swipe-wish:active:after {
      color: #fff; }

.products-swipe-wish {
  right: 60px; }
  .products-swipe-wish:after {
    font-size: 0.875rem;
    content: '\e92c'; }
  .products-swipe-wish.active {
    background-color: #E76642; }
    .products-swipe-wish.active:after {
      color: #fff; }

.products-swipe-close {
  right: 10px; }
  .products-swipe-close:after {
    font-size: 0.7rem;
    content: '\e915'; }

.product-swipe-gallery {
  position: relative;
  display: flex;
  margin-bottom: 20px; }
  .product-swipe-gallery .item {
    display: flex;
    height: 350px; }
    .product-swipe-gallery .item img {
      object-fit: cover;
      border-radius: 3px;
      width: 100%; }
  .product-swipe-gallery .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center; }
    .product-swipe-gallery .slick-dots button {
      font-size: 0;
      width: 10px;
      height: 10px;
      margin: 4px;
      background-color: #50667E;
      border-radius: 50%; }
    .product-swipe-gallery .slick-dots .slick-active button {
      background-color: #E76642; }

.product-swipe-info {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E3; }
  .product-swipe-info .product-info-bonus {
    margin-bottom: 10px; }
    .product-swipe-info .product-info-bonus .ch-bonus {
      font-size: 0.875rem; }

.product-swipe-accordions .container {
  padding: 0; }

.product-swipe-accordions .product-acc-top {
  flex-direction: column;
  align-items: flex-start; }

.product-swipe-accordions .product-acc-top-link {
  color: #da5128; }
  .product-swipe-accordions .product-acc-top-link span {
    font-weight: 400;
    border-bottom-color: #da5128; }

.product-swipe-accordions .accordion {
  border: 1px solid #E0E0E3; }

.product-swipe-ingredients .product-ingredient-item {
  border: 1px solid rgba(224, 224, 227, 0.6);
  box-shadow: none; }

@media (max-width: 767.98px) {
  .product-info-mobile-fixed,
  .fixed-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 8px 4px rgba(142, 142, 142, 0.1);
    border-bottom-width: 0;
    margin-bottom: 0 !important; } }

@media (min-width: 768px) {
  .product-info-mobile-fixed,
  .fixed-cart {
    display: none; } }

@media (max-width: 767.98px) {
  .product-info-mobile-fixed {
    background-color: #50667E;
    padding: 8px 15px !important; } }

.product-info-mobile-fixed .ch-mob-price {
  margin-right: 5px; }
  @media (min-width: 425px) {
    .product-info-mobile-fixed .ch-mob-price {
      margin-right: 15px; } }
  @media (min-width: 768px) {
    .product-info-mobile-fixed .ch-mob-price {
      display: none; } }
  .product-info-mobile-fixed .ch-mob-price .ch-price-item {
    font-size: 1.125rem !important;
    font-weight: 500;
    color: #fff !important; }
    @media (min-width: 425px) {
      .product-info-mobile-fixed .ch-mob-price .ch-price-item {
        font-size: 1.25rem; } }
  .product-info-mobile-fixed .ch-mob-price .ch-price-count {
    font-size: 1rem;
    color: #e7e9ef;
    font-weight: 300; }

.product-info-mobile-fixed .product-info-btns {
  display: flex;
  justify-content: space-between;
  flex-direction: row !important;
  align-items: center !important; }
  .product-info-mobile-fixed .product-info-btns .ch-mob-price {
    margin-bottom: 0; }

.product-info-mobile-fixed .product-btns-info {
  display: none !important; }

.product-info-mobile-fixed .product-info-wish .btn {
  color: #fff; }
  .product-info-mobile-fixed .product-info-wish .btn:hover .icon {
    color: #D1D1D1; }

@media (max-width: 767.98px) {
  .product-info-mobile-fixed .ch-buy {
    display: flex;
    align-items: center; } }

@media (max-width: 767.98px) {
  .product-info-mobile-fixed .product-btns {
    height: 42px;
    width: 130px; }
    .product-info-mobile-fixed .product-btns .product-btns-counter .ch-count-input {
      height: 42px;
      line-height: 42px; }
    .product-info-mobile-fixed .product-btns .product-btns-counter .ch-count-minus,
    .product-info-mobile-fixed .product-btns .product-btns-counter .ch-count-plus {
      height: 31px;
      width: 31px; }
    .product-info-mobile-fixed .product-btns .btn {
      height: 42px;
      padding: 0 15px; } }

.products-swipe-wrapper .swiper-wrapper {
  padding-bottom: 30px; }

.products-swipe-wrapper .swiper-pagination {
  padding-top: 6px;
  background-color: #fff; }

.projects {
  display: flex;
  flex-direction: column; }
  .projects > div {
    flex: 0 1 auto; }
  .projects-img {
    width: 100%;
    height: 160px;
    position: relative;
    margin-bottom: 20px; }
    @media (min-width: 576px) {
      .projects-img {
        height: 200px; } }
    @media (min-width: 1110px) {
      .projects-img {
        height: 220px; } }
    .projects-img a {
      display: flex;
      height: 100%; }
      .projects-img a > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
        transition-duration: .2s; }
    .projects-img:hover a > img {
      opacity: .8; }
  .projects-logo {
    position: absolute;
    border-radius: 3px;
    box-shadow: 0 0 60px 2px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    right: 5px;
    bottom: -15px;
    padding: 5px;
    display: flex;
    align-items: center;
    line-height: 1; }
    @media (min-width: 768px) {
      .projects-logo {
        right: 15px; } }
    .projects-logo img {
      width: auto;
      max-width: 100%;
      max-height: 48px; }
  .projects-date {
    position: relative;
    margin: 0 15px 10px; }
    @media (min-width: 576px) {
      .projects-date {
        margin: 0 20px 10px; } }
  .projects-title {
    margin: 0 15px 15px; }
    @media (min-width: 576px) {
      .projects-title {
        margin: 0 20px 15px; } }
    .projects-title a {
      font-size: 1.0625rem;
      font-family: "Lora", serif;
      color: #091922; }
      @media (min-width: 1260px) {
        .projects-title a {
          font-size: 1.125rem; } }
      .projects-title a:hover {
        color: #da5128; }
  .projects-info {
    margin: auto 15px 15px; }
    @media (min-width: 576px) {
      .projects-info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin: auto 20px 20px; } }
    .projects-info-item {
      margin-bottom: 5px; }
      @media (min-width: 576px) {
        .projects-info-item {
          flex: 0 1 auto;
          width: 50%;
          padding-right: 10px; } }

.promo {
  position: relative; }
  .promo-item {
    display: flex;
    position: relative;
    z-index: 2;
    padding: 20px; }
    @media (min-width: 425px) {
      .promo-item {
        padding: 30px; } }
    @media (min-width: 992px) {
      .promo-item {
        justify-content: space-between; } }
    @media (min-width: 1260px) {
      .promo-item {
        padding: 40px; } }

.promo-item-img {
  display: none; }
  @media (min-width: 425px) {
    .promo-item-img {
      flex: 0 1 auto;
      display: flex;
      border-radius: 10px;
      overflow: hidden;
      width: 170px; } }
  @media (min-width: 768px) {
    .promo-item-img {
      width: 250px; } }
  @media (min-width: 992px) {
    .promo-item-img {
      width: 220px; } }
  @media (min-width: 1110px) {
    .promo-item-img {
      width: 250px; } }
  @media (min-width: 1260px) {
    .promo-item-img {
      width: 275px; } }
  @media (max-width: 991.98px) {
    .promo-item-img:last-child {
      display: none; } }
  .promo-item-img img {
    object-fit: cover;
    display: block; }

@media (min-width: 425px) {
  .promo-item-content {
    flex: 0 1 auto;
    width: calc(100% - 170px);
    padding-left: 20px; } }

@media (min-width: 768px) {
  .promo-item-content {
    padding-left: 30px;
    width: calc(100% - 250px); } }

@media (min-width: 992px) {
  .promo-item-content {
    padding: 0 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 500px); } }

@media (min-width: 1260px) {
  .promo-item-content {
    padding: 30px 30px 0;
    width: calc(100% - 550px); } }

.promo-item-content-title {
  line-height: 1.3;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .promo-item-content-title {
      margin-bottom: 20px; } }
  @media (min-width: 992px) {
    .promo-item-content-title {
      display: flex;
      flex-direction: column;
      align-items: center; } }
  @media (min-width: 1110px) {
    .promo-item-content-title {
      margin-bottom: 25px; } }
  .promo-item-content-title:before {
    content: '';
    display: block;
    width: 96px;
    height: 30px;
    margin-bottom: 15px;
    background: transparent url("/local/include/assets/css-v4/../images/decor/decor-1.svg") center no-repeat;
    background-size: contain; }
  .promo-item-content-title span {
    font-size: 1.375rem;
    font-family: "Lora", serif;
    font-weight: 500;
    color: #1A3853;
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: keep-all;
    line-break: normal;
    hyphens: auto; }
    @media (min-width: 768px) {
      .promo-item-content-title span {
        font-size: 1.75rem; } }
    @media (min-width: 1110px) {
      .promo-item-content-title span {
        font-size: 2.25rem; } }

.promo-item-content-text {
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .promo-item-content-text {
      margin-bottom: 25px; } }
  @media (min-width: 1110px) {
    .promo-item-content-text {
      margin-bottom: 35px; } }
  .promo-item-content-text span {
    font-size: 1.125rem;
    color: #1A3853; }

@media (min-width: 768px) {
  .promo-item-content-form {
    display: flex; } }

.promo-item-content-form input[type='tel'] {
  height: 56px;
  border: 2px solid rgba(80, 102, 126, 0.15);
  background-color: #fff;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .promo-item-content-form input[type='tel'] {
      margin-bottom: 0;
      border-radius: 3px 0 0 3px;
      width: 200px;
      border-right-width: 0; } }
  @media (min-width: 1110px) {
    .promo-item-content-form input[type='tel'] {
      width: 260px; } }
  @media (min-width: 1260px) {
    .promo-item-content-form input[type='tel'] {
      width: 290px; } }

@media (min-width: 768px) {
  .promo-item-content-form .btn {
    border-radius: 0 3px 3px 0; } }

.recipes {
  display: flex;
  flex-direction: column; }
  .recipes > div {
    flex: 0 1 auto; }
  .recipes-img {
    width: 100%;
    height: 160px;
    position: relative;
    margin-bottom: 10px; }
    @media (min-width: 576px) {
      .recipes-img {
        height: 200px; } }
    @media (min-width: 1110px) {
      .recipes-img {
        height: 220px; } }
    .recipes-img a {
      display: flex;
      height: 100%; }
      .recipes-img a > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
        transition-duration: .2s; }
      .recipes-img a:hover img {
        opacity: .8; }
  .recipes-category, .recipes-title, .recipes-info, .recipes-price {
    margin-left: 20px;
    margin-right: 20px; }
  .recipes-category {
    margin-bottom: 10px; }
  .recipes-title:after {
    content: '';
    width: 70px;
    height: 2px;
    border-radius: 1px;
    display: block;
    background-color: #E76642;
    margin: 15px 0; }
  .recipes-title a {
    font-size: 0.9375rem;
    font-family: "Lora", serif;
    color: #091922; }
    @media (min-width: 768px) {
      .recipes-title a {
        font-size: 1.0625rem; } }
    @media (min-width: 1260px) {
      .recipes-title a {
        font-size: 1.125rem; } }
    .recipes-title a:hover {
      color: #da5128; }
  .recipes-info {
    padding-bottom: 10px; }
    .recipes-info-item {
      margin-bottom: 10px; }
      .recipes-info-item span:last-child {
        font-weight: 500; }
  .recipes-price {
    border-top: 1px solid #E0E0E3;
    padding: 15px 0 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto; }
    .recipes-price-item, .recipes-price-btn {
      flex: 0 1 auto;
      margin-bottom: 5px; }
    .recipes-price-btn .btn {
      background-color: #E76642; }
    .recipes-price-item {
      padding-right: 10px; }
      .recipes-price-item span {
        display: block; }
        .recipes-price-item span:first-child {
          color: #7D96A4;
          font-size: 0.8125rem;
          margin-bottom: 3px; }
        .recipes-price-item span:nth-child(2) {
          font-family: "Lora", serif;
          color: #da5128;
          font-weight: 500; }

.recipes-sort {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .recipes-sort-mobile {
      display: none; } }
  .recipes-sort-grid {
    display: none; }
    @media (min-width: 768px) {
      .recipes-sort-grid {
        display: flex;
        flex-wrap: wrap; } }
  .recipes-sort-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #1A3853; }
    @media (min-width: 768px) {
      .recipes-sort-item {
        flex: 1 1 auto;
        padding: 10px;
        width: calc(100% / 3);
        border-right: 1px solid rgba(159, 176, 186, 0.3); } }
    @media (min-width: 992px) {
      .recipes-sort-item {
        width: calc(100% / 6); } }
    @media (min-width: 1260px) {
      .recipes-sort-item {
        padding: 20px; } }
    @media (max-width: 991.98px) {
      .recipes-sort-item:nth-child(3n + 3) {
        border-right-width: 0; } }
    @media (min-width: 992px) {
      .recipes-sort-item:nth-child(6n + 6) {
        border-right-width: 0; } }
    .recipes-sort-item-icon {
      flex: 0 1 auto;
      width: 50px;
      height: 50px;
      background-color: #F1F3F8;
      position: relative;
      border-radius: 50%; }
      .recipes-sort-item-icon > .icon {
        font-size: 1.5rem;
        color: #7D96A4;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .recipes-sort-item-name {
      flex: 0 1 auto;
      width: calc(100% - 50px);
      padding-left: 10px;
      line-height: 1.2; }
      @media (min-width: 1260px) {
        .recipes-sort-item-name {
          padding-left: 15px; } }
      .recipes-sort-item-name span {
        font-size: 0.875rem;
        font-weight: 500;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: keep-all;
        line-break: normal;
        hyphens: auto; }
    .recipes-sort-item:hover {
      color: #da5128; }
    .recipes-sort-item.active {
      cursor: default; }
      .recipes-sort-item.active .recipes-sort-item-icon {
        background-color: #E76642; }
        .recipes-sort-item.active .recipes-sort-item-icon > .icon {
          color: #fff; }
      .recipes-sort-item.active .recipes-sort-item-name span {
        color: #da5128; }

.review {
  margin-bottom: 30px; }
  .review-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #E0E0E3;
    padding: 20px; }
    @media (min-width: 768px) {
      .review-top {
        padding: 20px 30px; } }
    .review-top > div {
      flex: 0 1 auto; }
  .review-rate {
    margin-right: 50px;
    display: flex;
    align-items: center; }
    .review-rate-num {
      flex: 0 1 auto;
      width: 52px;
      height: 52px;
      background-color: #F1F3F8;
      border-radius: 50%;
      line-height: 1;
      position: relative; }
      .review-rate-num span {
        white-space: nowrap;
        font-family: "Lora", serif;
        font-size: 1.25rem;
        color: #da5128;
        font-weight: 500;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .review-rate-title {
      display: none; }
      @media (min-width: 425px) {
        .review-rate-title {
          display: block;
          flex: 0 1 auto;
          width: calc(100% - 52px);
          padding-left: 15px;
          line-height: 1.1; }
          .review-rate-title span {
            color: #7D96A4;
            font-family: "Lora", serif;
            font-size: 0.875rem; } }
  .review-rating {
    display: none; }
    @media (min-width: 768px) {
      .review-rating {
        display: flex;
        align-items: center; } }
    .review-rating-item {
      flex: 0 1 auto;
      display: flex;
      align-items: center;
      margin-right: 40px;
      line-height: 1; }
      .review-rating-item-icon {
        flex: 0 1 auto;
        width: 24px;
        text-align: center;
        margin-right: 10px; }
        .review-rating-item-icon > .icon {
          font-size: 1.375rem;
          color: #7D96A4; }
      .review-rating-item-num {
        flex: 0 1 auto; }
        .review-rating-item-num span {
          font-family: "Lora", serif;
          font-size: 1.25rem;
          font-weight: 500;
          color: #485059; }
  .review-date {
    margin-left: auto;
    position: relative;
    padding-left: 28px; }
    .review-date:before {
      content: '\e97d';
      font-family: "icomoon" !important;
      color: rgba(159, 176, 186, 0.7);
      position: absolute;
      top: 0;
      left: 0; }
    .review-date span {
      font-size: 0.8125rem;
      color: #1A3853;
      white-space: nowrap; }
  .review-bottom {
    padding: 20px 20px 10px; }
    @media (min-width: 768px) {
      .review-bottom {
        padding: 30px 30px 10px; } }
  .review-name {
    margin-bottom: 15px; }
    .review-name span {
      font-family: "Lora", serif;
      color: #091922;
      font-size: 1.125rem; }
  .review-txt {
    margin-bottom: 20px; }
    .review-txt p:last-child {
      margin-bottom: 0; }
  .review-gallery {
    line-height: 1; }
    .review-gallery a {
      display: inline-block;
      vertical-align: top;
      margin: 0 15px 15px 0;
      position: relative; }
      .review-gallery a:before, .review-gallery a:after {
        opacity: 0;
        transition-duration: .2s;
        position: absolute; }
      .review-gallery a:before {
        content: '';
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.4);
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
      .review-gallery a:after {
        content: '\e92d';
        font-family: "icomoon" !important;
        font-size: 1.375rem;
        color: #F3F3F3;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .review-gallery a > img {
        border-radius: 5px;
        display: block; }
      .review-gallery a:hover:before, .review-gallery a:hover:after {
        opacity: 1; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; }
  @media (min-width: 576px) {
    .review-grid {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 768px) {
    .review-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 20px; } }
  @media (min-width: 992px) {
    .review-grid {
      grid-template-columns: repeat(5, 1fr); } }
  @media (min-width: 1110px) {
    .review-grid {
      grid-template-columns: repeat(6, 1fr); } }
  .review-grid-item {
    border: 2px solid #F1F3F8; }
    .review-grid-item-img {
      position: relative;
      height: 200px; }
      .review-grid-item-img img {
        display: block;
        object-fit: cover; }
      .review-grid-item-img a {
        display: flex;
        position: relative;
        z-index: 9; }
        .review-grid-item-img a:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 40px;
          background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.95)); }
        .review-grid-item-img a > .ch-icon {
          transition-duration: .2s;
          position: absolute;
          bottom: -18px;
          left: calc(50% - 18px);
          z-index: 10;
          width: 36px;
          height: 36px;
          background-color: #B5C6CF;
          border-radius: 50%;
          box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
          .review-grid-item-img a > .ch-icon > .icon {
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
        .review-grid-item-img a:hover > .ch-icon {
          background-color: #E76642; }
    .review-grid-item-link {
      border-top: 2px solid #F1F3F8;
      position: relative;
      text-align: center;
      padding: 30px 10px 15px; }
      .review-grid-item-link .ch-link {
        font-size: 0.8125rem;
        color: #da5128;
        border-bottom: 1px dashed #da5128; }
        .review-grid-item-link .ch-link:hover {
          border-bottom-color: transparent; }

.reviews-item {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  z-index: 2; }
  @media (min-width: 1110px) {
    .reviews-item {
      display: flex;
      flex-direction: row;
      background: none;
      box-shadow: none; } }
  @media (min-width: 1110px) {
    .reviews-item:after {
      content: '';
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #fff;
      z-index: 0;
      border-radius: 5px;
      box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); } }
  @media (min-width: 1260px) {
    .reviews-item:after {
      top: 120px; } }

@media (min-width: 1110px) {
  .reviews .stitle {
    position: relative;
    margin-bottom: -40px; } }

.reviews-info {
  position: relative;
  z-index: 1;
  padding: 30px 25px 15px;
  border-bottom: 2px solid #F3F3F3;
  margin-bottom: 20px; }
  @media (min-width: 576px) {
    .reviews-info {
      padding: 30px 25px 0;
      margin-bottom: 0;
      border-bottom-width: 0; } }
  @media (min-width: 768px) {
    .reviews-info {
      padding: 40px 40px 0; } }
  @media (min-width: 1110px) {
    .reviews-info {
      flex: 0 1 auto;
      width: 40%;
      padding: 120px 30px 20px 30px; } }
  @media (min-width: 1260px) {
    .reviews-info {
      padding: 190px 30px 20px 40px; } }
  .reviews-info-title {
    margin-bottom: 20px; }
    @media (min-width: 576px) {
      .reviews-info-title {
        margin-bottom: 35px; } }
    .reviews-info-title > span {
      color: #1A3853;
      font-family: "Lora", serif;
      font-weight: 500;
      font-size: 1.125rem; }
      @media (min-width: 1110px) {
        .reviews-info-title > span {
          font-size: 1.25rem; } }
      .reviews-info-title > span > span {
        color: #da5128; }
  .reviews-info-nums {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px; }
    @media (min-width: 576px) {
      .reviews-info-nums {
        margin-bottom: 40px; } }
    .reviews-info-nums .ch-num {
      flex: 0 1 auto;
      position: relative; }
      .reviews-info-nums .ch-num:not(:last-child) {
        margin-right: 15px; }
        @media (min-width: 1260px) {
          .reviews-info-nums .ch-num:not(:last-child) {
            margin-right: 20px; } }
      @media (min-width: 500px) {
        .reviews-info-nums .ch-num:last-child:after {
          content: ':';
          position: absolute;
          top: 3px;
          font-family: "Lora", serif;
          font-size: 2.25rem;
          font-weight: 500;
          color: #9FB0BA; } }
      @media (min-width: 1260px) {
        .reviews-info-nums .ch-num:last-child:after {
          top: 10px; } }
      .reviews-info-nums .ch-num:last-child .ch-num-number span {
        color: #E76642; }
      @media (min-width: 500px) {
        .reviews-info-nums .ch-num:last-child {
          padding-left: 10px; } }
      @media (min-width: 1260px) {
        .reviews-info-nums .ch-num:last-child {
          padding-left: 20px; } }
      .reviews-info-nums .ch-num:last-child:after {
        left: -8px; }
        @media (min-width: 1260px) {
          .reviews-info-nums .ch-num:last-child:after {
            left: -5px; } }
      .reviews-info-nums .ch-num-number {
        min-width: 60px;
        height: 60px;
        background-color: #F1F3F8;
        border-radius: 5px;
        padding: 0 5px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px; }
        @media (min-width: 1260px) {
          .reviews-info-nums .ch-num-number {
            min-width: 70px;
            height: 70px; } }
        .reviews-info-nums .ch-num-number span {
          white-space: nowrap;
          font-family: "Lora", serif;
          font-weight: 500;
          font-size: 1.375rem;
          display: inline-block;
          padding-top: 1px; }
          @media (min-width: 1260px) {
            .reviews-info-nums .ch-num-number span {
              font-size: 1.5rem; } }
      .reviews-info-nums .ch-num-title {
        text-align: center; }
        .reviews-info-nums .ch-num-title span {
          font-size: 0.875rem;
          color: #1A3853; }
  .reviews-info-link {
    margin: 20px 0; }
    @media (min-width: 576px) {
      .reviews-info-link {
        margin: 30px 30px 20px; } }
    @media (min-width: 1110px) {
      .reviews-info-link {
        margin: 0; } }

.reviews-carousel {
  flex: 0 1 auto;
  position: relative;
  padding: 0 15px 15px;
  z-index: 2; }
  @media (min-width: 576px) {
    .reviews-carousel {
      padding: 0 25px 25px; } }
  @media (min-width: 1110px) {
    .reviews-carousel {
      width: 60%;
      padding: 0 10px 10px 0; } }
  @media (min-width: 1260px) {
    .reviews-carousel {
      padding: 0 10px 30px 0; } }
  .reviews-carousel-wrap {
    position: relative; }
  .reviews-carousel-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    align-items: flex-start; }
    @media (min-width: 576px) {
      .reviews-carousel-item {
        flex-direction: row; } }
    @media (min-width: 768px) {
      .reviews-carousel-item {
        align-items: flex-end; } }
    .reviews-carousel-item-img {
      flex: 0 1 auto;
      width: 320px;
      padding: 20px;
      box-shadow: 0 0 24px 2px rgba(0, 0, 0, 0.05);
      display: flex;
      background-color: #fff; }
      @media (min-width: 576px) {
        .reviews-carousel-item-img {
          padding: 5px;
          width: 200px; } }
      @media (min-width: 768px) {
        .reviews-carousel-item-img {
          width: 295px; } }
      @media (min-width: 1260px) {
        .reviews-carousel-item-img {
          padding: 20px;
          width: 360px; } }
      .reviews-carousel-item-img img {
        display: block;
        width: 100%;
        object-fit: cover;
        border: 1px solid #F3F3F3; }
    .reviews-carousel-item-info {
      flex: 0 1 auto;
      margin-top: 20px; }
      @media (min-width: 576px) {
        .reviews-carousel-item-info {
          margin-top: 0;
          width: calc(100% - 200px);
          padding-left: 30px; } }
      @media (min-width: 768px) {
        .reviews-carousel-item-info {
          width: calc(100% - 295px); } }
      @media (min-width: 1260px) {
        .reviews-carousel-item-info {
          padding-left: 40px;
          width: calc(100% - 385px); } }
      .reviews-carousel-item-info .ch-title {
        margin-bottom: 10px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-height: 56px; }
        .reviews-carousel-item-info .ch-title span {
          font-size: 1.25rem;
          font-weight: 500;
          color: #1A3853; }
      .reviews-carousel-item-info .ch-text {
        margin-bottom: 10px; }
        .reviews-carousel-item-info .ch-text span {
          font-size: 0.9375rem;
          color: #50667E; }
      .reviews-carousel-item-info .ch-link {
        margin-bottom: 20px;
        line-height: 1.3; }
        @media (min-width: 576px) {
          .reviews-carousel-item-info .ch-link {
            margin-bottom: 50px; } }
        .reviews-carousel-item-info .ch-link a {
          color: #E76642;
          border-bottom: 1px dashed #E76642;
          font-size: 0.9375rem; }
          .reviews-carousel-item-info .ch-link a:hover {
            color: #da5128;
            border-bottom-color: transparent; }

.pagingInfo {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  line-height: 1; }
  .pagingInfo span {
    flex: 0 1 auto;
    display: inline-block;
    font-family: "Lora", serif; }
    .pagingInfo span:first-child {
      color: #7D96A4;
      font-size: 1.5rem;
      position: relative;
      bottom: -3px; }
    .pagingInfo span:last-child {
      color: #9FB0BA;
      font-size: 1rem;
      margin-left: 5px; }
      .pagingInfo span:last-child:before {
        content: '/';
        margin-right: 5px; }

.carousel-rev-nav {
  display: flex; }
  .carousel-rev-nav .carousel-rev-prev {
    margin-right: 10px; }
  .carousel-rev-nav .carousel-rev-prev,
  .carousel-rev-nav .carousel-rev-next {
    position: relative;
    flex: 0 1 auto;
    width: 34px;
    height: 34px;
    color: #7D96A4;
    transition-duration: .2s; }
    .carousel-rev-nav .carousel-rev-prev > .icon,
    .carousel-rev-nav .carousel-rev-next > .icon {
      color: inherit;
      font-size: 2.125rem; }
    .carousel-rev-nav .carousel-rev-prev:hover,
    .carousel-rev-nav .carousel-rev-next:hover {
      color: #50667E;
      background-color: transparent;
      cursor: pointer; }

.reviews-carousel .slick-dots {
  display: none !important; }

@media (min-width: 1110px) {
  .reviews .headline-big {
    margin-bottom: -40px !important; } }

@media (min-width: 1260px) {
  .reviews .headline-big {
    margin-bottom: -75px !important; } }

.route-big,
.route-small {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }

.route-big .route-item {
  width: 100%; }
  @media (min-width: 500px) {
    .route-big .route-item {
      width: calc(50% - 5px); } }
  @media (min-width: 768px) {
    .route-big .route-item {
      width: calc(33.3333333% - 7px); } }
  .route-big .route-item-wrap {
    padding: 20px; }
    @media (min-width: 992px) {
      .route-big .route-item-wrap {
        padding: 25px; } }
  .route-big .route-item-title {
    margin-bottom: 20px; }
    .route-big .route-item-title a {
      font-size: 1.25rem; }
      @media (min-width: 992px) {
        .route-big .route-item-title a {
          font-size: 1.5rem; } }
  @media (min-width: 992px) {
    .route-big .route-item-list li a {
      font-size: 1.0625rem; } }

.route-small .route-item {
  width: 100%; }
  @media (min-width: 500px) {
    .route-small .route-item {
      width: calc(50% - 5px); } }
  @media (min-width: 768px) {
    .route-small .route-item {
      width: calc(25% - 8px); } }
  .route-small .route-item-wrap {
    padding: 15px; }
    @media (min-width: 992px) {
      .route-small .route-item-wrap {
        padding: 20px; } }
  .route-small .route-item-title {
    margin-bottom: 15px; }
    @media (min-width: 1260px) {
      .route-small .route-item-title {
        text-align: center; } }
    .route-small .route-item-title a {
      font-size: 1.125rem; }
      @media (min-width: 992px) {
        .route-small .route-item-title a {
          font-size: 1.25rem; } }
  @media (min-width: 1260px) {
    .route-small .route-item-list ul {
      column-count: 2;
      column-gap: 10px; } }
  .route-small .route-item-list li {
    margin-bottom: 10px;
    line-height: 1.3; }
    .route-small .route-item-list li a {
      font-size: 0.9375rem;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }

.route-item {
  flex: 0 1 auto; }
  .route-item-img {
    border-radius: 5px 5px 0 0;
    line-height: 1;
    overflow: hidden; }
    .route-item-img img {
      width: 100%;
      transition-duration: .2s; }
    .route-item-img:hover img {
      opacity: .8; }
  .route-item-title a {
    font-family: "Lora", serif;
    color: #1A3853;
    font-weight: 500; }
    .route-item-title a:hover {
      color: #E76642; }
  .route-item-list li {
    position: relative;
    padding-left: 15px; }
    .route-item-list li:not(:last-of-type) {
      margin-bottom: 12px; }
      @media (min-width: 992px) {
        .route-item-list li:not(:last-of-type) {
          padding-left: 15px; } }
    .route-item-list li:before {
      content: '';
      width: 6px;
      height: 6px;
      background-color: #E76642;
      border-radius: 3px;
      position: absolute;
      top: 8px;
      left: 0; }
    .route-item-list li a {
      color: #50667E; }
      .route-item-list li a:hover {
        color: #E76642; }
  .route-item-list-link {
    padding-top: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .route-item-list-link a .icon {
      font-size: 1.875rem; }

.easy-autocomplete {
  position: relative;
  width: 100% !important; }

.easy-autocomplete-container {
  top: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 99999;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 7px 6px 1px rgba(80, 102, 126, 0.1); }
  .easy-autocomplete-container .eac-category {
    font-size: 0.75rem;
    color: #9FB0BA;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px; }
  .easy-autocomplete-container ul li {
    padding: 0 15px 10px; }
    .easy-autocomplete-container ul li .eac-item a {
      display: inline-flex; }
      .easy-autocomplete-container ul li .eac-item a .ch-img {
        width: 24px;
        flex: 0 1 auto;
        text-align: center;
        line-height: 1; }
      .easy-autocomplete-container ul li .eac-item a span {
        flex: 0 1 auto;
        width: calc(100% - 24px);
        padding-left: 10px;
        color: #50667E; }
        .easy-autocomplete-container ul li .eac-item a span b {
          font-weight: 400;
          color: #000; }

.blockquote {
  position: relative;
  padding: 40px 40px 20px 80px; }
  .blockquote-icon {
    width: 42px;
    height: 42px;
    background-color: #E76642;
    border-radius: 3px;
    position: absolute;
    top: -15px;
    left: 25px; }
    .blockquote-icon > .icon {
      color: #fff;
      font-size: 1.125rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .blockquote-text {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #1A3853; }
    .blockquote-text p {
      font-family: inherit;
      color: inherit; }
  .blockquote-author {
    margin-top: 15px;
    text-align: right; }
    .blockquote-author .ch-name {
      color: #091922;
      font-weight: 500;
      margin-bottom: 5px; }
    .blockquote-author .ch-status {
      color: #50667E;
      font-size: 0.875rem; }

.select-imitation .custom-select {
  position: relative;
  display: flex;
  flex-direction: column; }
  .select-imitation .custom-select-trigger {
    position: relative;
    cursor: pointer;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    height: 52px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 2px; }
  .select-imitation .custom-select .dropped {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    pointer-events: all;
    transition: -o-transform 0.3s, opacity 0.3s;
    position: absolute;
    top: 51px;
    background-color: #fff;
    z-index: 99;
    left: 0;
    right: 0;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    border: 1px solid #D9D9D9; }

.select-imitation .custom-options {
  overflow-y: scroll;
  max-height: 350px; }

.select-imitation .custom-option {
  position: relative;
  display: block;
  cursor: pointer;
  transition-duration: .3s;
  z-index: 1;
  background: #fff; }
  .select-imitation .custom-option:not(:last-of-type) {
    border-bottom: 1px solid #D1D1D1; }
  .select-imitation .custom-option-selected {
    width: 100%;
    padding: 14px 20px 14px 0; }
    .select-imitation .custom-option-selected a {
      color: #163450; }
  .select-imitation .custom-option-title {
    color: #163450;
    font-size: 0.9375rem; }
    .select-imitation .custom-option-title > span,
    .select-imitation .custom-option-title > a {
      width: 100%;
      display: block;
      padding: 14px 20px;
      border-radius: 0 !important; }
    .select-imitation .custom-option-title > a {
      color: #da5128; }
      .select-imitation .custom-option-title > a span {
        border-bottom: 1px dotted #da5128; }
      .select-imitation .custom-option-title > a:hover span {
        border-bottom-color: transparent; }
  .select-imitation .custom-option:hover {
    cursor: pointer;
    background-color: #F1F3F8; }

.select-imitation .arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #F1F3F8;
  width: 38px;
  border-radius: 0 2px 2px 0; }
  .select-imitation .arrow:after {
    content: '\e92a';
    color: #E76642;
    font-family: "icomoon" !important;
    font-size: 0.75rem;
    transition-duration: .3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.select-imitation .custom-select.open .dropped {
  display: block; }

.select-imitation .custom-select.open .arrow::after {
  transform: translate(-50%, -50%) rotate(-180deg); }

.service-grid {
  padding-top: 30px; }
  @media (min-width: 576px) {
    .service-grid {
      padding-top: 0;
      display: flex;
      flex-wrap: wrap; } }
  .service-grid-item {
    flex: 0 1 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #F3F3F3; }
    @media (min-width: 576px) {
      .service-grid-item {
        border-bottom-width: 0;
        margin-bottom: 0;
        align-items: stretch;
        flex-direction: row; } }
    @media (min-width: 1110px) {
      .service-grid-item {
        width: 50%; } }
    @media (min-width: 1110px) {
      .service-grid-item.item-reverse {
        flex-direction: row-reverse; } }
    @media (max-width: 1109.98px) {
      .service-grid-item:nth-child(even) {
        flex-direction: row-reverse; } }
    @media (max-width: 575.98px) {
      .service-grid-item:nth-child(even) {
        flex-direction: column-reverse; } }
    @media (min-width: 576px) {
      .service-grid-item-info, .service-grid-item-img {
        flex: 0 1 auto;
        width: 50%; } }
    .service-grid-item-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 20px 40px; }
      @media (min-width: 576px) {
        .service-grid-item-info {
          padding: 40px 25px; } }
      @media (min-width: 1260px) {
        .service-grid-item-info {
          padding: 40px; } }
      .service-grid-item-info .ch-title {
        position: relative;
        margin-bottom: 20px; }
        .service-grid-item-info .ch-title:before {
          content: '';
          display: block;
          margin: 0 auto 10px;
          width: 63px;
          height: 19px;
          background: transparent url("/local/include/assets/css-v4/../images/decor/decor-1.svg") center no-repeat; }
        .service-grid-item-info .ch-title span {
          font-family: "Lora", serif;
          font-size: 1.5rem;
          font-weight: 500;
          color: #091922;
          line-height: 1.3; }
      .service-grid-item-info .ch-text {
        margin-bottom: 30px; }
        .service-grid-item-info .ch-text span {
          color: #50667E; }
      .service-grid-item-info .ch-gallery > a > img {
        display: none; }
    .service-grid-item-img {
      display: flex;
      overflow: hidden; }
      @media (max-width: 575.98px) {
        .service-grid-item-img {
          height: 220px;
          width: 220px; } }
      .service-grid-item-img img {
        object-fit: cover;
        width: 100%; }
        @media (max-width: 575.98px) {
          .service-grid-item-img img {
            border-radius: 50%;
            border: 5px solid #F1F3F8; } }

.service-list {
  padding: 15px; }
  @media (min-width: 425px) {
    .service-list {
      padding: 20px; } }
  @media (min-width: 768px) {
    .service-list {
      display: flex;
      gap: 0 30px;
      padding: 30px; } }
  @media (min-width: 1260px) {
    .service-list {
      gap: 0 50px;
      padding: 40px; } }
  .service-list-col {
    padding-top: 20px; }
    @media (min-width: 768px) {
      .service-list-col {
        flex: 0 1 auto;
        width: 57%; } }
  .service-list-img {
    display: none; }
    @media (min-width: 768px) {
      .service-list-img {
        display: block;
        flex: 0 1 auto;
        width: calc(45% - 30px);
        position: relative; } }
    @media (min-width: 1260px) {
      .service-list-img {
        width: calc(43% - 50px); } }
    .service-list-img-wrap {
      position: absolute;
      display: flex;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
      .service-list-img-wrap img {
        width: 100%;
        object-fit: cover;
        display: block; }

.service-list-twice {
  display: block !important; }
  .service-list-twice .service-list-col {
    padding-top: 0;
    width: 100%; }
    @media (min-width: 768px) {
      .service-list-twice .service-list-col {
        column-count: 2;
        column-gap: 30px; } }

.service-list-item {
  display: flex;
  position: relative;
  padding: 15px;
  border-radius: 2px;
  border: 1px solid rgba(159, 176, 186, 0.4);
  transition-duration: .2s;
  break-inside: avoid-column; }
  .service-list-item:not(:last-child) {
    margin-bottom: 15px; }
    @media (min-width: 500px) {
      .service-list-item:not(:last-child) {
        margin-bottom: 25px; } }
  @media (min-width: 500px) {
    .service-list-item {
      padding: 20px; } }
  .service-list-item:before {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 42px 42px;
    border-color: transparent transparent #E76642 transparent; }
  .service-list-item:after {
    content: '\e912';
    font-family: "icomoon" !important;
    font-size: 20px;
    color: #fff;
    position: absolute;
    bottom: -2px;
    right: 1px; }
  .service-list-item:hover {
    border-color: transparent;
    box-shadow: 0 0 14px 6px rgba(80, 102, 126, 0.1); }
    .service-list-item:hover:before {
      border-color: transparent transparent #da5128 transparent; }
  .service-list-item > a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.service-list-icon {
  flex: 0 1 auto;
  width: 48px; }
  @media (min-width: 500px) {
    .service-list-icon {
      text-align: center;
      width: 70px; } }
  .service-list-icon .icon {
    font-size: 48px;
    color: rgba(125, 150, 164, 0.4); }
    @media (min-width: 500px) {
      .service-list-icon .icon {
        font-size: 64px; } }

.service-list-info {
  flex: 0 1 auto;
  width: calc(100% - 48px);
  padding-left: 20px; }
  @media (min-width: 500px) {
    .service-list-info {
      width: calc(100% - 70px);
      padding-left: 30px; } }
  .service-list-info-title:after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    margin: 10px 0;
    background-color: #E76642; }
    @media (min-width: 500px) {
      .service-list-info-title:after {
        margin: 12px 0; } }
  .service-list-info-title span {
    font-family: "Lora", serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1A3853;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: keep-all;
    line-break: normal;
    hyphens: auto; }
    @media (min-width: 500px) {
      .service-list-info-title span {
        font-size: 1.25rem; } }
  .service-list-info-price span {
    margin-right: 8px;
    font-family: "Lora", serif; }
    .service-list-info-price span.ch-price-before, .service-list-info-price span.ch-price-after {
      font-size: 0.875rem;
      color: #50667E; }
    .service-list-info-price span.ch-price-item {
      font-size: 1.125rem;
      font-weight: 500;
      color: #1A3853; }
      @media (min-width: 500px) {
        .service-list-info-price span.ch-price-item {
          font-size: 1.25rem; } }

@media (max-width: 991.98px) {
  .side-cart {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0;
    transform-style: preserve-3d;
    transform: rotateY(-75deg);
    transition: transform 0.2s, opacity 0.2s; } }

@media (max-width: 991.98px) {
  .side-cart.open {
    transition: transform 0.2s, opacity 0.2s;
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg); } }

.side-contact {
  padding: 25px;
  display: flex; }
  .side-contact:not(:last-child) {
    border-bottom: 1px solid #F3F3F3; }
  .side-contact-icon {
    flex: 0 1 auto;
    width: 28px; }
    .side-contact-icon .icon {
      color: #50667E;
      font-size: 1.5rem; }
  .side-contact-item {
    flex: 0 1 auto;
    width: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
    line-height: 1.5; }
    .side-contact-item .ch-phone {
      color: #1A3853;
      font-size: 1.125rem;
      margin-bottom: 25px;
      font-weight: 500; }
    .side-contact-item .ch-messenger {
      display: flex;
      align-items: center; }
      .side-contact-item .ch-messenger:not(:last-child) {
        margin-bottom: 20px; }
      .side-contact-item .ch-messenger img {
        flex: 0 1 auto;
        width: 32px; }
      .side-contact-item .ch-messenger span {
        flex: 0 1 auto;
        width: calc(100% - 32px);
        color: #1A3853;
        padding-left: 10px; }
    .side-contact-item .ch-info {
      color: #091922;
      font-weight: 500; }
      .side-contact-item .ch-info:not(:last-child) {
        margin-bottom: 15px; }
      .side-contact-item .ch-info-title {
        font-weight: 400;
        font-size: 0.875rem;
        margin-bottom: 3px;
        color: #7D96A4; }
      .side-contact-item .ch-info-item {
        font-weight: 500;
        color: #091922; }
      .side-contact-item .ch-info-border {
        color: #1A3853;
        border-bottom: 1px dashed #1A3853; }
        .side-contact-item .ch-info-border:hover {
          border-bottom-color: transparent;
          color: #da5128; }
      .side-contact-item .ch-info span {
        display: block; }

.side-delivery {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s, opacity 0.2s;
  right: 0;
  transform-origin: 100% 0;
  transform: rotateY(75deg); }
  @media (min-width: 992px) {
    .side-delivery {
      width: 680px; } }
  .side-delivery-wrap {
    background-color: #fff;
    height: 100%;
    overflow: auto;
    padding-top: 53px; }
    .side-delivery-wrap .side-menu-title {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 99; }
  .side-delivery-item {
    margin-top: 5px;
    height: 100%;
    padding: 20px 15px 50px; }
    @media (min-width: 576px) {
      .side-delivery-item {
        padding: 20px 30px 50px; } }

.side-delivery.open {
  transition: transform 0.2s, opacity 0.2s;
  opacity: 1;
  visibility: visible;
  transform: rotateY(0deg); }

.side-delivery-item > div {
  margin-bottom: 24px; }

.side-delivery-item-map {
  margin-bottom: 25px; }
  .side-delivery-item-map .ch-img {
    border: 5px solid #F1F3F8; }
    .side-delivery-item-map .ch-img img {
      display: block; }
  .side-delivery-item-map .ch-link {
    margin-top: 10px;
    align-items: center;
    gap: 15px; }
    .side-delivery-item-map .ch-link span {
      width: calc(100% - 47px);
      color: #0d687e;
      font-weight: 500;
      font-size: 0.875rem;
      border-bottom: 1px dashed #0d687e;
      display: inline-block;
      white-space: nowrap;
      transition-duration: .2s; }
    .side-delivery-item-map .ch-link:hover span {
      border-bottom-color: transparent; }

.side-delivery-item-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 40px; }
  .side-delivery-item-images .ch-img {
    display: flex;
    width: 110px;
    height: 90px;
    position: relative; }
    .side-delivery-item-images .ch-img img {
      object-fit: cover;
      width: 100%; }
    .side-delivery-item-images .ch-img a {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .side-delivery-item-images .ch-img:hover {
      opacity: .8; }

.side-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s, opacity 0.2s;
  left: 0;
  transform-origin: 0 0;
  transform: rotateY(-75deg); }
  @media (min-width: 768px) {
    .side-menu {
      width: 370px; } }
  .side-menu-wrap {
    background-color: #fff;
    height: 100%; }
  .side-menu-item {
    margin-top: 5px;
    height: 100%;
    padding: 20px 0 80px;
    unicode-bidi: bidi-override;
    direction: rtl;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    scrollbar-color: #50667E;
    scrollbar-width: thin;
    overflow-y: auto; }
    .side-menu-item::-webkit-scrollbar {
      -webkit-appearance: none;
      background-color: #F3F3F3;
      width: 6px; }
    .side-menu-item::-webkit-scrollbar-thumb {
      border-radius: 3px;
      background-color: #7D96A4;
      -webkit-box-shadow: 0 0 1px rgba(80, 102, 126, 0.5); }
    .side-menu-item > div {
      direction: ltr; }
  .side-menu-title {
    position: relative;
    padding: 15px;
    display: flex;
    align-items: center;
    background-color: #50667E; }
    @media (min-width: 576px) {
      .side-menu-title {
        padding: 15px 20px; } }
    .side-menu-title > .icon {
      font-size: 1.375rem;
      color: #F3F3F3;
      opacity: .6;
      margin-right: 10px; }
    .side-menu-title > span {
      font-size: 1rem;
      color: #fff;
      text-transform: uppercase; }
    .side-menu-title > .container {
      padding: 0; }
  .side-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px; }
    .side-menu-close:before {
      content: '\e915';
      font-family: "icomoon" !important;
      color: #F3F3F3;
      opacity: .5;
      transition-duration: .2s;
      font-size: 0.9375rem; }
    .side-menu-close:hover:before {
      opacity: 1; }

.side-menu.open {
  transition: transform 0.2s, opacity 0.2s;
  opacity: 1;
  visibility: visible;
  transform: rotateY(0deg); }

.sm-block {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F3F3F3; }

@media (min-width: 992px) {
  .side-menu-account,
  .side-menu-info,
  .side-menu-contact {
    display: none !important; } }

.side-menu-account {
  padding: 0 20px 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #F3F3F3; }
  .side-menu-account .ch-link {
    display: flex;
    justify-content: space-between; }
    .side-menu-account .ch-link:not(:last-child) {
      margin-bottom: 15px; }
  .side-menu-account .ch-group {
    display: flex;
    align-items: center; }
    .side-menu-account .ch-group-icon {
      flex: 0 1 auto;
      width: 20px;
      position: relative;
      top: 1px; }
      .side-menu-account .ch-group-icon .icon {
        color: #9FB0BA;
        font-size: 1.25rem; }
    .side-menu-account .ch-group-title {
      flex: 0 1 auto;
      padding-left: 10px;
      font-size: 0.9375rem;
      color: #091922; }
      .side-menu-account .ch-group-title > span {
        color: #7D96A4;
        margin-left: 5px; }
  .side-menu-account .ch-bonus {
    margin-left: auto; }
    .side-menu-account .ch-bonus span {
      display: block;
      font-size: 0.8125rem;
      color: #091922; }
      .side-menu-account .ch-bonus span:first-child {
        font-weight: 500; }
      .side-menu-account .ch-bonus span:nth-child(2) {
        color: #9FB0BA; }

.side-menu-contact {
  padding: 20px 20px; }
  .side-menu-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center; }
    .side-menu-contact ul li > .icon {
      flex: 0 1 auto;
      font-size: 1.125rem;
      color: #9FB0BA;
      width: 20px; }
    .side-menu-contact ul li > a,
    .side-menu-contact ul li > span {
      flex: 0 1 auto;
      font-size: 0.9375rem;
      color: #1A3853;
      padding-left: 10px; }
    .side-menu-contact ul li > a:hover, .side-menu-contact ul li > a:active {
      color: #da5128; }
  .side-menu-contact-messengers {
    margin-top: 30px; }
    .side-menu-contact-messengers a {
      margin-right: 15px; }
      .side-menu-contact-messengers a img {
        width: 28px;
        height: 28px; }

.side-menu-list > li {
  position: relative;
  margin-bottom: 10px; }
  @media (min-width: 768px) {
    .side-menu-list > li {
      margin-bottom: 5px; } }
  @media (min-width: 992px) {
    .side-menu-list > li {
      margin-bottom: 0; } }
  .side-menu-list > li > a {
    color: #091922;
    font-size: 0.9375rem;
    display: block;
    padding: 10px 0 10px 25px;
    margin-right: 5px; }
    @media (min-width: 992px) {
      .side-menu-list > li > a {
        margin-right: 0;
        padding: 10px 25px; } }
    .side-menu-list > li > a:hover, .side-menu-list > li > a:active {
      color: #da5128; }
  @media (min-width: 992px) {
    .side-menu-list > li:hover a {
      color: #da5128; } }
  @media (min-width: 992px) {
    .side-menu-list > li.ch-parent > a:after {
      content: '\e92a';
      font-family: "icomoon" !important;
      position: absolute;
      top: 15px;
      right: 15px;
      transform: rotate(-90deg);
      color: #717C89;
      font-size: 8px; } }
  @media (min-width: 992px) {
    .side-menu-list > li.ch-parent:hover {
      background: #F1F3F8; } }
  .side-menu-list > li.ch-parent:hover a:after {
    color: #da5128; }
  .side-menu-list > li.ch-parent > .js-menu-open {
    position: absolute;
    top: 2px;
    right: 10px;
    width: 42px;
    height: 42px;
    background-color: #F1F3F8;
    border-radius: 2px; }
    .side-menu-list > li.ch-parent > .js-menu-open:after {
      content: '\e92a';
      font-family: "icomoon" !important;
      color: #50667E;
      font-size: 8px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .side-menu-list > li.ch-parent > .js-menu-open:hover, .side-menu-list > li.ch-parent > .js-menu-open:active {
      background-color: #E76642; }
      .side-menu-list > li.ch-parent > .js-menu-open:hover:after, .side-menu-list > li.ch-parent > .js-menu-open:active:after {
        color: #fff; }
    @media (min-width: 992px) {
      .side-menu-list > li.ch-parent > .js-menu-open {
        display: none; } }

.side-menu-list-star > li {
  padding-left: 25px; }
  .side-menu-list-star > li:before {
    content: '\e911';
    font-family: "icomoon" !important;
    position: absolute;
    top: 10px;
    left: 23px;
    color: #9FB0BA;
    opacity: .7; }

@media (max-width: 991.98px) {
  .side-menu-inner {
    display: none;
    margin: 10px 0 0; } }

@media (min-width: 992px) {
  .side-menu-inner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 364px;
    width: 350px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0;
    transform-style: preserve-3d;
    transform: rotateY(-90deg); } }

@media (max-width: 991.98px) {
  .ch-parent.open-menu .side-menu-inner {
    display: block; }
  .ch-parent.open-menu .js-menu-open:after {
    content: '\e915' !important;
    color: #1A3853; } }

@media (min-width: 992px) {
  .ch-parent:hover > .side-menu-inner {
    z-index: 999;
    transition: transform 0.2s;
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg); } }

.side-menu-inner-wrap {
  background-color: #F1F3F8;
  height: 100%; }

.side-menu-inner-title {
  display: none; }
  @media (min-width: 992px) {
    .side-menu-inner-title {
      display: block;
      padding: 15px 25px; } }
  .side-menu-inner-title span,
  .side-menu-inner-title a {
    font-weight: 500;
    color: #1A3853;
    text-transform: uppercase; }
  .side-menu-inner-title a:hover {
    color: #da5128; }

.side-menu-inner-list {
  padding: 20px 20px 10px; }
  @media (min-width: 992px) {
    .side-menu-inner-list {
      padding: 10px 25px 30px; } }
  .side-menu-inner-list > .ch-menu {
    margin-left: 5px; }
    @media (min-width: 992px) {
      .side-menu-inner-list > .ch-menu {
        margin-left: 0; } }
    .side-menu-inner-list > .ch-menu > li {
      margin-bottom: 15px; }
      .side-menu-inner-list > .ch-menu > li > a {
        font-size: 0.9375rem;
        color: #091922 !important; }
        .side-menu-inner-list > .ch-menu > li > a:hover {
          color: #da5128 !important; }
  .side-menu-inner-list .ch-sub {
    margin-top: 15px; }
    .side-menu-inner-list .ch-sub li {
      margin-bottom: 12px;
      padding-left: 20px;
      position: relative; }
      .side-menu-inner-list .ch-sub li:before {
        content: '';
        width: 6px;
        height: 6px;
        position: absolute;
        top: 8px;
        left: 5px;
        background-color: rgba(80, 102, 126, 0.25);
        border-radius: 3px; }
      .side-menu-inner-list .ch-sub li a {
        font-size: 0.9375rem;
        color: #1A3853 !important; }
        .side-menu-inner-list .ch-sub li a:hover {
          color: #da5128 !important; }

.side-menu-list-intro li {
  position: relative;
  padding-left: 25px; }
  .side-menu-list-intro li > .icon {
    position: absolute;
    top: 13px;
    left: 25px;
    font-size: 0.9375rem;
    color: #7D96A4; }

.side-offer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s, opacity 0.2s;
  right: 0;
  transform-origin: 100% 0;
  transform: rotateY(75deg); }
  @media (min-width: 992px) {
    .side-offer {
      width: 80%; } }
  @media (min-width: 1260px) {
    .side-offer {
      width: 60%; } }

.side-offer.open {
  transition: transform 0.2s, opacity 0.2s;
  opacity: 1;
  visibility: visible;
  transform: rotateY(0deg); }

.side-offer {
  z-index: 1005; }
  .side-offer .offer-complex {
    padding: 0 0 30px !important; }
  .side-offer .offer-complex-list {
    padding: 30px;
    width: 100%; }
    @media (max-width: 767.98px) {
      .side-offer .offer-complex-list {
        margin-bottom: 0; } }
    @media (min-width: 768px) {
      .side-offer .offer-complex-list {
        width: calc(60% - 30px); } }
    .side-offer .offer-complex-list .offer-complex-content {
      padding-top: 10px;
      width: 100%; }
  .side-offer .offer-complex-media {
    width: 100%; }
    @media (min-width: 768px) {
      .side-offer .offer-complex-media {
        width: 40%; } }
    .side-offer .offer-complex-media-img {
      display: flex;
      height: calc(100% - 40px);
      position: relative; }
      @media (max-width: 767.98px) {
        .side-offer .offer-complex-media-img {
          height: 250px; } }
      .side-offer .offer-complex-media-img img {
        width: 100%;
        object-fit: cover; }
        .side-offer .offer-complex-media-img img + a {
          position: absolute;
          background-color: rgba(0, 0, 0, 0.2);
          top: 0;
          right: 0;
          bottom: 0;
          left: 0; }
          .side-offer .offer-complex-media-img img + a:after {
            content: '\e92d';
            font-family: "icomoon" !important;
            font-size: 2.25rem;
            color: rgba(255, 255, 255, 0.8);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
      .side-offer .offer-complex-media-img:hover img + a {
        background-color: transparent; }
        .side-offer .offer-complex-media-img:hover img + a:after {
          color: #fff; }
  .side-offer .offer-menu-roll-item {
    padding-left: 0;
    padding-right: 0; }

.offer-complex-media-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  border: 1px solid #EBEBEB;
  border-top-width: 0;
  padding: 10px; }
  .offer-complex-media-info .ch-info {
    display: flex;
    align-items: center;
    gap: 8px; }
    .offer-complex-media-info .ch-info .icon {
      color: #9FB0BA; }
    .offer-complex-media-info .ch-info span {
      font-size: 0.8125rem; }

.carousel-banner-content .ch-top,
.case-banner-breadcrumbs {
  flex: 0 1 auto;
  margin-bottom: 15px; }
  @media (max-width: 575.98px) {
    .carousel-banner-content .ch-top .breadcrumbs li:not(:last-child):before,
    .case-banner-breadcrumbs .breadcrumbs li:not(:last-child):before {
      margin-left: 0; } }
  .carousel-banner-content .ch-top .breadcrumbs li a,
  .case-banner-breadcrumbs .breadcrumbs li a {
    color: #1A3853; }
    .carousel-banner-content .ch-top .breadcrumbs li a:hover,
    .case-banner-breadcrumbs .breadcrumbs li a:hover {
      color: #da5128; }
  .carousel-banner-content .ch-top .breadcrumbs li span,
  .case-banner-breadcrumbs .breadcrumbs li span {
    color: #50667E; }

.carousel-banner {
  margin-top: 40px;
  overflow: hidden;
  position: relative; }
  .carousel-banner-item {
    position: relative; }
    @media (min-width: 768px) {
      .carousel-banner-item {
        display: flex; } }
    @media (min-width: 1260px) {
      .carousel-banner-item {
        max-height: 630px; } }
  .carousel-banner-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 768px) {
      .carousel-banner-content {
        flex: 0 1 auto;
        width: 50%;
        padding: 40px; } }
    @media (min-width: 1110px) {
      .carousel-banner-content {
        padding: 50px 60px; } }
    .carousel-banner-content .ch-content {
      flex: 0 1 auto;
      margin-bottom: 30px; }
      .carousel-banner-content .ch-content-title {
        margin-bottom: 20px; }
        .carousel-banner-content .ch-content-title:before {
          content: '';
          display: block;
          margin-bottom: 10px;
          width: 60px;
          height: 13px;
          background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg") center no-repeat;
          background-size: contain; }
        @media (min-width: 1110px) {
          .carousel-banner-content .ch-content-title {
            margin-bottom: 30px; } }
        .carousel-banner-content .ch-content-title span {
          font-size: 1.75rem;
          font-family: "Lora", serif;
          font-weight: 500;
          color: #1A3853; }
          @media (min-width: 1110px) {
            .carousel-banner-content .ch-content-title span {
              font-size: 2rem; } }
      .carousel-banner-content .ch-content-text {
        line-height: 1.5; }
        .carousel-banner-content .ch-content-text span {
          color: #485059;
          font-size: 1rem; }
          @media (min-width: 1110px) {
            .carousel-banner-content .ch-content-text span {
              font-size: 1.0625rem; } }
    .carousel-banner-content .ch-links {
      flex: 0 1 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start; }
      .carousel-banner-content .ch-links-item {
        display: inline-flex;
        align-items: center; }
        .carousel-banner-content .ch-links-item:not(:last-child) {
          margin-bottom: 20px; }
      .carousel-banner-content .ch-links-icon {
        flex: 0 1 auto;
        width: 42px;
        height: 42px;
        position: relative;
        border-radius: 50%; }
        .carousel-banner-content .ch-links-icon > .icon {
          color: #fff;
          font-size: 1.125rem;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .carousel-banner-content .ch-links-el {
        flex: 0 1 auto;
        width: calc(100% - 42px);
        text-align: left;
        padding-left: 15px; }
        .carousel-banner-content .ch-links-el span {
          color: #1A3853;
          font-weight: 500;
          border-bottom: 1px dashed #1A3853; }
          .carousel-banner-content .ch-links-el span:hover {
            border-bottom-color: transparent; }
  .carousel-banner-img {
    height: 350px;
    margin-top: 20px;
    position: relative; }
    @media (min-width: 768px) {
      .carousel-banner-img {
        margin-top: 0;
        height: auto;
        flex: 0 1 auto;
        width: 50%; } }
    .carousel-banner-img .js-carousel-banner,
    .carousel-banner-img .slick-list,
    .carousel-banner-img .slick-track {
      height: 100%; }
    .carousel-banner-img .ch-img {
      display: flex;
      height: 100%;
      position: relative; }
      .carousel-banner-img .ch-img > a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
        .carousel-banner-img .ch-img > a.js-popup-media:before {
          content: '\e90d';
          font-family: "icomoon" !important;
          font-size: 80px;
          color: rgba(255, 255, 255, 0.85);
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: calc(50% - 40px);
          transition-duration: .2s; }
        .carousel-banner-img .ch-img > a.js-popup-media:hover:before {
          color: #fff; }
      .carousel-banner-img .ch-img img {
        display: block;
        object-fit: cover;
        width: 100%; }
    .carousel-banner-img .slick-dots {
      padding: 5px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      position: absolute;
      bottom: 5px;
      left: 0;
      right: 0;
      z-index: 8; }
      .carousel-banner-img .slick-dots li {
        flex: 0 1 auto;
        padding: 0 5px; }
        .carousel-banner-img .slick-dots li button {
          font-size: 0;
          width: 12px;
          height: 12px;
          background-color: #7D96A4;
          border-radius: 50%;
          border: 2px solid #fff; }
        .carousel-banner-img .slick-dots li.slick-active button {
          background-color: #E76642; }

.carousel-banner .slick-arrow {
  position: absolute;
  top: calc(50% - 30px);
  bottom: 0;
  width: 40px;
  height: 60px;
  line-height: 1;
  transition-duration: .2s;
  z-index: 9; }
  @media (min-width: 768px) {
    .carousel-banner .slick-arrow {
      width: 40px;
      height: 40px;
      top: auto; } }
  @media (min-width: 992px) {
    .carousel-banner .slick-arrow {
      width: 60px;
      height: 60px; } }
  .carousel-banner .slick-arrow.slick-prev {
    left: 0;
    background-color: rgba(255, 255, 255, 0.4); }
    @media (min-width: 768px) {
      .carousel-banner .slick-arrow.slick-prev {
        background-color: #9FB0BA;
        left: -40px; } }
    @media (min-width: 992px) {
      .carousel-banner .slick-arrow.slick-prev {
        left: -60px; } }
  .carousel-banner .slick-arrow.slick-next {
    right: 0;
    background-color: rgba(255, 255, 255, 0.4); }
    @media (min-width: 768px) {
      .carousel-banner .slick-arrow.slick-next {
        background-color: #7D96A4;
        left: 0;
        right: auto; } }
  .carousel-banner .slick-arrow:hover {
    background-color: #fff;
    cursor: pointer; }
    @media (min-width: 768px) {
      .carousel-banner .slick-arrow:hover {
        background-color: #50667E; } }
  .carousel-banner .slick-arrow > .icon {
    color: #7D96A4;
    font-size: 1.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media (min-width: 768px) {
      .carousel-banner .slick-arrow > .icon {
        color: #fff; } }

.carousel-banner .ch-content-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .carousel-banner .ch-content-links .link-icon-circle {
    flex: 0 1 auto; }
    .carousel-banner .ch-content-links .link-icon-circle:not(:last-child) {
      margin-bottom: 25px; }
    .carousel-banner .ch-content-links .link-icon-circle-item span {
      font-size: 0.9375rem;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
  .carousel-banner .ch-content-links.ch-twice {
    flex-direction: row;
    flex-wrap: wrap; }
    .carousel-banner .ch-content-links.ch-twice .link-icon-circle {
      width: 100%;
      padding-right: 15px; }
      @media (min-width: 500px) {
        .carousel-banner .ch-content-links.ch-twice .link-icon-circle {
          width: 50%; } }
      @media (min-width: 768px) {
        .carousel-banner .ch-content-links.ch-twice .link-icon-circle {
          width: 100%; } }
      @media (min-width: 1260px) {
        .carousel-banner .ch-content-links.ch-twice .link-icon-circle {
          width: 50%; } }

.carousel-banner.carousel-banner-decor .ch-content-title {
  margin-bottom: 20px; }
  .carousel-banner.carousel-banner-decor .ch-content-title span {
    text-transform: none;
    font-size: 2rem; }

.carousel-banner.carousel-banner-decor .ch-content-text span {
  font-size: 1rem; }

.carousel-banner-single .carousel-banner-item {
  padding: 1px;
  align-items: stretch;
  position: relative; }
  .carousel-banner-single .carousel-banner-item .carousel-banner-content {
    justify-content: center;
    z-index: 1;
    position: relative; }
    @media (max-width: 767.98px) {
      .carousel-banner-single .carousel-banner-item .carousel-banner-content {
        margin: 15px;
        justify-content: flex-start;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px; } }

.carousel-banner-single .carousel-banner-img {
  margin: 0;
  padding: 0;
  display: flex; }
  @media (max-width: 767.98px) {
    .carousel-banner-single .carousel-banner-img {
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; } }
  .carousel-banner-single .carousel-banner-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }

.carousel-banner-review .carousel-banner-img .ch-img {
  display: block;
  background-color: #9FB0BA;
  text-align: center;
  padding: 40px; }
  .carousel-banner-review .carousel-banner-img .ch-img-title {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    border-radius: 3px;
    background-color: #9FB0BA;
    top: -20px; }
    .carousel-banner-review .carousel-banner-img .ch-img-title span {
      color: #fff;
      font-size: 1.125rem;
      font-weight: 500;
      display: block;
      white-space: nowrap; }
  .carousel-banner-review .carousel-banner-img .ch-img img {
    object-fit: contain;
    width: auto;
    margin: 0 auto; }
  .carousel-banner-review .carousel-banner-img .ch-img a {
    position: relative;
    display: block;
    width: 100%; }
    .carousel-banner-review .carousel-banner-img .ch-img a:after {
      content: '\e92d';
      font-family: "icomoon" !important;
      font-size: 2.5rem;
      color: #50667E;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.spectr {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .spectr-item {
    flex: 0 1 auto;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    padding: 20px;
    position: relative; }
    @media (min-width: 500px) {
      .spectr-item {
        flex: 1 0 auto; } }
    @media (min-width: 1260px) {
      .spectr-item {
        padding: 24px; } }
  @media (min-width: 500px) {
    .spectr-item {
      width: calc(50% - 5px); } }
  @media (min-width: 768px) {
    .spectr-item {
      width: calc(33.3333% - 7px); } }
  @media (min-width: 992px) {
    .spectr-item {
      width: calc(25% - 8px); } }
  .spectr-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px; }
    .spectr-item-top .ch-icon {
      flex: 0 1 auto; }
      .spectr-item-top .ch-icon > .icon {
        font-size: 1.875rem;
        color: #E76642; }
    .spectr-item-top .ch-num span {
      font-weight: 700;
      color: #F1F3F8;
      font-size: 2rem; }
  .spectr-item-title {
    margin-bottom: 10px; }
    .spectr-item-title:after {
      content: '';
      width: 60px;
      height: 2px;
      border-radius: 1px;
      background-color: #E76642;
      display: block;
      margin-top: 15px; }
    .spectr-item-title span {
      font-size: 1.125rem;
      color: #1A3853;
      font-weight: 500;
      font-family: "Lora", serif; }
  .spectr-item-text {
    line-height: 1.4; }
    .spectr-item-text span {
      color: #717C89;
      font-size: 0.9375rem; }
  .spectr-item-long {
    width: calc(100% - 20px);
    order: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
    @media (min-width: 992px) {
      .spectr-item-long {
        width: calc(50% - 8px);
        order: 0; } }
    .spectr-item-long:before {
      content: '';
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      border-radius: 5px;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .spectr-item-long-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height: 100%; }
    .spectr-item-long-title {
      position: relative;
      z-index: 1;
      text-align: center;
      display: inline-flex; }
      @media (min-width: 768px) {
        .spectr-item-long-title {
          padding: 0 70px; } }
      @media (min-width: 1260px) {
        .spectr-item-long-title {
          padding: 0 80px; } }
      @media (min-width: 768px) {
        .spectr-item-long-title:before, .spectr-item-long-title:after {
          content: '';
          position: absolute;
          width: 50px;
          height: 12px;
          top: calc(50% - 6px);
          filter: brightness(0) invert(1);
          opacity: .6;
          background-color: transparent;
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center; } }
      @media (min-width: 768px) {
        .spectr-item-long-title:before {
          background-image: url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg");
          left: 0; } }
      @media (min-width: 768px) {
        .spectr-item-long-title:after {
          background-image: url("/local/include/assets/css-v4/../images/decor/decor-title-right.svg");
          right: 0; } }
      .spectr-item-long-title span {
        font-family: "Lora", serif;
        color: #fff;
        font-size: 1.5rem;
        text-transform: uppercase; }
        @media (min-width: 500px) {
          .spectr-item-long-title span {
            font-size: 1.75rem; } }
        @media (min-width: 768px) {
          .spectr-item-long-title span {
            font-size: 2.25rem; } }

.product-swipe-gallery .swiper-container {
  width: 100%;
  height: 350px; }

.product-swipe-gallery .swiper-wrapper {
  display: flex; }

.product-swipe-gallery .swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: black;
  height: 350px;
  position: relative; }
  .product-swipe-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .product-swipe-gallery .swiper-slide video {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain; }

.product-swipe-gallery .slider-video {
  position: relative; }

.product-swipe-gallery .slider-img {
  height: 100%; }

.product-swipe-gallery .play-pause-btn,
.product-swipe-gallery .mute-unmute-btn {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: none;
  pointer-events: all; }

.product-swipe-gallery .slider-video:hover .play-pause-btn,
.product-swipe-gallery .slider-video:hover .mute-unmute-btn {
  display: block; }

.product-swipe-gallery .slider-video:hover .play-pause-btn.playing {
  display: block; }

.product-swipe-gallery .play-pause-btn.paused {
  display: block; }

.product-swipe-gallery .play-pause-btn {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .product-swipe-gallery .play-pause-btn.playing::before, .product-swipe-gallery .play-pause-btn.paused::before {
    content: "\e9d4";
    font-family: "icomoon" !important;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%); }
  .product-swipe-gallery .play-pause-btn.playing::before {
    content: "\e9d5";
    left: 50%; }
  .product-swipe-gallery .play-pause-btn.paused::before {
    content: "\e9d4";
    left: calc(50% + 3px); }

.product-swipe-gallery .mute-unmute-btn {
  bottom: 10px;
  right: 10px;
  padding: 16px; }
  .product-swipe-gallery .mute-unmute-btn.muted::before, .product-swipe-gallery .mute-unmute-btn.unmuted::before {
    font-family: "icomoon" !important;
    color: #fff;
    position: absolute;
    font-size: 1.125rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .product-swipe-gallery .mute-unmute-btn.muted::before {
    content: "\e9d3"; }
  .product-swipe-gallery .mute-unmute-btn.unmuted::before {
    content: "\e9d2"; }

.product-swipe-gallery .video-progress {
  position: absolute;
  bottom: 16px;
  left: 25px;
  width: 80%;
  z-index: 10;
  display: none; }

.product-swipe-gallery .slider-video:hover .video-progress {
  display: block; }

.offer-complex-media-slider .product-swipe-gallery .swiper-slide {
  height: 280px; }

.offer-complex-media-slider .swiper-button-next,
.offer-complex-media-slider .swiper-button-prev {
  width: 32px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0; }
  @media (max-width: 767.98px) {
    .offer-complex-media-slider .swiper-button-next,
    .offer-complex-media-slider .swiper-button-prev {
      display: none !important; } }
  .offer-complex-media-slider .swiper-button-next:hover,
  .offer-complex-media-slider .swiper-button-prev:hover {
    background-color: #fff; }
  .offer-complex-media-slider .swiper-button-next:after,
  .offer-complex-media-slider .swiper-button-prev:after {
    font-size: 1.125rem;
    color: #717C89; }
  .offer-complex-media-slider .swiper-button-next.swiper-button-disabled,
  .offer-complex-media-slider .swiper-button-prev.swiper-button-disabled {
    display: none !important; }

.offer-complex-media-slider .swiper-button-next {
  right: -6px; }

.offer-complex-media-slider .swiper-button-prev {
  left: -6px; }

.offer-complex-media-slider:hover .swiper-button-next,
.offer-complex-media-slider:hover .swiper-button-prev {
  opacity: 1; }

.product-swipe-gallery-autoplay .swiper-container {
  width: 100%;
  height: 100%; }

.product-swipe-gallery-autoplay .swiper-wrapper {
  display: flex;
  height: 100%; }

.product-swipe-gallery-autoplay .swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: black;
  height: 100%;
  position: relative; }

.product-swipe-gallery-autoplay .swiper-slide img,
.product-swipe-gallery-autoplay .swiper-slide video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.product-swipe-gallery-autoplay .slider-video {
  position: relative; }

.product-swipe-gallery-autoplay .slider-img {
  height: 100%; }

.product-swipe-gallery-autoplay .play-pause-btn,
.product-swipe-gallery-autoplay .mute-unmute-btn {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: none;
  pointer-events: all; }

.product-swipe-gallery-autoplay .slider-video:hover .play-pause-btn,
.product-swipe-gallery-autoplay .slider-video:hover .mute-unmute-btn {
  display: block; }

.product-swipe-gallery-autoplay .slider-video:hover .play-pause-btn.playing {
  display: block; }

.product-swipe-gallery-autoplay .play-pause-btn.paused {
  display: block; }

.product-swipe-gallery-autoplay .play-pause-btn {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .product-swipe-gallery-autoplay .play-pause-btn.playing::before, .product-swipe-gallery-autoplay .play-pause-btn.paused::before {
    content: "\e9d4";
    font-family: "icomoon" !important;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%); }
  .product-swipe-gallery-autoplay .play-pause-btn.playing::before {
    content: "\e9d5";
    left: 50%; }
  .product-swipe-gallery-autoplay .play-pause-btn.paused::before {
    content: "\e9d4";
    left: calc(50% + 3px); }

.product-swipe-gallery-autoplay .mute-unmute-btn {
  bottom: 10px;
  right: 10px;
  padding: 16px; }
  .product-swipe-gallery-autoplay .mute-unmute-btn.muted::before, .product-swipe-gallery-autoplay .mute-unmute-btn.unmuted::before {
    font-family: "icomoon" !important;
    color: #fff;
    position: absolute;
    font-size: 1.125rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .product-swipe-gallery-autoplay .mute-unmute-btn.muted::before {
    content: "\e9d3"; }
  .product-swipe-gallery-autoplay .mute-unmute-btn.unmuted::before {
    content: "\e9d2"; }

.product-swipe-gallery-autoplay .video-progress {
  position: absolute;
  bottom: 16px;
  left: 25px;
  width: 80%;
  z-index: 10;
  display: none; }

.product-swipe-gallery-autoplay .slider-video:hover .video-progress {
  display: block; }

@media (max-width: 767.98px) {
  .products-view {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    padding: 20px 15px; } }

@media (min-width: 768px) {
  .products-view-mobile {
    display: none; } }

.product-tab-nav {
  margin: 0;
  padding: 0;
  position: relative; }
  @media (min-width: 768px) {
    .product-tab-nav {
      background-color: #F3F8FA;
      border-top: 1px solid rgba(181, 198, 207, 0.3);
      border-right: 1px solid rgba(181, 198, 207, 0.3);
      border-radius: 5px 5px 0 0; } }
  .product-tab-nav .product-view-nav {
    display: flex;
    align-items: center;
    padding: 10px 46px 10px 10px;
    position: relative;
    line-height: 1.3; }
    @media (min-width: 768px) {
      .product-tab-nav .product-view-nav {
        padding: 16px 30px;
        max-width: 260px;
        background-color: rgba(181, 198, 207, 0.3);
        border-radius: 2px; } }
    @media (max-width: 767.98px) {
      .product-tab-nav .product-view-nav {
        background-color: #F3F8FA;
        border-radius: 3px;
        margin-bottom: 15px; } }
    .product-tab-nav .product-view-nav:before {
      content: '';
      position: absolute;
      right: 10px;
      top: calc(50% - 18px);
      width: 36px;
      height: 36px;
      z-index: 2;
      background-color: rgba(181, 198, 207, 0.15); }
      @media (min-width: 768px) {
        .product-tab-nav .product-view-nav:before {
          display: none; } }
    .product-tab-nav .product-view-nav:after {
      content: '\e933';
      font-family: "icomoon" !important;
      position: absolute;
      top: calc(50% - 8.5px);
      right: 24px;
      color: #E76642;
      font-size: 0.875rem; }
      @media (min-width: 768px) {
        .product-tab-nav .product-view-nav:after {
          content: '';
          top: calc(50% - 30px);
          right: -1px;
          width: 1px;
          height: 60px;
          background-color: rgba(159, 176, 186, 0.3);
          color: transparent; } }
    .product-tab-nav .product-view-nav > img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      flex: 0 1 auto;
      display: block;
      border: 2px solid #9FB0BA; }
    .product-tab-nav .product-view-nav > span {
      flex: 0 1 auto;
      width: calc(100% - 60px);
      padding: 0 0 0 16px;
      font-size: 0.9375rem;
      font-weight: 500;
      font-family: "Lora", serif;
      color: #181A20;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
    .product-tab-nav .product-view-nav:hover {
      cursor: pointer; }
      .product-tab-nav .product-view-nav:hover > img {
        border-color: #E76642; }
      .product-tab-nav .product-view-nav:hover > span {
        color: #da5128; }
  .product-tab-nav .slick-current .product-view-nav {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    border-radius: 3px 3px 0 0;
    cursor: default; }
    .product-tab-nav .slick-current .product-view-nav:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      background-color: #fff;
      z-index: 5;
      height: 6px;
      width: 100%;
      top: auto;
      bottom: -3px; }
    .product-tab-nav .slick-current .product-view-nav > img {
      border-color: #E76642; }
    .product-tab-nav .slick-current .product-view-nav > span {
      color: #181A20 !important;
      text-wrap: balance; }
  .product-tab-nav .slick-arrow {
    position: absolute;
    z-index: 9;
    font-size: 1.25rem;
    color: #50667E;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    padding: 8px;
    transition-duration: .2s; }
    .product-tab-nav .slick-arrow:hover {
      cursor: pointer;
      background-color: #D1D1D1 !important; }
    .product-tab-nav .slick-arrow.slick-next {
      right: 0;
      box-shadow: -3px 0 4px 0 rgba(0, 0, 0, 0.05);
      opacity: 0; }
    .product-tab-nav .slick-arrow.slick-prev {
      left: 0; }
    .product-tab-nav .slick-arrow.slick-disabled {
      opacity: 0; }

.product-tab-content {
  padding: 30px 25px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  @media (max-width: 767.98px) {
    .product-tab-content {
      overflow-y: auto;
      position: fixed;
      top: 0;
      bottom: 0;
      width: 100%;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transform-style: preserve-3d;
      transition: transform 0.2s, opacity 0.2s;
      right: 0;
      transform-origin: 100% 0;
      transform: rotateY(75deg); } }

.product-view-wrap {
  position: relative; }
  @media (min-width: 768px) {
    .product-view-wrap {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1110px) {
    .product-view-wrap {
      gap: 30px; } }

@media (max-width: 767.98px) {
  .product-tab-content.view-block {
    transition: transform 0.2s, opacity 0.2s;
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg); } }

.view-panel-close {
  position: absolute;
  top: 0;
  right: 0; }
  .view-panel-close:after {
    content: '\e915';
    font-family: "icomoon" !important;
    font-size: 1.125rem;
    color: rgba(80, 102, 126, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .view-panel-close:hover:after {
    color: #50667E; }
  @media (min-width: 768px) {
    .view-panel-close {
      display: none; } }

@media (min-width: 768px) {
  .product-view-mobile {
    display: none; } }

.product-view-mobile-title {
  display: block;
  margin-bottom: 30px;
  padding-right: 30px;
  font-family: "Lora", serif;
  font-size: 1.125rem;
  color: #181A20;
  font-weight: 500; }
  .product-view-mobile-title:before {
    content: '';
    display: block;
    margin-bottom: 7px;
    width: 60px;
    height: 13px;
    background: transparent url("/local/include/assets/css-v4/../images/decor/decor-title-left.svg") center no-repeat;
    background-size: contain; }
  @media (min-width: 768px) {
    .product-view-mobile-title {
      display: none; } }

.product-view > .a-desktop,
.product-view > .a-mobile {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

@media (max-width: 767.98px) {
  .product-view > .a-desktop {
    display: none; } }

@media (min-width: 768px) {
  .product-view > .a-mobile {
    display: none; } }

.product-view {
  display: grid;
  grid-template-rows: auto;
  align-items: start;
  grid-template-columns: 120px calc(100% - 120px);
  gap: 0 15px;
  grid-template-areas: 'pv-title pv-title' 'pv-img pv-weight' 'pv-img pv-bottom'; }
  @media (min-width: 500px) {
    .product-view {
      grid-template-columns: 150px calc(100% - 150px);
      grid-template-areas: 'pv-img pv-weight' 'pv-img pv-title' 'pv-img pv-bottom'; } }
  @media (min-width: 992px) {
    .product-view {
      grid-template-columns: 160px calc(100% - 160px); } }

.product-view {
  position: relative;
  transition-duration: .2s; }
  @media (max-width: 767.98px) {
    .product-view {
      padding-bottom: 20px;
      border-bottom: 1px dashed #D1D1D1;
      margin-bottom: 20px; } }
  .product-view-img {
    grid-area: pv-img;
    width: 120px;
    height: 100px;
    line-height: 1;
    display: flex;
    position: relative; }
    @media (min-width: 500px) {
      .product-view-img {
        width: 150px;
        height: 140px; } }
    @media (min-width: 992px) {
      .product-view-img {
        width: 160px;
        height: 148px; } }
    .product-view-img:before {
      content: '';
      width: 36px;
      height: 36px;
      position: absolute;
      bottom: 0;
      right: 0;
      border-radius: 16px 0 3px 0;
      background-color: rgba(159, 176, 186, 0.8);
      transition-duration: .2s; }
    .product-view-img:after {
      content: '\e92d';
      font-family: "icomoon" !important;
      font-size: 1.0625rem;
      color: #fff;
      position: absolute;
      bottom: 9px;
      right: 9px;
      transition-duration: .2s; }
    .product-view-img img {
      object-fit: cover;
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 3px;
      border: 1px solid #B5C6CF;
      transition-duration: .2s; }
  .product-view-weight {
    grid-area: pv-weight;
    padding-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    line-height: 1; }
    .product-view-weight > .icon {
      color: #9FB0BA;
      font-size: 1rem; }
    .product-view-weight > span {
      font-size: 0.8125rem;
      font-weight: 500;
      color: #485059;
      white-space: nowrap; }
  .product-view-title {
    grid-area: pv-title;
    margin-bottom: 10px; }
    @media (min-width: 500px) {
      .product-view-title {
        margin-bottom: 0; } }
    @media (min-width: 500px) {
      .product-view-title-item {
        margin-bottom: 1px; } }
    .product-view-title-item span {
      font-size: 1rem;
      font-weight: 500;
      color: #091922;
      font-family: "Lora", serif;
      line-height: 1.3;
      transition-duration: .2s;
      text-wrap: balance;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
      @media (min-width: 992px) {
        .product-view-title-item span {
          font-size: 1.125rem; } }
    .product-view-title-sub {
      grid-area: pv-sub; }
      .product-view-title-sub span {
        font-family: "Lora", serif;
        font-size: 0.9375rem;
        color: #50667E; }
  .product-view-bottom {
    grid-area: pv-bottom;
    margin-top: 5px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: column; }
    @media (min-width: 500px) {
      .product-view-bottom {
        align-items: center;
        margin-top: 10px;
        flex-direction: row; } }
  .product-view-count {
    background-color: #F3F8FA;
    border-radius: 2px;
    line-height: 1;
    padding: 8px 10px; }
    .product-view-count span {
      font-size: 0.9375rem;
      color: #0d687e;
      font-weight: 500; }
  .product-view-price {
    display: flex;
    align-items: flex-end;
    line-height: 1; }
    .product-view-price span {
      font-weight: 500; }
      .product-view-price span.ch-before {
        color: #7D96A4;
        font-size: 0.875rem; }
      .product-view-price span.ch-price {
        color: #181A20;
        font-size: 1rem; }
      .product-view-price span.ch-currency {
        color: #181A20;
        font-size: 0.875rem; }

@media (min-width: 768px) {
  .product-view:hover {
    background-color: #F3F8FA; } }

.product-view:hover .product-view-img > img {
  border-color: #E76642; }

.product-view:hover .product-view-img:before {
  background-color: #E76642; }

.product-view:hover .product-view-img:after {
  scale: 1.1; }

.tags {
  position: relative;
  padding: 20px;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  z-index: 2; }
  @media (max-width: 991.98px) {
    .tags {
      display: flex;
      flex-direction: column-reverse; } }
  .tags-list {
    line-height: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; }
  .tags-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    padding: 10px 15px;
    color: #1A3853;
    background-color: #F1F3F8;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 0.8125rem; }
    .tags-item:hover {
      border-color: #E76642;
      color: #da5128; }
    .tags-item.active {
      border-color: #E76642;
      background-color: #E76642;
      color: #fff; }
      .tags-item.active .close {
        display: block;
        margin-left: 12px;
        position: relative;
        z-index: 9; }
        .tags-item.active .close:before {
          content: '\e915';
          font-family: "icomoon" !important;
          font-size: 9px;
          color: #fff;
          opacity: .7; }
        .tags-item.active .close:hover {
          cursor: pointer; }
          .tags-item.active .close:hover:before {
            opacity: 1; }
  .tags-mobile {
    position: relative;
    z-index: 3;
    display: none; }
    .tags-mobile-btn {
      position: relative; }
      .tags-mobile-btn span:after {
        content: attr(data-desktop);
        color: #da5128;
        font-size: 0.9375rem;
        font-weight: 500;
        border-bottom: 1px dotted #E76642; }
      .tags-mobile-btn:hover span:after {
        border-bottom-color: transparent; }

@media (max-width: 991.98px) {
  .tags.changed .tags-mobile {
    display: block; }
  .tags.changed .tags-list {
    max-height: 140px;
    overflow: hidden; }
    .tags.changed .tags-list:after {
      content: '';
      height: 40px;
      background: linear-gradient(0deg, white 37%, rgba(255, 255, 255, 0.360404) 80%);
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; } }

.opened .tags-mobile {
  margin-top: 15px; }
  .opened .tags-mobile-btn span:after {
    content: attr(data-mobile); }

@media (max-width: 991.98px) {
  .opened .tags-list {
    max-height: none !important;
    height: auto; }
    .opened .tags-list:after {
      display: none !important; } }

.team {
  padding: 15px;
  height: 100%;
  position: relative; }
  .team-img {
    position: relative; }
    .team-img img {
      width: 100%;
      display: block; }
  .team-name {
    padding: 15px 0 5px; }
    .team-name span {
      font-family: "Lora", serif;
      font-size: 1.125rem;
      font-weight: 500;
      color: #091922;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
  .team-job {
    padding: 0 0 5px; }
    .team-job span {
      font-size: 0.875rem;
      color: #50667E;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
  .team-info {
    display: flex;
    align-items: center; }
    .team-info-wrap {
      width: calc(100% - 40px);
      padding-right: 10px; }
  .team-link {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px 3px 0 3px; }
  .team-popup {
    background: transparent;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .team:hover .team-popup {
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
  .team:hover .team-link {
    background-color: #da5128; }

.slick-slider .team:hover .team-popup {
  box-shadow: none; }

.team-grid {
  gap: 10px;
  align-items: stretch; }
  .team-grid .team {
    width: calc(50% - 5px);
    height: auto; }
    @media (min-width: 768px) {
      .team-grid .team {
        width: calc(33.3333% - 6.7px); } }
    @media (min-width: 1110px) {
      .team-grid .team {
        width: calc(25% - 7.5px); } }

.team-full {
  padding: 10px 15px;
  align-items: flex-start;
  flex-direction: column; }
  @media (min-width: 576px) {
    .team-full {
      flex-direction: row; } }
  .team-full-img {
    border: 1px solid #F3F3F3; }
    @media (min-width: 576px) {
      .team-full-img {
        width: 240px; } }
    @media (min-width: 768px) {
      .team-full-img {
        width: 300px; } }
  .team-full-info {
    padding: 15px 0; }
    @media (min-width: 576px) {
      .team-full-info {
        padding: 15px 30px;
        width: calc(100% - 240px); } }
    @media (min-width: 768px) {
      .team-full-info {
        width: calc(100% - 300px); } }
  .team-full-name {
    margin-bottom: 5px; }
    .team-full-name span {
      font-family: "Lora", serif;
      font-weight: 500;
      font-size: 1.25rem; }
  .team-full-job {
    margin-bottom: 20px; }
    .team-full-job span {
      font-size: 0.9375rem;
      color: #3f5267; }
  .team-full-description {
    margin-bottom: 25px;
    padding: 20px;
    font-size: 0.9375rem;
    background-color: #F1F3F8;
    border-left: 4px solid #1289A7; }
    .team-full-description.team-full-quote {
      border-left-color: #E76642; }

.popup-team {
  align-items: flex-start;
  flex-direction: column; }
  @media (min-width: 576px) {
    .popup-team {
      flex-direction: row; } }
  .popup-team-img {
    margin-bottom: 30px; }
    @media (min-width: 576px) {
      .popup-team-img {
        margin-bottom: 0;
        width: 270px; } }
    .popup-team-img img {
      display: block;
      border: 1px solid #F3F3F3; }
  @media (min-width: 576px) {
    .popup-team-info {
      width: calc(100% - 270px);
      padding-left: 30px; } }
  .popup-team-info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px; }
    .popup-team-info-row .icon {
      font-size: 1.625rem;
      color: #7D96A4; }
      .popup-team-info-row .icon.icon-calendar-line {
        font-size: 1.375rem; }
    .popup-team-info-row span {
      color: #50667E;
      font-size: 1rem; }
  .popup-team-content {
    font-size: 0.9375rem;
    margin-bottom: 20px; }
  .popup-team-link {
    margin-bottom: 20px; }
    .popup-team-link .icon-info-single {
      font-size: 1.625rem; }

.top-drop {
  display: none; }
  @media (min-width: 768px) {
    .top-drop {
      position: absolute;
      display: block;
      top: 100%;
      z-index: 9999;
      margin: 0;
      opacity: 0;
      height: auto;
      width: auto;
      visibility: hidden;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: 0 0;
      transform-style: preserve-3d;
      transform: rotateX(-75deg); } }

@media (min-width: 768px) {
  .ch-parent:hover .top-drop {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg); } }

@media (min-width: 768px) {
  .top-drop-wrap {
    margin-top: 15px;
    background-color: #fff;
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #50667E;
    border-radius: 0 0 5px 5px; } }

@media (min-width: 768px) {
  .top-drop-right .top-drop-wrap:before,
  .top-drop-left .top-drop-wrap:before {
    content: '';
    position: absolute;
    top: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 12px 12px;
    border-color: transparent transparent #50667E transparent; } }

.top-drop-right {
  right: 0; }
  .top-drop-right .top-drop-wrap:before {
    right: 20px; }

.top-drop-left {
  left: 0; }
  .top-drop-left .top-drop-wrap:before {
    left: 20px; }

.cart-present {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 20px; }
  .cart-present-icon {
    flex: 0 1 auto;
    width: 40px;
    height: 40px;
    background-color: #E76642;
    position: relative;
    border-radius: 3px; }
    .cart-present-icon > .icon {
      font-size: 1.25rem;
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .cart-present-info {
    flex: 0 1 auto;
    width: calc(100% - 40px);
    padding-left: 30px; }
    .cart-present-info-text {
      font-size: 1rem;
      color: #1A3853;
      font-weight: 500;
      margin-right: 10px; }
    .cart-present-info-btn span {
      font-size: 1rem;
      color: #E76642;
      font-weight: 500;
      border-bottom: 1px dashed #da5128;
      white-space: nowrap;
      transition-duration: .2s; }
    .cart-present-info-btn:hover span {
      border-bottom-color: transparent; }

@media (min-width: 992px) {
  .cart-wrap {
    display: flex;
    flex-wrap: wrap; } }

.cart-left {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .cart-left {
      margin-bottom: 0;
      flex: 0 1 auto;
      width: calc(100% - 300px);
      padding-right: 10px; } }
  @media (min-width: 1110px) {
    .cart-left {
      width: calc(100% - 315px); } }

@media (min-width: 992px) {
  .cart-right {
    flex: 0 1 auto;
    width: 300px; } }

@media (min-width: 1110px) {
  .cart-right {
    width: 315px; } }

.cart-table {
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 0 0 3px 3px; }
  .cart-table-bottom {
    padding: 20px 20px 15px; }
    .cart-table-bottom .link-icon-circle-wrap.bc-red {
      opacity: .3;
      transition-duration: .2s; }
    .cart-table-bottom .link-icon-circle:hover .link-icon-circle-wrap.bc-red {
      opacity: 1; }

.cart-table-row {
  border-bottom: 1px solid #EBEBEB; }
  .cart-table-row:not(.cart-table-top) {
    padding: 15px; }
    @media (min-width: 1260px) {
      .cart-table-row:not(.cart-table-top) {
        padding: 20px; } }
    .cart-table-row:not(.cart-table-top):hover {
      background-color: rgba(241, 243, 248, 0.7); }
  .cart-table-row.cart-table-top {
    padding: 18px 20px; }
  .cart-table-row .ch-img {
    grid-area: ch-img;
    position: relative; }
    .cart-table-row .ch-img a {
      display: flex;
      width: 90px;
      height: 90px; }
      @media (min-width: 768px) {
        .cart-table-row .ch-img a {
          width: 80px;
          height: 75px; } }
      @media (min-width: 1260px) {
        .cart-table-row .ch-img a {
          width: 90px;
          height: 80px; } }
    .cart-table-row .ch-img img {
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
      border-radius: 3px;
      transition-duration: .2s; }
      @media (min-width: 768px) {
        .cart-table-row .ch-img img {
          height: auto; } }
    .cart-table-row .ch-img:hover img {
      opacity: .8; }
    .cart-table-row .ch-img-present {
      position: absolute;
      width: 32px;
      height: 32px;
      top: -5px;
      left: -5px;
      border-radius: 3px;
      background-color: #E76642; }
      @media (min-width: 768px) {
        .cart-table-row .ch-img-present {
          top: -16px;
          left: -16px; } }
      .cart-table-row .ch-img-present > .icon {
        color: #fff;
        font-size: 1rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .cart-table-row .ch-title {
    grid-area: ch-title;
    padding-right: 10px;
    margin-bottom: 5px;
    line-height: 1.3; }
    @media (min-width: 768px) {
      .cart-table-row .ch-title {
        padding: 0 15px 0 10px; } }
    @media (min-width: 1260px) {
      .cart-table-row .ch-title {
        padding: 5px 25px 0 15px; } }
    .cart-table-row .ch-title a {
      color: #091922;
      font-size: 1rem;
      font-weight: 500;
      display: block; }
      @media (min-width: 768px) {
        .cart-table-row .ch-title a {
          font-size: 0.9375rem; } }
      .cart-table-row .ch-title a:hover {
        color: #da5128; }
    .cart-table-row .ch-title-present small {
      color: #da5128;
      display: block;
      margin-bottom: 3px; }
  .cart-table-row .ch-weight {
    grid-area: ch-weight;
    padding: 0 0 0 15px;
    line-height: 1;
    align-self: center; }
    @media (min-width: 768px) {
      .cart-table-row .ch-weight {
        align-self: start;
        padding: 0 0 0 10px; } }
    @media (min-width: 1260px) {
      .cart-table-row .ch-weight {
        padding: 0 0 0 15px; } }
    .cart-table-row .ch-weight span {
      color: #485059;
      font-size: 0.875rem;
      white-space: nowrap; }
      .cart-table-row .ch-weight span:first-child {
        margin-right: 5px; }
        @media (max-width: 767.98px) {
          .cart-table-row .ch-weight span:first-child {
            font-size: 0.75rem;
            color: #717C89;
            font-weight: 500; } }
  .cart-table-row .ch-price {
    grid-area: ch-price;
    padding: 0 0 0 15px; }
    @media (min-width: 768px) {
      .cart-table-row .ch-price {
        padding: 0 10px 0 0; } }
    @media (min-width: 1260px) {
      .cart-table-row .ch-price {
        padding-right: 15px; } }
    .cart-table-row .ch-price-item {
      display: block;
      font-size: 0.9375rem;
      color: #1A3853; }
      @media (min-width: 768px) {
        .cart-table-row .ch-price-item {
          font-size: 1rem;
          font-weight: 500; } }
    .cart-table-row .ch-price-old {
      color: #717C89;
      font-size: 0.8125rem;
      text-decoration: line-through;
      text-decoration-color: #da5128; }
      .cart-table-row .ch-price-old + .ch-price-item {
        color: #da5128; }
    .cart-table-row .ch-price span {
      white-space: nowrap; }
  .cart-table-row .ch-count {
    grid-area: ch-count;
    min-width: 135px; }
    @media (max-width: 767.98px) {
      .cart-table-row .ch-count {
        margin-top: 15px; } }
    .cart-table-row .ch-count-item {
      width: 135px;
      position: relative; }
      .cart-table-row .ch-count-item input[type="number"] {
        height: 42px;
        line-height: 42px;
        background-color: #fff;
        text-align: center;
        border: 1px solid #E0E0E3;
        border-radius: 24px; }
    .cart-table-row .ch-count-minus, .cart-table-row .ch-count-plus {
      position: absolute;
      width: 34px;
      height: 34px;
      background-color: #F1F3F8;
      border-radius: 50%;
      top: 4px; }
      .cart-table-row .ch-count-minus:before, .cart-table-row .ch-count-plus:before {
        content: '\e92f';
        font-family: "icomoon" !important;
        color: #E76642;
        font-size: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .cart-table-row .ch-count-minus:hover, .cart-table-row .ch-count-plus:hover {
        background-color: #E0E0E3; }
    .cart-table-row .ch-count-minus {
      left: 4px;
      transform: rotate(180deg); }
    .cart-table-row .ch-count-plus {
      right: 4px; }
  .cart-table-row .ch-sum {
    grid-area: ch-sum;
    padding: 0 0 0 15px; }
    @media (min-width: 768px) {
      .cart-table-row .ch-sum {
        padding: 0 10px; } }
    @media (min-width: 1260px) {
      .cart-table-row .ch-sum {
        padding: 0 15px; } }
    .cart-table-row .ch-sum-item, .cart-table-row .ch-sum-promo {
      font-size: 1rem;
      font-weight: 500; }
    .cart-table-row .ch-sum-item {
      color: #091922; }
    .cart-table-row .ch-sum-promo {
      color: #da5128; }
    .cart-table-row .ch-sum span {
      font-weight: 500;
      font-size: 1rem;
      white-space: nowrap; }
  .cart-table-row .ch-del {
    grid-area: ch-del; }
    .cart-table-row .ch-del-btn {
      display: block;
      width: 32px;
      height: 32px;
      border-radius: 2px;
      background-color: #F1F3F8;
      position: relative; }
      .cart-table-row .ch-del-btn > .icon {
        font-size: 0.875rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .cart-table-row .ch-del-btn > .icon.icon-trash-simple {
          color: rgba(255, 15, 0, 0.5); }
        .cart-table-row .ch-del-btn > .icon.icon-edit {
          color: rgba(80, 102, 126, 0.5); }
      .cart-table-row .ch-del-btn:hover > .icon-trash-simple {
        color: #FF0F00; }
      .cart-table-row .ch-del-btn:hover > .icon-edit {
        color: #50667E; }
      .cart-table-row .ch-del-btn + .ch-del-btn {
        margin-top: 10px; }
  @media (max-width: 767.98px) {
    .cart-table-row .ch-price,
    .cart-table-row .ch-sum {
      align-self: center;
      display: flex;
      align-items: flex-end;
      gap: 8px;
      line-height: 1; }
      .cart-table-row .ch-price:before,
      .cart-table-row .ch-sum:before {
        content: attr(data-title);
        font-size: 0.75rem;
        color: #717C89;
        font-weight: 500; } }

.cart-table-row {
  display: grid;
  gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 90px calc(100% - 122px) 32px;
  grid-template-areas: 'ch-title ch-title ch-del' 'ch-img ch-weight ch-weight' 'ch-img ch-price ch-price' 'ch-img ch-sum ch-sum' 'ch-count ch-count ch-count'; }
  @media (min-width: 768px) {
    .cart-table-row {
      gap: 0;
      align-items: center;
      grid-template-columns: 80px calc(50% - 89px) calc(21% - 83px) 150px calc(29% - 90px) 32px;
      grid-template-areas: 'ch-img ch-title ch-price ch-count ch-sum ch-del' 'ch-img ch-weight ch-price ch-count ch-sum ch-del'; } }
  @media (min-width: 992px) {
    .cart-table-row {
      grid-template-columns: 80px calc(40% - 89px) calc(26% - 83px) 150px calc(34% - 90px) 32px;
      grid-template-areas: 'ch-img ch-title ch-price ch-count ch-sum ch-del' 'ch-img ch-weight ch-price ch-count ch-sum ch-del'; } }
  @media (min-width: 1260px) {
    .cart-table-row {
      grid-template-columns: 90px calc(52% - 102px) calc(23% - 100px) 180px calc(25% - 100px) 32px;
      grid-template-areas: 'ch-img ch-title ch-price ch-count ch-sum ch-del' 'ch-img ch-weight ch-price ch-count ch-sum ch-del'; } }

.cart-table-row.cart-table-present {
  grid-template-columns: 90px calc(100% - 122px) 32px;
  grid-template-areas: 'ch-title ch-title ch-del' 'ch-img ch-weight ch-del' 'ch-img ch-sum ch-del'; }
  @media (min-width: 768px) {
    .cart-table-row.cart-table-present {
      grid-template-columns: 90px calc(80% - 90px) calc(20% - 32px) 32px;
      grid-template-areas: 'ch-img ch-title ch-sum ch-del' 'ch-img ch-weight ch-sum ch-del'; } }
  @media (max-width: 767.98px) {
    .cart-table-row.cart-table-present .ch-sum {
      align-self: start; } }
  .cart-table-row.cart-table-present .ch-sum:before {
    display: none !important; }

.cart-table-top {
  background-color: #7D96A4;
  border-radius: 3px 3px 0 0;
  line-height: 1;
  gap: 0 !important;
  padding-top: 12px;
  padding-bottom: 12px; }
  @media (max-width: 767.98px) {
    .cart-table-top {
      display: block; } }
  @media (min-width: 768px) {
    .cart-table-top span {
      text-transform: uppercase;
      color: #fff;
      font-size: 0.875rem;
      font-weight: 600;
      white-space: nowrap; } }
  .cart-table-top > div {
    margin-bottom: 0 !important; }
    .cart-table-top > div:before {
      content: attr(data-title);
      color: #fff;
      font-size: 0.8125rem;
      text-transform: uppercase;
      font-weight: 500; }
      @media (min-width: 768px) {
        .cart-table-top > div:before {
          display: none; } }
    @media (max-width: 767.98px) {
      .cart-table-top > div span {
        display: none !important; } }
    @media (max-width: 767.98px) {
      .cart-table-top > div:not(:first-child) {
        display: none !important; } }
  .cart-table-top .ch-del-wrap {
    text-align: center; }
    .cart-table-top .ch-del-wrap > .icon {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.875rem; }

.cart-info {
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  @media (max-width: 991.98px) {
    .cart-info {
      padding-bottom: 50px;
      overflow-y: auto;
      height: 100vh;
      background-color: #fff; } }
  @media (min-width: 992px) {
    .cart-info {
      border-radius: 5px; } }
  .cart-info-title {
    padding: 18px;
    background-color: #7D96A4;
    line-height: 1; }
    @media (max-width: 991.98px) {
      .cart-info-title {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between; } }
    @media (min-width: 992px) {
      .cart-info-title {
        text-align: center;
        padding: 18px 15px;
        border-radius: 3px 3px 0 0; } }
    .cart-info-title-item {
      display: inline-block; }
      .cart-info-title-item .icon {
        font-size: 1.125rem;
        margin-right: 20px;
        color: rgba(241, 243, 248, 0.8); }
      .cart-info-title-item span {
        line-height: 1;
        font-size: 0.875rem;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        white-space: nowrap; }
    .cart-info-title-close {
      position: relative;
      width: 32px;
      height: 32px;
      background: #7D96A4;
      border-radius: 50%;
      transform: rotate(180deg); }
      @media (min-width: 992px) {
        .cart-info-title-close {
          display: none; } }
      .cart-info-title-close > .icon {
        font-size: 1.25rem;
        color: #F1F3F8;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .cart-info-add {
    padding: 15px;
    background-color: #fff; }
    .cart-info-add-text {
      padding: 0 10px 10px;
      font-size: 0.875rem; }
      .cart-info-add-text span {
        color: #50667E; }
      .cart-info-add-text b {
        color: #1A3853;
        white-space: nowrap; }
    .cart-info-add-item {
      background-color: #F1F3F8;
      border-radius: 3px; }
      .cart-info-add-item .ch-btn {
        display: block;
        padding: 20px 40px 20px 20px;
        position: relative;
        width: 100%;
        text-align: left; }
        .cart-info-add-item .ch-btn:after {
          content: '\e96f';
          font-family: "icomoon" !important;
          position: absolute;
          top: 18px;
          right: 18px;
          font-size: 1.25rem;
          color: #9FB0BA;
          transition-duration: .2s; }
        .cart-info-add-item .ch-btn span {
          font-size: 0.9375rem;
          transition-duration: .2s; }
          .cart-info-add-item .ch-btn span:first-child {
            border-bottom: 1px dashed #E76642;
            color: #da5128; }
          .cart-info-add-item .ch-btn span:nth-child(2) {
            color: #1A3853;
            display: none; }
            .cart-info-add-item .ch-btn span:nth-child(2):before {
              content: attr(data-title);
              display: block;
              font-size: 0.75rem;
              margin-bottom: 2px;
              color: #50667E; }
        .cart-info-add-item .ch-btn.added span:first-child {
          display: none; }
        .cart-info-add-item .ch-btn.added span:nth-child(2) {
          display: block; }
        .cart-info-add-item .ch-btn:hover:after {
          color: #7D96A4; }
        .cart-info-add-item .ch-btn:hover span {
          border-bottom-color: transparent; }
      .cart-info-add-item .ch-block {
        display: none; }
        .cart-info-add-item .ch-block-wrap {
          padding: 10px 15px 25px;
          line-height: 1.3; }
        .cart-info-add-item .ch-block-title {
          margin-bottom: 15px; }
          .cart-info-add-item .ch-block-title span {
            font-size: 0.875rem;
            color: #1A3853; }
        .cart-info-add-item .ch-block-input {
          display: flex; }
          .cart-info-add-item .ch-block-input input[type='text'] {
            height: 42px;
            line-height: 42px;
            border-color: #9FB0BA;
            border-radius: 24px 0 0 24px; }
          .cart-info-add-item .ch-block-input button {
            height: 42px;
            line-height: 41px;
            padding: 0 14px 0 10px;
            background-color: #7D96A4;
            border-radius: 0 24px 24px 0; }
            .cart-info-add-item .ch-block-input button:hover {
              background-color: #50667E; }
            .cart-info-add-item .ch-block-input button span {
              font-size: 0.75rem;
              color: #fff;
              white-space: nowrap; }
        .cart-info-add-item .ch-block-danger {
          margin-top: 15px; }
          .cart-info-add-item .ch-block-danger span,
          .cart-info-add-item .ch-block-danger a {
            color: #FF0F00;
            font-size: 0.875rem; }
          .cart-info-add-item .ch-block-danger a {
            border-bottom: 1px dashed #FF0F00; }
            .cart-info-add-item .ch-block-danger a:hover {
              border-bottom-color: transparent; }

.cart-info-add-item.opened .ch-btn:after {
  content: '\e970'; }

.cart-info-add-item.opened .ch-btn span {
  border-bottom-color: transparent; }

.cart-info-add-item.opened .ch-block {
  display: block; }

.cart-info-list {
  padding: 15px 18px 0;
  background-color: #fff;
  border-radius: 0 0 3px 3px; }
  .cart-info-list .ch-title {
    margin-bottom: 20px; }
    .cart-info-list .ch-title span {
      font-family: "Lora", serif;
      font-weight: 500;
      font-size: 1.375rem;
      color: #091922; }
  .cart-info-list .ch-list-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px; }
    .cart-info-list .ch-list-row span {
      flex: 0 1 auto; }
      .cart-info-list .ch-list-row span:first-child {
        font-size: 0.875rem;
        color: #50667E; }
      .cart-info-list .ch-list-row span:last-child {
        font-size: 1rem;
        font-weight: 500;
        color: #1A3853; }
  .cart-info-list .ch-list-sum {
    padding-top: 15px;
    border-top: 1px solid #EBEBEB; }
    .cart-info-list .ch-list-sum span:last-child {
      font-size: 1.125rem;
      color: #091922;
      font-weight: 600; }
  .cart-info-list .ch-bonuses {
    padding-bottom: 15px;
    text-align: center; }
    .cart-info-list .ch-bonuses span {
      font-size: 0.875rem;
      color: #50667E; }
    .cart-info-list .ch-bonuses b {
      color: #da5128;
      display: block;
      white-space: nowrap; }
  .cart-info-list .ch-calc {
    padding: 10px 0 12px;
    border-top: 1px solid #EBEBEB; }
    .cart-info-list .ch-calc a {
      border-bottom: 1px dashed #E76642;
      font-size: 0.875rem; }
      .cart-info-list .ch-calc a:hover {
        border-bottom-color: transparent; }
  .cart-info-list .ch-btn {
    padding-bottom: 15px; }
  .cart-info-list .ch-keyt {
    display: inline-block;
    padding: 15px 0;
    color: #717C89;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: underline; }
    .cart-info-list .ch-keyt:hover {
      text-decoration: none; }

.popup-presents {
  margin-top: 30px; }
  .popup-presents-title {
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 1px solid #EBEBEB; }
    @media (min-width: 500px) {
      .popup-presents-title {
        display: flex;
        align-items: center; } }
    .popup-presents-title span {
      flex: 0 1 auto;
      font-size: 0.875rem;
      text-transform: uppercase;
      font-weight: 600;
      color: #091922; }
      @media (min-width: 500px) {
        .popup-presents-title span:first-child {
          width: calc(100% - 140px); } }
      .popup-presents-title span:nth-child(2) {
        display: none; }
        @media (min-width: 500px) {
          .popup-presents-title span:nth-child(2) {
            width: 140px;
            display: inline-block;
            text-align: center; } }

.present-item {
  padding: 20px 30px 20px 0;
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .present-item-img {
    flex: 0 1 auto;
    width: 90px;
    height: 80px; }
    .present-item-img:hover {
      opacity: .8; }
    .present-item-img a {
      display: flex;
      height: 100%; }
      .present-item-img a img {
        display: block;
        object-fit: cover;
        border: 1px solid #EBEBEB;
        border-radius: 3px; }
  .present-item-info {
    flex: 0 1 auto;
    padding-left: 15px;
    width: calc(100% - 90px); }
    @media (min-width: 500px) {
      .present-item-info {
        width: calc(100% - 160px); } }
    .present-item-info .ch-title {
      display: inline-block;
      margin-bottom: 5px;
      color: #1A3853;
      font-weight: 500;
      font-size: 0.9375rem; }
      .present-item-info .ch-title:hover {
        color: #da5128; }
    .present-item-info .ch-info {
      display: block;
      font-size: 0.875rem;
      color: #485059;
      margin-bottom: 3px; }
  .present-item-radio {
    flex: 0 1 auto;
    margin-top: 20px; }
    @media (min-width: 500px) {
      .present-item-radio {
        margin-top: 0;
        text-align: center;
        width: 70px; } }
    .present-item-radio input[type='radio']:not(checked) + span:before {
      width: 24px;
      height: 24px; }
    .present-item-radio input[type='radio']:checked + span:after {
      width: 16px;
      height: 16px;
      background: transparent url("/local/include/assets/css-v4/../images/bgs/check.svg") no-repeat center !important; }
    @media (max-width: 499.98px) {
      .present-item-radio input[type='radio']:not(checked) + span span {
        font-weight: 500; } }
    @media (min-width: 500px) {
      .present-item-radio input[type='radio']:not(checked) + span span {
        display: none; } }

.popup-present-hide .present-item-radio,
.popup-present-hide .popup-footer,
.popup-present-hide .popup-presents-title span:nth-child(2) {
  display: none !important; }

.cart-stick {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #50667E;
  box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
  z-index: 99; }
  @media (min-width: 992px) {
    .cart-stick {
      display: none; } }
  .cart-stick-wrap {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .cart-stick-price {
    flex: 0 1 auto; }
    .cart-stick-price span {
      display: block; }
      .cart-stick-price span:first-child {
        font-size: 1rem;
        color: #fff;
        font-weight: 600; }
      .cart-stick-price span:nth-child(2) {
        font-size: 0.8125rem;
        color: #fff;
        font-weight: 300; }

.catalog-menu {
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  .catalog-menu-mobile {
    padding: 20px 20px 20px 55px;
    position: relative;
    background-color: #50667E;
    width: 100%;
    text-align: left; }
    .catalog-menu-mobile:after {
      content: '\e92a';
      font-family: "icomoon" !important;
      color: #9FB0BA;
      font-size: 12px;
      position: absolute;
      top: 23px;
      left: 20px; }
    .catalog-menu-mobile span {
      color: #fff;
      font-size: 0.9375rem; }
    @media (min-width: 576px) {
      .catalog-menu-mobile {
        display: none; } }
  .catalog-menu-wrap {
    padding: 15px 0;
    display: none; }
    @media (min-width: 576px) {
      .catalog-menu-wrap {
        padding: 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap; } }
  .catalog-menu-item {
    padding: 15px 0;
    display: flex;
    align-items: center; }
    @media (min-width: 576px) {
      .catalog-menu-item {
        padding: 20px 10px 15px;
        display: block;
        flex: 0 1 auto;
        width: 25%;
        text-align: center;
        border-right: 1px solid #F3F3F3;
        border-bottom: 1px solid #F3F3F3; } }
    @media (min-width: 768px) {
      .catalog-menu-item {
        padding: 25px 15px 20px;
        width: 20%; } }
    @media (min-width: 1110px) {
      .catalog-menu-item {
        width: calc(100% / 6); } }
    @media (min-width: 576px) {
      .catalog-menu-item:nth-child(1) {
        border-left: 1px solid #F3F3F3; } }
    @media (min-width: 576px) {
      .catalog-menu-item:nth-child(5n + 5) {
        border-left: 1px solid #F3F3F3; } }
    @media (min-width: 768px) {
      .catalog-menu-item:nth-child(5n + 5) {
        border-left-width: 0; } }
    @media (min-width: 768px) {
      .catalog-menu-item:nth-child(6n + 6) {
        border-left: 1px solid #F3F3F3; } }
    @media (min-width: 1110px) {
      .catalog-menu-item:nth-child(6n + 6) {
        border-left-width: 0; } }
    @media (min-width: 1110px) {
      .catalog-menu-item:nth-child(7n + 7) {
        border-left: 1px solid #F3F3F3; } }
    .catalog-menu-item-icon {
      flex: 0 1 auto;
      width: 30px; }
      @media (min-width: 576px) {
        .catalog-menu-item-icon {
          width: auto;
          margin-bottom: 10px;
          height: 30px;
          display: flex;
          align-items: center;
          justify-content: center; } }
      .catalog-menu-item-icon > .icon {
        font-size: 1.25rem;
        color: #D1D1D1; }
        @media (min-width: 576px) {
          .catalog-menu-item-icon > .icon {
            font-size: 1.75rem; } }
    .catalog-menu-item-title {
      line-height: 1.3;
      width: calc(100% - 30px);
      padding-left: 10px; }
      @media (min-width: 576px) {
        .catalog-menu-item-title {
          width: auto;
          padding-left: 0; } }
      .catalog-menu-item-title span {
        font-size: 0.8125rem;
        font-weight: 500;
        color: #1A3853;
        text-transform: uppercase;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: keep-all;
        line-break: normal;
        hyphens: auto; }
    .catalog-menu-item:hover {
      background-color: rgba(80, 102, 126, 0.03); }
      .catalog-menu-item:hover .catalog-menu-item-title span {
        color: #da5128; }

.catalog-menu.opened .catalog-menu-mobile:after {
  transform: rotate(180deg);
  top: 22px; }

@media (max-width: 575.98px) {
  .catalog-menu.opened .catalog-menu-wrap {
    display: block; } }

.catalog-tags {
  background-color: rgba(159, 176, 186, 0.15); }
  @media (min-width: 576px) {
    .catalog-tags {
      padding: 15px 0 5px;
      text-align: center; } }
  .catalog-tags-wrap {
    position: relative;
    padding: 0 0 10px 40px;
    display: none; }
    @media (min-width: 576px) {
      .catalog-tags-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0; } }
  .catalog-tags-mobile {
    position: relative;
    padding: 20px 0 22px 40px;
    display: block;
    width: 100%;
    text-align: left; }
    @media (min-width: 576px) {
      .catalog-tags-mobile {
        display: none; } }
    .catalog-tags-mobile span {
      font-weight: 500;
      font-size: 0.9375rem;
      color: #1A3853;
      border-bottom: 1px dashed #1A3853; }
    .catalog-tags-mobile:before {
      content: '\e930';
      font-family: "icomoon" !important;
      color: #B7B4B3;
      font-size: 1.25rem;
      position: absolute;
      top: 20px;
      left: 0; }
  .catalog-tags a {
    color: #1A3853;
    display: inline-block;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: 1px dashed #1A3853;
    white-space: nowrap;
    margin-bottom: 13px; }
    .catalog-tags a:not(:last-child) {
      margin-right: 25px; }
      @media (min-width: 576px) {
        .catalog-tags a:not(:last-child) {
          margin-right: 40px; } }
    .catalog-tags a:hover, .catalog-tags a.active {
      color: #da5128;
      border-bottom-color: transparent; }
    .catalog-tags a.active:after {
      content: '\e915';
      font-family: "icomoon" !important;
      margin-left: 8px;
      font-size: 8px;
      color: #da5128; }

.catalog-tags.opened .catalog-tags-mobile span {
  border-bottom-color: transparent;
  color: #50667E; }

@media (max-width: 575.98px) {
  .catalog-tags.opened .catalog-tags-wrap {
    display: block; } }

.catalog-sort {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .catalog-sort {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }
  .catalog-sort-col {
    flex: 0 1 auto;
    display: flex;
    align-items: flex-end; }
    .catalog-sort-col:not(:last-child) {
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .catalog-sort-col:not(:last-child) {
          margin-bottom: 0; } }
    .catalog-sort-col label {
      font-size: 0.9375rem;
      margin-right: 15px;
      color: #717C89;
      display: inline-block;
      padding-bottom: 5px;
      min-width: 100px; }
      @media (min-width: 768px) {
        .catalog-sort-col label {
          min-width: auto; } }

.checkout-top {
  display: inline-flex;
  flex-direction: row;
  background: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 28px; }
  .checkout-top .btn {
    padding: 0 10px !important; }
    .checkout-top .btn:first-child {
      border-radius: 28px 0 0 28px; }
    .checkout-top .btn:last-child {
      border-radius: 0 28px 28px 0; }
    .checkout-top .btn span {
      font-size: 0.875rem; }
      @media (min-width: 500px) {
        .checkout-top .btn span {
          font-size: 0.9375rem; } }
    @media (max-width: 499.98px) {
      .checkout-top .btn span {
        white-space: normal;
        text-align: center;
        border-bottom-color: transparent !important; } }
    @media (min-width: 425px) {
      .checkout-top .btn {
        padding: 0 15px !important; } }
    @media (min-width: 500px) {
      .checkout-top .btn {
        padding: 0 35px !important; } }
    .checkout-top .btn-bright {
      background-color: #E76642 !important; }
      .checkout-top .btn-bright:hover {
        cursor: default !important; }

.checkout-block {
  padding: 30px 20px; }
  @media (min-width: 425px) {
    .checkout-block {
      padding: 40px 30px; } }
  @media (min-width: 1260px) {
    .checkout-block {
      padding: 50px 40px; } }
  @media (min-width: 1440px) {
    .checkout-block {
      padding: 50px 150px 50px 40px; } }
  @media (min-width: 576px) {
    .checkout-block-wrap {
      padding-left: 68px; } }

.checkout-title {
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 30px;
  font-family: "Lora", serif;
  font-size: 1.25rem;
  position: relative;
  margin-left: -10px; }
  @media (min-width: 576px) {
    .checkout-title {
      margin-left: 0; } }
  .checkout-title-num {
    flex: 0 1 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F1F3F8;
    position: relative; }
    .checkout-title-num > span {
      font-weight: 600;
      color: #da5128;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .checkout-title-item {
    flex: 0 1 auto;
    width: calc(100% - 48px);
    padding: 10px 0 0 20px;
    font-weight: 500;
    color: #1A3853; }

.checkout-wrapper {
  display: flex;
  flex-wrap: wrap; }

.checkout-col {
  flex: 0 1 auto;
  width: 100%; }
  @media (min-width: 768px) {
    .checkout-col {
      width: 50%;
      padding-right: 30px; } }
  @media (min-width: 1260px) {
    .checkout-col {
      padding-right: 60px; } }

.checkout-row {
  margin-bottom: 25px; }

.checkout-radio-big input[type='radio']:not(checked) + span {
  padding: 2px 0 0 40px; }
  .checkout-radio-big input[type='radio']:not(checked) + span:before {
    width: 24px;
    height: 24px; }
  .checkout-radio-big input[type='radio']:not(checked) + span span {
    color: #091922;
    font-size: 1rem; }

.checkout-radio-big input[type='radio']:checked + span:after {
  width: 16px;
  height: 16px; }

.checkout-radio-big-info {
  padding: 10px 0 0 44px; }
  .checkout-radio-big-info p {
    color: #717C89;
    font-size: 0.875rem;
    margin-bottom: 5px; }

.checkout-switcher {
  display: flex;
  align-items: stretch;
  margin-bottom: 20px; }
  @media (min-width: 576px) {
    .checkout-switcher {
      margin-bottom: 40px; } }
  .checkout-switcher .checkout-switcher-item {
    flex: 0 1 auto;
    position: relative; }
    @media (min-width: 992px) {
      .checkout-switcher .checkout-switcher-item {
        min-width: 300px; }
        .checkout-switcher .checkout-switcher-item label {
          width: 100%; } }
    .checkout-switcher .checkout-switcher-item-promo {
      position: absolute;
      top: -12px;
      right: -5px;
      padding: 3px 10px 4px;
      background-color: #FF0F00;
      line-height: 1;
      border-radius: 1px; }
      @media (min-width: 768px) {
        .checkout-switcher .checkout-switcher-item-promo {
          top: -7px;
          right: -7px; } }
      .checkout-switcher .checkout-switcher-item-promo span {
        font-size: 0.7rem;
        font-weight: 500;
        white-space: nowrap;
        color: #fff; }
    .checkout-switcher .checkout-switcher-item + .checkout-switcher-item {
      margin-left: 20px; }
      @media (min-width: 992px) {
        .checkout-switcher .checkout-switcher-item + .checkout-switcher-item {
          margin-left: 30px; } }
    .checkout-switcher .checkout-switcher-item .radio-switch {
      height: 100%;
      border: 1px solid #E0E0E3;
      padding: 10px 20px 10px; }
      @media (min-width: 768px) {
        .checkout-switcher .checkout-switcher-item .radio-switch {
          padding: 20px 20px 15px 50px; } }
      @media (min-width: 992px) {
        .checkout-switcher .checkout-switcher-item .radio-switch {
          padding: 25px 30px 20px 60px; } }
      .checkout-switcher .checkout-switcher-item .radio-switch span:first-child {
        font-size: 0; }
        @media (min-width: 576px) {
          .checkout-switcher .checkout-switcher-item .radio-switch span:first-child {
            color: #091922;
            font-size: 1rem; } }
        .checkout-switcher .checkout-switcher-item .radio-switch span:first-child:before {
          content: attr(data-title);
          font-size: 0.9375rem; }
          @media (min-width: 576px) {
            .checkout-switcher .checkout-switcher-item .radio-switch span:first-child:before {
              display: none; } }
      .checkout-switcher .checkout-switcher-item .radio-switch span:nth-child(2) {
        display: none;
        color: #717C89;
        font-size: 0.875rem;
        margin-top: 5px; }
        @media (min-width: 576px) {
          .checkout-switcher .checkout-switcher-item .radio-switch span:nth-child(2) {
            display: block; } }
    .checkout-switcher .checkout-switcher-item input[type='radio'] + label {
      cursor: pointer;
      transition-duration: .2s; }
      .checkout-switcher .checkout-switcher-item input[type='radio'] + label:before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        height: 24px;
        width: 24px;
        border-radius: 50%; }
        @media (min-width: 768px) {
          .checkout-switcher .checkout-switcher-item input[type='radio'] + label:before {
            top: 18px;
            left: 14px; } }
        @media (min-width: 992px) {
          .checkout-switcher .checkout-switcher-item input[type='radio'] + label:before {
            top: 24px;
            left: 24px; } }
    .checkout-switcher .checkout-switcher-item input[type='radio']:not(checked) + label {
      border: 1px solid #E0E0E3; }
      @media (min-width: 768px) {
        .checkout-switcher .checkout-switcher-item input[type='radio']:not(checked) + label:before {
          background-color: #fff;
          border: 1px solid #7D96A4;
          border-radius: 50%; } }
      .checkout-switcher .checkout-switcher-item input[type='radio']:not(checked) + label:hover {
        border-color: #50667E; }
    .checkout-switcher .checkout-switcher-item input[type='radio']:checked + label {
      border: 1px solid #E76642 !important;
      background-color: transparent; }
      .checkout-switcher .checkout-switcher-item input[type='radio']:checked + label:before {
        border: 1px solid #da5128;
        background-color: #E76642; }
      .checkout-switcher .checkout-switcher-item input[type='radio']:checked + label:after {
        content: '\e9a8';
        font-family: "icomoon" !important;
        font-size: 11px;
        position: absolute;
        color: #fff;
        top: -6px;
        left: -4px; }
        @media (min-width: 768px) {
          .checkout-switcher .checkout-switcher-item input[type='radio']:checked + label:after {
            top: 23px;
            left: 20px; } }
        @media (min-width: 992px) {
          .checkout-switcher .checkout-switcher-item input[type='radio']:checked + label:after {
            top: 29px;
            left: 30px; } }

.checkout-add-btn {
  position: relative;
  padding-left: 43px; }
  .checkout-add-btn:before {
    content: '';
    width: 27px;
    height: 27px;
    background-color: #E76642;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: 0; }
  .checkout-add-btn:after {
    content: '\e90f';
    font-family: "icomoon" !important;
    font-size: 0.7rem;
    color: #fff;
    position: absolute;
    top: 3px;
    left: 8px; }
  .checkout-add-btn span {
    font-size: 1rem;
    color: #da5128;
    border-bottom: 1px dashed #da5128; }
  .checkout-add-btn:hover:before {
    background-color: #da5128; }
  .checkout-add-btn:hover span {
    border-bottom-color: transparent; }

.checkout-add .checkout-add-wrap {
  display: none; }

.checkout-add.opened .checkout-add-wrap {
  display: block; }

.opened .checkout-add-btn:after {
  transform: rotate(45deg); }

.opened .checkout-add-btn span {
  font-size: 0;
  border-bottom-color: transparent; }
  .opened .checkout-add-btn span:after {
    content: attr(data-mobile);
    display: inline-block;
    font-size: 1rem; }

.checkout-add-content {
  padding: 20px 0 0; }
  @media (min-width: 576px) {
    .checkout-add-content {
      padding: 25px 0 0 44px; } }

@media (min-width: 500px) {
  .checkout-add-company-num {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end; } }

.checkout-add-company-num .ch-input {
  width: 100%;
  margin-bottom: 20px; }
  @media (min-width: 992px) {
    .checkout-add-company-num .ch-input {
      width: 300px;
      margin: 0 20px 0 0; } }
  @media (min-width: 1260px) {
    .checkout-add-company-num .ch-input {
      width: 400px; } }

.checkout-add-company-num .ch-btn + .ch-btn {
  margin-top: 20px; }
  @media (min-width: 500px) {
    .checkout-add-company-num .ch-btn + .ch-btn {
      padding-left: 20px;
      margin-left: 20px;
      position: relative; }
      .checkout-add-company-num .ch-btn + .ch-btn:before {
        content: '';
        width: 1px;
        height: 60%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        background-color: #E0E0E3; } }

.checkout-add-company-wrap {
  padding: 30px 0 0;
  display: none; }

.checkout-add-wrap.opening .checkout-add-company-wrap {
  display: block; }

@media (min-width: 576px) {
  .checkout-delivery {
    padding: 0 15px; } }

.checkout-delivery-info {
  margin-bottom: 20px; }
  .checkout-delivery-info span {
    color: #50667E;
    font-size: 0.9375rem;
    font-style: italic; }
  @media (min-width: 576px) {
    .checkout-delivery-info {
      display: none; } }

.checkout-time > label {
  position: relative;
  padding-left: 30px;
  font-size: 0.9375rem;
  color: #485059; }

.checkout-time > input[type='radio'] + label {
  cursor: pointer; }
  .checkout-time > input[type='radio'] + label > span {
    color: #da5128; }
  .checkout-time > input[type='radio'] + label:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%; }

.checkout-time > input[type='radio']:not(checked) + label:before {
  border: 1px solid #7D96A4; }

.checkout-time > input[type='radio']:checked + label:before {
  border: 1px solid #da5128; }

.checkout-time > input[type='radio']:checked + label:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E76642 !important; }

.checkout-time-wrap {
  display: none; }
  @media (min-width: 425px) {
    .checkout-time-wrap {
      padding: 10px 0 0 20px; } }
  @media (min-width: 500px) {
    .checkout-time-wrap {
      padding: 20px 0 0 30px; } }

.checkout-time:not(:last-child) {
  margin-bottom: 15px; }

.checkout-time input[type='radio']:checked + label + .checkout-time-wrap {
  display: block; }

.checkout-time-list {
  width: 100%;
  padding: 10px 0 0 20px;
  display: flex; }
  @media (min-width: 425px) {
    .checkout-time-list {
      padding: 0; } }
  .checkout-time-list-col {
    flex: 0 1 auto;
    width: 50%;
    max-width: 160px; }
  .checkout-time-list .ch-item {
    break-inside: avoid;
    margin-bottom: 5px; }
    .checkout-time-list .ch-item > label {
      font-size: 0.9375rem;
      color: #50667E;
      font-weight: 500;
      padding: 5px 10px;
      border: 1px solid transparent;
      white-space: nowrap; }
      .checkout-time-list .ch-item > label:hover {
        cursor: pointer;
        background-color: #F7F7F7; }
    .checkout-time-list .ch-item > input[type='radio']:checked + label {
      border-color: #da5128; }
      .checkout-time-list .ch-item > input[type='radio']:checked + label:hover {
        background-color: #fff;
        cursor: default; }

.checkout-time-tabs {
  padding-top: 15px; }
  @media (min-width: 425px) {
    .checkout-time-tabs {
      padding-top: 0; } }
  .checkout-time-tabs .tabs_buttons {
    display: flex; }
  .checkout-time-tabs .tab_button_wrapper {
    flex: 0 1 auto;
    margin-right: 10px !important; }
    .checkout-time-tabs .tab_button_wrapper .tab_button {
      display: block;
      color: #1A3853;
      font-size: 0.875rem;
      background-color: #F1F3F8;
      border-radius: 1px;
      padding: 10px 20px;
      position: relative; }
      @media (min-width: 425px) {
        .checkout-time-tabs .tab_button_wrapper .tab_button {
          padding: 10px 30px; } }
    .checkout-time-tabs .tab_button_wrapper.active .tab_button {
      background-color: #1289A7;
      color: #fff; }
      .checkout-time-tabs .tab_button_wrapper.active .tab_button:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: calc(50% - 7px);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 7.5px 0 7.5px;
        border-color: #1289A7 transparent transparent transparent; }
  .checkout-time-tabs .tabs_contents {
    padding-top: 20px; }

.checkout-map-img {
  width: 100%;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  margin-top: 20px; }
  .checkout-map-img:hover {
    box-shadow: 0 0 14px 6px rgba(80, 102, 126, 0.1); }

.checkout-bonuses label {
  display: flex; }
  .checkout-bonuses label .switch {
    flex: 0 1 auto;
    width: 38px; }
  .checkout-bonuses label span {
    flex: 0 1 auto;
    width: calc(100% - 38px); }

.checkout-sum {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px; }
  @media (min-width: 768px) {
    .checkout-sum {
      flex-direction: row; } }
  .checkout-sum > div {
    flex: 0 1 auto; }
  .checkout-sum-list {
    width: 100%; }
    @media (min-width: 768px) {
      .checkout-sum-list {
        width: calc(45% - 15px); } }
    @media (min-width: 992px) {
      .checkout-sum-list {
        width: calc(35% - 15px); } }
    @media (min-width: 1260px) {
      .checkout-sum-list {
        width: calc(30% - 15px); } }
    .checkout-sum-list .ch-item {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 10px;
      padding: 10px;
      margin-bottom: 5px;
      justify-content: space-between; }
      .checkout-sum-list .ch-item:hover {
        background-color: #F7F7F7; }
      .checkout-sum-list .ch-item span {
        font-size: 0.9375rem; }
        .checkout-sum-list .ch-item span:first-child {
          color: #50667E; }
        .checkout-sum-list .ch-item span:nth-child(2) {
          font-weight: 500;
          white-space: nowrap; }
          .checkout-sum-list .ch-item span:nth-child(2) > span.tooltip {
            display: inline-block;
            margin-left: 10px;
            vertical-align: middle; }
            .checkout-sum-list .ch-item span:nth-child(2) > span.tooltip .icon {
              font-size: 1.125rem; }
            .checkout-sum-list .ch-item span:nth-child(2) > span.tooltip:hover {
              cursor: pointer;
              color: #1A3853; }
  .checkout-sum-info {
    width: 100%;
    color: #50667E;
    font-size: 0.875rem; }
    @media (max-width: 767.98px) {
      .checkout-sum-info {
        order: 1; } }
    @media (min-width: 768px) {
      .checkout-sum-info {
        padding-left: 50px;
        width: calc(55% - 15px); } }
    @media (min-width: 992px) {
      .checkout-sum-info {
        padding-left: 100px;
        width: calc(60% - 15px); } }
    .checkout-sum-info-item {
      position: relative;
      padding-left: 40px; }
      .checkout-sum-info-item:not(:last-child) {
        margin-bottom: 30px; }
      .checkout-sum-info-item > .icon {
        position: absolute;
        top: 0;
        left: 0;
        color: #9FB0BA;
        font-size: 1.25rem; }
  .checkout-sum-btns {
    width: 100%; }
    @media (max-width: 767.98px) {
      .checkout-sum-btns {
        display: flex;
        flex-direction: column;
        padding-bottom: 30px;
        border-bottom: 2px dashed #F1F3F8; } }
    @media (min-width: 768px) {
      .checkout-sum-btns {
        border-top: 2px dashed #F1F3F8;
        padding-top: 30px; } }
    @media (max-width: 767.98px) {
      .checkout-sum-btns .btn-border {
        padding-left: 0;
        padding-right: 0;
        margin-top: 10px; }
        .checkout-sum-btns .btn-border span {
          font-size: 0.875rem; } }

.checkout-address {
  margin-bottom: 15px; }
  .checkout-address-info {
    position: relative;
    padding: 5px 0; }
    .checkout-address-info span {
      font-size: 0.8125rem;
      color: #da5128; }

.checkout-date-info {
  padding-left: 30px;
  position: relative;
  margin: 0 0 30px; }
  @media (min-width: 768px) {
    .checkout-date-info {
      margin: 30px 0 0; } }
  .checkout-date-info > .icon {
    position: absolute;
    font-size: 0.9375rem;
    color: #50667E;
    top: 0;
    left: 0; }
  .checkout-date-info > p {
    font-size: 0.875rem;
    color: #50667E; }

.popup-checkout-info .checkout-switcher {
  flex-wrap: wrap;
  margin-bottom: 0 !important;
  gap: 20px; }
  .popup-checkout-info .checkout-switcher-item {
    width: 100%;
    margin: 0 !important; }
    @media (min-width: 576px) {
      .popup-checkout-info .checkout-switcher-item {
        width: calc(50% - 10px); } }
    .popup-checkout-info .checkout-switcher-item label {
      width: 100%; }
    .popup-checkout-info .checkout-switcher-item .radio-switch span:nth-child(2) {
      display: block !important; }

.checkout-promo-code {
  margin-top: 10px; }
  .checkout-promo-code:not(:last-of-type) .checkout-promo-code-wrap {
    border-bottom: 1px solid #E0E0E3; }
  .checkout-promo-code-wrap {
    padding: 10px 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px; }
    .checkout-promo-code-wrap .ch-text {
      font-size: 0.875rem;
      color: #163450; }
      .checkout-promo-code-wrap .ch-text b {
        color: #da5128; }
    .checkout-promo-code-wrap .ch-delete .icon {
      color: #FF0F00;
      font-size: 0.75rem;
      opacity: 0.7; }
    .checkout-promo-code-wrap .ch-delete:hover .icon {
      opacity: 1; }

.contacts-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px; }
  @media (min-width: 768px) {
    .contacts-wrap {
      margin-top: 50px; } }
  .contacts-wrap .contacts-data,
  .contacts-wrap .contacts-form,
  .contacts-wrap .contacts-map {
    flex: 0 1 auto;
    background-color: #fff;
    box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
    border-radius: 3px; }
  .contacts-wrap .contacts-data,
  .contacts-wrap .contacts-form {
    padding: 20px;
    width: 100%; }
    @media (min-width: 768px) {
      .contacts-wrap .contacts-data,
      .contacts-wrap .contacts-form {
        width: calc(50% - 10px);
        padding: 30px; } }
  .contacts-wrap .contacts-map {
    flex: 0 1 auto;
    width: 100%;
    padding: 10px;
    line-height: 1; }

@media (min-width: 992px) {
  .contacts-form-footer {
    display: flex;
    justify-content: space-between; } }

.contacts-form-footer .agree {
  padding: 0; }
  @media (min-width: 992px) {
    .contacts-form-footer .agree {
      text-align: right;
      margin: 0;
      padding: 0 0 0 30px; } }

.contacts-data-row:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(224, 224, 227, 0.5); }
  @media (min-width: 768px) {
    .contacts-data-row:not(:last-child) {
      padding-bottom: 30px;
      margin-bottom: 30px; } }

.contacts-data-row > .icon {
  font-size: 1.375rem;
  color: #E76642;
  display: block;
  margin-bottom: 10px; }
  @media (min-width: 768px) {
    .contacts-data-row > .icon {
      font-size: 1.75rem;
      margin-bottom: 15px; } }

.contacts-data-row-info .ch-item {
  line-height: 1.4; }
  .contacts-data-row-info .ch-item:not(:last-child) {
    margin-bottom: 12px; }
  .contacts-data-row-info .ch-item span,
  .contacts-data-row-info .ch-item a {
    color: #1A3853; }
    @media (min-width: 768px) {
      .contacts-data-row-info .ch-item span,
      .contacts-data-row-info .ch-item a {
        font-size: 1.0625rem; } }
  .contacts-data-row-info .ch-item a {
    border-bottom: 1px dashed #717C89; }
    .contacts-data-row-info .ch-item a:hover {
      border-bottom-color: transparent;
      color: #da5128; }
    .contacts-data-row-info .ch-item a + span {
      margin-left: 10px;
      color: #717C89;
      font-size: 0.875rem; }

.delivery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .delivery-images-item {
    flex: 0 1 auto;
    width: calc(50% - 5px); }
    @media (min-width: 768px) {
      .delivery-images-item {
        width: calc(25% - 8px); } }
    .delivery-images-item img {
      border-radius: 3px;
      width: 100%; }

.dinners {
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-bottom: 40px; }
  @media (min-width: 576px) {
    .dinners {
      gap: 0 10px; } }
  .dinners-dates {
    flex: 0 1 auto;
    width: calc(100% / 7);
    background-color: #E76642;
    border: 1px solid #E76642;
    height: 42px;
    transition-duration: .2s; }
    .dinners-dates:hover {
      background-color: #da5128; }
    .dinners-dates span {
      font-size: 0.9375rem;
      font-family: "Lora", serif; }
      @media (min-width: 1110px) {
        .dinners-dates span:before {
          content: '\e97d';
          font-family: "icomoon" !important;
          font-size: 0.75rem;
          opacity: .5;
          margin-right: 8px; } }
      .dinners-dates span:after {
        content: attr(data-title-mobile); }
        @media (min-width: 992px) {
          .dinners-dates span:after {
            content: attr(data-title-desktop); } }
    .dinners-dates.active {
      cursor: default;
      background-color: #fff; }
      .dinners-dates.active span {
        color: #da5128; }

.errors {
  padding: 30px;
  text-align: center; }
  @media (min-width: 768px) {
    .errors {
      text-align: left;
      padding: 40px;
      display: flex;
      align-items: center; } }
  @media (min-width: 992px) {
    .errors {
      padding: 60px; } }
  @media (min-width: 768px) {
    .errors-item {
      flex: 0 1 auto;
      width: 60%;
      padding-right: 30px; } }
  @media (min-width: 992px) {
    .errors-item {
      padding-right: 50px; } }
  .errors-item-title {
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .errors-item-title {
        margin-bottom: 25px; } }
    .errors-item-title span {
      color: #E76642;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 2.25rem; }
      @media (min-width: 992px) {
        .errors-item-title span {
          font-size: 3rem; } }
  .errors-item-text {
    margin-bottom: 30px; }
    @media (min-width: 992px) {
      .errors-item-text {
        margin-bottom: 45px; } }
    .errors-item-text p {
      font-size: 1rem;
      color: #50667E; }
      @media (min-width: 992px) {
        .errors-item-text p {
          font-size: 1.125rem; } }
      .errors-item-text p:not(:last-child) {
        margin-bottom: 5px; }
  .errors-item-btn {
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .errors-item-btn {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .errors-img {
      flex: 0 1 auto;
      width: 40%; } }
  .errors-img img {
    width: 100%;
    max-width: 340px;
    display: block;
    transform: rotate(270deg); }
    @media (min-width: 768px) {
      .errors-img img {
        max-width: 100%; } }

.event-content {
  position: relative;
  padding: 70px 25px 20px; }
  @media (min-width: 768px) {
    .event-content {
      padding: 70px 30px 25px; } }
  .event-content-logo {
    position: absolute;
    bottom: calc(100% - 40px);
    background-color: #fff;
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    padding: 12px;
    border-radius: 3px; }
    .event-content-logo img {
      display: block;
      max-width: 150px;
      max-height: 60px; }
  .event-content-services {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E3; }
    .event-content-services .ch-title {
      margin-bottom: 10px; }
      .event-content-services .ch-title span {
        font-size: 0.9375rem;
        color: #7D96A4; }
    .event-content-services .ch-links {
      display: flex;
      flex-wrap: wrap; }
      .event-content-services .ch-links a {
        margin: 0 25px 10px 0;
        font-size: 0.9375rem;
        display: inline-block;
        color: #da5128;
        border-bottom: 1px dashed #da5128; }
        @media (min-width: 768px) {
          .event-content-services .ch-links a {
            white-space: nowrap; } }
        .event-content-services .ch-links a:hover {
          border-bottom-color: transparent; }

.event-place {
  padding: 15px; }
  @media (min-width: 768px) {
    .event-place {
      padding: 25px; } }
  @media (min-width: 992px) {
    .event-place {
      display: flex; } }
  .event-place-info {
    padding: 10px 30px 10px 10px; }
    @media (min-width: 992px) {
      .event-place-info {
        flex: 0 1 auto;
        width: 45%; } }
    .event-place-info .title-decor {
      margin-bottom: 5px; }
    .event-place-info .contacts-data {
      margin-top: 30px;
      width: 90%; }
  .event-place-detail {
    margin-bottom: 20px; }
    .event-place-detail span {
      font-size: 1rem;
      color: #7D96A4;
      font-family: "Lora", serif;
      font-weight: 500; }
  .event-place-content {
    margin-bottom: 30px; }
  .event-place-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .event-place-data div.link-icon-circle {
      margin-bottom: 20px; }
      .event-place-data div.link-icon-circle + button.link-icon-circle {
        margin-top: 15px; }
  .event-place-media {
    display: flex;
    margin-top: 30px; }
    @media (min-width: 992px) {
      .event-place-media {
        margin-top: 0;
        flex: 0 1 auto;
        width: 55%; } }
    .event-place-media img {
      width: 100%;
      object-fit: cover;
      display: block; }

.product-top-bg {
  background-color: #fff;
  padding: 30px 0;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05); }
  @media (min-width: 992px) {
    .product-top-bg {
      padding: 40px 0; } }
  .product-top-bg.mb-medium {
    margin-bottom: 40px; }
    @media (min-width: 992px) {
      .product-top-bg.mb-medium {
        margin-bottom: 70px; } }

@media (min-width: 768px) {
  .product-top {
    display: flex; } }

.product-alert {
  width: 100%;
  padding: 15px 25px;
  background-color: #E76642;
  text-align: center; }
  .product-alert span,
  .product-alert a {
    color: #fff;
    font-size: 0.9375rem; }
  .product-alert a {
    text-decoration: underline; }
    .product-alert a:hover {
      text-decoration: none; }

@media (min-width: 768px) {
  .product-gallery {
    flex: 0 1 auto;
    width: 50%; } }

.product-gallery-top .ch-img, .product-gallery-bottom .ch-img {
  display: flex;
  width: 100%;
  line-height: 1;
  background-color: #fff;
  border-radius: 3px;
  position: relative; }
  .product-gallery-top .ch-img img, .product-gallery-bottom .ch-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 2px; }

.product-gallery-top {
  margin-bottom: 16px;
  position: relative; }
  .product-gallery-top .item {
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    margin: 3px; }
  .product-gallery-top .ch-label {
    position: absolute;
    top: 20px;
    padding: 9px 14px;
    line-height: 1;
    white-space: nowrap;
    z-index: 9;
    left: -3px;
    border-radius: 2px 19px 19px 2px;
    border: 3px solid #fff;
    color: #fff;
    font-size: 0.8125rem; }
    .product-gallery-top .ch-label .icon {
      margin-right: 8px; }
    .product-gallery-top .ch-label + .ch-label {
      margin-top: 50px; }
  .product-gallery-top .ch-img {
    padding: 5px;
    height: 330px; }
    @media (min-width: 500px) {
      .product-gallery-top .ch-img {
        height: 370px; } }
    @media (min-width: 768px) {
      .product-gallery-top .ch-img {
        height: 390px; } }
    @media (min-width: 1110px) {
      .product-gallery-top .ch-img {
        height: 430px; } }
    @media (min-width: 1260px) {
      .product-gallery-top .ch-img {
        height: 450px; } }
    .product-gallery-top .ch-img:not(.ch-video) a:before {
      content: '';
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: 42px;
      height: 42px;
      background-color: #fff;
      border-radius: 3px;
      opacity: .7;
      transition-duration: .2s; }
    .product-gallery-top .ch-img:not(.ch-video) a:after {
      content: '\e92d';
      font-family: "icomoon" !important;
      font-size: 1.25rem;
      position: absolute;
      bottom: 26px;
      right: 26px;
      color: #50667E;
      opacity: .5;
      transition-duration: .2s; }
    .product-gallery-top .ch-img.ch-video a:after {
      content: '\e90d' !important;
      font-family: "icomoon" !important;
      color: #fff;
      opacity: .8;
      font-size: 64px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media (min-width: 992px) {
        .product-gallery-top .ch-img.ch-video a:after {
          font-size: 90px; } }
    .product-gallery-top .ch-img:hover a:after, .product-gallery-top .ch-img:hover a:before {
      opacity: 1; }
    .product-gallery-top .ch-img > a {
      display: flex;
      width: 100%;
      line-height: 1;
      position: relative; }
      .product-gallery-top .ch-img > a > img {
        width: 100%;
        object-fit: cover !important; }

.product-gallery-bottom {
  margin: 0 -3px; }
  .product-gallery-bottom .item {
    margin: 0 8px; }
    .product-gallery-bottom .item .ch-img {
      height: 90px; }
      @media (min-width: 425px) {
        .product-gallery-bottom .item .ch-img {
          height: 140px; } }
    .product-gallery-bottom .item.slick-current .ch-img {
      border: 3px solid #E76642; }

@media (max-width: 767.98px) {
  .order-mobile-top {
    order: -1;
    padding-top: 20px; } }

.product-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .product-info {
      display: block;
      margin-top: 0;
      flex: 0 1 auto;
      width: 50%;
      padding-left: 30px; } }
  @media (min-width: 1260px) {
    .product-info {
      padding-left: 50px; } }
  .product-info-row:not(:last-child) {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(159, 176, 186, 0.4); }
  .product-info-row:first-child {
    padding-top: 15px; }
  .product-info-price {
    display: none; }
    @media (min-width: 768px) {
      .product-info-price {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-end; } }
    .product-info-price .ch-title {
      flex: 0 1 auto;
      padding-right: 10px;
      color: #50667E;
      margin-bottom: 10px;
      min-width: 75px; }
      @media (min-width: 576px) {
        .product-info-price .ch-title {
          margin-bottom: 0; } }
      @media (min-width: 992px) {
        .product-info-price .ch-title {
          padding-right: 20px; } }
    .product-info-price .ch-price {
      flex: 0 1 auto;
      font-weight: 600;
      color: #1A3853;
      line-height: 1;
      white-space: nowrap; }
      @media (min-width: 576px) {
        .product-info-price .ch-price {
          margin-right: 20px; } }
      .product-info-price .ch-price-item {
        font-size: 1.75rem; }
        @media (min-width: 576px) {
          .product-info-price .ch-price-item {
            font-size: 2rem; } }
        @media (min-width: 992px) {
          .product-info-price .ch-price-item {
            font-size: 2.25rem; } }
      .product-info-price .ch-price-currency {
        font-size: 1.375rem;
        margin-left: 8px; }
  .product-info-bonus {
    display: flex;
    align-items: center; }
    @media (min-width: 768px) {
      .product-info-bonus {
        padding-bottom: 0;
        border-bottom-width: 0;
        padding-left: 75px; } }
    .product-info-bonus > .icon {
      color: #da5128;
      font-size: 8px; }
    .product-info-bonus .ch-bonus {
      padding-left: 6px;
      font-size: 1.0625rem; }
      @media (min-width: 768px) {
        .product-info-bonus .ch-bonus {
          font-size: 0.9375rem; } }
      .product-info-bonus .ch-bonus-item {
        color: #50667E;
        font-weight: 500; }
      .product-info-bonus .ch-bonus-title {
        color: #50667E;
        margin-left: 3px; }
      .product-info-bonus .ch-bonus-mobile-title {
        margin-left: 4px;
        color: #50667E; }
        @media (min-width: 768px) {
          .product-info-bonus .ch-bonus-mobile-title {
            display: none; } }

.product-info-minimum {
  margin: 10px 0;
  color: #50667E; }
  .product-info-minimum span > span {
    font-weight: 600;
    color: #1A3853; }
  @media (min-width: 768px) {
    .product-info-minimum {
      display: none; } }

.product-info-add {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px; }
  .product-info-add-item {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
    .product-info-add-item:not(:last-child) {
      padding-right: 30px; }
      @media (min-width: 1260px) {
        .product-info-add-item:not(:last-child) {
          padding-right: 40px; } }
    .product-info-add-item .ch-icon {
      flex: 0 1 auto;
      position: relative;
      width: 38px;
      height: 38px;
      border: 1px solid #F1F3F8;
      border-radius: 50%; }
      .product-info-add-item .ch-icon > .icon {
        font-size: 1.0625rem;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .product-info-add-item .ch-icon > .icon.icon.icon-users {
          font-size: 1rem; }
        .product-info-add-item .ch-icon > .icon.icon.icon-heat {
          font-size: 0.875rem; }
    .product-info-add-item .ch-text {
      flex: 0 1 auto;
      width: calc(100% - 38px);
      padding-left: 10px;
      line-height: 1.2; }
      .product-info-add-item .ch-text span {
        font-size: 0.875rem;
        color: #091922; }

.product-info-data .ch-data {
  display: flex;
  line-height: 1; }
  @media (max-width: 575.98px) {
    .product-info-data .ch-data {
      flex-wrap: wrap; } }
  .product-info-data .ch-data:not(:last-child) {
    margin-bottom: 15px; }
    @media (min-width: 576px) {
      .product-info-data .ch-data:not(:last-child) {
        margin-bottom: 20px; } }
  .product-info-data .ch-data-title {
    flex: 0 1 auto;
    color: #50667E;
    padding-right: 15px;
    min-width: 75px; }
    @media (max-width: 575.98px) {
      .product-info-data .ch-data-title {
        display: block;
        margin-bottom: 5px; } }
  .product-info-data .ch-data-item {
    color: #1A3853;
    font-weight: 600; }
  .product-info-data .ch-data-text {
    flex: 0 1 auto;
    line-height: 1.4;
    color: #1A3853;
    position: relative;
    margin-top: 5px; }
    @media (min-width: 576px) {
      .product-info-data .ch-data-text {
        margin-top: -2px; } }
    @media (max-width: 575.98px) {
      .product-info-data .ch-data-text {
        width: 100%; } }

.product-info-wish {
  flex: 0 1 auto; }
  .product-info-wish .btn {
    color: #7D96A4; }
    @media (min-width: 768px) {
      .product-info-wish .btn {
        color: #1A3853; } }
    .product-info-wish .btn span,
    .product-info-wish .btn .icon {
      color: inherit; }
    .product-info-wish .btn .icon {
      font-size: 2.5rem; }
      @media (min-width: 768px) {
        .product-info-wish .btn .icon {
          font-size: 1.75rem; } }
    .product-info-wish .btn span {
      display: none; }
      @media (min-width: 768px) {
        .product-info-wish .btn span {
          border-bottom: 1px dashed #1A3853;
          margin-left: 12px;
          line-height: 1.4;
          font-size: 0.9375rem;
          display: inline-block; } }
    .product-info-wish .btn:hover span {
      border-bottom-color: transparent; }
    .product-info-wish .btn:hover span,
    .product-info-wish .btn:hover .icon {
      color: #E76642; }

.product-info-btns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; }
  @media (min-width: 768px) {
    .product-info-btns {
      align-items: stretch; } }
  @media (min-width: 1110px) {
    .product-info-btns {
      align-items: center;
      flex-direction: row; } }
  .product-info-btns .ch-buy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center; }
    @media (min-width: 768px) {
      .product-info-btns .ch-buy {
        justify-content: space-between; } }
  .product-info-btns .ch-mob-price {
    flex: 0 1 auto;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .product-info-btns .ch-mob-price {
        display: none; } }
    .product-info-btns .ch-mob-price .ch-price-item {
      font-size: 1.75rem;
      font-weight: 500;
      color: #1A3853; }
      .product-info-btns .ch-mob-price .ch-price-item > span {
        font-size: 1rem;
        margin-left: 5px; }

.product-btns {
  flex: 0 1 auto;
  padding: 0;
  width: 150px;
  height: 48px;
  position: relative; }
  @media (min-width: 768px) {
    .product-btns {
      width: 175px;
      height: 56px; } }
  .product-btns-counter, .product-btns-button {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    transition-duration: .2s; }
  .product-btns-counter {
    transform: rotateY(90deg); }
    .product-btns-counter .ch-count-input {
      height: 48px;
      line-height: 48px;
      border-radius: 28px;
      border-color: #E0E0E3;
      background-color: #F1F3F8;
      text-align: center; }
      @media (min-width: 768px) {
        .product-btns-counter .ch-count-input {
          height: 56px;
          line-height: 56px; } }
    .product-btns-counter .ch-count-minus,
    .product-btns-counter .ch-count-plus {
      width: 37px;
      height: 37px;
      background-color: #fff;
      border-radius: 50%;
      position: absolute;
      top: 6px; }
      @media (min-width: 768px) {
        .product-btns-counter .ch-count-minus,
        .product-btns-counter .ch-count-plus {
          width: 44px;
          height: 44px; } }
      .product-btns-counter .ch-count-minus:hover,
      .product-btns-counter .ch-count-plus:hover {
        background-color: #E0E0E3; }
      .product-btns-counter .ch-count-minus:after,
      .product-btns-counter .ch-count-plus:after {
        content: '\e92f';
        font-family: "icomoon" !important;
        font-size: 10px;
        color: #E76642;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .product-btns-counter .ch-count-minus {
      left: 6px; }
      .product-btns-counter .ch-count-minus:after {
        transform: translate(-50%, -48%) rotate(180deg); }
    .product-btns-counter .ch-count-plus {
      right: 6px; }
  .product-btns-button .btn {
    width: 100%; }
    @media (max-width: 767.98px) {
      .product-btns-button .btn {
        height: 48px; } }
  .product-btns-info {
    display: block;
    flex: 0 1 auto;
    padding-left: 15px;
    position: relative;
    margin-top: 10px;
    width: 100%; }
    @media (min-width: 768px) {
      .product-btns-info {
        margin-top: 0; } }
    .product-btns-info:before {
      content: '*';
      position: absolute;
      top: 0;
      left: 0;
      font-size: 1.125rem;
      color: #E76642; }
    .product-btns-info span {
      font-size: 0.9375rem;
      color: #50667E;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }

.product-btns.opened .product-btns-button {
  transform: rotateY(90deg); }

.product-btns.opened .product-btns-counter {
  transform: rotateY(0deg); }

.product-info-description {
  position: relative;
  padding-left: 40px; }
  .product-info-description .ch-icon {
    position: absolute;
    top: 0;
    left: 0; }
    .product-info-description .ch-icon .icon {
      font-size: 1.5rem;
      color: rgba(80, 102, 126, 0.4); }
  .product-info-description .ch-text p {
    color: #485059; }
    .product-info-description .ch-text p:not(:last-child) {
      margin-bottom: 10px; }
    .product-info-description .ch-text p:last-child {
      margin-bottom: 0; }

.product-info-tags {
  position: relative;
  padding-left: 40px; }
  .product-info-tags:before {
    content: '\e930';
    font-family: "icomoon" !important;
    position: absolute;
    top: -3px;
    left: 0;
    font-size: 1.5rem;
    color: rgba(80, 102, 126, 0.4); }
  .product-info-tags a {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    border-bottom: 1px dashed #da5128;
    margin: 0 30px 10px 0;
    line-height: 1.3; }
    .product-info-tags a:hover {
      border-bottom-color: transparent; }

.product-acc-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; }
  .product-acc-top .headline {
    margin-bottom: 20px !important; }
  .product-acc-top .headline, .product-acc-top-link {
    flex: 0 1 auto; }
  .product-acc-top-link {
    color: #da5128; }
    .product-acc-top-link:after {
      content: '\e92a';
      font-family: "icomoon" !important;
      display: inline-block;
      font-size: 8px;
      margin-left: 8px;
      vertical-align: middle;
      transition-duration: .2s; }
    .product-acc-top-link span {
      font-weight: 500;
      border-bottom: 1px dotted #da5128;
      transition-duration: .2s; }
      .product-acc-top-link span:after {
        content: attr(data-open-title); }
    .product-acc-top-link.activate span:after {
      content: attr(data-close-title); }
    .product-acc-top-link.activate:after {
      transform: rotate(-180deg); }
    .product-acc-top-link:hover span {
      border-bottom-color: transparent; }

@media (min-width: 992px) {
  .product-acc-wrap {
    display: flex;
    justify-content: space-between; } }

@media (min-width: 992px) {
  .product-acc-col {
    flex: 0 1 auto;
    width: calc(50% - 5px); } }

.accordion {
  background: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 5px;
  margin-bottom: 10px;
  break-inside: avoid-column; }
  .accordion-title button {
    font-family: "Lora", serif;
    color: #091922;
    font-weight: 500;
    display: block;
    padding: 20px 50px 20px 20px;
    width: 100%;
    text-align: left;
    position: relative; }
    .accordion-title button:before {
      content: '';
      width: 32px;
      height: 32px;
      position: absolute;
      top: 16px;
      right: 15px;
      background-color: #F3F3F3;
      border-radius: 3px; }
    .accordion-title button:after {
      content: '\e92a';
      font-family: "icomoon" !important;
      color: #50667E;
      font-size: 10px;
      position: absolute;
      top: 26px;
      right: 25px; }
    .accordion-title button:hover {
      color: #da5128; }

.accordion-item {
  padding: 15px 20px 20px;
  margin: 0; }
  .accordion-item-row {
    display: flex;
    align-items: flex-start; }
    .accordion-item-row:not(:last-child) {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 2px dashed #F3F3F3; }
    .accordion-item-row .ch-img {
      flex: 0 1 auto;
      width: 44px;
      height: 44px;
      display: flex; }
      .accordion-item-row .ch-img img {
        object-fit: cover;
        border-radius: 3px; }
    .accordion-item-row .ch-info {
      flex: 0 1 auto;
      width: calc(100% - 100px);
      padding-left: 15px; }
      .accordion-item-row .ch-info-text {
        margin-bottom: 5px; }
        .accordion-item-row .ch-info-text span {
          color: #1A3853;
          font-size: 0.875rem; }
      .accordion-item-row .ch-info-link {
        font-size: 0.875rem;
        color: #E76642;
        border-bottom: 1px dotted #E76642; }
        .accordion-item-row .ch-info-link:hover {
          border-bottom-color: transparent;
          color: #da5128; }
    .accordion-item-row .ch-count {
      flex: 0 1 auto;
      width: 56px;
      text-align: right; }
      .accordion-item-row .ch-count span {
        font-size: 0.875rem;
        color: #1A3853;
        font-weight: 600;
        white-space: nowrap; }

@media (min-width: 576px) {
  .product-ingredient {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; } }

.product-ingredient-item {
  flex: 0 1 auto;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 5px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row; }
  @media (min-width: 576px) {
    .product-ingredient-item {
      flex-direction: column;
      width: calc(100% / 3 - 10px); } }
  @media (min-width: 992px) {
    .product-ingredient-item {
      width: calc(25% - 10px); } }
  @media (min-width: 1110px) {
    .product-ingredient-item {
      width: calc(20% - 10px); } }
  @media (min-width: 1260px) {
    .product-ingredient-item {
      width: calc(100% / 6 - 10px); } }
  .product-ingredient-item-img {
    line-height: 1;
    width: 120px;
    overflow: hidden; }
    @media (min-width: 425px) {
      .product-ingredient-item-img {
        width: 150px; } }
    @media (min-width: 576px) {
      .product-ingredient-item-img {
        width: auto;
        height: 165px; } }
    .product-ingredient-item-img a {
      display: flex;
      height: 100%; }
    .product-ingredient-item-img img {
      width: 100%;
      object-fit: cover; }
      .product-ingredient-item-img img:hover {
        opacity: .8; }
  .product-ingredient-item-info {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 15px;
    width: calc(100% - 120px); }
    @media (min-width: 425px) {
      .product-ingredient-item-info {
        width: calc(100% - 150px); } }
    @media (min-width: 576px) {
      .product-ingredient-item-info {
        padding: 15px 10px 40px;
        width: auto;
        text-align: center;
        height: calc(100% - 165px); } }
    .product-ingredient-item-info .ch-title {
      margin-bottom: 5px;
      font-size: 1rem;
      color: #091922; }
      .product-ingredient-item-info .ch-title a {
        font-family: "Lora", serif;
        color: inherit; }
        .product-ingredient-item-info .ch-title a:hover {
          color: #da5128; }
    .product-ingredient-item-info .ch-weight {
      margin-bottom: 5px; }
      .product-ingredient-item-info .ch-weight span {
        color: #50667E;
        font-size: 0.875rem; }
    .product-ingredient-item-info .ch-price {
      margin-bottom: 10px; }
      @media (min-width: 576px) {
        .product-ingredient-item-info .ch-price {
          margin: auto 0 0 0; } }
      .product-ingredient-item-info .ch-price span {
        color: #091922; }
        .product-ingredient-item-info .ch-price span:nth-child(1) {
          font-size: 1.125rem;
          font-weight: 600; }
        .product-ingredient-item-info .ch-price span:nth-child(2) {
          font-size: 0.8125rem;
          margin-left: 5px; }
    .product-ingredient-item-info .ch-buttons {
      position: relative;
      width: 130px;
      height: 42px;
      overflow: hidden; }
      @media (min-width: 425px) {
        .product-ingredient-item-info .ch-buttons {
          width: 150px; } }
      @media (min-width: 576px) {
        .product-ingredient-item-info .ch-buttons {
          width: 100%;
          position: absolute;
          bottom: -24px;
          left: 50%;
          height: 48px;
          transform: translateX(-50%); } }
      .product-ingredient-item-info .ch-buttons .products-btns-button .btn {
        height: 42px;
        width: 42px;
        padding: 0; }
        .product-ingredient-item-info .ch-buttons .products-btns-button .btn:before {
          display: none; }

.recipe {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse; }
  @media (min-width: 992px) {
    .recipe {
      flex-direction: row; } }
  @media (max-width: 767.98px) {
    .recipe .pad-medium {
      padding: 15px; } }
  .recipe-content {
    flex: 0 1 auto; }
    @media (min-width: 992px) {
      .recipe-content {
        width: 65%;
        padding-right: 20px; } }
    @media (min-width: 1260px) {
      .recipe-content {
        padding-right: 30px;
        width: 67%; } }
  .recipe-sidebar {
    flex: 0 1 auto;
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .recipe-sidebar {
        margin-bottom: 0;
        width: 35%; } }
    @media (min-width: 1260px) {
      .recipe-sidebar {
        width: 33%; } }
    .recipe-sidebar-title {
      margin-bottom: 15px; }
      .recipe-sidebar-title span {
        text-transform: uppercase;
        font-weight: 600;
        color: #da5128;
        font-size: 1rem; }
    .recipe-sidebar-list {
      border-top: 1px solid #EBEBEB;
      padding-top: 15px; }
      .recipe-sidebar-list:not(:last-child) {
        margin-bottom: 30px; }
      .recipe-sidebar-list-item {
        padding-bottom: 15px;
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #EBEBEB; }
        .recipe-sidebar-list-item span {
          flex: 0 1 auto;
          font-size: 1rem;
          overflow-wrap: break-word;
          word-wrap: break-word;
          word-break: keep-all;
          line-break: normal;
          hyphens: auto; }
          .recipe-sidebar-list-item span:nth-child(1) {
            width: 70%;
            padding-right: 10px;
            color: #485059; }
          .recipe-sidebar-list-item span:nth-child(2) {
            width: 30%;
            text-align: right;
            font-weight: 500;
            color: #000; }

.search-result {
  padding: 0 15px; }
  @media (min-width: 576px) {
    .search-result {
      padding: 0 20px; } }
  @media (min-width: 768px) {
    .search-result {
      padding: 20px 40px; } }
  .search-result-item {
    padding: 20px 0; }
    @media (min-width: 576px) {
      .search-result-item {
        padding: 30px 0; } }
    .search-result-item:not(:last-child) {
      border-bottom: 1px solid #E0E0E3; }
    .search-result-item-category {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 10px; }
      .search-result-item-category .icon {
        flex: 0 1 auto;
        width: 18px;
        text-align: center;
        color: #9FB0BA;
        font-size: 0.9375rem; }
        .search-result-item-category .icon.icon-cloche {
          font-size: 0.8125rem; }
      .search-result-item-category span {
        flex: 0 1 auto;
        width: calc(100% - 18px);
        color: #1A3853;
        font-family: "Lora", serif;
        font-size: 0.8125rem;
        padding-left: 7px; }
    .search-result-item-title {
      margin-bottom: 10px; }
      .search-result-item-title a {
        color: #da5128;
        font-family: "Lora", serif;
        font-size: 1.125rem;
        font-weight: 500; }
        @media (min-width: 576px) {
          .search-result-item-title a {
            font-size: 1.375rem; } }
        .search-result-item-title a:hover {
          color: #E76642; }
    .search-result-item-text {
      line-height: 1.5; }
      .search-result-item-text span {
        color: #485059; }
        @media (min-width: 576px) {
          .search-result-item-text span {
            font-size: 1.0625rem; } }
        .search-result-item-text span b {
          color: #000; }

.thank {
  padding: 30px; }
  @media (min-width: 576px) {
    .thank {
      padding: 40px; } }
  @media (min-width: 992px) {
    .thank {
      padding: 70px 85px; } }

.thank-img {
  margin-bottom: 30px; }
  @media (min-width: 576px) {
    .thank-img {
      margin-bottom: 50px; } }
  .thank-img img {
    display: block;
    margin: 0 auto;
    width: 250px; }
    @media (min-width: 576px) {
      .thank-img img {
        width: auto; } }

@media (min-width: 425px) {
  .thank-row {
    display: flex;
    align-items: flex-start; } }

.thank-row:not(:last-child) {
  margin-bottom: 30px; }
  @media (min-width: 576px) {
    .thank-row:not(:last-child) {
      margin-bottom: 60px; } }

.thank-icon {
  display: none; }
  @media (min-width: 425px) {
    .thank-icon {
      display: block;
      flex: 0 1 auto;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      position: relative;
      background-color: #F1F3F8; } }
  @media (min-width: 576px) {
    .thank-icon {
      width: 64px;
      height: 64px; } }
  .thank-icon > .icon {
    color: #E76642;
    font-size: 1.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media (min-width: 576px) {
      .thank-icon > .icon {
        font-size: 1.75rem; } }
    .thank-icon > .icon.icon-heart {
      font-size: 1.125rem; }
      @media (min-width: 576px) {
        .thank-icon > .icon.icon-heart {
          font-size: 1.5rem; } }

@media (min-width: 425px) {
  .thank-item {
    flex: 0 1 auto;
    width: calc(100% - 48px);
    padding-left: 20px; } }

@media (min-width: 576px) {
  .thank-item {
    width: calc(100% - 64px);
    padding-left: 35px; } }

.thank-item-title {
  padding-top: 12px;
  margin-bottom: 15px; }
  @media (min-width: 576px) {
    .thank-item-title {
      padding-top: 15px;
      margin-bottom: 25px; } }
  .thank-item-title span {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1A3853; }
    @media (min-width: 576px) {
      .thank-item-title span {
        font-size: 1.5rem; } }

.thank-item-text p {
  color: #50667E;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.8; }
  @media (min-width: 576px) {
    .thank-item-text p {
      font-size: 1.125rem; } }
  .thank-item-text p b {
    font-weight: 600; }
  .thank-item-text p a,
  .thank-item-text p span.copy-to-clipboard {
    color: #da5128;
    font-weight: 500; }
    .thank-item-text p a:hover,
    .thank-item-text p span.copy-to-clipboard:hover {
      color: #E76642; }
  .thank-item-text p span.copy-to-clipboard:after {
    content: '\e96b';
    font-family: "icomoon" !important;
    color: #7D96A4;
    opacity: .5;
    margin-left: 7px;
    transition-duration: .2s; }
  .thank-item-text p span.copy-to-clipboard:hover {
    cursor: pointer; }
    .thank-item-text p span.copy-to-clipboard:hover:after {
      opacity: 1; }
  .thank-item-text p span.copy-to-clipboard.clicked:after {
    content: '\e937';
    color: #E76642;
    opacity: 1; }

.thank-row-feedback {
  padding-top: 30px;
  border-top: 2px dashed #e0e0e0; }
  @media (min-width: 576px) {
    .thank-row-feedback {
      padding-top: 60px; } }
  .thank-row-feedback .thank-icon .icon {
    color: #50667E; }

.thank-item-form-row {
  margin-top: 30px; }
  .thank-item-form-row .ch-title {
    margin-bottom: 20px; }
    .thank-item-form-row .ch-title span {
      font-weight: 600;
      color: #1A3853; }
  .thank-item-form-row .ch-add {
    margin-top: 20px;
    display: none; }
  .thank-item-form-row label {
    margin-right: 30px; }
    .thank-item-form-row label.open-text + .ch-add {
      display: block; }

.vacancy {
  padding: 15px 15px 5px;
  margin-bottom: 20px; }
  @media (min-width: 576px) {
    .vacancy {
      margin-bottom: 40px;
      padding: 30px 30px 10px; } }
  .vacancy-title {
    font-size: 1.5rem;
    margin-bottom: 30px; }
  .vacancy-wrap {
    display: flex;
    flex-wrap: wrap; }
    .vacancy-wrap .vacancy-list {
      flex: 0 1 auto;
      width: 100%; }
      @media (min-width: 992px) {
        .vacancy-wrap .vacancy-list:nth-last-child(3):first-child,
        .vacancy-wrap .vacancy-list:nth-last-child(3):first-child ~ .vacancy-list {
          width: calc(100% / 3); } }
      @media (min-width: 992px) {
        .vacancy-wrap .vacancy-list:nth-last-child(2):first-child,
        .vacancy-wrap .vacancy-list:nth-last-child(2):first-child ~ .vacancy-list {
          width: 50%; } }
  .vacancy-list {
    padding-right: 30px;
    margin-bottom: 30px; }
    .vacancy-list-title {
      margin-bottom: 20px; }
      .vacancy-list-title span {
        font-weight: 500;
        font-size: 1rem;
        text-transform: uppercase;
        color: #50667E; }
    .vacancy-list ul li {
      margin: 0 0 15px 20px !important; }
      .vacancy-list ul li:nth-child(n+6) {
        display: none; }
    .vacancy-list-btn {
      margin: 0 0 0 20px; }
      .vacancy-list-btn span {
        color: #da5128;
        font-size: 0.9375rem;
        position: relative; }
        .vacancy-list-btn span:after {
          content: '\e92a';
          font-family: "icomoon" !important;
          display: inline-block;
          margin-left: 7px;
          font-size: 8px; }
        .vacancy-list-btn span:before {
          content: attr(data-title);
          border-bottom: 1px dashed #da5128; }
  .vacancy-footer {
    padding-top: 10px;
    border-top: 1px solid #E0E0E3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center; }
    .vacancy-footer-info, .vacancy-footer-btn {
      flex: 0 1 auto;
      margin: 10px 0; }
    .vacancy-footer-info span {
      color: #50667E; }

.vacancy-list.opened ul li:nth-child(n+6) {
  display: block; }

.vacancy-list.opened .vacancy-list-btn span:after {
  transform: rotate(180deg); }

.vacancy-list.opened .vacancy-list-btn span:before {
  content: attr(data-mobile); }

.account {
  gap: 20px;
  flex-direction: column; }
  @media (min-width: 992px) {
    .account {
      flex-direction: row; } }
  @media (min-width: 1260px) {
    .account {
      gap: 30px; } }
  .account-left {
    width: 100%; }
    @media (min-width: 992px) {
      .account-left {
        width: 250px; } }
    @media (min-width: 1260px) {
      .account-left {
        width: 315px; } }
  .account-right {
    width: 100%; }
    @media (min-width: 992px) {
      .account-right {
        width: calc(100% - 270px); } }
    @media (min-width: 1260px) {
      .account-right {
        width: calc(100% - 345px); } }
    .account-right > div:not(:last-child) {
      margin-bottom: 20px; }
      @media (min-width: 1260px) {
        .account-right > div:not(:last-child) {
          margin-bottom: 30px; } }

.acc-title {
  padding: 16px;
  background-color: #50667E;
  border-bottom: 1px solid #F3F3F3;
  border-radius: 2px 2px 0 0; }
  @media (min-width: 992px) {
    .acc-title {
      padding: 18px 25px; } }
  .acc-title span {
    font-weight: 500;
    font-family: "Lora", serif;
    color: #fff;
    font-size: 1rem; }
    @media (min-width: 992px) {
      .acc-title span {
        font-size: 1.0625rem; } }

.acc-title-icon {
  display: flex;
  gap: 10px;
  margin-bottom: 15px; }
  .acc-title-icon .ch-icon {
    width: 24px; }
    .acc-title-icon .ch-icon .icon {
      color: #E76642;
      font-size: 1.5rem; }
      .acc-title-icon .ch-icon .icon.icon-wallet-w {
        font-size: 1.375rem; }
  .acc-title-icon .ch-title {
    width: calc(100% - 24);
    padding-left: 3px; }
    .acc-title-icon .ch-title span {
      color: #3f5267;
      font-family: "Lora", serif;
      font-size: 0.9375rem;
      font-weight: 600;
      text-transform: uppercase; }

.acc-block {
  padding: 25px 16px; }
  @media (min-width: 992px) {
    .acc-block {
      padding: 25px; } }

.acc-footer {
  border-top: 1px solid #EBEBEB;
  padding: 20px 24px; }
  .acc-footer-link {
    color: #da5128;
    font-size: 0.9375rem;
    border-bottom: 1px dashed #da5128; }
    .acc-footer-link:hover {
      border-bottom-color: transparent; }

.acc-sidebar-mobile {
  padding: 16px;
  background-color: #E76642;
  border-radius: 2px;
  width: 100%;
  position: relative; }
  .acc-sidebar-mobile:after {
    content: '\e932';
    font-family: "icomoon" !important;
    font-size: 0.875rem;
    position: absolute;
    right: 20px;
    top: 17px;
    color: #fff;
    transform: rotate(-90deg);
    font-weight: bold;
    transition-duration: .3s; }
  .acc-sidebar-mobile span {
    font-family: "Lora", serif;
    font-size: 1rem;
    color: #fff; }
  .acc-sidebar-mobile:hover, .acc-sidebar-mobile:focus {
    background-color: #da5128; }
  @media (min-width: 992px) {
    .acc-sidebar-mobile {
      display: none; } }

@media (max-width: 991.98px) {
  .acc-sidebar-list {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 400ms; } }

.acc-sidebar-list-item {
  overflow: hidden; }
  .acc-sidebar-list-item li:not(:last-child) {
    border: 1px solid #F3F3F3; }
  .acc-sidebar-list-item li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    color: #1A3853;
    padding: 15px 20px; }
    .acc-sidebar-list-item li a span.ch-count {
      display: block;
      padding: 6px 8px;
      background-color: #E76642;
      border-radius: 2px;
      text-align: center;
      line-height: 1;
      color: #fff;
      font-size: 0.75rem; }
  .acc-sidebar-list-item li.active a {
    color: #da5128;
    border-left: 3px solid #E76642;
    cursor: default; }
  .acc-sidebar-list-item li:not(.active) a:hover {
    background-color: #F1F3F8; }

.acc-sidebar.opened .acc-sidebar-mobile:after {
  transform: rotate(90deg); }

.acc-sidebar.opened .acc-sidebar-list {
  grid-template-rows: 1fr; }

.account-right .block-menu-list {
  padding: 0; }

.account-right .block-menu {
  text-align: left; }

.account-right .checkout-add-company-num .ch-input {
  margin-bottom: 0; }

.pagetitle-acc-order {
  display: flex;
  align-items: flex-start; }
  .pagetitle-acc-order .ch-btn {
    width: 32px;
    padding-top: 3px; }
    @media (min-width: 768px) {
      .pagetitle-acc-order .ch-btn {
        padding-top: 7px; } }
    @media (min-width: 992px) {
      .pagetitle-acc-order .ch-btn {
        padding-top: 10px; } }
    .pagetitle-acc-order .ch-btn .icon {
      transform: rotate(180deg);
      font-size: 1.75rem;
      color: #E76642;
      display: inline-block; }
    .pagetitle-acc-order .ch-btn:hover .icon {
      color: #da5128; }
  .pagetitle-acc-order .pagetitle-simple-item {
    width: calc(100% - 32px);
    padding-left: 12px; }
    .pagetitle-acc-order .pagetitle-simple-item span {
      font-size: 1.625rem; }
      @media (min-width: 576px) {
        .pagetitle-acc-order .pagetitle-simple-item span {
          font-size: 1.75rem; } }

.acc-footer .checkout-add-btn span {
  font-size: 0.9375rem; }

.acc-address-title {
  padding: 20px 60px 16px 25px;
  background-color: #F8F9FE;
  border-bottom: 1px solid #F3F3F3;
  position: relative; }
  .acc-address-title label span span {
    font-family: "Lora", serif;
    color: #3f5267; }

.acc-address-edit {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: rgba(224, 224, 227, 0.5); }
  .acc-address-edit .icon {
    color: rgba(18, 137, 167, 0.8); }
  .acc-address-edit:hover .icon {
    color: #fff; }

.acc-address-row {
  position: relative;
  padding-left: 34px; }
  .acc-address-row + .acc-address-row {
    margin-top: 25px; }
  .acc-address-row > .icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.375rem;
    color: #B5C6CF; }
    .acc-address-row > .icon.icon-benzene-ring {
      font-size: 1.5rem; }
    .acc-address-row > .icon.icon-comment-dots {
      font-size: 1.25rem; }
  .acc-address-row > span {
    display: block;
    color: #3f5267;
    font-size: 0.9375rem; }
    .acc-address-row > span.f-medium {
      color: #091922; }
    .acc-address-row > span + span {
      margin-top: 10px; }
    .acc-address-row > span .tooltip {
      margin-left: 8px;
      display: inline-block;
      vertical-align: middle; }
      .acc-address-row > span .tooltip .icon {
        font-size: 1.125rem;
        color: #7D96A4; }
      .acc-address-row > span .tooltip:hover {
        cursor: pointer; }
        .acc-address-row > span .tooltip:hover .icon {
          color: #E76642; }

.acc-birthday {
  border: 1px solid rgba(18, 137, 167, 0.5);
  background-color: #E8F8FD;
  padding: 15px;
  gap: 20px; }
  @media (min-width: 576px) {
    .acc-birthday {
      align-items: center; } }
  .acc-birthday-title {
    width: 100%; }
    @media (min-width: 576px) {
      .acc-birthday-title {
        width: calc(100% - 270px); } }
    @media (min-width: 1260px) {
      .acc-birthday-title {
        width: auto; } }
    .acc-birthday-title span {
      color: #0d687e;
      font-size: 0.9375rem; }
      @media (min-width: 1260px) {
        .acc-birthday-title span {
          font-size: 1rem; } }
  .acc-birthday-input {
    position: relative;
    width: 100%; }
    @media (min-width: 576px) {
      .acc-birthday-input {
        width: 250px; } }
    @media (min-width: 1260px) {
      .acc-birthday-input {
        width: auto;
        flex: 1 0 auto !important; } }
    .acc-birthday-input-btn {
      position: absolute;
      top: 8px;
      right: 8px;
      height: 32px;
      width: 32px;
      background-color: #e0e0e0;
      border-radius: 3px;
      pointer-events: none; }
      .acc-birthday-input-btn .icon {
        font-size: 1.5rem;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .acc-birthday-input input {
      min-height: 48px; }

input.active + .acc-birthday-input-btn {
  background-color: #1289A7;
  pointer-events: auto; }
  input.active + .acc-birthday-input-btn:hover {
    background-color: #0d687e; }

.acc-bonuses {
  gap: 16px; }
  @media (min-width: 768px) {
    .acc-bonuses {
      gap: 24px; } }
  .acc-bonuses-item {
    width: 100%;
    border: 1px solid rgba(181, 198, 207, 0.7);
    border-radius: 3px;
    padding: 20px 15px; }
    @media (min-width: 425px) {
      .acc-bonuses-item {
        width: calc(50% - 8px); } }
    @media (min-width: 768px) {
      .acc-bonuses-item {
        width: calc(50% - 12px); } }
    @media (min-width: 1260px) {
      .acc-bonuses-item {
        width: calc(25% - 19px); } }
    .acc-bonuses-item-title {
      display: flex;
      align-items: center;
      gap: 10px; }
      .acc-bonuses-item-title .icon {
        font-size: 1.125rem; }
        .acc-bonuses-item-title .icon:not(.c-red) {
          color: #E76642; }
      .acc-bonuses-item-title span {
        width: calc(100% - 20px);
        color: #50667E;
        font-size: 0.875rem;
        font-weight: 500;
        font-family: "Lora", serif; }
    .acc-bonuses-item-info {
      padding-left: 30px;
      margin-top: 10px; }
      .acc-bonuses-item-info span:not(.c-red) {
        color: #163450; }
      .acc-bonuses-item-info span:first-child {
        font-weight: 600;
        font-size: 1.125rem; }
      .acc-bonuses-item-info span:nth-child(2) {
        font-weight: 500;
        font-size: 0.8125rem;
        margin-left: 6px; }

.acc-referal {
  border-top: 1px solid #EBEBEB;
  margin-top: 10px; }
  .acc-referal-title {
    margin-bottom: 10px; }
    .acc-referal-title span {
      font-weight: 500;
      color: #181A20;
      font-size: 1.0625rem; }
  .acc-referal .content {
    font-size: 0.9375rem; }
  .acc-referal-code {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px; }
    .acc-referal-code-item {
      padding: 15px 20px;
      background-color: #F1F3F8; }
      .acc-referal-code-item span {
        font-size: 0.9375rem;
        font-weight: 600;
        color: #091922; }
    .acc-referal-code-copy {
      font-size: 0.875rem;
      color: #da5128;
      border-bottom: 1px dashed #da5128; }
      .acc-referal-code-copy:hover {
        border-bottom-color: transparent; }
      .acc-referal-code-copy-success {
        display: none;
        font-size: 1.25rem; }
        .acc-referal-code-copy-success.visible {
          display: block; }

.acc-bonuses-info {
  position: relative;
  padding-left: 40px;
  margin-top: 30px; }
  .acc-bonuses-info > .icon {
    font-size: 1.875rem;
    color: #E76642;
    position: absolute;
    top: -3px;
    left: 0; }
  .acc-bonuses-info > span {
    font-family: "Lora", serif;
    font-weight: 500;
    color: #1A3853; }

.acc-bonuses-table-title {
  padding: 10px 0 20px; }
  @media (max-width: 767.98px) {
    .acc-bonuses-table-title {
      display: none !important; } }
  .acc-bonuses-table-title .ch-col {
    font-weight: 500;
    color: #1A3853;
    font-size: 0.875rem; }

.acc-bonuses-table-row {
  padding: 20px 0; }
  .acc-bonuses-table-row:last-child {
    padding-bottom: 10px; }
  .acc-bonuses-table-row .ch-col {
    padding-right: 10px;
    color: #091922;
    font-size: 0.875rem; }
    @media (min-width: 768px) {
      .acc-bonuses-table-row .ch-col {
        color: #1A3853; } }
    .acc-bonuses-table-row .ch-col:before {
      content: attr(data-title);
      font-size: 0.8125rem;
      color: #7D96A4;
      font-weight: 500;
      display: block;
      margin-bottom: 2px; }
      @media (min-width: 768px) {
        .acc-bonuses-table-row .ch-col:before {
          display: none; } }
    .acc-bonuses-table-row .ch-col:empty:before {
      display: none; }
    .acc-bonuses-table-row .ch-col a {
      text-decoration: underline; }
      .acc-bonuses-table-row .ch-col a:hover {
        text-decoration: none; }

.acc-bonuses-table-title,
.acc-bonuses-table-row {
  display: flex;
  flex-wrap: wrap; }
  .acc-bonuses-table-title:not(:last-child),
  .acc-bonuses-table-row:not(:last-child) {
    border-bottom: 1px solid #E0E0E3; }
  .acc-bonuses-table-title .ch-col,
  .acc-bonuses-table-row .ch-col {
    flex: 0 1 auto; }
    .acc-bonuses-table-title .ch-col:nth-child(1), .acc-bonuses-table-title .ch-col:nth-child(2), .acc-bonuses-table-title .ch-col:nth-child(4),
    .acc-bonuses-table-row .ch-col:nth-child(1),
    .acc-bonuses-table-row .ch-col:nth-child(2),
    .acc-bonuses-table-row .ch-col:nth-child(4) {
      width: 50%; }
      @media (min-width: 425px) {
        .acc-bonuses-table-title .ch-col:nth-child(1), .acc-bonuses-table-title .ch-col:nth-child(2), .acc-bonuses-table-title .ch-col:nth-child(4),
        .acc-bonuses-table-row .ch-col:nth-child(1),
        .acc-bonuses-table-row .ch-col:nth-child(2),
        .acc-bonuses-table-row .ch-col:nth-child(4) {
          width: 33.3333%; } }
      @media (min-width: 768px) {
        .acc-bonuses-table-title .ch-col:nth-child(1), .acc-bonuses-table-title .ch-col:nth-child(2), .acc-bonuses-table-title .ch-col:nth-child(4),
        .acc-bonuses-table-row .ch-col:nth-child(1),
        .acc-bonuses-table-row .ch-col:nth-child(2),
        .acc-bonuses-table-row .ch-col:nth-child(4) {
          width: 15%; } }
    .acc-bonuses-table-title .ch-col:nth-child(3),
    .acc-bonuses-table-row .ch-col:nth-child(3) {
      width: 100%;
      order: 1;
      margin-top: 10px; }
      @media (min-width: 768px) {
        .acc-bonuses-table-title .ch-col:nth-child(3),
        .acc-bonuses-table-row .ch-col:nth-child(3) {
          margin-top: 0;
          order: 0;
          width: 55%; } }
    @media (max-width: 424.98px) {
      .acc-bonuses-table-title .ch-col:nth-child(4),
      .acc-bonuses-table-row .ch-col:nth-child(4) {
        margin-top: 10px; } }

.acc-calc {
  gap: 20px;
  align-items: center; }
  @media (min-width: 576px) {
    .acc-calc {
      gap: 30px; } }
  .acc-calc-col {
    width: 100%; }
    @media (min-width: 425px) {
      .acc-calc-col {
        width: calc(33% - 20px); } }
    @media (min-width: 768px) {
      .acc-calc-col {
        width: calc(25% - 24px); } }
    @media (max-width: 767.98px) {
      .acc-calc-col:first-child {
        width: 100%; } }
    .acc-calc-col .ch-title {
      margin-bottom: 5px;
      display: block;
      color: #7D96A4;
      font-size: 0.8125rem; }
    .acc-calc-col .ch-block {
      font-size: 0.9375rem;
      font-weight: 500;
      color: #da5128; }
      .acc-calc-col .ch-block:after {
        content: attr(data-title);
        margin-left: 5px; }
  .acc-calc-info {
    font-size: 0.9375rem;
    color: #3f5267; }

.acc-company {
  position: relative;
  padding-right: 50px; }
  .acc-company:not(:last-child) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0; }
  .acc-company .acc-address-edit {
    top: 0;
    right: 0; }
  .acc-company-title, .acc-company-info {
    padding-left: 55px; }
  .acc-company-title {
    position: relative;
    margin-bottom: 15px; }
    .acc-company-title .ch-icon {
      position: absolute;
      top: 5px;
      left: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: #F1F3F8; }
      .acc-company-title .ch-icon > .icon {
        font-size: 1.125rem;
        color: #E76642;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .acc-company-title .ch-title {
      padding-top: 14px; }
      .acc-company-title .ch-title span {
        font-size: 1rem;
        color: #1A3853;
        font-weight: 500; }
  .acc-company-info span {
    display: block;
    font-size: 0.9375rem;
    color: #50667E; }
    .acc-company-info span:not(:last-child) {
      margin-bottom: 5px; }

.acc-custom-top {
  align-items: center;
  justify-content: space-between;
  gap: 20px; }
  .acc-custom-top-btns {
    gap: 15px; }

.acc-custom-info {
  gap: 20px; }
  @media (min-width: 500px) {
    .acc-custom-info {
      padding-left: 36px; } }
  .acc-custom-info-item .ch-title {
    margin-bottom: 2px; }
    .acc-custom-info-item .ch-title span {
      font-size: 0.8125rem;
      color: #7D96A4;
      font-weight: 500; }
  .acc-custom-info-item .ch-text > span:first-child {
    color: #091922;
    font-size: 0.9375rem;
    line-height: 1.1; }
  .acc-custom-info-item .ch-text > span.tooltip {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px; }
    .acc-custom-info-item .ch-text > span.tooltip .icon {
      color: #717C89;
      font-size: 1.0625rem; }
    .acc-custom-info-item .ch-text > span.tooltip:hover {
      cursor: pointer; }
      .acc-custom-info-item .ch-text > span.tooltip:hover .icon {
        color: #E76642; }
  .acc-custom-info-item > .btn {
    margin-top: 10px; }
  .acc-custom-info-comment {
    color: #3f5267;
    font-size: 0.9375rem; }

.acc-custom-info .acc-custom-info-item {
  width: calc(50% - 10px); }
  @media (min-width: 768px) {
    .acc-custom-info .acc-custom-info-item {
      width: calc(25% - 15px); } }

@media (max-width: 767.98px) {
  .acc-custom-list .product-row-price {
    align-self: end;
    margin-bottom: 0 !important; } }

@media (max-width: 767.98px) {
  .acc-custom-list .product-row-weight {
    align-self: start; } }

.acc-custom-footer {
  gap: 20px;
  align-items: center;
  justify-content: space-between; }

.acc-custom-sum-item {
  gap: 10px;
  flex-direction: column; }
  .acc-custom-sum-item:not(:last-of-type) {
    margin-bottom: 15px; }
  @media (min-width: 576px) {
    .acc-custom-sum-item {
      flex-direction: row; } }

.acc-custom-sum-title {
  width: 140px; }
  .acc-custom-sum-title span {
    color: #7D96A4;
    font-weight: 500;
    font-size: 0.875rem; }

.acc-custom-sum-info span {
  color: #1A3853;
  font-size: 0.875rem;
  font-weight: 500; }
  .acc-custom-sum-info span:not(:last-of-type):after {
    content: '/';
    margin: 0 7px;
    color: #B5C6CF; }

.acc-order {
  border: 1px solid #E0E0E3; }
  .acc-order + .acc-order {
    margin-top: 30px; }
  .acc-order-title {
    background-color: rgba(181, 198, 207, 0.2);
    border-bottom: 1px solid #E0E0E3;
    padding: 10px 16px;
    gap: 15px;
    justify-content: space-between; }
    @media (min-width: 576px) {
      .acc-order-title {
        gap: 20px;
        justify-content: flex-start; } }
    .acc-order-title-info {
      align-items: center;
      gap: 6px;
      line-height: 1; }
      .acc-order-title-info span {
        white-space: nowrap;
        font-size: 0.9375rem; }
      .acc-order-title-info .ch-num {
        font-weight: 600;
        color: #181A20; }
      .acc-order-title-info .ch-date {
        color: #3f5267; }
  .acc-order-block {
    padding: 20px 16px;
    align-items: center; }
  .acc-order-pay {
    width: 100%;
    margin-bottom: 10px; }
    @media (min-width: 425px) {
      .acc-order-pay {
        margin-bottom: 0;
        width: 40%; } }
    @media (min-width: 768px) {
      .acc-order-pay {
        padding-right: 10px;
        width: 20%; } }
    .acc-order-pay-status {
      margin-bottom: 5px; }
      @media (min-width: 425px) {
        .acc-order-pay-status {
          margin-bottom: 8px; } }
      .acc-order-pay-status span {
        font-size: 0.875rem; }
    .acc-order-pay-price span {
      font-size: 0.9375rem;
      color: #1A3853;
      font-weight: 600; }
  .acc-order-delivery {
    width: 100%; }
    @media (min-width: 425px) {
      .acc-order-delivery {
        width: 60%; } }
    @media (min-width: 768px) {
      .acc-order-delivery {
        padding-right: 10px;
        width: 25%; } }
    .acc-order-delivery-link {
      margin-bottom: 8px; }
      .acc-order-delivery-link .btn {
        font-size: 0.875rem;
        color: #0d687e;
        border-bottom: 1px dashed #0d687e;
        line-height: 1.3 !important; }
        .acc-order-delivery-link .btn:hover {
          border-bottom-color: transparent; }
    .acc-order-delivery-time {
      line-height: 1; }
      .acc-order-delivery-time span {
        font-size: 0.8125rem;
        color: #3f5267; }
  .acc-order-imgs {
    margin-top: 20px;
    width: 100%;
    display: flex;
    gap: 8px;
    padding-right: 10px; }
    @media (min-width: 768px) {
      .acc-order-imgs {
        margin-top: 0;
        width: calc(55% - 120px); } }
    .acc-order-imgs .ch-img {
      display: flex;
      border: 1px solid #B5C6CF;
      border-radius: 2px;
      width: 64px; }
      @media (min-width: 768px) {
        .acc-order-imgs .ch-img {
          width: auto; } }
      .acc-order-imgs .ch-img img {
        object-fit: cover; }
    .acc-order-imgs .ch-link {
      display: flex;
      align-items: center; }
      .acc-order-imgs .ch-link a {
        color: #0d687e;
        font-size: 0.8125rem;
        font-weight: 500;
        text-decoration: underline; }
        .acc-order-imgs .ch-link a:hover {
          text-decoration: none; }
  .acc-order-btns {
    width: 100%;
    margin-top: 20px;
    display: flex;
    gap: 15px; }
    @media (min-width: 768px) {
      .acc-order-btns {
        display: block;
        margin-top: 0;
        width: 120px; } }
    @media (min-width: 768px) {
      .acc-order-btns .btn {
        width: 100%; } }
    @media (min-width: 768px) {
      .acc-order-btns .btn:nth-child(2) {
        margin-top: 8px; } }

@media (min-width: 768px) {
  .acc-personal {
    gap: 0 30px; } }

.acc-personal > div {
  width: 100%; }
  @media (min-width: 768px) {
    .acc-personal > div {
      width: calc(50% - 15px); } }

.acc-personal-code {
  margin-top: 20px; }
  .acc-personal-code .ch-input {
    width: 150px; }
  .acc-personal-code .ch-text {
    width: 100%;
    margin-top: 10px; }
    @media (min-width: 576px) {
      .acc-personal-code .ch-text {
        margin-top: 20px;
        padding-left: 20px;
        width: calc(100% - 150px); } }
    .acc-personal-code .ch-text span {
      display: block;
      font-size: 0.875rem;
      color: #717C89; }
      .acc-personal-code .ch-text span + span {
        margin-top: 10px; }
      .acc-personal-code .ch-text span b {
        display: block;
        margin-top: 2px; }

.acc-personal-add {
  gap: 30px; }
  .acc-personal-add-item {
    width: 100%;
    border: 1px solid rgba(181, 198, 207, 0.7);
    border-radius: 3px;
    padding: 20px 20px 50px;
    position: relative;
    transition-duration: .2s; }
    @media (min-width: 768px) {
      .acc-personal-add-item {
        width: calc(50% - 15px); } }
    .acc-personal-add-item:after {
      content: '\e9be';
      font-family: "icomoon" !important;
      position: absolute;
      bottom: 12px;
      right: 12px;
      color: #B5C6CF;
      font-size: 1.5rem;
      transition-duration: .2s; }
    .acc-personal-add-item .ch-title {
      align-items: center; }
      .acc-personal-add-item .ch-title-icon {
        width: 36px;
        height: 36px;
        background-color: #F1F3F8;
        border-radius: 50%;
        position: relative; }
        .acc-personal-add-item .ch-title-icon > .icon {
          color: #E76642;
          font-size: 1.25rem;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .acc-personal-add-item .ch-title-item {
        width: calc(100% - 36px);
        padding-left: 20px;
        color: #50667E;
        font-family: "Lora", serif;
        font-size: 1rem;
        font-weight: 500; }
    .acc-personal-add-item .ch-info {
      margin-top: 10px;
      padding-left: 56px; }
    .acc-personal-add-item > a {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .acc-personal-add-item:hover {
      border-color: #E76642;
      background-color: #FFEDE8; }
      .acc-personal-add-item:hover:after {
        color: #E76642; }

.acc-rate-products {
  position: relative; }
  @media (min-width: 576px) {
    .acc-rate-products {
      padding: 0 30px; } }
  .acc-rate-products .slick-arrow {
    position: absolute;
    top: -78px;
    transition-duration: .2s;
    z-index: 9;
    font-size: 38px;
    color: #F1F3F8; }
    @media (min-width: 576px) {
      .acc-rate-products .slick-arrow {
        color: #50667E;
        top: calc(46% - 19px); } }
    .acc-rate-products .slick-arrow.slick-next {
      right: -5px; }
      @media (min-width: 576px) {
        .acc-rate-products .slick-arrow.slick-next {
          right: -40px; } }
    .acc-rate-products .slick-arrow.slick-prev {
      left: calc(100% - 80px); }
      @media (min-width: 576px) {
        .acc-rate-products .slick-arrow.slick-prev {
          left: -40px; } }
    .acc-rate-products .slick-arrow:hover {
      cursor: pointer;
      color: #fff; }
      @media (min-width: 576px) {
        .acc-rate-products .slick-arrow:hover {
          color: #E76642; } }
    .acc-rate-products .slick-arrow.slick-disabled {
      color: #9FB0BA;
      cursor: default; }
  .acc-rate-products .item {
    padding: 5px; }
    @media (min-width: 576px) {
      .acc-rate-products .item {
        padding: 5px 10px; } }

.products.acc-rate-product {
  text-align: center;
  width: 100%;
  box-shadow: 0 2px 6px 3px rgba(68, 68, 68, 0.07); }
  .products.acc-rate-product .products-panel {
    left: calc(50% - 60px);
    height: 36px;
    right: auto;
    width: 120px;
    justify-content: center; }
  .products.acc-rate-product .products-info {
    padding-top: 25px; }
  .products.acc-rate-product .products-title {
    font-size: 0.9375rem; }
  .products.acc-rate-product .products-btns {
    width: auto !important;
    margin: 10px auto !important; }
    .products.acc-rate-product .products-btns .btn {
      width: auto;
      padding: 0 25px;
      border-radius: 22px; }
  .products.acc-rate-product .products-bonuces {
    display: block;
    margin: 10px auto !important; }
    @media (min-width: 992px) {
      .products.acc-rate-product .products-bonuces {
        margin-top: 5px; } }

#popupAccRate .popup-title-item {
  font-size: 1.5rem; }

.product-row {
  align-items: center; }
  .product-row:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0; }
  .product-row-img {
    grid-area: pr-img;
    width: 80px;
    height: 80px;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    position: relative; }
    @media (min-width: 425px) {
      .product-row-img {
        width: 100px; } }
    .product-row-img img {
      width: 100%;
      object-fit: cover;
      display: block; }
    .product-row-img a,
    .product-row-img .a-mobile {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
      .product-row-img a:before,
      .product-row-img .a-mobile:before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 28px;
        height: 28px;
        background-color: rgba(181, 198, 207, 0.8);
        border-radius: 14px 0 5px 0;
        z-index: 2;
        transition-duration: .2s; }
      .product-row-img a:after,
      .product-row-img .a-mobile:after {
        content: '\e92d';
        font-family: "icomoon" !important;
        color: #fff;
        font-size: 1rem;
        z-index: 3;
        position: absolute;
        bottom: 2px;
        right: 5px; }
    .product-row-img:hover a:before {
      background-color: #50667E; }
  .product-row-title {
    grid-area: pr-title;
    margin-bottom: 5px; }
    @media (min-width: 768px) {
      .product-row-title {
        margin-bottom: 0;
        padding: 0 10px 0 15px; } }
    .product-row-title-item a,
    .product-row-title-item .a-mobile {
      font-weight: 500;
      font-family: "Lora", serif;
      font-size: 1rem;
      color: #091922;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: keep-all;
      line-break: normal;
      hyphens: auto; }
      .product-row-title-item a:hover,
      .product-row-title-item .a-mobile:hover {
        color: #da5128; }
    .product-row-title-sub {
      margin-bottom: 5px; }
      .product-row-title-sub span {
        font-size: 0.8125rem;
        font-family: "Lora", serif;
        color: #50667E; }
  .product-row-weight {
    grid-area: pr-weight;
    padding-left: 45px;
    position: relative; }
    .product-row-weight:before {
      content: '\e92e';
      font-family: "icomoon" !important;
      font-size: 1rem;
      color: #9FB0BA;
      position: absolute;
      top: 0;
      left: 15px; }
    .product-row-weight span {
      font-size: 0.8125rem;
      color: #1A3853;
      font-weight: 500; }
  .product-row-price {
    grid-area: pr-price;
    padding-left: 15px;
    margin-bottom: 5px; }
    @media (min-width: 768px) {
      .product-row-price {
        padding-left: 0;
        margin-bottom: 0; } }
    .product-row-price-item {
      margin-bottom: 5px; }
      .product-row-price-item span {
        font-size: 1rem;
        font-weight: 500;
        color: #091922; }
    .product-row-price-bonus {
      position: relative;
      padding-left: 13px;
      line-height: 1.1; }
      .product-row-price-bonus:before {
        content: '\e90f';
        font-family: "icomoon" !important;
        font-size: 9px;
        color: #EE5A24;
        position: absolute;
        top: 5px;
        left: 0; }
      .product-row-price-bonus span {
        font-size: 0.8125rem; }
        .product-row-price-bonus span.c-orange {
          font-weight: 500;
          margin-right: 3px; }
        .product-row-price-bonus span:not(.c-orange) {
          color: #717C89; }
  .product-row-btns {
    grid-area: pr-btns;
    margin-top: 20px; }
    @media (min-width: 425px) {
      .product-row-btns {
        margin-top: 0;
        text-align: right; } }
    .product-row-btns .btn + .btn {
      margin-left: 10px; }

.product-row {
  display: grid;
  grid-template-rows: auto;
  align-items: start;
  grid-template-columns: 80px calc(100% - 80px);
  grid-template-areas: 'pr-title pr-title' 'pr-img pr-price' 'pr-img pr-weight' 'pr-btns pr-btns'; }
  @media (min-width: 425px) {
    .product-row {
      align-items: center;
      grid-template-columns: 100px calc(100% - 235px) 135px;
      grid-template-areas: 'pr-title pr-title pr-title' 'pr-img pr-price pr-btns' 'pr-img pr-weight pr-btns'; } }
  @media (min-width: 768px) {
    .product-row {
      grid-template-columns: 100px calc(60% - 100px) calc(40% - 135px) 135px;
      grid-template-areas: 'pr-img pr-title pr-price pr-btns' 'pr-img pr-weight pr-price pr-btns'; } }

.offer .page-menu {
  transform: none;
  position: relative;
  top: 0; }
  .offer .page-menu-item {
    padding-top: 0;
    padding-bottom: 0; }
    .offer .page-menu-item a {
      padding: 13px; }

.header-offer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999; }
  .header-offer-top {
    overflow-x: hidden;
    background-color: #fff;
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 991; }
  .header-offer-wrap {
    display: flex; }
  .header-offer-clear {
    height: 114px; }
    @media (min-width: 992px) {
      .header-offer-clear {
        height: 121px; } }

.header-offer-logo {
  flex: 0 1 auto;
  width: 70px;
  padding: 12px 10px 8px;
  line-height: 1;
  background-color: #50667E;
  position: relative;
  box-shadow: 0 5px 24px 6px rgba(0, 0, 0, 0.1); }
  @media (min-width: 992px) {
    .header-offer-logo {
      width: 100px; } }
  .header-offer-logo img {
    width: 48px;
    position: relative;
    z-index: 2; }
  .header-offer-logo:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -9999px;
    background-color: #50667E;
    width: calc(100% + 9999px);
    z-index: 1; }

.header-offer-info {
  display: flex;
  align-items: stretch;
  width: calc(100% - 70px); }
  @media (min-width: 992px) {
    .header-offer-info {
      width: calc(100% - 100px); } }
  .header-offer-info-btns {
    flex: 0 1 auto;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 15px; }
    @media (min-width: 425px) {
      .header-offer-info-btns {
        padding-left: 24px;
        gap: 24px; } }
    .header-offer-info-btns .ch-button {
      flex: 0 1 auto;
      display: flex;
      align-items: center;
      flex-direction: column;
      line-height: 1;
      gap: 4px; }
      @media (min-width: 768px) {
        .header-offer-info-btns .ch-button {
          gap: 8px;
          flex-direction: row; } }
      .header-offer-info-btns .ch-button .icon {
        font-size: 1.75rem;
        color: #7D96A4; }
        @media (min-width: 768px) {
          .header-offer-info-btns .ch-button .icon {
            font-size: 2.25rem; } }
      .header-offer-info-btns .ch-button span {
        display: block;
        font-size: 0.75rem;
        color: #091922;
        white-space: nowrap; }
        @media (min-width: 768px) {
          .header-offer-info-btns .ch-button span {
            font-size: 0.875rem; } }
      .header-offer-info-btns .ch-button:hover .icon,
      .header-offer-info-btns .ch-button:hover span {
        color: #da5128; }
  .header-offer-info-contact {
    flex: 0 1 auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    line-height: 1; }
    .header-offer-info-contact .ch-item {
      display: flex;
      align-items: center;
      gap: 8px; }
      .header-offer-info-contact .ch-item-icon, .header-offer-info-contact .ch-item-title {
        flex: 0 1 auto;
        transition-duration: .2s; }
      .header-offer-info-contact .ch-item-icon {
        display: block;
        width: 34px;
        height: 34px;
        background-color: #E76642;
        border-radius: 50%;
        position: relative; }
        @media (min-width: 992px) {
          .header-offer-info-contact .ch-item-icon {
            width: 36px;
            height: 36px; } }
        .header-offer-info-contact .ch-item-icon > .icon {
          font-size: 1.25rem;
          color: #fff;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .header-offer-info-contact .ch-item-title {
        display: none; }
        @media (min-width: 576px) {
          .header-offer-info-contact .ch-item-title {
            display: block;
            font-size: 0.875rem;
            line-height: 1.3;
            color: #1A3853;
            border-bottom: 1px dashed #1A3853;
            white-space: nowrap;
            width: calc(100% - 36px); } }
        @media (min-width: 992px) {
          .header-offer-info-contact .ch-item-title {
            font-size: 0.9375rem; } }
      .header-offer-info-contact .ch-item:hover .ch-item-icon {
        background-color: #da5128; }
      .header-offer-info-contact .ch-item:hover .ch-item-title {
        color: #da5128;
        border-bottom-color: transparent; }

.header-offer.sticky .header-offer-logo,
.header-offer.sticky .header-offer-info {
  transition-duration: .2s; }
  .header-offer.sticky .header-offer-logo img,
  .header-offer.sticky .header-offer-info img {
    width: 32px;
    height: auto;
    transition-duration: .2s; }
    @media (min-width: 992px) {
      .header-offer.sticky .header-offer-logo img,
      .header-offer.sticky .header-offer-info img {
        width: 40px; } }

@media (max-width: 767.98px) {
  .header-offer.sticky .header-offer-info-btns .ch-button span {
    display: none; } }

.header-offer.sticky + .header-offer-clear {
  height: 110px;
  transition-duration: .2s; }
  @media (min-width: 992px) {
    .header-offer.sticky + .header-offer-clear {
      height: 118px; } }

.popup-offer-manager {
  margin-bottom: 20px; }
  .popup-offer-manager span {
    font-size: 0.875rem; }
    .popup-offer-manager span:first-child {
      margin-right: 5px;
      color: #717C89; }
    .popup-offer-manager span:last-child {
      font-weight: 500;
      color: #1A3853; }

.popup-offer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 30px; }
  .popup-offer-contact-icon {
    flex: 0 1 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    position: relative; }
    .popup-offer-contact-icon > .icon {
      font-size: 1.125rem;
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .popup-offer-contact-icon > .icon.icon-c_phone {
        font-size: 1.25rem; }
    .popup-offer-contact-icon.ch-phone {
      background-color: #E76642; }
    .popup-offer-contact-icon.ch-whatsapp {
      background-color: #25D366; }
    .popup-offer-contact-icon.ch-telegram {
      background-color: #229ED9; }
    .popup-offer-contact-icon.ch-mail {
      background-color: #50667E; }
  .popup-offer-contact-info {
    flex: 0 1 auto;
    line-height: 1;
    width: calc(100% - 42px);
    padding-left: 15px; }
    .popup-offer-contact-info > span {
      color: #091922;
      font-size: 0.9375rem;
      font-weight: 500;
      white-space: nowrap;
      border-bottom: 1px dashed #50667E; }
  .popup-offer-contact:hover span {
    border-bottom-color: transparent;
    color: #da5128; }

.offer-summary {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  border-radius: 3px; }
  @media (min-width: 576px) {
    .offer-summary {
      padding: 30px; } }
  @media (min-width: 768px) {
    .offer-summary {
      padding: 40px; } }
  @media (min-width: 992px) {
    .offer-summary {
      padding: 0;
      background-color: transparent;
      box-shadow: none;
      border-radius: 0;
      display: flex;
      align-items: stretch; } }

.offer-summary-info {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #D1D1D1; }
  @media (min-width: 992px) {
    .offer-summary-info {
      padding-bottom: 0;
      border-bottom: none;
      margin-bottom: 0;
      flex: 0 1 auto;
      width: 40%; } }
  @media (min-width: 1110px) {
    .offer-summary-info {
      width: 35%; } }
  @media (min-width: 992px) {
    .offer-summary-info {
      padding: 30px 0 50px; } }
  @media (min-width: 1260px) {
    .offer-summary-info {
      padding: 40px 0 60px;
      width: 27%; } }
  .offer-summary-info-wrap {
    position: relative; }
    @media (min-width: 992px) {
      .offer-summary-info-wrap:after {
        content: '';
        position: absolute;
        bottom: -46px;
        right: 141px;
        width: 48px;
        height: 46px;
        background: transparent url("/local/include/assets/css-v4/../images/decor/decorate-round.png") no-repeat center;
        background-size: contain;
        z-index: -1; } }
    @media (min-width: 992px) {
      .offer-summary-info-wrap {
        padding: 20px 15px;
        background-color: #fff;
        box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05); } }
    @media (min-width: 1110px) {
      .offer-summary-info-wrap {
        padding: 30px; } }
  .offer-summary-info-list .ch-item:not(:last-child) {
    margin-bottom: 20px; }
  .offer-summary-info-list .ch-item-title {
    margin-bottom: 3px; }
    .offer-summary-info-list .ch-item-title span {
      color: #50667E;
      font-size: 0.8125rem; }
  .offer-summary-info-list .ch-item-text {
    color: #091922;
    font-size: 0.9375rem; }
  .offer-summary-info-list .ch-item-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 5px; }
    .offer-summary-info-list .ch-item-links a {
      font-size: 0.875rem;
      white-space: nowrap;
      width: 100%; }
      .offer-summary-info-list .ch-item-links a[href*="mailto:"] {
        text-decoration: underline;
        font-size: 0.8125rem;
        color: #0d687e;
        margin-top: 5px; }
        .offer-summary-info-list .ch-item-links a[href*="mailto:"]:hover {
          text-decoration: none; }
  .offer-summary-info-list .ch-item-choice {
    margin-top: 10px; }
    .offer-summary-info-list .ch-item-choice-radio {
      gap: 10px; }
    .offer-summary-info-list .ch-item-choice-input {
      margin-top: 15px;
      position: relative; }
      .offer-summary-info-list .ch-item-choice-input button {
        top: 4px;
        right: 4px; }

.offer-summary-list {
  position: relative; }
  @media (min-width: 992px) {
    .offer-summary-list {
      background-color: #fff; } }
  @media (min-width: 992px) {
    .offer-summary-list:before {
      content: '';
      position: absolute;
      top: 0;
      right: 100%;
      bottom: 0;
      width: 140px;
      background-color: #fff;
      border-radius: 3px 0 0 3px;
      z-index: 1; } }
  @media (min-width: 992px) {
    .offer-summary-list {
      padding: 40px 30px;
      flex: 0 1 auto;
      width: calc(73% - 240px); } }
  @media (min-width: 1110px) {
    .offer-summary-list {
      padding: 40px;
      width: calc(73% - 325px); } }
  @media (min-width: 1260px) {
    .offer-summary-list {
      padding: 50px 40px 40px 60px; } }
  @media (min-width: 1440px) {
    .offer-summary-list {
      padding: 40px 60px; } }
  .offer-summary-list-add {
    margin-top: 10px; }
    @media (min-width: 500px) {
      .offer-summary-list-add {
        margin-top: 0;
        text-align: right; } }
    .offer-summary-list-add span {
      font-family: "Lora", serif;
      font-size: 0.875rem;
      color: #7D96A4; }
  .offer-summary-list-item .ch-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .offer-summary-list-item .ch-item:not(:last-child) {
      margin-bottom: 20px; }
    .offer-summary-list-item .ch-item-icon {
      flex: 0 1 auto;
      width: 32px;
      text-align: center; }
      .offer-summary-list-item .ch-item-icon > .icon {
        font-size: 2rem;
        color: #7D96A4;
        opacity: .6; }
    .offer-summary-list-item .ch-item-info {
      flex: 0 1 auto;
      width: calc(100% - 32px);
      padding-left: 15px;
      font-family: "Lora", serif;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      position: relative;
      flex-direction: column; }
      @media (min-width: 500px) {
        .offer-summary-list-item .ch-item-info {
          flex-direction: row; } }
      @media (min-width: 500px) {
        .offer-summary-list-item .ch-item-info:after {
          content: '';
          position: absolute;
          left: 15px;
          right: 0;
          bottom: 6px;
          border-bottom: 1px dashed #D9D9D9; } }
      @media (min-width: 500px) {
        .offer-summary-list-item .ch-item-info-title, .offer-summary-list-item .ch-item-info-price {
          background-color: #fff;
          position: relative;
          z-index: 2; } }
      .offer-summary-list-item .ch-item-info-title {
        color: #7D96A4; }
        @media (min-width: 500px) {
          .offer-summary-list-item .ch-item-info-title {
            color: #1A3853;
            padding: 0 5px 1px 0; } }
      .offer-summary-list-item .ch-item-info-price {
        color: #1A3853; }
        @media (min-width: 500px) {
          .offer-summary-list-item .ch-item-info-price {
            padding: 0 0 1px 5px; } }
  .offer-summary-list-num .ch-item-num {
    width: 32px;
    height: 32px;
    background-color: #F3F8FA;
    position: relative; }
    .offer-summary-list-num .ch-item-num span {
      font-weight: 500;
      font-size: 1rem;
      color: #50667E;
      font-family: "Lora", serif;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .offer-summary-list-num .ch-item-info-add {
    flex: 0 1 auto;
    width: 100%;
    padding-left: 47px; }
    @media (min-width: 500px) {
      .offer-summary-list-num .ch-item-info-add {
        padding-left: 0;
        text-align: right; } }
    .offer-summary-list-num .ch-item-info-add span {
      font-size: 0.875rem;
      color: #50667E;
      font-family: "Lora", serif;
      position: relative;
      display: inline-block; }
      @media (min-width: 500px) {
        .offer-summary-list-num .ch-item-info-add span {
          top: -5px; } }
  .offer-summary-list-img {
    display: none; }
    @media (min-width: 992px) {
      .offer-summary-list-img {
        display: block;
        margin-top: 30px;
        text-align: center;
        line-height: 1; } }
    .offer-summary-list-img img {
      max-width: 64px; }

.offer-summary-img {
  display: none; }
  @media (min-width: 992px) {
    .offer-summary-img {
      flex: 0 1 auto;
      width: 240px;
      display: flex;
      line-height: 1; } }
  @media (min-width: 1110px) {
    .offer-summary-img {
      width: 325px; } }
  .offer-summary-img img {
    object-fit: cover;
    width: 100%; }

@media (max-width: 991.98px) {
  .offer-summary-person {
    box-shadow: none;
    margin-top: 20px; } }

@media (min-width: 992px) {
  .offer-summary-person {
    flex: 0 1 auto;
    width: 315px;
    margin-left: 10px;
    padding: 40px; } }

@media (max-width: 991.98px) {
  .offer-summary-person-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; } }

@media (max-width: 767.98px) {
  .offer-summary-person-wrap {
    gap: 20px; } }

@media (max-width: 575.98px) {
  .offer-summary-person-wrap {
    gap: 10px; } }

.offer-summary-person .offer-day-person-item {
  margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .offer-summary-person .offer-day-person-item {
      flex: 0 1 auto;
      width: calc(100% / 3 - 20px);
      margin-bottom: 0; } }
  @media (max-width: 767.98px) {
    .offer-summary-person .offer-day-person-item {
      width: calc(50% - 20px); } }
  @media (max-width: 575.98px) {
    .offer-summary-person .offer-day-person-item {
      width: 100%; } }

.offer-summary-person-wrap {
  gap: 30px; }

.offer-day-person-item {
  display: flex;
  align-items: center; }
  .offer-day-person-item .ch-icon {
    flex: 0 1 auto;
    width: 64px;
    height: 64px;
    border-radius: 2px;
    background-color: #F1F3F8;
    position: relative; }
    .offer-day-person-item .ch-icon > .icon {
      color: rgba(80, 102, 126, 0.5);
      font-size: 2rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .offer-day-person-item .ch-title {
    flex: 0 1 auto;
    width: calc(100% - 64px);
    padding-left: 15px; }
    .offer-day-person-item .ch-title span {
      display: block;
      font-family: "Lora", serif;
      font-size: 1rem; }
    .offer-day-person-item .ch-title-name {
      color: #50667E;
      margin-bottom: 3px; }
    .offer-day-person-item .ch-title-info {
      color: #da5128;
      font-weight: 500; }

.offer-summary-list-add + .headline.headline-small {
  margin-top: 30px; }

.offer-summary.offer-summary-cut .offer-summary-list {
  border-radius: 3px; }
  @media (min-width: 992px) {
    .offer-summary.offer-summary-cut .offer-summary-list {
      border-radius: 3px 0 0 3px;
      width: 60%; } }
  @media (min-width: 1260px) {
    .offer-summary.offer-summary-cut .offer-summary-list {
      width: 50%; } }
  .offer-summary.offer-summary-cut .offer-summary-list:before {
    display: none; }

.offer-summary.offer-summary-cut .offer-summary-bg {
  display: none; }
  @media (min-width: 992px) {
    .offer-summary.offer-summary-cut .offer-summary-bg {
      flex: 0 1 auto;
      display: block;
      width: 40%;
      border-radius: 0 3px 3px 0;
      background-color: #fff;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover; } }
  @media (min-width: 1260px) {
    .offer-summary.offer-summary-cut .offer-summary-bg {
      width: 50%; } }

.offer-day {
  padding-top: 30px; }
  .offer-day-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 30px 30px; }
  .offer-day-info {
    flex: 0 1 auto;
    min-width: 25%;
    display: flex;
    align-items: flex-start; }
    .offer-day-info-icon {
      flex: 0 1 auto;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      position: relative; }
      .offer-day-info-icon > .icon {
        font-size: 1.1875rem;
        color: #F3F3F3;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .offer-day-info-icon > .icon.icon-wallet {
          font-size: 1.375rem; }
    .offer-day-info-content {
      flex: 0 1 auto;
      width: calc(100% - 42px);
      padding-left: 15px; }
      .offer-day-info-content span {
        display: block; }
        .offer-day-info-content span.ch-title {
          font-size: 0.9375rem;
          color: #50667E; }
        .offer-day-info-content span.ch-text {
          font-size: 1rem;
          color: #1A3853;
          font-weight: 500;
          margin-top: 2px; }
  .offer-day-table {
    padding: 20px 30px;
    border-top: 2px dashed #F1F3F8; }
    .offer-day-table-open {
      color: #3f5267;
      position: relative; }
      .offer-day-table-open:after {
        content: '\e92a';
        font-family: "icomoon" !important;
        font-size: 9px;
        position: absolute;
        top: 7px;
        right: -15px; }
      .offer-day-table-open span {
        font-weight: 500;
        border-bottom: 1px dashed #50667E; }
      .offer-day-table-open:hover {
        color: #da5128; }
        .offer-day-table-open:hover span {
          border-bottom-color: transparent; }
    .offer-day-table-wrap {
      display: none; }
      @media (min-width: 992px) {
        .offer-day-table-wrap {
          width: 60%; } }
      .offer-day-table-wrap .offer-day-sum-list {
        margin-top: 30px; }

.offer-day-table.opened .offer-day-table-wrap {
  display: block; }

.offer-day-table.opened .offer-day-table-open:after {
  transform: rotate(180deg); }

.offer-day-sum-list {
  border-top: 1px solid #EBEBEB; }
  .offer-day-sum-list .ch-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 13px 15px;
    font-family: "Lora", serif;
    border-bottom: 1px solid #EBEBEB;
    font-weight: 500;
    color: #1A3853; }
    @media (min-width: 425px) {
      .offer-day-sum-list .ch-item {
        justify-content: space-between;
        flex-direction: row; } }
    .offer-day-sum-list .ch-item:hover {
      background-color: #F3F8FA; }
    @media (max-width: 424.98px) {
      .offer-day-sum-list .ch-item-title {
        color: #50667E;
        font-size: 0.875rem;
        margin-bottom: 3px; } }
  .offer-day-sum-list-add {
    margin-top: 10px;
    font-size: 0.8125rem;
    color: #7D96A4;
    padding-left: 15px; }
    @media (min-width: 425px) {
      .offer-day-sum-list-add {
        padding-left: 0;
        text-align: right; } }

.offer-menu-roll {
  border-top: 1px solid #EBEBEB; }
  .offer-menu-roll-item {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #EBEBEB; }
    .offer-menu-roll-item > a,
    .offer-menu-roll-item > .a-mobile {
      position: absolute;
      z-index: 9;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .offer-menu-roll-item .ch-img {
      grid-area: ch-img;
      display: flex;
      height: 100px;
      position: relative; }
      @media (min-width: 768px) {
        .offer-menu-roll-item .ch-img {
          height: 160px; } }
      .offer-menu-roll-item .ch-img-hover {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 32px;
        height: 32px;
        border-radius: 16px 0 3px 0;
        background-color: rgba(159, 176, 186, 0.8); }
        .offer-menu-roll-item .ch-img-hover:after {
          content: '\e92d';
          font-family: "icomoon" !important;
          color: #fff;
          font-size: 1rem;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .offer-menu-roll-item .ch-img img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: 3px; }
    .offer-menu-roll-item .ch-weight {
      grid-area: ch-weight;
      display: flex;
      align-items: center;
      gap: 8px;
      padding-left: 20px; }
      @media (min-width: 768px) {
        .offer-menu-roll-item .ch-weight {
          align-self: end; } }
      .offer-menu-roll-item .ch-weight .icon {
        color: #9FB0BA;
        font-size: 1rem; }
      .offer-menu-roll-item .ch-weight span {
        font-size: 0.8125rem;
        color: #485059;
        font-weight: 500; }
    .offer-menu-roll-item .ch-title {
      grid-area: ch-title;
      font-family: "Lora", serif; }
      @media (min-width: 768px) {
        .offer-menu-roll-item .ch-title {
          margin: 5px 0 0; } }
      .offer-menu-roll-item .ch-title-item span {
        color: #091922;
        font-size: 1.1875rem;
        font-weight: 500; }
      @media (min-width: 768px) {
        .offer-menu-roll-item .ch-title-sub {
          margin-top: 5px; } }
      .offer-menu-roll-item .ch-title-sub span {
        font-size: 1rem;
        color: #50667E; }
    .offer-menu-roll-item .ch-labels {
      grid-area: ch-labels;
      padding-left: 20px;
      margin-top: 10px; }
      @media (min-width: 768px) {
        .offer-menu-roll-item .ch-labels {
          margin-top: 0; } }
      .offer-menu-roll-item .ch-labels-list {
        gap: 10px; }
        @media (max-width: 767.98px) {
          .offer-menu-roll-item .ch-labels-list {
            display: none; } }
      .offer-menu-roll-item .ch-labels .ch-icons {
        flex: 0 1 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        position: relative;
        z-index: 25;
        width: 100%;
        margin-bottom: 0; }
        @media (min-width: 768px) {
          .offer-menu-roll-item .ch-labels .ch-icons {
            display: none; } }
        .offer-menu-roll-item .ch-labels .ch-icons-item {
          width: 32px;
          height: 32px;
          border-radius: 2px;
          position: relative; }
          .offer-menu-roll-item .ch-labels .ch-icons-item:not(.ch-icons-item-img) {
            background-color: #F3F3F3; }
          .offer-menu-roll-item .ch-labels .ch-icons-item > .icon {
            font-size: 1rem;
            color: #50667E;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
            .offer-menu-roll-item .ch-labels .ch-icons-item > .icon-food-fish, .offer-menu-roll-item .ch-labels .ch-icons-item > .icon-food-cheese {
              font-size: 0.875rem; }
          .offer-menu-roll-item .ch-labels .ch-icons-item > svg {
            width: 20px;
            height: 20px;
            fill: #50667E;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
          .offer-menu-roll-item .ch-labels .ch-icons-item > img {
            width: 28px;
            height: 28px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
    .offer-menu-roll-item .ch-count {
      padding-left: 20px;
      grid-area: ch-count;
      line-height: 1;
      white-space: nowrap; }
      @media (min-width: 768px) {
        .offer-menu-roll-item .ch-count {
          margin: 0;
          padding-left: 0; } }
      .offer-menu-roll-item .ch-count span {
        display: inline-block; }
      .offer-menu-roll-item .ch-count-prefix {
        font-weight: 500;
        font-size: 1rem;
        color: #717C89;
        margin-right: 8px; }
      .offer-menu-roll-item .ch-count-item {
        font-weight: 600;
        color: #091922;
        font-size: 1.25rem; }
        @media (min-width: 768px) {
          .offer-menu-roll-item .ch-count-item {
            font-size: 1.5rem; } }
      .offer-menu-roll-item .ch-count-unit {
        font-weight: 500;
        font-size: 1.0625rem;
        color: #091922;
        margin-left: 5px; }
    @media (min-width: 768px) {
      .offer-menu-roll-item .ch-weight,
      .offer-menu-roll-item .ch-title,
      .offer-menu-roll-item .ch-labels {
        padding-left: 30px; } }

.offer-menu-roll-item:hover {
  background-color: rgba(241, 243, 248, 0.5); }
  .offer-menu-roll-item:hover .ch-img-hover {
    background-color: #9FB0BA; }
  .offer-menu-roll-item:hover .ch-title-item span {
    color: #da5128; }

.offer-menu-roll-item {
  display: grid;
  gap: 10px 0;
  grid-template-rows: auto;
  grid-template-columns: 120px calc(100% - 120px);
  grid-template-areas: 'ch-title ch-title' 'ch-img ch-weight' 'ch-img ch-count' 'ch-img ch-labels'; }
  @media (min-width: 768px) {
    .offer-menu-roll-item {
      gap: 0;
      align-items: center;
      grid-template-columns: 180px calc(85% - 180px) 15%;
      grid-template-areas: 'ch-img ch-weight ch-count' 'ch-img ch-title ch-count' 'ch-img ch-labels ch-count'; } }

.offer-menu-info {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 25px;
  gap: 10px; }
  @media (min-width: 1110px) {
    .offer-menu-info {
      justify-content: space-between; } }
  .offer-menu-info-item {
    flex: 0 1 auto;
    display: flex;
    align-items: flex-start;
    width: 100%; }
    @media (min-width: 768px) {
      .offer-menu-info-item {
        width: calc(50% - 5px); } }
    @media (min-width: 1110px) {
      .offer-menu-info-item {
        width: auto; } }
    .offer-menu-info-item .ch-icon {
      flex: 0 1 auto;
      width: 48px;
      height: 48px;
      border-radius: 2px;
      position: relative;
      background-color: #F3F8FA; }
      .offer-menu-info-item .ch-icon > .icon {
        font-size: 1.375rem;
        color: #9FB0BA;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .offer-menu-info-item .ch-item {
      flex: 0 1 auto;
      width: calc(100% - 48px);
      padding: 3px 10px 0 15px; }
      .offer-menu-info-item .ch-item-title, .offer-menu-info-item .ch-item-info {
        display: block; }
      .offer-menu-info-item .ch-item-title {
        color: #50667E;
        font-size: 0.875rem;
        margin-bottom: 3px; }
      .offer-menu-info-item .ch-item-info {
        color: #091922;
        font-size: 0.9375rem;
        font-weight: 500; }

.offer-menu-title {
  position: relative; }
  .offer-menu-title-item {
    padding: 20px 20px 0; }
    @media (min-width: 768px) {
      .offer-menu-title-item {
        width: calc(100% - 200px); } }
    @media (max-width: 767.98px) {
      .offer-menu-title-item .headline {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .offer-menu-title-info {
      position: absolute;
      top: 0;
      right: 0;
      box-shadow: 2px 2px 12px 3px rgba(0, 0, 0, 0.05);
      background-color: #fff; } }
  .offer-menu-title-info-wrap {
    padding: 15px 15px 15px 35px; }
    .offer-menu-title-info-wrap span {
      display: block; }
      .offer-menu-title-info-wrap span.ch-title {
        font-size: 0.875rem;
        color: #50667E;
        position: relative; }
        .offer-menu-title-info-wrap span.ch-title:before {
          content: '';
          position: absolute;
          top: 6px;
          left: -16px;
          height: 6px;
          width: 6px;
          border-radius: 3px;
          background-color: #E76642; }

.offer-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 10px 20px 20px; }
  @media (min-width: 500px) {
    .offer-menu-grid {
      gap: 10px; } }

.offer-menu-grid-item {
  flex: 0 1 auto;
  background-color: #fff;
  border: 1px solid #F1F3F8;
  border-radius: 3px;
  box-shadow: 0 0 4px 2px rgba(142, 142, 142, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  transition-duration: .2s;
  width: calc(50% - 1px); }
  @media (min-width: 500px) {
    .offer-menu-grid-item {
      width: calc(50% - 5px); } }
  @media (min-width: 576px) {
    .offer-menu-grid-item {
      width: calc(100% / 3 - 7px); } }
  @media (min-width: 992px) {
    .offer-menu-grid-item {
      width: calc(25% - 8px); } }
  @media (min-width: 1110px) {
    .offer-menu-grid-item {
      width: calc(20% - 8px); } }
  .offer-menu-grid-item .ch-img {
    display: flex;
    height: 160px;
    line-height: 1;
    position: relative; }
    @media (min-width: 1260px) {
      .offer-menu-grid-item .ch-img {
        height: 190px; } }
    .offer-menu-grid-item .ch-img img {
      width: 100%;
      object-fit: cover;
      border-radius: 3px 3px 0 0; }
    .offer-menu-grid-item .ch-img-hover {
      background-color: rgba(63, 82, 103, 0.6);
      border-radius: 3px 3px 0 0;
      position: absolute;
      opacity: 0;
      transition-duration: .2s;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
      .offer-menu-grid-item .ch-img-hover:after {
        content: '\e991';
        font-family: "icomoon" !important;
        font-size: 2rem;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .offer-menu-grid-item .ch-weight {
    position: relative; }
    .offer-menu-grid-item .ch-weight-item {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      padding: 10px 20px;
      background-color: #fff;
      border-radius: 24px;
      text-align: center;
      box-shadow: 0 2px 6px 3px rgba(68, 68, 68, 0.07);
      display: flex;
      align-items: center;
      gap: 10px;
      line-height: 1; }
      .offer-menu-grid-item .ch-weight-item .icon {
        color: #9FB0BA;
        font-size: 1rem; }
      .offer-menu-grid-item .ch-weight-item span {
        font-size: 0.875rem;
        color: #1A3853;
        font-weight: 500;
        white-space: nowrap; }
  .offer-menu-grid-item .ch-title {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    margin-bottom: 0;
    padding: 0 10px; }
    .offer-menu-grid-item .ch-title a {
      color: #091922; }
  .offer-menu-grid-item .ch-subtitle {
    text-align: center;
    margin-bottom: 10px;
    padding: 0 10px; }
    .offer-menu-grid-item .ch-subtitle span {
      color: #50667E;
      font-family: "Lora", serif;
      font-size: 0.875rem; }
  .offer-menu-grid-item .ch-count {
    margin-top: auto;
    text-align: center;
    line-height: 1.2;
    padding-bottom: 15px; }
    .offer-menu-grid-item .ch-count-item {
      font-size: 1.375rem;
      font-weight: 500;
      color: #091922;
      margin-right: 5px; }
      @media (min-width: 1260px) {
        .offer-menu-grid-item .ch-count-item {
          font-size: 1.5rem; } }
    .offer-menu-grid-item .ch-count-unit {
      color: #091922;
      font-size: 0.9375rem;
      font-weight: 500;
      display: inline-block;
      vertical-align: text-bottom; }

.offer-menu-grid-item:hover {
  box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1); }
  .offer-menu-grid-item:hover .ch-img-hover {
    opacity: 1; }
  .offer-menu-grid-item:hover .ch-title a {
    color: #da5128; }

.offer-menu-list {
  padding: 0 20px 20px; }
  @media (max-width: 575.98px) {
    .offer-menu-list {
      gap: 10px;
      display: flex;
      flex-wrap: wrap; } }
  @media (min-width: 992px) {
    .offer-menu-list {
      padding: 0 60px 20px; } }
  .offer-menu-list-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: "Lora", serif;
    position: relative;
    transition-duration: .2s;
    width: 100%; }
    @media (min-width: 576px) {
      .offer-menu-list-item {
        padding: 15px 10px;
        flex-direction: row; } }
    .offer-menu-list-item:not(:last-child) {
      border-bottom: 1px dashed #B5C6CF; }
    .offer-menu-list-item > div {
      flex: 0 1 auto; }
    .offer-menu-list-item .ch-img {
      align-self: flex-start;
      margin-top: 1px;
      display: flex;
      position: relative;
      width: 20px;
      height: 20px;
      line-height: 1;
      border-radius: 2px; }
      .offer-menu-list-item .ch-img:after {
        font-family: "icomoon" !important;
        color: #9FB0BA;
        font-size: 11px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .offer-menu-list-item .ch-img.ch-img-empty {
        background-color: rgba(181, 198, 207, 0.5); }
        .offer-menu-list-item .ch-img.ch-img-empty:after {
          content: '\e991';
          color: #9FB0BA; }
      .offer-menu-list-item .ch-img.ch-img-show {
        background-color: #F3F3F3; }
        @media (min-width: 576px) {
          .offer-menu-list-item .ch-img.ch-img-show {
            background-color: #E76642; } }
        .offer-menu-list-item .ch-img.ch-img-show:after {
          content: '\e991';
          color: #E76642; }
          @media (min-width: 576px) {
            .offer-menu-list-item .ch-img.ch-img-show:after {
              color: #fff; } }
    .offer-menu-list-item .ch-title {
      text-align: left;
      width: calc(100% - 20px);
      padding-left: 15px; }
      @media (min-width: 576px) {
        .offer-menu-list-item .ch-title {
          width: calc(50% - 20px); } }
      .offer-menu-list-item .ch-title-item, .offer-menu-list-item .ch-title-sub {
        display: block; }
      .offer-menu-list-item .ch-title-item {
        color: #091922;
        font-size: 0.9375rem;
        font-weight: 500; }
        @media (min-width: 576px) {
          .offer-menu-list-item .ch-title-item {
            font-size: 1rem; } }
      .offer-menu-list-item .ch-title-sub {
        color: #717C89;
        font-size: 0.875rem; }
    .offer-menu-list-item .ch-icons {
      display: none; }
      @media (min-width: 576px) {
        .offer-menu-list-item .ch-icons {
          flex: 0 1 auto;
          display: flex;
          gap: 10px;
          position: relative;
          z-index: 8;
          width: 25%;
          margin-bottom: 0; } }
      .offer-menu-list-item .ch-icons-item {
        width: 32px;
        height: 32px;
        border-radius: 2px;
        position: relative; }
        .offer-menu-list-item .ch-icons-item:not(.ch-icons-item-img) {
          background-color: #F3F3F3; }
        .offer-menu-list-item .ch-icons-item > .icon {
          font-size: 1rem;
          color: #50667E;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
          .offer-menu-list-item .ch-icons-item > .icon-food-fish, .offer-menu-list-item .ch-icons-item > .icon-food-cheese {
            font-size: 0.875rem; }
        .offer-menu-list-item .ch-icons-item > svg {
          width: 20px;
          height: 20px;
          fill: #50667E;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
        .offer-menu-list-item .ch-icons-item > img {
          width: 28px;
          height: 28px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
    .offer-menu-list-item .ch-info {
      display: flex;
      padding: 0 0 15px 35px;
      margin-top: 10px;
      width: 100%;
      flex-direction: row; }
      @media (min-width: 576px) {
        .offer-menu-list-item .ch-info {
          flex-direction: column-reverse;
          margin-top: 0;
          padding-bottom: 0;
          width: 25%; } }
      @media (min-width: 992px) {
        .offer-menu-list-item .ch-info {
          gap: 10px;
          flex-direction: row;
          justify-content: space-between; } }
      .offer-menu-list-item .ch-info-unit {
        order: 1; }
        @media (min-width: 576px) {
          .offer-menu-list-item .ch-info-unit {
            order: 0;
            text-align: right; } }
        .offer-menu-list-item .ch-info-unit span {
          color: #50667E;
          font-size: 0.8125rem; }
          @media (min-width: 992px) {
            .offer-menu-list-item .ch-info-unit span {
              font-size: 0.9375rem; } }
      .offer-menu-list-item .ch-info-count {
        text-align: center;
        margin-right: 8px; }
        @media (min-width: 576px) {
          .offer-menu-list-item .ch-info-count {
            margin-right: 0;
            text-align: right; } }
        .offer-menu-list-item .ch-info-count span {
          color: #da5128;
          font-weight: 600; }
          @media (min-width: 576px) {
            .offer-menu-list-item .ch-info-count span {
              color: #E76642; } }

.offer-menu-list-item .ch-link,
.offer-menu-grid-item .ch-link {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .offer-menu-list-item .ch-link.js-popup-product,
  .offer-menu-grid-item .ch-link.js-popup-product {
    display: none; }
    @media (min-width: 768px) {
      .offer-menu-list-item .ch-link.js-popup-product,
      .offer-menu-grid-item .ch-link.js-popup-product {
        display: block; } }
  @media (min-width: 768px) {
    .offer-menu-list-item .ch-link.ch-swipe,
    .offer-menu-grid-item .ch-link.ch-swipe {
      display: none; } }

.offer-menu-list-item:hover {
  background-color: #F3F8FA; }
  .offer-menu-list-item:hover .ch-img-hover {
    opacity: 1; }
  .offer-menu-list-item:hover .ch-title-item {
    color: #da5128; }

.offer-complex {
  padding: 20px; }
  @media (min-width: 576px) {
    .offer-complex {
      padding: 30px; } }

@media (min-width: 768px) {
  .offer-complex-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px; } }

.offer-complex-wrap > div {
  flex: 0 1 auto; }

.offer-complex-list {
  background-color: #F7F9FA;
  padding: 30px 30px 10px;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .offer-complex-list {
      margin-bottom: 0;
      width: calc(50% - 15px); } }
  @media (min-width: 992px) {
    .offer-complex-list {
      width: calc(100% / 3 - 20px); } }
  .offer-complex-list-item {
    padding-left: 18px;
    position: relative; }
    .offer-complex-list-item:not(:last-child) {
      margin-bottom: 10px; }
    .offer-complex-list-item:before {
      content: '';
      position: absolute;
      top: 7px;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 3px;
      background-color: #E76642; }
    .offer-complex-list-item .ch-title,
    .offer-complex-list-item .ch-info {
      font-size: 0.9375rem; }
    .offer-complex-list-item .ch-title {
      color: #50667E;
      margin-right: 5px; }
      .offer-complex-list-item .ch-title .ch-intro {
        margin-top: 10px;
        display: block; }
        .offer-complex-list-item .ch-title .ch-intro span {
          display: block;
          font-size: 0.875rem; }
          .offer-complex-list-item .ch-title .ch-intro span:first-child {
            color: #717C89; }
            .offer-complex-list-item .ch-title .ch-intro span:first-child:before {
              content: '-';
              display: inline-block;
              margin: 0 6px; }
          .offer-complex-list-item .ch-title .ch-intro span:last-child {
            color: #1A3853;
            padding-left: 18px;
            font-weight: 500; }
    .offer-complex-list-item .ch-info {
      color: #091922;
      font-weight: 500; }

.offer-complex-content {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .offer-complex-content {
      margin-bottom: 0;
      width: 100%;
      order: 1; } }
  @media (min-width: 992px) {
    .offer-complex-content {
      order: 0;
      width: calc(100% / 3 - 20px); } }
  @media (min-width: 1260px) {
    .offer-complex-content {
      padding-top: 20px; } }
  .offer-complex-content .content {
    font-size: 0.9375rem; }
  .offer-complex-content-btn {
    display: inline-block;
    margin-top: 15px; }
    .offer-complex-content-btn span {
      font-size: 0.9375rem;
      font-weight: 500;
      color: #E76642;
      border-bottom: 1px dashed #E76642;
      transition-duration: .2s; }
      .offer-complex-content-btn span:after {
        content: attr(data-open); }
      .offer-complex-content-btn span:hover {
        color: #da5128;
        border-bottom-color: transparent; }
  .offer-complex-content-hide {
    display: none;
    padding-top: 15px; }
  .offer-complex-content.opened .offer-complex-content-hide {
    display: block; }

@media (min-width: 768px) {
  .offer-complex-media {
    width: calc(50% - 15px); } }

@media (min-width: 992px) {
  .offer-complex-media {
    width: calc(100% / 3 - 20px); } }

.offer-complex-media-img {
  line-height: 1;
  display: flex; }
  @media (min-width: 768px) {
    .offer-complex-media-img {
      height: 100%; } }
  @media (min-width: 1110px) {
    .offer-complex-media-img {
      height: auto; } }
  .offer-complex-media-img img {
    width: 100%; }
    @media (min-width: 768px) {
      .offer-complex-media-img img {
        object-fit: cover; } }
    @media (min-width: 1110px) {
      .offer-complex-media-img img {
        object-fit: none; } }

.offer-complex-media-slider {
  position: relative; }
  .offer-complex-media-slider .ch-img {
    position: relative; }
    .offer-complex-media-slider .ch-img img {
      width: 100%; }
    .offer-complex-media-slider .ch-img > a {
      display: block;
      height: 100%; }
  .offer-complex-media-slider .slick-arrow {
    position: absolute;
    width: 28px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    top: calc(50% - 20px);
    z-index: 6; }
    .offer-complex-media-slider .slick-arrow.slick-prev {
      left: 0; }
    .offer-complex-media-slider .slick-arrow.slick-next {
      right: 0; }
    .offer-complex-media-slider .slick-arrow > .icon {
      color: #50667E;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .offer-complex-media-slider .slick-arrow:hover {
      cursor: pointer;
      background-color: #fff; }
  .offer-complex-media-slider .slick-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px; }
    .offer-complex-media-slider .slick-dots li {
      font-size: 0;
      width: 10px;
      height: 10px;
      border-radius: 5px;
      background-color: #9FB0BA; }
      .offer-complex-media-slider .slick-dots li.slick-active {
        background-color: #E76642; }

.offer-service {
  padding: 30px 30px 20px; }
  @media (min-width: 992px) {
    .offer-service {
      padding: 40px 40px 20px;
      column-count: 2;
      gap: 40px; } }

.offer-service-item {
  break-inside: avoid;
  margin-bottom: 20px; }
  .offer-service-item-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    .offer-service-item-title .ch-icon {
      flex: 0 1 auto;
      text-align: center;
      width: 34px; }
      .offer-service-item-title .ch-icon .icon {
        font-size: 2rem;
        color: #E76642; }
    .offer-service-item-title .ch-title {
      flex: 0 1 auto;
      width: calc(100% - 34px);
      padding-left: 20px; }
      .offer-service-item-title .ch-title span {
        font-family: "Lora", serif;
        color: #091922;
        font-size: 1.125rem; }

@media (min-width: 500px) {
  .offer-service-item-list {
    padding-left: 54px; } }

.offer-service-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
  background-color: #F8F9FE;
  margin-bottom: 3px; }
  @media (min-width: 992px) {
    .offer-service-item-row {
      max-width: 500px; } }
  .offer-service-item-row:hover {
    background-color: #F3F8FA; }
  .offer-service-item-row span {
    font-size: 0.875rem;
    color: #1A3853;
    font-family: "Lora", serif;
    font-weight: 500; }

.offer-service-item-text {
  padding: 10px 15px;
  line-height: 1.2; }
  @media (min-width: 992px) {
    .offer-service-item-text {
      max-width: 500px; } }
  .offer-service-item-text span {
    font-size: 0.8125rem;
    color: #50667E; }

.offer-gallery .article {
  padding: 0 !important; }

.offer-agree {
  padding: 20px; }
  @media (min-width: 768px) {
    .offer-agree {
      padding: 30px; } }
  @media (min-width: 992px) {
    .offer-agree {
      padding: 40px; } }
  .offer-agree-item {
    margin-top: 25px;
    position: relative;
    padding-left: 30px; }
    .offer-agree-item:before {
      content: '\e98e';
      font-family: "icomoon" !important;
      font-size: 1.25rem;
      color: rgba(231, 102, 66, 0.8);
      position: absolute;
      top: -5px;
      left: 0; }
    .offer-agree-item span {
      color: #444444; }

.footer-offer {
  padding: 0 0 60px;
  background: transparent url("/local/include/assets/css-v4/../images/bgs/footer-offer-bg.jpg") center no-repeat;
  background-size: cover;
  margin-top: 40px; }
  @media (min-width: 992px) {
    .footer-offer {
      margin-top: 60px; } }

.footer-offer-contacts {
  padding-top: 40px; }
  @media (min-width: 768px) {
    .footer-offer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }

.footer-offer-contact:not(:last-child) {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .footer-offer-contact:not(:last-child) {
      margin-bottom: 0; } }

@media (min-width: 768px) {
  .footer-offer-contact {
    flex: 0 1 auto;
    padding-right: 40px; } }

@media (min-width: 1260px) {
  .footer-offer-contact {
    padding-right: 100px; } }

.footer-offer-contact-title {
  color: #E76642; }
  .footer-offer-contact-title .icon {
    font-size: 1.25rem; }
  .footer-offer-contact-title span {
    font-family: "Lora", serif;
    display: block; }

.footer-offer-contact-link, .footer-offer-contact-site {
  margin-top: 15px; }
  .footer-offer-contact-link a, .footer-offer-contact-site a {
    color: #F1F3F8;
    font-weight: 300;
    font-size: 0.9375rem; }
    .footer-offer-contact-link a:hover, .footer-offer-contact-site a:hover {
      color: #da5128; }

.footer-offer-contact-site a {
  border-bottom: 1px dashed #F1F3F8; }
  .footer-offer-contact-site a:hover {
    border-bottom-color: transparent; }

.footer-offer-contact-dzen {
  margin-top: 30px; }
  .footer-offer-contact-dzen img:hover {
    opacity: .8; }

.footer-offer-contact-messengers {
  margin-top: 15px; }

.footer-offer-contact-txt {
  margin-top: 15px; }
  .footer-offer-contact-txt span {
    font-size: 0.875rem;
    font-weight: 300;
    color: #F1F3F8; }

.footer-offer-contact-social {
  line-height: 1;
  margin-top: 20px; }

.footer-offer-contact-messengers a, .footer-offer-contact-social a {
  display: inline-block;
  margin-right: 15px; }
  .footer-offer-contact-messengers a:hover, .footer-offer-contact-social a:hover {
    opacity: .8; }

.nav-tmp {
  min-height: 50vh;
  padding: 50px; }

.nav-wrap {
  display: flex;
  flex-wrap: wrap; }
  .nav-wrap a {
    color: #1A3853; }

.nav-col {
  flex: 0 1 auto;
  width: 100%;
  margin-bottom: 30px;
  padding-right: 25px; }
  @media (min-width: 768px) {
    .nav-col {
      width: 25%; } }

@media (max-width: 767.98px) {
  .mfp-image-holder .mfp-content,
  .mfp-image-holder .mfp-counter {
    padding: 0 10px; } }

@media (max-width: 767.98px) {
  .mfp-image-holder .mfp-close {
    padding: 0 15px; } }

@media (max-width: 767.98px) {
  .mfp-image-holder .mfp-title {
    padding-left: 10px; } }

.article .gallery-filter {
  margin-bottom: 10px;
  text-align: left;
  background-color: #F7F9FA;
  padding: 3px; }
  .article .gallery-filter .item {
    padding: 0; }
  .article .gallery-filter .btn-gallery {
    border-width: 0;
    background-color: transparent; }
    .article .gallery-filter .btn-gallery:hover span {
      color: #da5128; }
    .article .gallery-filter .btn-gallery.btn-active {
      background-color: #fff;
      box-shadow: 0 0 24px 2px rgba(0, 0, 0, 0.05); }
      .article .gallery-filter .btn-gallery.btn-active span {
        color: #da5128; }
      .article .gallery-filter .btn-gallery.btn-active:hover {
        cursor: default; }

.article .slick-dots {
  list-style: none; }
  .article .slick-dots li {
    margin: 0 5px 5px;
    padding: 0; }
    .article .slick-dots li:before {
      display: none; }

.article-products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  background-color: #F3F3F3;
  padding: 10px 0;
  gap: 10px; }
  @media (min-width: 576px) {
    .article-products {
      background-color: transparent;
      margin: 0;
      padding: 0; } }
  @media (min-width: 992px) {
    .article-products {
      gap: 25px 30px; } }
  @media (min-width: 576px) {
    .article-products .products {
      flex: 0 1 auto;
      width: 100%;
      box-shadow: none;
      display: grid;
      gap: 0 20px;
      grid-template-columns: 200px auto;
      border-bottom: 1px solid #F1F0EF;
      margin-bottom: 20px;
      padding-bottom: 20px; } }
  @media (min-width: 992px) {
    .article-products .products {
      padding: 0 10px 25px;
      margin: 0 0 10px 0;
      width: calc(50% - 15px); } }
  .article-products .products:last-child {
    border-bottom-width: 0; }
  @media (min-width: 992px) {
    .article-products .products:nth-child(even):nth-last-child(1), .article-products .products:nth-child(odd):nth-last-child(2) {
      border-bottom-width: 0; } }
  @media (min-width: 576px) {
    .article-products .products .products-img {
      grid-column: 1 / 2;
      grid-row: 1 / 3; } }
  @media (min-width: 576px) {
    .article-products .products .products-info,
    .article-products .products .products-bottom {
      grid-column: 2 / 3; } }
  @media (min-width: 576px) {
    .article-products .products .products-info {
      grid-row: 1 / 2; } }
  @media (min-width: 576px) {
    .article-products .products .products-bottom {
      grid-row: 2 / 3; } }
  .article-products .products .products-img {
    border-bottom-width: 0; }
    .article-products .products .products-img-wrap {
      position: relative;
      margin-bottom: 10px; }
      @media (min-width: 576px) {
        .article-products .products .products-img-wrap {
          margin-bottom: 0; } }
      .article-products .products .products-img-wrap > a:after {
        content: '';
        position: absolute;
        background-color: #fff;
        z-index: 1;
        opacity: 0;
        transition-duration: .2s;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
      .article-products .products .products-img-wrap > a:hover:after {
        opacity: .3; }
    .article-products .products .products-img img {
      border-radius: 3px;
      display: block; }
    .article-products .products .products-img .ch-wish-item {
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: 32px;
      height: 32px;
      background-color: #fff;
      border-radius: 50%;
      box-shadow: 0 2px 6px 3px rgba(68, 68, 68, 0.07);
      opacity: .7;
      z-index: 9; }
      .article-products .products .products-img .ch-wish-item:hover {
        opacity: 1; }
      .article-products .products .products-img .ch-wish-item .icon {
        color: #E76642;
        font-size: 0.875rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .article-products .products .products-info {
    padding: 10px 10px 0; }
    @media (min-width: 576px) {
      .article-products .products .products-info {
        padding: 0; } }
  .article-products .products .products-title,
  .article-products .products .products-text,
  .article-products .products .products-notify {
    text-align: left; }
  .article-products .products .products-bottom {
    padding: 0 10px;
    text-align: left; }
    @media (min-width: 576px) {
      .article-products .products .products-bottom {
        padding: 0; } }
    .article-products .products .products-bottom .products-price {
      justify-content: flex-start;
      flex-direction: column-reverse;
      align-items: flex-start; }
      @media (min-width: 1260px) {
        .article-products .products .products-bottom .products-price {
          align-items: center;
          flex-direction: row; } }
      .article-products .products .products-bottom .products-price > .ch-weight {
        flex: 0 1 auto;
        margin-bottom: 3px; }
        @media (min-width: 1260px) {
          .article-products .products .products-bottom .products-price > .ch-weight {
            margin: -3px 0 0;
            padding: 0 0 0 9px; } }
        @media (min-width: 576px) {
          .article-products .products .products-bottom .products-price > .ch-weight:before {
            content: '\e92e';
            font-family: "icomoon" !important;
            color: #9FB0BA;
            margin-right: 8px;
            font-size: 0.9375rem; } }
        @media (min-width: 1260px) {
          .article-products .products .products-bottom .products-price > .ch-weight:before {
            content: '/';
            font-family: "Inter", sans-serif;
            margin-right: 3px;
            font-size: 1.5rem;
            font-weight: 300; } }
        .article-products .products .products-bottom .products-price > .ch-weight span {
          color: #1A3853;
          font-size: 0.875rem; }
    .article-products .products .products-bottom .products-bonuces {
      justify-content: flex-start; }
    @media (min-width: 576px) {
      .article-products .products .products-bottom .products-btns {
        width: auto; } }
    @media (min-width: 576px) {
      .article-products .products .products-bottom .products-btns-button, .article-products .products .products-bottom .products-btns-counter {
        left: auto; } }

.article-covers .covers .covers-item {
  padding: 8px; }

.article-covers .covers .covers-item-borders-top:after, .article-covers .covers .covers-item-borders-top:before,
.article-covers .covers .covers-item-borders-bottom:after,
.article-covers .covers .covers-item-borders-bottom:before {
  width: 32px;
  height: 32px; }

.article-covers .covers .covers-item-title {
  margin: 0 0 30px; }
  .article-covers .covers .covers-item-title span {
    font-size: 1.5rem; }
    .article-covers .covers .covers-item-title span:before {
      width: 42px;
      height: 13px;
      margin-bottom: 5px; }

.article-covers .covers .covers-item-icon {
  margin-bottom: 30px; }
  .article-covers .covers .covers-item-icon .icon {
    font-size: 1.625rem; }

.article-covers .covers .covers-item-price {
  margin-bottom: 0; }
  .article-covers .covers .covers-item-price span {
    font-size: 1.125rem; }

.article .grid-4 {
  gap: 10px;
  margin: 0; }

.article .grid-4-col {
  margin: 0;
  width: calc(50% - 5px); }
  @media (min-width: 992px) {
    .article .grid-4-col {
      width: calc(25% - 8px); } }

@media (max-width: 499.98px) {
  .article .projects {
    width: 100%; } }

.article .projects .projects-date {
  margin: 0 15px 5px; }

.article .projects .projects-title {
  margin: 0 15px 10px;
  line-height: 1.3; }
  .article .projects .projects-title a {
    font-size: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: keep-all;
    line-break: normal;
    hyphens: auto; }

.article .projects .projects-info {
  margin: auto 15px 10px; }

.article .accordion {
  background-color: #F7F9FA;
  border: 1px solid #EBEBEB;
  box-shadow: none; }

.article .accordion-title button:before {
  background-color: rgba(224, 224, 227, 0.7); }

.article-feedback .bid-wrap {
  padding: 0; }

.article-feedback .bid-form {
  padding: 0 50px 0 0; }
  .article-feedback .bid-form:before {
    display: none; }

.info-cart-row > p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: flex-end;
  flex-wrap: wrap; }
  .info-cart-row > p span {
    float: none; }

.faq-single {
  padding: 30px; }

.pagination.acc-pagination .pagination-row {
  padding: 10px 10px 20px;
  box-shadow: none;
  border-radius: 0; }
  .pagination.acc-pagination .pagination-row > a,
  .pagination.acc-pagination .pagination-row > span {
    font-size: 0.875rem;
    margin: 0 5px; }
  .pagination.acc-pagination .pagination-row > span:before {
    width: 28px;
    height: 28px; }

@media print {
  @page {
    size: A4 portrait;
    margin: 0 1cm; }
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  body {
    margin: 1.6cm 0; }
  html, body {
    margin: 0; }
  html {
    box-sizing: border-box;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }
  *,
  *:before,
  *:after {
    box-sizing: inherit; }
  .header,
  .footer,
  .print-hide,
  .breadcrumbs {
    display: none !important; } }

.print-title img {
  display: none; }

.print-table table {
  width: 100%; }

.print-table tr th,
.print-table tr td {
  padding: 10px;
  border: 1px solid #E0E0E3;
  font-size: 0.875rem; }

.print-table tr th {
  font-weight: 500; }

.acc-block + .acc-block {
  padding-top: 10px; }

/*# sourceMappingURL=main.css.map */

/* End */


/* Start:/local/include/assets/js/airdatapicker/air-datepicker.css?167160737919693*/
.air-datepicker-cell.-day-.-other-month-,.air-datepicker-cell.-year-.-other-decade-{color:var(--adp-color-other-month)}.air-datepicker-cell.-day-.-other-month-:hover,.air-datepicker-cell.-year-.-other-decade-:hover{color:var(--adp-color-other-month-hover)}.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-,.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-{color:var(--adp-color-other-month)}.-selected-.air-datepicker-cell.-day-.-other-month-,.-selected-.air-datepicker-cell.-year-.-other-decade-{color:#fff;background:var(--adp-background-color-selected-other-month)}.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-,.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-{background:var(--adp-background-color-selected-other-month-focused)}.-in-range-.air-datepicker-cell.-day-.-other-month-,.-in-range-.air-datepicker-cell.-year-.-other-decade-{background-color:var(--adp-background-color-in-range);color:var(--adp-color)}.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-,.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-{background-color:var(--adp-background-color-in-range-focused)}.air-datepicker-cell.-day-.-other-month-:empty,.air-datepicker-cell.-year-.-other-decade-:empty{background:none;border:none}.air-datepicker-cell{border-radius:var(--adp-cell-border-radius);box-sizing:border-box;cursor:pointer;display:flex;position:relative;align-items:center;justify-content:center;z-index:1}.air-datepicker-cell.-focus-{background:var(--adp-background-color-hover)}.air-datepicker-cell.-current-{color:var(--adp-color-current-date)}.air-datepicker-cell.-current-.-focus-{color:var(--adp-color)}.air-datepicker-cell.-current-.-in-range-{color:var(--adp-color-current-date)}.air-datepicker-cell.-disabled-{cursor:default;color:var(--adp-color-disabled)}.air-datepicker-cell.-disabled-.-focus-{color:var(--adp-color-disabled)}.air-datepicker-cell.-disabled-.-in-range-{color:var(--adp-color-disabled-in-range)}.air-datepicker-cell.-disabled-.-current-.-focus-{color:var(--adp-color-disabled)}.air-datepicker-cell.-in-range-{background:var(--adp-cell-background-color-in-range);border-radius:0}.air-datepicker-cell.-in-range-:hover{background:var(--adp-cell-background-color-in-range-hover)}.air-datepicker-cell.-range-from-{border:1px solid var(--adp-cell-border-color-in-range);background-color:var(--adp-cell-background-color-in-range);border-radius:var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius)}.air-datepicker-cell.-range-to-{border:1px solid var(--adp-cell-border-color-in-range);background-color:var(--adp-cell-background-color-in-range);border-radius:0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0}.air-datepicker-cell.-range-to-.-range-from-{border-radius:var(--adp-cell-border-radius)}.air-datepicker-cell.-selected-{color:#fff;border:none;background:var(--adp-cell-background-color-selected)}.air-datepicker-cell.-selected-.-current-{color:#fff;background:var(--adp-cell-background-color-selected)}.air-datepicker-cell.-selected-.-focus-{background:var(--adp-cell-background-color-selected-hover)}

.air-datepicker-body{transition:all var(--adp-transition-duration) var(--adp-transition-ease)}.air-datepicker-body.-hidden-{display:none}.air-datepicker-body--day-names{display:grid;grid-template-columns:repeat(7, var(--adp-day-cell-width));margin:8px 0 3px}.air-datepicker-body--day-name{color:var(--adp-day-name-color);display:flex;align-items:center;justify-content:center;flex:1;text-align:center;text-transform:uppercase;font-size:.8em}.air-datepicker-body--day-name.-clickable-{cursor:pointer}.air-datepicker-body--day-name.-clickable-:hover{color:var(--adp-day-name-color-hover)}.air-datepicker-body--cells{display:grid}.air-datepicker-body--cells.-days-{grid-template-columns:repeat(7, var(--adp-day-cell-width));grid-auto-rows:var(--adp-day-cell-height)}.air-datepicker-body--cells.-months-{grid-template-columns:repeat(3, 1fr);grid-auto-rows:var(--adp-month-cell-height)}.air-datepicker-body--cells.-years-{grid-template-columns:repeat(4, 1fr);grid-auto-rows:var(--adp-year-cell-height)}

.air-datepicker-nav{display:flex;justify-content:space-between;border-bottom:1px solid var(--adp-border-color-inner);min-height:var(--adp-nav-height);padding:var(--adp-padding);box-sizing:content-box}.-only-timepicker- .air-datepicker-nav{display:none}.air-datepicker-nav--title,.air-datepicker-nav--action{display:flex;cursor:pointer;align-items:center;justify-content:center}.air-datepicker-nav--action{width:var(--adp-nav-action-size);border-radius:var(--adp-border-radius);-webkit-user-select:none;-moz-user-select:none;user-select:none}.air-datepicker-nav--action:hover{background:var(--adp-background-color-hover)}.air-datepicker-nav--action:active{background:var(--adp-background-color-active)}.air-datepicker-nav--action.-disabled-{visibility:hidden}.air-datepicker-nav--action svg{width:32px;height:32px}.air-datepicker-nav--action path{fill:none;stroke:var(--adp-nav-arrow-color);stroke-width:2px}.air-datepicker-nav--title{border-radius:var(--adp-border-radius);padding:0 8px}.air-datepicker-nav--title i{font-style:normal;color:var(--adp-nav-color-secondary);margin-left:.3em}.air-datepicker-nav--title:hover{background:var(--adp-background-color-hover)}.air-datepicker-nav--title:active{background:var(--adp-background-color-active)}.air-datepicker-nav--title.-disabled-{cursor:default;background:none}

.air-datepicker-buttons{display:grid;grid-auto-columns:1fr;grid-auto-flow:column}.air-datepicker-button{display:inline-flex;color:var(--adp-btn-color);border-radius:var(--adp-btn-border-radius);cursor:pointer;height:var(--adp-btn-height);border:none;background:rgba(255,255,255,0)}.air-datepicker-button:hover{color:var(--adp-btn-color-hover);background:var(--adp-btn-background-color-hover)}.air-datepicker-button:focus{color:var(--adp-btn-color-hover);background:var(--adp-btn-background-color-hover);outline:none}.air-datepicker-button:active{background:var(--adp-btn-background-color-active)}.air-datepicker-button span{outline:none;display:flex;align-items:center;justify-content:center;width:100%;height:100%}

.air-datepicker-time{display:grid;grid-template-columns:-webkit-max-content 1fr;grid-template-columns:max-content 1fr;grid-column-gap:12px;align-items:center;position:relative;padding:0 var(--adp-time-padding-inner)}.-only-timepicker- .air-datepicker-time{border-top:none}.air-datepicker-time--current{display:flex;align-items:center;flex:1;font-size:14px;text-align:center}.air-datepicker-time--current-colon{margin:0 2px 3px;line-height:1}.air-datepicker-time--current-hours,.air-datepicker-time--current-minutes{line-height:1;font-size:19px;font-family:"Century Gothic", CenturyGothic, AppleGothic, sans-serif;position:relative;z-index:1}.air-datepicker-time--current-hours:after,.air-datepicker-time--current-minutes:after{content:'';background:var(--adp-background-color-hover);border-radius:var(--adp-border-radius);position:absolute;left:-2px;top:-3px;right:-2px;bottom:-2px;z-index:-1;opacity:0}.air-datepicker-time--current-hours.-focus-:after,.air-datepicker-time--current-minutes.-focus-:after{opacity:1}.air-datepicker-time--current-ampm{text-transform:uppercase;align-self:flex-end;color:var(--adp-time-day-period-color);margin-left:6px;font-size:11px;margin-bottom:1px}.air-datepicker-time--row{display:flex;align-items:center;font-size:11px;height:17px;background:linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat}.air-datepicker-time--row:first-child{margin-bottom:4px}.air-datepicker-time--row input[type='range']{background:none;cursor:pointer;flex:1;height:100%;width:100%;padding:0;margin:0;-webkit-appearance:none}.air-datepicker-time--row input[type='range']::-webkit-slider-thumb{-webkit-appearance:none}.air-datepicker-time--row input[type='range']::-ms-tooltip{display:none}.air-datepicker-time--row input[type='range']:hover::-webkit-slider-thumb{border-color:var(--adp-time-track-color-hover)}.air-datepicker-time--row input[type='range']:hover::-moz-range-thumb{border-color:var(--adp-time-track-color-hover)}.air-datepicker-time--row input[type='range']:hover::-ms-thumb{border-color:var(--adp-time-track-color-hover)}.air-datepicker-time--row input[type='range']:focus{outline:none}.air-datepicker-time--row input[type='range']:focus::-webkit-slider-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}.air-datepicker-time--row input[type='range']:focus::-moz-range-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}.air-datepicker-time--row input[type='range']:focus::-ms-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}.air-datepicker-time--row input[type='range']::-webkit-slider-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-webkit-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}.air-datepicker-time--row input[type='range']::-moz-range-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-moz-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}.air-datepicker-time--row input[type='range']::-ms-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-ms-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}.air-datepicker-time--row input[type='range']::-webkit-slider-thumb{margin-top:calc(var(--adp-time-thumb-size) / 2 * -1)}.air-datepicker-time--row input[type='range']::-webkit-slider-runnable-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:transparent;background:transparent}.air-datepicker-time--row input[type='range']::-moz-range-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:transparent;background:transparent}.air-datepicker-time--row input[type='range']::-ms-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:transparent;background:transparent}.air-datepicker-time--row input[type='range']::-ms-fill-lower{background:transparent}.air-datepicker-time--row input[type='range']::-ms-fill-upper{background:transparent}

.air-datepicker{--adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--adp-font-size: 14px;--adp-width: 246px;--adp-z-index: 100;--adp-padding: 4px;--adp-grid-areas:
    'nav'
    'body'
    'timepicker'
    'buttons';--adp-transition-duration: .3s;--adp-transition-ease: ease-out;--adp-transition-offset: 8px;--adp-background-color: #fff;--adp-background-color-hover: #f0f0f0;--adp-background-color-active: #eaeaea;--adp-background-color-in-range: rgba(92, 196, 239, .1);--adp-background-color-in-range-focused: rgba(92, 196, 239, .2);--adp-background-color-selected-other-month-focused: #8ad5f4;--adp-background-color-selected-other-month: #a2ddf6;--adp-color: #4a4a4a;--adp-color-secondary: #9c9c9c;--adp-accent-color: #4eb5e6;--adp-color-current-date: var(--adp-accent-color);--adp-color-other-month: #dedede;--adp-color-disabled: #aeaeae;--adp-color-disabled-in-range: #939393;--adp-color-other-month-hover: #c5c5c5;--adp-border-color: #dbdbdb;--adp-border-color-inner: #efefef;--adp-border-radius: 4px;--adp-border-color-inline: #d7d7d7;--adp-nav-height: 32px;--adp-nav-arrow-color: var(--adp-color-secondary);--adp-nav-action-size: 32px;--adp-nav-color-secondary: var(--adp-color-secondary);--adp-day-name-color: #ff9a19;--adp-day-name-color-hover: #8ad5f4;--adp-day-cell-width: 1fr;--adp-day-cell-height: 32px;--adp-month-cell-height: 42px;--adp-year-cell-height: 56px;--adp-pointer-size: 10px;--adp-poiner-border-radius: 2px;--adp-pointer-offset: 14px;--adp-cell-border-radius: 4px;--adp-cell-background-color-selected: #5cc4ef;--adp-cell-background-color-selected-hover: #45bced;--adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);--adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);--adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);--adp-btn-height: 32px;--adp-btn-color: var(--adp-accent-color);--adp-btn-color-hover: var(--adp-color);--adp-btn-border-radius: var(--adp-border-radius);--adp-btn-background-color-hover: var(--adp-background-color-hover);--adp-btn-background-color-active: var(--adp-background-color-active);--adp-time-track-height: 1px;--adp-time-track-color: #dedede;--adp-time-track-color-hover: #b1b1b1;--adp-time-thumb-size: 12px;--adp-time-padding-inner: 10px;--adp-time-day-period-color: var(--adp-color-secondary);--adp-mobile-font-size: 16px;--adp-mobile-nav-height: 40px;--adp-mobile-width: 320px;--adp-mobile-day-cell-height: 38px;--adp-mobile-month-cell-height: 48px;--adp-mobile-year-cell-height: 64px}.air-datepicker-overlay{--adp-overlay-background-color: rgba(0, 0, 0, .3);--adp-overlay-transition-duration: .3s;--adp-overlay-transition-ease: ease-out;--adp-overlay-z-index: 99}

.air-datepicker{background:var(--adp-background-color);border:1px solid var(--adp-border-color);box-shadow:0 4px 12px rgba(0,0,0,0.15);border-radius:var(--adp-border-radius);box-sizing:content-box;display:grid;grid-template-columns:1fr;grid-template-rows:repeat(4, -webkit-max-content);grid-template-rows:repeat(4, max-content);grid-template-areas:var(--adp-grid-areas);font-family:var(--adp-font-family),sans-serif;font-size:var(--adp-font-size);color:var(--adp-color);width:var(--adp-width);position:absolute;transition:opacity var(--adp-transition-duration) var(--adp-transition-ease),transform var(--adp-transition-duration) var(--adp-transition-ease);z-index:var(--adp-z-index)}.air-datepicker:not(.-custom-position-){opacity:0}.air-datepicker.-from-top-{transform:translateY(calc(var(--adp-transition-offset) * -1))}.air-datepicker.-from-right-{transform:translateX(var(--adp-transition-offset))}.air-datepicker.-from-bottom-{transform:translateY(var(--adp-transition-offset))}.air-datepicker.-from-left-{transform:translateX(calc(var(--adp-transition-offset) * -1))}.air-datepicker.-active-:not(.-custom-position-){transform:translate(0, 0);opacity:1}.air-datepicker.-active-.-custom-position-{transition:none}.air-datepicker.-inline-{border-color:var(--adp-border-color-inline);box-shadow:none;position:static;left:auto;right:auto;opacity:1;transform:none}.air-datepicker.-inline- .air-datepicker--pointer{display:none}.air-datepicker.-is-mobile-{--adp-font-size: var(--adp-mobile-font-size);--adp-day-cell-height: var(--adp-mobile-day-cell-height);--adp-month-cell-height: var(--adp-mobile-month-cell-height);--adp-year-cell-height: var(--adp-mobile-year-cell-height);--adp-nav-height: var(--adp-mobile-nav-height);--adp-nav-action-size: var(--adp-mobile-nav-height);position:fixed;width:var(--adp-mobile-width);border:none}.air-datepicker.-is-mobile- *{-webkit-tap-highlight-color:transparent}.air-datepicker.-is-mobile- .air-datepicker--pointer{display:none}.air-datepicker.-is-mobile-:not(.-custom-position-){transform:translate(-50%, calc(-50% + var(--adp-transition-offset)))}.air-datepicker.-is-mobile-.-active-:not(.-custom-position-){transform:translate(-50%, -50%)}.air-datepicker.-custom-position-{transition:none}.air-datepicker-global-container{position:absolute;left:0;top:0;z-index:999999999999}.air-datepicker--pointer{--pointer-half-size: calc(var(--adp-pointer-size) / 2);position:absolute;width:var(--adp-pointer-size);height:var(--adp-pointer-size);z-index:-1}.air-datepicker--pointer:after{content:'';position:absolute;background:#fff;border-top:1px solid var(--adp-border-color-inline);border-right:1px solid var(--adp-border-color-inline);border-top-right-radius:var(--adp-poiner-border-radius);width:var(--adp-pointer-size);height:var(--adp-pointer-size);box-sizing:border-box}.-top-left- .air-datepicker--pointer,.-top-center- .air-datepicker--pointer,.-top-right- .air-datepicker--pointer,[data-popper-placement^='top'] .air-datepicker--pointer{top:calc(100% - var(--pointer-half-size) + 1px)}.-top-left- .air-datepicker--pointer:after,.-top-center- .air-datepicker--pointer:after,.-top-right- .air-datepicker--pointer:after,[data-popper-placement^='top'] .air-datepicker--pointer:after{transform:rotate(135deg)}.-right-top- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer,.-right-bottom- .air-datepicker--pointer,[data-popper-placement^='right'] .air-datepicker--pointer{right:calc(100% - var(--pointer-half-size) + 1px)}.-right-top- .air-datepicker--pointer:after,.-right-center- .air-datepicker--pointer:after,.-right-bottom- .air-datepicker--pointer:after,[data-popper-placement^='right'] .air-datepicker--pointer:after{transform:rotate(225deg)}.-bottom-left- .air-datepicker--pointer,.-bottom-center- .air-datepicker--pointer,.-bottom-right- .air-datepicker--pointer,[data-popper-placement^='bottom'] .air-datepicker--pointer{bottom:calc(100% - var(--pointer-half-size) + 1px)}.-bottom-left- .air-datepicker--pointer:after,.-bottom-center- .air-datepicker--pointer:after,.-bottom-right- .air-datepicker--pointer:after,[data-popper-placement^='bottom'] .air-datepicker--pointer:after{transform:rotate(315deg)}.-left-top- .air-datepicker--pointer,.-left-center- .air-datepicker--pointer,.-left-bottom- .air-datepicker--pointer,[data-popper-placement^='left'] .air-datepicker--pointer{left:calc(100% - var(--pointer-half-size) + 1px)}.-left-top- .air-datepicker--pointer:after,.-left-center- .air-datepicker--pointer:after,.-left-bottom- .air-datepicker--pointer:after,[data-popper-placement^='left'] .air-datepicker--pointer:after{transform:rotate(45deg)}.-top-left- .air-datepicker--pointer,.-bottom-left- .air-datepicker--pointer{left:var(--adp-pointer-offset)}.-top-right- .air-datepicker--pointer,.-bottom-right- .air-datepicker--pointer{right:var(--adp-pointer-offset)}.-top-center- .air-datepicker--pointer,.-bottom-center- .air-datepicker--pointer{left:calc(50% - var(--adp-pointer-size) / 2)}.-left-top- .air-datepicker--pointer,.-right-top- .air-datepicker--pointer{top:var(--adp-pointer-offset)}.-left-bottom- .air-datepicker--pointer,.-right-bottom- .air-datepicker--pointer{bottom:var(--adp-pointer-offset)}.-left-center- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer{top:calc(50% - var(--adp-pointer-size) / 2)}.air-datepicker--navigation{grid-area:nav}.air-datepicker--content{box-sizing:content-box;padding:var(--adp-padding);grid-area:body}.-only-timepicker- .air-datepicker--content{display:none}.air-datepicker--time{grid-area:timepicker}.air-datepicker--buttons{grid-area:buttons}.air-datepicker--buttons,.air-datepicker--time{padding:var(--adp-padding);border-top:1px solid var(--adp-border-color-inner)}.air-datepicker-overlay{position:fixed;background:var(--adp-overlay-background-color);left:0;top:0;width:0;height:0;opacity:0;transition:opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),left 0s,height 0s,width 0s;transition-delay:0s,var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration);z-index:var(--adp-overlay-z-index)}.air-datepicker-overlay.-active-{opacity:1;width:100%;height:100%;transition:opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),height 0s,width 0s}


/* End */


/* Start:/local/include/assets/css-v4/swiper-bundle.min.css?172183627418431*/
/**
 * Swiper 11.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 30, 2024
 */

@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');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.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}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{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,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(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,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(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,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/.default/components/bxmaker/authuserphone.login/new_auth/style.css?171083689030566*/
/*.c-bxmaker-authuserphone_login-default-box {*/
/*  border: 1px solid #d8e0e5;*/
/*  max-width: 300px;*/
/*  padding: 30px 15px 15px;*/
/*  position: relative;*/
/*  border-radius: 3px;*/
/*  -o-border-radius: 3px;*/
/*  -ms-border-radius: 3px;*/
/*  -moz-border-radius: 3px;*/
/*  -khtml-border-radius: 3px;*/
/*  -webkit-border-radius: 3px;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box * {*/
/*  box-sizing: border-box;*/
/*  -moz-box-sizing: border-box;*/
/*  -webkit-box-sizing: border-box;*/
/*  color: #121212;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box.register_show .cbaup_row.mini,*/
/*.c-bxmaker-authuserphone_login-default-box.register_show .cbaup_row.send_email {*/
/*  display: none !important;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .msg {*/
/*  display: none;*/
/*  border: 1px solid;*/
/*  padding: 15px;*/
/*  margin-bottom: 15px;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .msg.success {*/
/*  display: block;*/
/*  border-color: #00dd62;*/
/*  background: rgba(0, 221, 98, 0.1);*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .msg.error {*/
/*  display: block;*/
/*  border-color: #dd2002;*/
/*  background: rgba(221, 32, 2, 0.1);*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_btn_reg {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 0;*/
/*  padding: 4px 10px;*/
/*  border: 1px solid #d8e0e5;*/
/*  border-right: 0;*/
/*  border-top: 0;*/
/*  background-color: #F7F7F7;*/
/*  cursor: pointer;*/
/*  font-weight: bold;*/
/*  color: #666666;*/
/*  border-radius: 3px;*/
/*  -o-border-radius: 3px;*/
/*  -ms-border-radius: 3px;*/
/*  -moz-border-radius: 3px;*/
/*  -khtml-border-radius: 3px;*/
/*  -webkit-border-radius: 3px;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_btn_reg:hover {*/
/*  background-color: #EDF7FF;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_title {*/
/*  padding: 10px;*/
/*  text-align: center;*/
/*  font-size: 16px;*/
/*  text-transform: uppercase;*/
/*  font-weight: bold;*/
/*  color: #444;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row {*/
/*  padding-bottom: 15px;*/
/*  position: relative;*/
/*  width: 100%;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row--registration {*/
/*  display: none;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row a {*/
/*  font-size: 12px;*/
/*  color: #757575;*/
/*  line-height: 7px;*/
/*  display: inline;*/
/*  vertical-align: text-top;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.email_box,*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.login_box {*/
/*  display: none;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .btn_show_password {*/
/*  display: block;*/
/*  border-radius: 10px;*/
/*  -o-border-radius: 10px;*/
/*  -ms-border-radius: 10px;*/
/*  -moz-border-radius: 10px;*/
/*  -khtml-border-radius: 10px;*/
/*  -webkit-border-radius: 10px;*/
/*  background: rgba(81, 203, 87, 0.5);*/
/*  width: 15px;*/
/*  height: 15px;*/
/*  cursor: pointer;*/
/*  position: absolute;*/
/*  right: 10px;*/
/*  top: 11px;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .btn_show_password:hover {*/
/*  background: #51CB57;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .btn_show_password.active {*/
/*  background: rgba(203, 81, 81, 0.5);*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .btn_show_password.active:hover {*/
/*  background: #CB5151;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.mini {*/
/*  padding-bottom: 0;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.btn_box {*/
/*  text-align: center;*/
/*  padding-bottom: 0;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.captcha {*/
/*  display: none;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.captcha img {*/
/*  margin-bottom: 15px;*/
/*  cursor: pointer;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.captcha span.btn_captcha_reload {*/
/*  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpERjA1MzlBRUNDMTVFNTExQUM3NEQ1NkJDMkQ3OTNEMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCQThFQjU3NjE1Q0MxMUU1OTNBODgzQURCODdDNDQxQyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCQThFQjU3NTE1Q0MxMUU1OTNBODgzQURCODdDNDQxQyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUwMDUzOUFFQ0MxNUU1MTFBQzc0RDU2QkMyRDc5M0QxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkRGMDUzOUFFQ0MxNUU1MTFBQzc0RDU2QkMyRDc5M0QxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+D2D+iwAAAlhJREFUeNrEl01IVFEUx52PhQQjpYu+EYKZEFxMUCFGiyg0jcBFFtHAKJRB5DQkgyC4KCg3IgpGC20QqTZGw4gpuAhE0ZUMRYRgRgW6KUFwI2qO/wvHuBzOe737RngXfsy8c8/c/7v33HvOHV8+ny/yovk8E26KN//PpwTUgwugApwCW2ARfAXTYAwYzSBo03caPAAxUCr0R8A1kAI/QRq8AKtOhP0W9kdgASQsRHkrB09oFW64FX4Fel2G7hAYAR2mS/0W3LbwVfGcA7/ohcPgIjgp+D6jmHc5Ee60EH0H+sGU0BegOLeDatb3HHwC43ZLfQw8FfqToNFCVLW/YJR2fL/QnwUH7IR7hD61o/sM4tsKXgormrQSPgpuMfsHYRAnTb3sZ2ZLWAnHBfvDApJSij0fBpcl4UvMpuL5owDhSfCH2Wok4Qizje1DKs6y57B0nHhmKmS2IfpcY/bjWt/6nrCPOe24EFRxfA3O03g8MZ0Dy/Rd5fVkkN4upDmdcCE8BK7YVUFNoxJkVIyXmFOtC+GoaUj8Qla6Co4YDpQw9O9TwsPCTu82HEhVpHsOfQdUjJXIdzp7ersDGgzFBylt2rU3oEXP1dJSZZwWda2pQnHXZqaxf2UtGj1TRNeVg6CKOd+kevsN/HYongMr4LpmS/NQ8MveRyGF6qlwli4CAcpG9WS7L/jXUknN0V3M9pYZpPpaZ7jEqqy2mfyA37m2aRamu/oxmADFboX10naWjomTtkEZ0L8f9+p52lwROlrVFNcysEkb8guYAe8NNp/Hf2G8Et4VYAA4Q3V7uhJzpwAAAABJRU5ErkJggg==");*/
/*  width: 30px;*/
/*  height: 30px;*/
/*  margin-left: 15px;*/
/*  display: inline-block;*/
/*  position: absolute;*/
/*  top: 5px;*/
/*  cursor: pointer;*/
/*  opacity: 0.8;*/
/*  -o-opacity: 0.8;*/
/*  -ms-opacity: 0.8;*/
/*  -moz-opacity: 0.8;*/
/*  -khtml-opacity: 0.8;*/
/*  -webkit-opacity: 0.8;*/
/*  transition: all 0.2s ease-in-out;*/
/*  -o-transition: all 0.2s ease-in-out;*/
/*  -ms-transition: all 0.2s ease-in-out;*/
/*  -moz-transition: all 0.2s ease-in-out;*/
/*  -webkit-transition: all 0.2s ease-in-out;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.captcha span.btn_captcha_reload:hover {*/
/*  opacity: 1;*/
/*  -o-opacity: 1;*/
/*  -ms-opacity: 1;*/
/*  -moz-opacity: 1;*/
/*  -khtml-opacity: 1;*/
/*  -webkit-opacity: 1;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row.captcha.preloader span.btn_captcha_reload {*/
/*  transform: rotate(15deg);*/
/*  -o-transform: rotate(15deg);*/
/*  -ms-transform: rotate(15deg);*/
/*  -moz-transform: rotate(15deg);*/
/*  -webkit-transform: rotate(15deg);*/
/*  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row input[type="text"],*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row input[type="tel"],*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row input[type="password"] {*/
/*  position: relative;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  color: #000;*/
/*  margin: 0;*/
/*  font-size: 15px;*/
/*  line-height: 1.4;*/
/*  font-weight: normal;*/
/*  width: 100%;*/
/*  padding: 7px 10px;*/
/*  border: 1px solid #d8e0e5;*/
/*  border-radius: 3px;*/
/*  -o-border-radius: 3px;*/
/*  -ms-border-radius: 3px;*/
/*  -moz-border-radius: 3px;*/
/*  -khtml-border-radius: 3px;*/
/*  -webkit-border-radius: 3px;*/
/*  box-shadow: inset 1px 1px 3px -1px rgba(0, 0, 0, 0.4);*/
/*  -o-box-shadow: inset 1px 1px 3px -1px rgba(0, 0, 0, 0.4);*/
/*  -ms-box-shadow: inset 1px 1px 3px -1px rgba(0, 0, 0, 0.4);*/
/*  -moz-box-shadow: inset 1px 1px 3px -1px rgba(0, 0, 0, 0.4);*/
/*  -khtml-box-shadow: inset 1px 1px 3px -1px rgba(0, 0, 0, 0.4);*/
/*  -webkit-box-shadow: inset 1px 1px 3px -1px rgba(0, 0, 0, 0.4);*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row input[type="checkbox"] {*/
/*  width: 15px;*/
/*  height: 15px;*/
/*  display: inline-block;*/
/*  margin: 5px 0 0 0;*/
/*  color: #000;*/
/*  font-size: 15px;*/
/*  line-height: 1.4;*/
/*  font-weight: normal;*/
/*  opacity: 1;*/
/*  position: relative;*/
/*  vertical-align: baseline;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row label {*/
/*  color: #666;*/
/*  font-weight: normal;*/
/*  position: relative;*/
/*  top: -3px;*/
/*  cursor: pointer;*/
/*  margin: 0;*/
/*  font-size: 13px;*/
/*  line-height: 1.4;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_link {*/
/*  !*border: none;*!*/
/*  !*margin-top: 0;*!*/
/*  !*border-bottom: 1px dashed #53a1ff;*!*/
/*  text-decoration: none;*/
/*  !*color: #53a1ff;*!*/
/*  !*display: inline-block;*!*/
/*  cursor: pointer;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_link.btn_wait {*/
/*  padding: 0;*/
/*  font-size: 11px;*/
/*  background: transparent !important;*/
/*  line-height: 15px;*/
/*  font-weight: 400;*/
/*  height: auto;*/
/*  color: #000 !important;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_link:hover {*/
/*  border-color: transparent;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_link.timeout {*/
/*  border-bottom-color: transparent;*/
/*  color: #666;*/
/*  font-size: 0.85em;*/
/*  background-image: url("data:image/gif;base64,R0lGODlhCgAKAIQAAJSSlMzKzOTm5PT29Ly6vNza3KSipNTS1Ozu7Pz+/JyanMzOzOzq7Pz6/MTCxOTi5KSmpNTW1PTy9P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCAATACwAAAAACgAKAAAFOuA0RcYgnhMBCRMinRHUiIyyiAZ7NgoyAYLXKUBcEFESAWAiUZhOAoNoodAlDIWTxPcwEFCiBiQ7CQEAIfkECQgAFAAsAAAAAAoACgCEnJqczM7M7OrstLa09Pb03N7cxMLErK6s3Nrc9PL0/P78zMrMnJ6c1NLU7O7svLq8/Pr85ObkxMbEtLK0////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTcgRSEHw0yKSBmHIEiC6jxpsgCBqlMQ4OwqwY/iiABFCQDkSAkAJAneYEiJBASRw0KlmJgmBVEIACH5BAkIABAALAAAAAAKAAoAhJyanMzOzLS2tOzq7MTCxPz6/Nze3Ly+vPTy9MzKzKyqrLy6vOzu7MTGxPz+/OTi5P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUvIAQ5i6IIhqgOTWIsiQohQQIkDSOLRbP/wF+j8EMQAoBGAyELoBKBwe5RUhwcohAAIfkECQgADwAsAAAAAAoACgCDnJ6czM7M5Obk3NrctLa09PL0xMLE1NbU5OLkzMrM1NLU7O7s3N7c/Pr8xMbE////BCvwSdkMmnIlx4yaBZAEQGFh2GIM6EQQrdQt8SMYC+AkAC0dBkYgUUDdGqgIACH5BAkIAAsALAAAAAAKAAoAg5yanMzOzOzq7PT29MTCxPTy9MzKzNTS1Ozu7Pz6/MTGxP///wAAAAAAAAAAAAAAAAQucMlJ11jIqGKXOAFgGFwgGFlCFQZRTYT7LkTATYmCmMFSKApA4CDoFAI234wSAQAh+QQJCAANACwAAAAACgAKAIOcmpzMzszk5uT08vTk4uTExsTU1tTs7uz8+vzU0tTs6uz09vTMysz///8AAAAAAAAELLC1Y5C8jRjBFKYBwAzYBlhYEwxC2gheKhyJiwAaNhRAYBwYRUBgINgMpEYEACH5BAkIAA4ALAAAAAAKAAoAg5yanMzOzOzq7Nze3PT29Nza3PTy9OTm5Pz+/MzKzNTS1Ozu7OTi5Pz6/P///wAAAAQw0DkzSmFIOjHEco1GHAFwaJoBhKiUJKhxOgeBvq3UAF97AIEDC+RYcAQaBMMysDkiACH5BAkIAAwALAAAAAAKAAoAg5yanMzOzOzq7PT29MTGxOTm5PTy9Pz+/NTS1Ozu7Pz6/MzKzP///wAAAAAAAAAAAAQwkLEjShFD6iOVSFpAbInCJIApJYa0LBrzurBG1EYrDUCrJBwJAaExYCRBzaBSAEoiACH5BAkIAAcALAAAAAAKAAoAgpyenOzu7Pz6/PT29MzKzPTy9Pz+/P///wMieKo2svCIMVaApbwCIAgUQUBiJpIEFXTLJ2XYQj2RMhlRAgAh+QQJCAAIACwAAAAACgAKAIOcmpzMzszs7uzExsT8+vzU0tT08vTMysz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAEHRDJSautI0wjJgEdchzUQIoDNUoGQGzGFKRXbSMRACH5BAkIAAoALAAAAAAKAAoAg5yanMzOzOTm5PTy9Ozu7Pz6/MzKzNTS1Ozq7PT29P///wAAAAAAAAAAAAAAAAAAAAQgUMlJKyF1IhCyLACmCANlGFKATgMiDUDiKQEgzIM4VxEAIfkECQgADAAsAAAAAAoACgCDnJqczM7M7Ors9Pb0xMbE5Obk9PL0/P781NLU7O7s/Pr8zMrM////AAAAAAAAAAAABCyQyUmZkoIkduyQRgAEg1JSCpAYRsUIq5EUrjEkwDWZJgIQLcYJFBBIdK5JBAAh+QQJCAAMACwAAAAACgAKAIOcmpzMzszs6uz09vTExsTk5uT08vT8/vzU0tTs7uz8+vzMysz///8AAAAAAAAAAAAEL5DJSZlRhqw0hzhJsADB4A3UsShCUU2F+zKFMBAKxQ5KABCESwElMQQChoNhRokAACH5BAkIAAsALAAAAAAKAAoAg5yenMzOzOzq7PT29MTGxNza3PTy9Ozu7Pz6/MzKzOTi5P///wAAAAAAAAAAAAAAAAQpcMlJlxgnkTONOkASAAYyFEO1DEqhSoX7FkpasSVIJMDxdYGEwSB4USIAIfkECQgADQAsAAAAAAoACgCDnJqczM7M7O7s5OLk/Pr8xMbE1NbU9Pb01NLU9PL05Obk/P78zMrM////AAAAAAAABC6wNSJrHUqwkqowDMAwXXMYCUNVZ2BZgftKiHFYBGesQhEGBkElEUsMBjPJQhIBACH5BAkIABAALAAAAAAKAAoAhJyanMzOzOzq7OTi5PT29MTCxNTW1PTy9Pz+/MzKzNTS1Ozu7OTm5Pz6/MTGxNza3P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUzIAQRYlk+xpIIppAEQEKKTTIAMx0UC2OKjsIPwlgUAg1TAzAIIEoHByCwagUWhsdQNAsBACH5BAkIAA8ALAAAAAAKAAoAg5yanMzOzOzq7PT29Nze3LS2tNTW1PTy9Pz+/MTCxNTS1Ozu7Pz6/OTm5MzKzP///wQt8L0ma1VpLTtTAAKXEMBgIUrhONbRFIVwWGthMBYDEAnXAIEExbI4JAycyjACACH5BAkIAA4ALAAAAAAKAAoAg5yanMzOzOTm5LS2tPTy9MTGxNze3Pz6/KyqrOzu7Ly6vPT29MzKzOTi5P///wAAAAQt0DlDpJVMrSvbYAXnDAZwWAnRIODFMAgbWiAiEJV0AMYgFoGBQLQYBEQOlSQCACH5BAkIAAsALAAAAAAKAAoAg5yenNza3MTCxOzu7KyurMzKzPT29KSipNze3MTGxPTy9P///wAAAAAAAAAAAAAAAAQqcK0QpJWCjCuRvopEBMAFKApQFFeRHIfbFoCRmgEhhdZAIJyFLxGcABcRACH5BAkIABQALAAAAAAKAAoAhJSSlMzKzOTm5KyurPz6/KSipNTW1Ozu7Ly+vNTS1KyqrJyanMzOzOzq7Ly6vPz+/KSmpNza3PTy9MTGxP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0IEUZjmiKDtScogER5sSIRXSYxHIDwXQGAcWg95sAKJIFTCRxiRg+0aPGoggKiCoFERGFAAA7");*/
/*  background-position: left center;*/
/*  background-repeat: no-repeat;*/
/*  padding-left: 15px;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_send_email {*/
/*  border: none;*/
/*  margin-top: 5px;*/
/*  border-bottom: 1px dashed #BF0C22;*/
/*  text-decoration: none;*/
/*  color: #BF0C22;*/
/*  display: inline-block;*/
/*  cursor: pointer;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_send_email:hover {*/
/*  border-color: transparent;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_send_email.preloader,*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_link.preloader {*/
/*  color: transparent;*/
/*  display: block;*/
/*!*  height: 17px;*/
/*  width: 17px;*!*/
/*  border-bottom-color: transparent;*/
/*  font-size: 0em;*/
/*  background: url("data:image/gif;base64,R0lGODlhCgAKAIQAAJSSlMzKzOTm5PT29Ly6vNza3KSipNTS1Ozu7Pz+/JyanMzOzOzq7Pz6/MTCxOTi5KSmpNTW1PTy9P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCAATACwAAAAACgAKAAAFOuA0RcYgnhMBCRMinRHUiIyyiAZ7NgoyAYLXKUBcEFESAWAiUZhOAoNoodAlDIWTxPcwEFCiBiQ7CQEAIfkECQgAFAAsAAAAAAoACgCEnJqczM7M7OrstLa09Pb03N7cxMLErK6s3Nrc9PL0/P78zMrMnJ6c1NLU7O7svLq8/Pr85ObkxMbEtLK0////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTcgRSEHw0yKSBmHIEiC6jxpsgCBqlMQ4OwqwY/iiABFCQDkSAkAJAneYEiJBASRw0KlmJgmBVEIACH5BAkIABAALAAAAAAKAAoAhJyanMzOzLS2tOzq7MTCxPz6/Nze3Ly+vPTy9MzKzKyqrLy6vOzu7MTGxPz+/OTi5P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUvIAQ5i6IIhqgOTWIsiQohQQIkDSOLRbP/wF+j8EMQAoBGAyELoBKBwe5RUhwcohAAIfkECQgADwAsAAAAAAoACgCDnJ6czM7M5Obk3NrctLa09PL0xMLE1NbU5OLkzMrM1NLU7O7s3N7c/Pr8xMbE////BCvwSdkMmnIlx4yaBZAEQGFh2GIM6EQQrdQt8SMYC+AkAC0dBkYgUUDdGqgIACH5BAkIAAsALAAAAAAKAAoAg5yanMzOzOzq7PT29MTCxPTy9MzKzNTS1Ozu7Pz6/MTGxP///wAAAAAAAAAAAAAAAAQucMlJ11jIqGKXOAFgGFwgGFlCFQZRTYT7LkTATYmCmMFSKApA4CDoFAI234wSAQAh+QQJCAANACwAAAAACgAKAIOcmpzMzszk5uT08vTk4uTExsTU1tTs7uz8+vzU0tTs6uz09vTMysz///8AAAAAAAAELLC1Y5C8jRjBFKYBwAzYBlhYEwxC2gheKhyJiwAaNhRAYBwYRUBgINgMpEYEACH5BAkIAA4ALAAAAAAKAAoAg5yanMzOzOzq7Nze3PT29Nza3PTy9OTm5Pz+/MzKzNTS1Ozu7OTi5Pz6/P///wAAAAQw0DkzSmFIOjHEco1GHAFwaJoBhKiUJKhxOgeBvq3UAF97AIEDC+RYcAQaBMMysDkiACH5BAkIAAwALAAAAAAKAAoAg5yanMzOzOzq7PT29MTGxOTm5PTy9Pz+/NTS1Ozu7Pz6/MzKzP///wAAAAAAAAAAAAQwkLEjShFD6iOVSFpAbInCJIApJYa0LBrzurBG1EYrDUCrJBwJAaExYCRBzaBSAEoiACH5BAkIAAcALAAAAAAKAAoAgpyenOzu7Pz6/PT29MzKzPTy9Pz+/P///wMieKo2svCIMVaApbwCIAgUQUBiJpIEFXTLJ2XYQj2RMhlRAgAh+QQJCAAIACwAAAAACgAKAIOcmpzMzszs7uzExsT8+vzU0tT08vTMysz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAEHRDJSautI0wjJgEdchzUQIoDNUoGQGzGFKRXbSMRACH5BAkIAAoALAAAAAAKAAoAg5yanMzOzOTm5PTy9Ozu7Pz6/MzKzNTS1Ozq7PT29P///wAAAAAAAAAAAAAAAAAAAAQgUMlJKyF1IhCyLACmCANlGFKATgMiDUDiKQEgzIM4VxEAIfkECQgADAAsAAAAAAoACgCDnJqczM7M7Ors9Pb0xMbE5Obk9PL0/P781NLU7O7s/Pr8zMrM////AAAAAAAAAAAABCyQyUmZkoIkduyQRgAEg1JSCpAYRsUIq5EUrjEkwDWZJgIQLcYJFBBIdK5JBAAh+QQJCAAMACwAAAAACgAKAIOcmpzMzszs6uz09vTExsTk5uT08vT8/vzU0tTs7uz8+vzMysz///8AAAAAAAAAAAAEL5DJSZlRhqw0hzhJsADB4A3UsShCUU2F+zKFMBAKxQ5KABCESwElMQQChoNhRokAACH5BAkIAAsALAAAAAAKAAoAg5yenMzOzOzq7PT29MTGxNza3PTy9Ozu7Pz6/MzKzOTi5P///wAAAAAAAAAAAAAAAAQpcMlJlxgnkTONOkASAAYyFEO1DEqhSoX7FkpasSVIJMDxdYGEwSB4USIAIfkECQgADQAsAAAAAAoACgCDnJqczM7M7O7s5OLk/Pr8xMbE1NbU9Pb01NLU9PL05Obk/P78zMrM////AAAAAAAABC6wNSJrHUqwkqowDMAwXXMYCUNVZ2BZgftKiHFYBGesQhEGBkElEUsMBjPJQhIBACH5BAkIABAALAAAAAAKAAoAhJyanMzOzOzq7OTi5PT29MTCxNTW1PTy9Pz+/MzKzNTS1Ozu7OTm5Pz6/MTGxNza3P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUzIAQRYlk+xpIIppAEQEKKTTIAMx0UC2OKjsIPwlgUAg1TAzAIIEoHByCwagUWhsdQNAsBACH5BAkIAA8ALAAAAAAKAAoAg5yanMzOzOzq7PT29Nze3LS2tNTW1PTy9Pz+/MTCxNTS1Ozu7Pz6/OTm5MzKzP///wQt8L0ma1VpLTtTAAKXEMBgIUrhONbRFIVwWGthMBYDEAnXAIEExbI4JAycyjACACH5BAkIAA4ALAAAAAAKAAoAg5yanMzOzOTm5LS2tPTy9MTGxNze3Pz6/KyqrOzu7Ly6vPT29MzKzOTi5P///wAAAAQt0DlDpJVMrSvbYAXnDAZwWAnRIODFMAgbWiAiEJV0AMYgFoGBQLQYBEQOlSQCACH5BAkIAAsALAAAAAAKAAoAg5yenNza3MTCxOzu7KyurMzKzPT29KSipNze3MTGxPTy9P///wAAAAAAAAAAAAAAAAQqcK0QpJWCjCuRvopEBMAFKApQFFeRHIfbFoCRmgEhhdZAIJyFLxGcABcRACH5BAkIABQALAAAAAAKAAoAhJSSlMzKzOTm5KyurPz6/KSipNTW1Ozu7Ly+vNTS1KyqrJyanMzOzOzq7Ly6vPz+/KSmpNza3PTy9MTGxP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0IEUZjmiKDtScogER5sSIRXSYxHIDwXQGAcWg95sAKJIFTCRxiRg+0aPGoggKiCoFERGFAAA7") #da5128 center center no-repeat !important;*/
/*}*/
/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn_send_email {*/
/*  margin-top: 0;*/
/*  margin-bottom: 5px;*/
/*}*/

/*.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn.preloader {*/
/*  color: transparent;*/
/*  background-image: url("data:image/gif;base64,R0lGODlhFAAUAKUAAATC3ITi7ETS5MTy9GTa7OT2/CTK3KTq9FTW5JTm7NT2/PT6/DTO5BTG3HTe7FzW5Izi7EzS5Mzy9CzO5Pz+/Fza5AzG3Gze7OT6/CTK5LTu9Jzm9Nz2/PT+/DzS5BzK3Hze7Izm7EzW5Mzy/Fza7ATD2wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCQAlACwAAAAAFAAUAAAGqsCSUGipHAzDpHL4UBQwjaUUkMAUIBOpNIQZZJOQS3SJWGg+ywOlIFBaRoXvMsKheJIPDEQr/BQKFkMbC3JaIhQXQxIKgXwlAAUaQhNdJQcEjhocJRscHHscknwIByUDBWglGhgAjiUWHBJDBBQPrgwFG0OwGIVLVQhJDAsYD61LuBKNQwx1okkfEhgRUhYPIEoMEgvYrkIeG1Ygx64NGAsD1N5CBgkR5EJBACH5BAkJACUALAAAAAAUABQAhQTC3ITi7ETS5MTy9CTK3GTa7OT2/KTq9DTO5FTW5HTe7PT+/LTu9BTG3NT2/CzK5JTm7Oz6/Kzq9Fza5Hze7AzG3Izi7EzW5Mzy9CTK5Gza7OT6/DzS5Pz+/Lzu9BzK3Nz2/CzO5Kzu9Fza7Hzi7ATD2wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAadwJJQWElAPBiMB5KoDJ/CC1IpOSAPTmgJEEgqHgAhINPQCkkYSWYo2XgUZe0lHRcmJKDORqBFFB5mJRd5fIGBHyAGWYZyHRqMZgAHFJCVlowWDGGXQgUdE5xEIBsEoSUICxsTm1AhChx9eREDI08fDBiFUBUjEg4HQwi4CoccWRUIFkkarE8NEhgDDAwDSRK6WgACARIDAxIBAotCQQAh+QQJCQAkACwAAAAAFAAUAIUEwtyE4uxE0uTE8vQkytzk9vyk6vRk2uw0zuT0/vwUxtyU5uxc1uTU9vwsyuS07vR03uzs+vw8zuQMxtyM5uxM0uTM8vwkyuTk+vys6vRs2uz8/vwcytyc5vRc2uTc9vwszuS87vR84uw80uQEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGlkCSUDipiAyPh0FUmQyfwwlFuVgglQIoVEEACAGEQ+YB8WqFh1DhE4JwF+SzUPPJZD6bgkABz8qfFR8JAhcMIH9QHAUhZohQE42OkpOUlZZPAByXAAMYDpQIGg4ICRgMZk5yIw8dHAh4EQMhERB/B6wOEwwZFg0ZDH8AYmQgqQAICogSHUkZBh1jC8nBEhALdgsQEpEkQQAh+QQJCQAkACwAAAAAFAAUAIUEwtyE4uxE0uTE8vQkytxk2uys6vTk9vxU1uQ0zuSU5uwUxtzU9vx03uz8/vxc1uSM4uwszuRs2uy87vTs+vw8zuRc2uQMxtxM1uTM8vwkyuS07vTk+vyc5vQcytzc9vyM5uxs3uw80uRc2uwEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk0CScEgkeSSCS3FZvHQ6oApzanw8C4DpIjQ5HCaNiyfQKTAFHMfHYPg4OIIFWbRMGDBEzCZi7ECUVEwWHVKBSwQdIR6GRQAKEGWMRGQKAZJDD48KWZckCwUdBJ1CIpGjAJCiIgMjnBcPA3RFCX4LCW4UEwMUDgwJTAhQBK8GGRkGD4BLAFZlfJ0JZB3KkgAJBQuGQQAh+QQJCQAhACwAAAAAFAAUAIUEwtyE4uxE0uTE8vRs2uzk9vwkytxU1uTU9vx83uz0/vw0zuQUxtys6vRM0uTM8vR03uzs+vwszuRc1uQMxtxs3uzk+vwkyuTc9vx84uz8/vw80uQcyty87vRM1uTM8vxc2uQEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGlcCQcEgsGo/IpPLooAgZlU4B0yEMKY7hIiAICSwaTKOBsQoFgUWIAklwBIqCB8lJQCiLjAPQwXCUDmkTAX8ATkocARNtAEtDAHYZZo5CFQkBk5QVAYyUa3YHAQZLDE6JB1sHShcRAwChEgAQGaOPQgAgFgoLiRCNElxDEAodAxFhamgSQxuHIRMNHw8NIIcUXZ7Z2tpBACH5BAkJACMALAAAAAAUABQAhQTC3Izi7ETS5Mzy/GTa7CTK3Oz6/FTW5Kzq9DTO5Nz2/BTG3HTe7CzK5FzW5Lzu9EzS5Pz+/OT2/Fza5AzG3KTq9NT2/Gza7CTK5PT+/LTu9DzS5BzK3Hzi7CzO5MTy9EzW5OT6/Fza7ATD2wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQwJFQSGmAFsOkctiYEAiUpRQgeG6Q0mV1slgwHgpEVtggTCgCSSR8GAOcC0FGARozL1eFhGMfgggLFxF1fUIOBAAdFQCFIwsEDo1DVQQbkoaAjQAaAQBmkgcRBBwEEI0NIQpoBAV9byEZCaQOUVkTHwZrCRQOF61jFQMIIhQcvZaNHFV4khQEFw6/jWgFjElBACH5BAkJAB8ALAAAAAAUABQAhATC3Izi7ETS5CTK3GTa7NT2/FTW5DTO5PT+/BTG3CzK5HTe7OT2/FzW5KTq9EzS5DzO5Fza5AzG3CTK5Gze7Nz2/Pz+/BzK3CzO5Hze7OT6/LTu9EzW5DzS5Fza7ATD2wWP4CeKwAAJxvNAFzC+4vBw3NMJAie48AccNUyC90lIeqLDQ5BIUAJI2GUpETAsjugrgakiKhxtT8JgXMQ9iuWB7m0YxLaoshFH6jCHQbypyF8AGnh/HwYWBIQfChoVR3IAERoIB1xnaBsWFQdVBpZiGQ0SCSgKUaI8ABdKBqVIVTU5MwYCnj2pBwIzAgctMCEAIfkECQkAFgAsAAAAABQAFACEBMLctO70RNLkJMrc3Pb8ZNrs9P78FMbcVNbkNM7kLM7k5Pb8fN7sDMbcxPL0TNbkJMrkbNrs/P78HMrcXNrk5Pr8BMPbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABX+gJYrAoSRoMkzA6I7AmSgyerwv0LjHgA640Q7XOAFxAkeLeLq5BIbFkDiYWhoLwiTItUQkjy6jgAtUljjAIoAjsLsBQvvNjZfPXECFPqKQuRQSf10vCllWPVY8CwYJLwcoiiQBjjgTkYRBlyoHSyWSPCgCMykKaEElEzUDnS8hACH5BAkJABEALAAAAAAUABQAhATC3LTu9DzS5Nz2/FzW5DTO5BTG3Pz+/EzW5OT2/Gze7AzG3Lzu9ETS5GTa7BzK3OT6/ATD2wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV5YCSOZAQYC1CuJfC8CytHi/Eas+w+eL7uMVJDIBM0dirRIsGQMQYGWzCiOCBkiINiwUsyErlEIGLjRQbjWWAQeb3Oadma7I4EEskfJH16LBwHBDIEBw4jXCgDTSxPU20PAAUFMpIlXJA+K2WOmXQ8nD6XmJ2HBnkyIQAh+QQJCQAVACwAAAAAFAAUAIQEwty07vRE0uRk2uzc9vwkyuT0/vwUxtxU1uR83uxs2uzk9vwMxtzE8vRM1uQ0zuT8/vwcytxc2uRs3uzk+vwEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFSmAljmRpnmiqrifAmkAjvOSxGDMtRsTCmIpEygGZmAILV4sSMBGaqQDBCUVJjxQljGkaQCSpAbjEIFAKOtHDQDmkK4+A9k2v23UhACH5BAkJABoALAAAAAAUABQAhATC3Izi7ETS5NT2/GTa7PT6/CTK5FTW5BTG3OT2/HTe7FzW5KTq9Pz+/Fza5AzG3EzW5Nz2/Gze7PT+/DTO5BzK3OT6/Hze7LTu9Fza7ATD2wAAAAAAAAAAAAAAAAAAAAVJoCaOZGmeaKquZSAhbMk0lhCTUNTYt1glEVhPA2lIhhpAAmPCLFSYiCnCTB0YTQsASWg8h4+IxYCkFCyLbY+iq/YeiwtyTkeGAAAh+QQJCQAcACwAAAAAFAAUAIQEwtyM4uxE0uTU9vxk2uzs+vwkyuSs6vRU1uQUxtzk9vx03uy87vT8/vxc2uQMxtyk6vRM1uTc9vxs2uz0/vw0zuS07vQcytzk+vx84uzE8vRc2uwEw9sAAAAAAAAAAAAFdCAnjmRpnugJpGmSlIfELK+4is91lUjcYAIO4PIQ6m6miKQhGF4AuRrqIlE8EkRskRVpTKI6lg2S4ejCYtJ5lx5hwwELMqXTEhoIcXQvwRhYWmZPFRQKDnMjOWw5KxVLBRobJTpbQokbBwMQJS5tJYieoSkhACH5BAkJABkALAAAAAAUABQAhATC3Kzq9ETS5Nz2/CTK3Gza7PT+/MTy9BTG3FzW5Oz6/DTO5OT2/CzO5NT2/AzG3Lzu9EzS5CTK5HTe7Pz+/Mzy/BzK3Fza5OT6/ATD2wAAAAAAAAAAAAAAAAAAAAAAAAV/YCaOZGme6GmlKbEgYgExAzQ9JyI0gHgNgcCAghGIEDDAYoE7RQYGgXIBQCwILAsDAnAhGkxW5tF7CFwLcQm8aKhJy+V7xKbOp95MVWwl6CwABxhuLS8AYEoGGAk9YyQPSz1IIgtDCgcQChMikC8nDwkBFQ4BCZxXcyQwqaxiIQAh+QQJCQAYACwAAAAAFAAUAIQEwtys6vRE0uTc9vwkytzE8vR03uz8/vwUxtxc2uTs+vw0zuS87vTk9vzU9vwMxty07vRM1uQszuTM8vwcytxc2uw80uTk+vwEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgSAmjmRpjsCpisBCrOoSLRhiME3DGM9JRYKHoHEYBAKDw0Uw6gEiEQRGAomQIgEahhAkzGAkGUUmBYsQM2jKjHlCmWyR4B2XAyNr81NAjqMXP1pmMgRPFCIWBRVrDwkFFjVAKT0iC0kKDAUKBw4LQlEnjQETEwEJPTKCcQSqda4qIQAh+QQJCQAfACwAAAAAFAAUAIQEwtys6vRE0uTc9vwkytxk2uzE8vRc1uT0/vw0zuQUxtzs+vwsyuTU9vxM0uTk9vx03uzM8vRc2uQMxty87vQkyuRs2uz8/vw80uQcytwszuRM1uTk+vzM8vxc2uwEw9sFkOAnjmRpjtmpioBQAOvpHpNiUdxAWSpTSBPB4zIIBAY8E0BSUAgQg80KgAEwLFXKILVKWBibQgowiX0Uhc3hZR4BCutDm8SEz0drJmwO8EgEFlwrCmUZBQ4EFhoxBAsGLQUEAAl7I2UfSwsICYY0JxAIFAYLFw0JEwcWBCoHAR0RAR4TqBYJdywFGLcjCrsqIQAh+QQJCQAlACwAAAAAFAAUAIUEwtyE4uxE0uTE8vRk2uwkytzk9vxU1uSk6vR03uw0zuT0/vwUxtzU9vwsyuRc1uS07vRM0uRs2uzs+vx83uxc2uQMxtyM4uzM8vwkyuTk+vys6vT8/vwcytzc9vwszuS87vRM1uRs3ux84uxc2uwEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk8CScEgsGoeKwnFZAhwCAubxKekwRCDDRqoYSSwCA8ezOTAtiUBHMQ5JLQBFIMIweDrSq+KhlnDcUh0BDwkJACMIAFJNFGkSi0UiFF6QRAmNFIpSABAXAI18eFIPHAQFAQcfBBZSDhoeFgcjChasSwAPGgsKgoZMFQMTYwoMlw5SCBgbDxYdaRGVQwJQmtEFGdFSQQAh+QQJCQAhACwAAAAAFAAUAIUEwtyE4uxE0uTU9vxk2uwkytyk6vRU1uT0/vx03uw0zuQUxtyU5uzk9vxc1uRs2uwszuR83uxc2uQMxtyM4uxM1uTc9vwkyuS07vT8/vw80uQcytyc5vTk+vxs3ux84uxc2uwEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGlsCQUAgYGo9ITQTJHAIIHMakyYQGNgsPhTrUcAITQSNj4IYmFEZBgGhUzCGvZNKwbMwFxYNTeGQOZgscWgwAGB1FXAAMAV8hFhhcDpGNjCEGgFQYFiGNaYlUAB0YiwEEDAtmBxkEEBwPEHdcEHUTUApmAA4dCAoFX1NcGBkWCgsUHLhmESATBciZcGcMHA6g0gnK0k5HQQAh+QQJCQAgACwAAAAAFAAUAIUEwtyU5uxE0uTc9vwkytxk2uy07vQ0zuSk6vT0/vx03uwUxtxU1uQsyuTk9vxs2uw8zuSs6vQMxtyc5vRM1uQkyuTE8vT8/vx83uwcytxc2uQszuTk+vxs3uw80uSs7vQEw9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGmUCQUChZDI9IpAChSTqFAIUhIng6pQECwKo0BBYCy5YLkiAiBEHCYSQLDA+JY5AhlzEGwuNCsWIKAAUYCAgSBg5jSQAOBmYIXiADBlwGAyABBpCSlJaYExEABhyJSAAcBgAREwoMABoFVhoXBQ0GGKRPDXMSUhB2CxwJBw2qEnahBxkTBr52Qg3LsM4gFJmA0yAMEwfYQgu4QQAh+QQJCQAfACwAAAAAFAAUAIQEwtyE4uxE0uTE8vQkytyk6vRk2uzk9vw0zuQUxtyc5vRc1uS07vR03uyM4uxM0uTc9vwszuT8/vwMxtzM8vQkyuSs6vRs3uzk+vw80uQcyty87vR83uyM5uxM1uQEw9sFleAnipMHjGiKehs1qfAHBBTVnHFKW1WuehRLwpeabAaRTCaWEaAeFM7ksIltDi9RhxK5SB4xj+TymQiOgKvvwAAUGMEPhOFjQD4WysAip+fseAMMCgAMGDgqABhtgggvBhILMQsSBggUDiMTEFUwGxATHBRgIwgIMaYRFG1EKBpwTq0iCHANsjI0NohEE0GxtwACux8hACH5BAkJACUALAAAAAAUABQAhQTC3ITi7ETS5MTy9GTa7CTK3OT2/KTq9FTW5DTO5JTm7NT2/Hze7BTG3CzK5PT+/Izi7EzS5Mzy9Gza7FzW5AzG3CTK5OT6/LTu9DzO5Jzm9Nz2/Hzi7BzK3CzO5Pz+/Izm7EzW5Mzy/Gze7Fza5ATD2wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagwJJQWCFRhsgkkrIwcJTQEkBx2QQKUSXoMnBAAVAEt/MdCJKVphfa2HwySwMkW+psDJWh5pKYMLIhHyNDEhsAGAZgXxcYJREHXCUbjVkYGyUDBgYDJQuUUZaYBgpwGBeKSgCMaRJDBB9HUQQUCQYaQxUbF2tRVAhICQ8XDVG1EnnAGKhIBRIXEXRJGc4B0UMeVAYMy3QMFxLQ1kMIEchDQQA7");*/
/*  background-position: center center;*/
/*  background-repeat: no-repeat;*/
/*}*/
/*!*# sourceMappingURL=style.css.map *!*/
/*div.bxmaker_checkout-template{*/

/*}*/
/*.bxmaker_checkout-template.c-bxmaker-authuserphone_login-default-box .cbaup_row .cbaup_btn{*/
/*  margin: inherit;*/
/*  width: 100%;*/
/*  text-align: center;*/
/*  padding: 0 2rem;*/
/*  background: #da5128!important;*/
/*  border: none;*/
/*  font-size: 1.143rem;*/
/*  border-radius: 0;*/
/*  cursor: pointer;*/
/*}*/

/*.userAuthPopup.popup-wrapper.popup-auth{*/
/*  max-width: 400px;*/
/*  padding: 50px 50px 40px;*/
/*}*/

/*.basketAuthNoSmsCode{*/
/*  border: none;*/
/*  margin-bottom: 0;*/
/*  border-bottom: 1px dashed #53a1ff;*/
/*  text-decoration: none;*/
/*  color: #53a1ff;*/
/*  display: inline-block;*/
/*  cursor: pointer;*/
/*}*/
/*.basketAuthNoSmsCode:hover{*/
/*  border-color: transparent;*/
/*}*/
/*.authBasketCloseButton{*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 3px;*/
/*  width: 100%;*/
/*  text-decoration: none;*/
/*  text-align: center;*/
/*  font-style: normal;*/
/*  font-family: Roboto,sans-serif;*/
/*  font-weight: 400;*/
/*  color: #333;*/
/*  line-height: 44px;*/
/*}*/

.btn.disabled {
    pointer-events: none !important;
    background-color: #e4e5ea !important;
}

.msg-error.error {
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 20px;

    background: rgb(255 0 0 / 40%);
}

.cbaup_row.jsPasswordRow .tc.mt10 {
    margin-bottom: 20px;
}

div.mfp-content .userAuthPopup.popup-wrapper.popup-auth {
    padding: 0 !important;
}

.popup-wrap.show .popup-sign-btn-yandex,
.popup-wrap.show .popup-sign-info,
.popup-wrap.show .mb-20.cbaup_row,
.popup-wrap.show .msg.msg-error.success,
.popup-wrap.show .popup-sign-btn p
{
    display: none !important;
}

.popup-wrap.show .msg.msg-error.error {
    text-align: center;
}

.popup-wrap.show .popup-title-item {
    display: block;
    text-align: center;
}

.popup-wrap.show .jsPassword {
    display: block;
    margin: 0 auto;
    width: 200px;
    padding: 0;

    outline: none;
    border: 0;
    text-align: center;

    background: none;
}

.btn-center {
    margin: 0 auto;
}

.msg.success {
    margin-bottom: 20px;
}

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

.mcg-text.active {
    margin-bottom: 10px;
}

.btn-none-bg.btn_wait {
    background: none;
    padding: 0;
}

.btn-none-bg.btn_wait:hover {
    background: none;
}

#auth-form {
    background: #fafafa;
}

.pincode {
    text-align: center;
}

.pincode + .jsPassword.password {
    display: none;
}

.pincode input[type="number"] {
    display: inline-block;
    width: 30px;
    height: 20px;
    padding: 15px 0;

    text-align: center;
    border: none;
    border-bottom: 1px solid #717c89;
    color: #091922;
    outline: none;
    background: none;
}
.pincode input[type="number"]::-webkit-outer-spin-button,
.pincode input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

.new-pincode {
    display: block;
    text-align: center;
}

.new-pincode + .jsPassword.password {
    display: none;
}

.new-pincode input.js-otp-input[type="text"] {
    display: inline-block;
    width: 30px;
    height: 20px;
    padding: 15px 0 !important;

    text-align: center;
    border: none;
    border-bottom: 1px solid #717c89;
    color: #091922;
    outline: none;
    background: none;

}

.c-bxmaker-authuserphone_login-default-box .cbaup_row input.js-otp-input[type="text"] {
    padding: 15px 0 !important;
}

.new-pincode input.js-otp-input[type="text"]::-webkit-outer-spin-button,
.new-pincode input.js-otp-input[type="text"]::-webkit-inner-spin-button {
    display: none;
}

@media (max-width: 1000px) {
    .mfp-container {
        padding-left: 0;
        padding-right: 0;
    }
}

/*@media (min-width: 768px) {*/
/*    .popup-medium {*/
/*        width: fit-content !important;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    .mfp-content,
    #auth-form,
    #auth-form .c-bxmaker-authuserphone_login-default-box{
        height: 100%;
    }
    .popup-medium {
        width: 100% !important;
    }
    .userAuthPopup.popup-wrapper.popup-auth {
        margin-top: 0 !important;
    }
}

@media (max-width: 475px) {
    .popup-wrap.show .mcg-text.active {
        white-space: normal;

        max-width: 85%;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .btn-none-bg.btn_wait {
        white-space: normal;
        text-align: center;
    }

    #auth-form,
    #auth-form .bxmaker_checkout-template {
        overflow: hidden;
    }
}

#auth-form .authBasketCloseButton {
    display: none !important;
}
/* End */


/* Start:/local/templates/shop/css/old/popup.css?16548767793971*/
.popup-wrapper {
    position: relative;
    background: #fff;
    margin: 0 auto
}

.popup-wrapper.popup-checkout, .popup-wrapper.popup-vacancy {
    max-width: 600px
}

.popup-wrapper.popup-bigprod {
    max-width: 950px
}

.popup-wrapper h3 {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1.875rem;
    text-transform: uppercase;
    font-weight: 800
}

.popup-wrapper.popup-checkout h3 {
    margin-bottom: .625rem
}

.popup-wrapper.popup-checkout .product-price {
    margin-bottom: 40px
}

.popup-wrapper.popup-checkout .product-price p {
    margin: 0
}

.popup-ingredients {
    padding: 10px 0
}

.ingredients-hide {
    margin-bottom: 30px
}

.popup-counters {
    margin-bottom: 40px
}

.popup-counters p {
    font-weight: 700;
    color: #333;
    font-size: 1.143rem
}

.popup-checkout .icon-basket {
    font-size: 1.714rem;
    margin: 10px 10px 0 0;
    display: inline-block;
    vertical-align: text-bottom
}

.popup-wrapper form {
    padding: 0 1.25rem
}

.mfp-close {
    font-family: Roboto, sans-serif;
    font-weight: 300
}

.popup-border {
    padding: 35px;
    position: relative
}

.popup-border:after, .popup-border:before {
    content: "";
    position: absolute;
    top: 55px;
    bottom: 55px;
    width: 3px;
    height: auto;
    background: #1a3853
}

.popup-border:after {
    right: 0
}

.popup-border:before {
    left: 0
}

.popup-border-vertical {
    position: relative
}

.popup-border-vertical:after, .popup-border-vertical:before {
    content: "";
    position: absolute;
    left: 55px;
    right: 55px;
    height: 3px;
    width: auto;
    background: #1a3853
}

.popup-border-vertical:after {
    top: 0
}

.popup-border-vertical:before {
    bottom: 0
}

.popup-corner {
    overflow: visible;
    border: 1.875rem solid transparent;
    padding: 1.25rem;
    position: relative;
    background: url(/local/templates/shop/css/old/../../images/old/top-corner-left.svg) 0 0, url(/local/templates/shop/css/old/../../images/old/top-corner-right.svg) 100% 0, url(/local/templates/shop/css/old/../../images/old/bottom-corner-left.svg) 0 100%, url(/local/templates/shop/css/old/../../images/old/bottom-corner-right.svg) 100% 100%;
    background-size: 3.4375rem auto;
    background-repeat: no-repeat;
    background-color: #fff
}

.popup-clear {
    max-width: 840px;
    padding: 50px 40px
}

.popup-auth {
    max-width: 795px;
    padding: 60px 25px 40px
}

.popup-auth-col {
    width: 50%;
    padding: 0 25px
}

.popup-auth-col:first-child {
    border-right: 1px solid #c7c7c7
}

.popup-auth-link {
    color: #9e9e9e;
    float: right;
    display: inline-block;
    outline: none
}

.popup-auth-link:hover {
    text-decoration: none
}

.popup-auth-soc {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    box-pack: justify;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.popup-auth-info, .popup-auth-soc-wrap {
    display: inline-block;
    width: 100%
}

.popup-auth-info {
    text-align: center
}

.popup-auth-info p {
    color: #424242;
    font-weight: 400;
    font-size: 1.143rem;
    margin-bottom: 5px
}

.popup-auth-info a {
    color: #da5128;
    font-size: 1.429rem;
    font-weight: 500;
    text-transform: uppercase
}

.popup-auth-info a:hover {
    text-decoration: none
}
/* End */


/* Start:/local/templates/shop/css/old/auth.css?1653617519635*/
.regystry-title {
    text-align: center
}

.regystry-title-item {
    text-transform: uppercase;
    font-size: 1.857rem;
    color: #413e30;
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    font-family: "Inter", sans-serif;
    font-size: 23px;
    font-weight: bold;
}

.regystry-title-item:before {
    content: "";
    position: absolute;
    top: -60px;
    left: calc(50% - 22px);
    width: 45px;
    height: 45px;
    background: url(/local/templates/shop/css/old/../../images/old/regystry.png) no-repeat
}
.c-bxmaker-authuserphone_warning {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: bold;
}
/* End */


/* Start:/local/templates/.default/components/bitrix/system.auth.form/popup_auth/style.css?1530972454659*/
div.bx-system-auth-form span.bx-auth-secure {background-color:#FFFAE3; border:1px solid #DEDBC8; padding:2px; display:inline-block; vertical-align:bottom; margin-top:-1px;}
div.bx-system-auth-form div.bx-auth-secure-icon {background-image:url(/local/templates/.default/components/bitrix/system.auth.form/popup_auth/images/sec.png); background-repeat:no-repeat; background-position:center; width:19px; height:18px;}
div.bx-system-auth-form div.bx-auth-secure-unlock {background-image:url(/local/templates/.default/components/bitrix/system.auth.form/popup_auth/images/sec-unlocked.png);}
.bx-system-auth-form .error_text {margin-left: 42px;}
.bx-ss-icon {display: block;}

font.errortext {
    font-size: 17px;
    color: red;
}

div.bx-system-auth-form .success_auth{
	color:#70c190; text-align:center;
}
/* End */


/* Start:/local/templates/.default/ajax/ajax.css?1482742660448*/
iframe.waitwindowlocal {position:absolute; border:0px; z-index:9999;}
div.waitwindowlocal {position:absolute; width:25px; height: 25px; padding:0px; z-index:10000; background-color:#FCF7D1; border:1px solid #E1B52D; background-image:url(/local/templates/.default/ajax/images/wait.gif); background-position:center center; background-repeat:no-repeat;}
div.waitwindowlocalshadow {position:absolute; z-index:9998; background-image:url(/local/templates/.default/ajax/images/shadow.gif); border:1px solid #808080;}

/* End */


/* Start:/local/templates/.default/components/bitrix/system.auth.form/errors/style.css?1493463996477*/
div.bx-system-auth-form span.bx-auth-secure {background-color:#FFFAE3; border:1px solid #DEDBC8; padding:2px; display:inline-block; vertical-align:bottom; margin-top:-1px;}
div.bx-system-auth-form div.bx-auth-secure-icon {background-image:url(/local/templates/.default/components/bitrix/system.auth.form/errors/images/sec.png); background-repeat:no-repeat; background-position:center; width:19px; height:18px;}
div.bx-system-auth-form div.bx-auth-secure-unlock {background-image:url(/local/templates/.default/components/bitrix/system.auth.form/errors/images/sec-unlocked.png);}
.error_text1 {margin-left: 20px;}


/* End */


/* Start:/local/templates/.default/components/arturgolubev/search.title/header_new/style.css?171197780411988*/
.bx_smart_searche,.bx_smart_searche *,.bx-searchtitle,.bx-searchtitle *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:14px}.bx-searchtitle{margin:10px 0 0}.bx-searchtitle-history{margin-top:5px}.bx-searchtitle-history a{color:#222;text-decoration:underline}.bx-searchtitle-history a:hover{text-decoration:none}.bx-searchtitle .bx-block-title{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;color:#343434;text-transform:uppercase;font-size:12px;margin-bottom:9px;font-weight:600}.bx-searchtitle .bx-input-group{position:relative;display:table;border-collapse:separate;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bx-searchtitle .bx-input-group .bx-form-control{display:table-cell;position:relative;z-index:2;float:left;width:100%;margin-bottom:0;display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#333;background-color:#f8fafc;border:1px solid #d5dadc;border-right:none;border-radius:1px 0 0 1px;outline:none;box-shadow:none!important;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bx-searchtitle .bx-input-group .bx-form-control:focus{background-color:#fff}.bx-ios .bx-searchtitle .bx-input-group .bx-form-control{background-image:-webkit-linear-gradient(#f8fafc 0%,#f8fafc 100%);background-image:linear-gradient(#f8fafc 0%,#f8fafc 100%)}.bx-searchtitle .bx-input-group-btn{position:relative;font-size:0;width:1%;white-space:nowrap;vertical-align:middle;display:table-cell;line-height:normal}.bx-searchtitle .bx-input-group-btn button{position:relative;border:none;background:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/search-icon.png) center center no-repeat #95a1a8;display:inline-block;margin-bottom:0;cursor:pointer;padding:0;border-radius:0 1px 1px 0;color:#fff;font-size:16px;line-height:1.42857143;height:34px;width:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.bx-searchtitle .bx-input-group-btn button:hover{background-color:#1484CE}div.title-search-result{border:0 none!important;border-top:0 none;display:none;overflow:hidden;z-index:999;min-width:200px;margin-top:3px;background-color:#FFF;border-radius:2px}div.title-search-fader{display:none;background-image:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/fader.png);background-position:right top;background-repeat:repeat-y;position:absolute}p.title-search-preview{font-size:12px}div.title-search-result td.title-search-price span{font-size:26px}.bx_smart_searche{padding-top:8px;border-top:0 none;border-radius:0 0 3px 3px}.bx_smart_searche .bx_info_wrap{margin-left:85px}.bx_smart_searche .bx_img_element{float:left;padding:5px;width:75px;text-align:center}.bx_smart_searche .bx_item_block{min-height:65px;position:relative}.bx_smart_searche .bx_image{display:inline-block;max-width:100%}.bx_smart_searche .bx_image.empty_image{background-image:url(/local/templates/.default/components/arturgolubev/search.title/header_new/image/noimg.png)}.bx_smart_searche .bx_item_element{padding:8px 0}.bx_smart_searche .bx_item_element_all_result{text-align:center}.bx_smart_searche .bx_item_element hr{margin:0;border:none;border-bottom:1px solid #e5e5e5}.bx_smart_searche .bx_item_element a{margin-top:5px;display:inline-block;color:#333;font-size:14px;text-decoration:none;font-weight:700}.bx_smart_searche .bx_item_element a b{font-weight:700;color:#000}.bx_smart_searche .bx_item_element a:hover,.bx_smart_searche .bx_item_element a:hover b{text-decoration:underline}.bx_smart_searche .bx_item_preview_text{font-size:13px;padding:5px 10px 5px 0}.bx_smart_searche .bx_price{font-weight:700;font-size:15px;margin-top:5px}.bx_smart_searche .bx_price .old{font-weight:400;text-decoration:line-through;color:#636363;font-size:12px;vertical-align:middle}.bx_smart_searche .bx_item_block.all_result{min-height:0}.bx_smart_searche .bx_item_block.others_result{min-height:0;line-height:12px;padding:0}.bx_smart_searche .bx_item_block.all_result .all_result_button{display:inline-block;font-size:14px;background-color:#1485CE;border:1px solid;border-color:#1485CE;color:#FFF;padding:0 22px;height:34px;text-decoration:none;border-radius:2px;margin:0 0 8px;line-height:34px;text-transform:uppercase;font-weight:700;letter-spacing:.5px}.bx_smart_searche .bx_item_block_href{display:block;text-decoration:none;margin-bottom:5px;padding:8px;line-height:14px}.bx_smart_searche .bx_item_block_href:hover{background-color:#feeed2}.bx_smart_searche .bx_item_block_hrline{border-bottom:1px solid #f5a61c;margin:0 8px 5px}.bx_item_block_item_clear{display:block;clear:both}.bx_smart_searche .bx_item_block_item_info_wrap{display:block}.bx_smart_searche .bx_item_block_item_info_wrap.wpic{padding-left:39px}.bx_smart_searche .bx_item_block_item_info{display:block}.bx_smart_searche .bx_item_block_href_category_title{color:#a2a2a2}.bx_smart_searche .bx_item_block_href_category_name{color:#f5a61c;font-weight:700;text-transform:uppercase}.bx_smart_searche .bx_item_block_item_image{width:34px;height:34px;float:left;margin-right:5px;position:relative}.bx_smart_searche .bx_item_block_item_image img{position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;max-width:100%;max-height:100%}.bx_smart_searche .bx_item_block_item_name{color:#333;overflow:hidden;height:34px;display:block;line-height:17px;display:flex}.bx_smart_searche .bx_item_block_item_name_flex_align{margin:auto 0}.bx_smart_searche .bx_item_block_item_simple_name{color:#333;display:block;line-height:17px}.bx_smart_searche .bx_item_block_item_name b,.bx_smart_searche .bx_item_block_item_simple_name b{color:#f5a61c}.bx_smart_searche .bx_item_block_item_price{float:right;text-align:right;color:#333;line-height:17px;padding-left:5px}.bx_smart_searche .bx_item_block_item_price.bx_item_block_item_price_only_one{line-height:34px}.bx_smart_searche .bx_item_block_item_price .bx_price_new{white-space:nowrap;font-weight:700;display:block}.bx_smart_searche .bx_item_block_item_price .bx_price_old{white-space:nowrap;text-decoration:line-through}.bx_smart_searche .bx_item_block_item_text{color:#9b9b9b;display:block;margin-top:8px;font-size:13px;line-height:15px}.bx_smart_searche .bx_item_block_item_props{color:#9b9b9b;display:block;margin-top:8px;font-size:13px;line-height:15px}.bx_item_block_item_prop_item{display:block}.bx_smart_no_result_find{padding:0 8px 8px}.bx-searchtitle .bx-searchtitle-preloader{position:absolute;top:2px;right:110%;width:30px;height:30px;z-index:5;display:none}.bx-searchtitle .bx-searchtitle-preloader.view{background:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/loader_orange.gif) center center no-repeat}.bx-searchtitle.theme-blue .bx-input-group .bx-form-control{border-color:#0083d1}.bx-searchtitle.theme-blue .bx-searchtitle-preloader.view{background-image:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/loader_blue.gif)}.bx_smart_searche.theme-blue .bx_item_block.all_result .all_result_button{background-color:#0083d1;border-color:#0083d1}.bx-searchtitle.theme-blue .bx-input-group-btn button{background-color:#0083d1;border-color:#0083d1;color:#FFF}.bx-searchtitle.theme-blue .bx-input-group-btn button:hover,.bx_smart_searche.theme-blue .bx_item_block.all_result .all_result_button:hover{background-color:#5ca6e4;border-color:#5ca6e4;text-decoration:none}.bx_smart_searche.theme-blue .bx_item_element a b{color:#5ca6e4}.bx_smart_searche.theme-blue .bx_item_block_href:hover{background-color:#b2d9f1}.bx_smart_searche.theme-blue .bx_item_block_href_category_name{color:#0083d1}.bx_smart_searche.theme-blue .bx_item_block_item_name b,.bx_smart_searche.theme-blue .bx_item_block_item_simple_name b{color:#0083d1}.bx_smart_searche.theme-blue .bx_item_block_hrline{border-color:#0083d1}.bx-searchtitle.theme-black .bx-input-group .bx-form-control{border-color:#333}.bx-searchtitle.theme-black .bx-searchtitle-preloader.view{background-image:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/loader_black.gif)}.bx_smart_searche.theme-black .bx_item_block.all_result .all_result_button{background-color:#333;border-color:#333}.bx-searchtitle.theme-black .bx-input-group-btn button{background-color:#333;border-color:#333;color:#FFF}.bx-searchtitle.theme-black .bx-input-group-btn button:hover,.bx_smart_searche.theme-black .bx_item_block.all_result .all_result_button:hover{background-color:#5c5c5c;border-color:#5c5c5c;text-decoration:none}.bx_smart_searche.theme-black .bx_item_element a b{color:#5c5c5c}.bx_smart_searche.theme-black{border-top:0 none;border-radius:0 0 3px 3px}.bx_smart_searche.theme-black .bx_item_block_href:hover{background-color:#eaeaea}.bx_smart_searche.theme-black .bx_item_block_href_category_name{color:#333}.bx_smart_searche.theme-black .bx_item_block_item_name b,.bx_smart_searche.theme-black .bx_item_block_item_simple_name b{color:#333}.bx_smart_searche.theme-black .bx_item_block_hrline{border-color:#333}.bx-searchtitle.theme-green .bx-input-group .bx-form-control{border-color:#159ebb}.bx-searchtitle.theme-green .bx-searchtitle-preloader.view{background-image:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/loader_green.gif)}.bx_smart_searche.theme-green .bx_item_block.all_result .all_result_button{background-color:#159ebb;border-color:#159ebb}.bx-searchtitle.theme-green .bx-input-group-btn button{background-color:#159ebb;border-color:#159ebb;color:#FFF}.bx-searchtitle.theme-green .bx-input-group-btn button:hover,.bx_smart_searche.theme-green .bx_item_block.all_result .all_result_button:hover{background-color:#44b1c9;border-color:#44b1c9;text-decoration:none}.bx_smart_searche.theme-green .bx_item_element a b{color:#44b1c9}.bx_smart_searche.theme-green .bx_item_block_href:hover{background-color:#d0ebf1}.bx_smart_searche.theme-green .bx_item_block_href_category_name{color:#159ebb}.bx_smart_searche.theme-green .bx_item_block_item_name b,.bx_smart_searche.theme-green .bx_item_block_item_simple_name b{color:#159ebb}.bx_smart_searche.theme-green .bx_item_block_hrline{border-color:#159ebb}.bx-searchtitle.theme-red .bx-input-group .bx-form-control{border-color:#E22B2B}.bx-searchtitle.theme-red .bx-searchtitle-preloader.view{background-image:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/loader_red.gif)}.bx_smart_searche.theme-red .bx_item_block.all_result .all_result_button{background-color:#E22B2B;border-color:#E22B2B}.bx-searchtitle.theme-red .bx-input-group-btn button{background-color:#E22B2B;border-color:#E22B2B;color:#FFF}.bx-searchtitle.theme-red .bx-input-group-btn button:hover,.bx_smart_searche.theme-red .bx_item_block.all_result .all_result_button:hover{background-color:#e95c5c;border-color:#e95c5c;text-decoration:none}.bx_smart_searche.theme-red .bx_item_element a b{color:#e95c5c}.bx_smart_searche.theme-green .bx_item_block_href:hover{background-color:#f9d4d4}.bx_smart_searche.theme-red .bx_item_block_href_category_name{color:#E22B2B}.bx_smart_searche.theme-red .bx_item_block_item_name b,.bx_smart_searche.theme-red .bx_item_block_item_simple_name b{color:#E22B2B}.bx_smart_searche.theme-red .bx_item_block_hrline{border-color:#E22B2B}.bx-searchtitle.theme-yellow .bx-input-group .bx-form-control{border-color:#F9A91D}.bx-searchtitle.theme-yellow .bx-searchtitle-preloader.view{background-image:url(/local/templates/.default/components/arturgolubev/search.title/header_new/images/loader_yellow.gif)}.bx_smart_searche.theme-yellow .bx_item_block.all_result .all_result_button{background-color:#F9A91D;border-color:#F9A91D}.bx-searchtitle.theme-yellow .bx-input-group-btn button{background-color:#F9A91D;border-color:#F9A91D;color:#FFF}.bx-searchtitle.theme-yellow .bx-input-group-btn button:hover,.bx_smart_searche.theme-yellow .bx_item_block.all_result .all_result_button:hover{background-color:#faba4a;border-color:#faba4a;text-decoration:none}.bx_smart_searche.theme-yellow .bx_item_element a b{color:#faba4a}.bx_smart_searche.theme-yellow .bx_item_block_href_category_name{color:#F9A91D}.bx_smart_searche.theme-yellow .bx_item_block_item_name b,.bx_smart_searche.theme-yellow .bx_item_block_item_simple_name b{color:#F9A91D}.bx_smart_searche.theme-yellow .bx_item_block_hrline{border-color:#F9A91D}
/* End */


/* Start:/local/include/assets/js/lightgallery/css/lightgallery-bundle.min.css?172674928231060*/
@font-face{font-family:lg;src:url(/local/include/assets/js/lightgallery/css/../fonts/lg.woff2?io9a6k) format("woff2"),url(/local/include/assets/js/lightgallery/css/../fonts/lg.ttf?io9a6k) format("truetype"),url(/local/include/assets/js/lightgallery/css/../fonts/lg.woff?io9a6k) format("woff"),url(/local/include/assets/js/lightgallery/css/../fonts/lg.svg?io9a6k#lg) format("svg");font-weight:400;font-style:normal;font-display:block}.lg-icon{font-family:lg!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-container{font-family: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"}.lg-next,.lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1084;outline:0;border:none}.lg-next.disabled,.lg-prev.disabled{opacity:0!important;cursor:default}.lg-next:hover:not(.disabled),.lg-prev:hover:not(.disabled){color:#fff}.lg-single-item .lg-next,.lg-single-item .lg-prev{display:none}.lg-next{right:20px}.lg-next:before{content:"\e095"}.lg-prev{left:20px}.lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-moz-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-ms-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-webkit-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-moz-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-ms-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-media-overlap .lg-toolbar{background-image:linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:medium none;will-change:color;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear;background:0 0;border:none;box-shadow:none}.lg-toolbar .lg-icon.lg-icon-18{font-size:18px}.lg-toolbar .lg-icon:hover{color:#fff}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-maximize{font-size:22px}.lg-toolbar .lg-maximize:after{content:"\e90a"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{color:#eee;font-size:16px;padding:10px 40px;text-align:center;z-index:1080;opacity:0;-webkit-transition:opacity .2s ease-out 0s;-o-transition:opacity .2s ease-out 0s;transition:opacity .2s ease-out 0s}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}.lg-sub-html a{color:inherit}.lg-sub-html a:hover{text-decoration:underline}.lg-media-overlap .lg-sub-html{background-image:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.6))}.lg-item .lg-sub-html{position:absolute;bottom:0;right:0;left:0}.lg-error-msg{font-size:14px;color:#999}.lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;height:47px;vertical-align:middle}.lg-closing .lg-next,.lg-closing .lg-prev,.lg-closing .lg-sub-html,.lg-closing .lg-toolbar{opacity:0;-webkit-transition:-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-moz-transition:-moz-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-o-transition:-o-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;transition:transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont{opacity:0;-moz-transform:scale3d(.5,.5,.5);-o-transform:scale3d(.5,.5,.5);-ms-transform:scale3d(.5,.5,.5);-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);will-change:transform,opacity;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont{opacity:1;-moz-transform:scale3d(1,1,1);-o-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.lg-icon:focus-visible{color:#fff;border-radius:3px;outline:1px dashed rgba(255,255,255,.6)}.lg-toolbar .lg-icon:focus-visible{border-radius:8px;outline-offset:-5px}.lg-outer .lg-thumb-outer{background-color:#0d0a0a;width:100%;max-height:350px;overflow:hidden;float:left}.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer .lg-thumb-outer.lg-thumb-align-middle{text-align:center}.lg-outer .lg-thumb-outer.lg-thumb-align-left{text-align:left}.lg-outer .lg-thumb-outer.lg-thumb-align-right{text-align:right}.lg-outer.lg-single-item .lg-thumb-outer{display:none}.lg-outer .lg-thumb{padding:5px 0;height:100%;margin-bottom:-5px;display:inline-block;vertical-align:middle}@media (min-width:768px){.lg-outer .lg-thumb{padding:10px 0}}.lg-outer .lg-thumb-item{cursor:pointer;float:left;overflow:hidden;height:100%;border-radius:2px;margin-bottom:5px;will-change:border-color}@media (min-width:768px){.lg-outer .lg-thumb-item{border-radius:4px;border:2px solid #fff;-webkit-transition:border-color .25s ease;-o-transition:border-color .25s ease;transition:border-color .25s ease}}.lg-outer .lg-thumb-item.active,.lg-outer .lg-thumb-item:hover{border-color:#a90707}.lg-outer .lg-thumb-item img{width:100%;height:100%;object-fit:cover;display:block}.lg-outer.lg-can-toggle .lg-item{padding-bottom:0}.lg-outer .lg-toggle-thumb:after{content:"\e1ff"}.lg-outer.lg-animate-thumb .lg-thumb{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}.lg-outer .lg-video-cont{text-align:center;display:inline-block;vertical-align:middle;position:relative}.lg-outer .lg-video-cont .lg-object{width:100%!important;height:100%!important}.lg-outer .lg-has-iframe .lg-video-cont{-webkit-overflow-scrolling:touch;overflow:auto}.lg-outer .lg-video-object{position:absolute;left:0;right:0;width:100%;height:100%;top:0;bottom:0;z-index:3}.lg-outer .lg-video-poster{z-index:1}.lg-outer .lg-has-video .lg-video-object{opacity:0;will-change:opacity;-webkit-transition:opacity .3s ease-in;-o-transition:opacity .3s ease-in;transition:opacity .3s ease-in}.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button,.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster{opacity:0!important}.lg-outer .lg-has-video.lg-video-loaded .lg-video-object{opacity:1}@keyframes lg-play-stroke{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes lg-play-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.lg-video-play-button{width:18%;max-width:140px;position:absolute;top:50%;left:50%;z-index:2;cursor:pointer;transform:translate(-50%,-50%) scale(1);will-change:opacity,transform;-webkit-transition:-webkit-transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s;-moz-transition:-moz-transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s;-o-transition:-o-transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s;transition:transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s}.lg-video-play-button:hover .lg-video-play-icon,.lg-video-play-button:hover .lg-video-play-icon-bg{opacity:1}.lg-video-play-icon-bg{fill:none;stroke-width:3%;stroke:#fcfcfc;opacity:.6;will-change:opacity;-webkit-transition:opacity .12s ease-in;-o-transition:opacity .12s ease-in;transition:opacity .12s ease-in}.lg-video-play-icon-circle{position:absolute;top:0;left:0;bottom:0;right:0;fill:none;stroke-width:3%;stroke:rgba(30,30,30,.9);stroke-opacity:1;stroke-linecap:round;stroke-dasharray:200;stroke-dashoffset:200}.lg-video-play-icon{position:absolute;width:25%;max-width:120px;left:50%;top:50%;transform:translate3d(-50%,-50%,0);opacity:.6;will-change:opacity;-webkit-transition:opacity .12s ease-in;-o-transition:opacity .12s ease-in;transition:opacity .12s ease-in}.lg-video-play-icon .lg-video-play-icon-inner{fill:#fcfcfc}.lg-video-loading .lg-video-play-icon-circle{animation:lg-play-rotate 2s linear .25s infinite,lg-play-stroke 1.5s ease-in-out .25s infinite}.lg-video-loaded .lg-video-play-button{opacity:0;transform:translate(-50%,-50%) scale(.7)}.lg-progress-bar{background-color:#333;height:5px;left:0;position:absolute;top:0;width:100%;z-index:1083;opacity:0;will-change:opacity;-webkit-transition:opacity 80ms ease 0s;-moz-transition:opacity 80ms ease 0s;-o-transition:opacity 80ms ease 0s;transition:opacity 80ms ease 0s}.lg-progress-bar .lg-progress{background-color:#a90707;height:5px;width:0}.lg-progress-bar.lg-start .lg-progress{width:100%}.lg-show-autoplay .lg-progress-bar{opacity:1}.lg-autoplay-button:after{content:"\e01d"}.lg-show-autoplay .lg-autoplay-button:after{content:"\e01a"}.lg-single-item .lg-autoplay-button{opacity:.75;pointer-events:none}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{will-change:transform;-webkit-transition:-webkit-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s;-moz-transition:-moz-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s;-o-transition:-o-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s;transition:transform .5s cubic-bezier(.12,.415,.01,1.19) 0s}.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap{will-change:transform;-webkit-transition:-webkit-transform .8s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .8s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .8s cubic-bezier(0,0,.25,1) 0s;transition:transform .8s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:-webkit-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;-moz-transition:-moz-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;-o-transition:-o-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;transition:transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition{transition:none!important}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition{transform:scale3d(1,1,1) translate3d(-50%,-50%,0)!important;max-width:none!important;max-height:none!important;top:50%!important;left:50%!important}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x{transform:scale3d(1,1,1) translate3d(-50%,0,0)!important;top:0!important;left:50%!important;max-width:none!important;max-height:none!important}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y{transform:scale3d(1,1,1) translate3d(0,-50%,0)!important;top:50%!important;left:0!important;max-width:none!important;max-height:none!important}.lg-icon.lg-zoom-in:after{content:"\e311"}.lg-actual-size .lg-icon.lg-zoom-in{opacity:1;pointer-events:auto}.lg-icon.lg-actual-size{font-size:20px}.lg-icon.lg-actual-size:after{content:"\e033"}.lg-icon.lg-zoom-out{opacity:.5;pointer-events:none}.lg-icon.lg-zoom-out:after{content:"\e312"}.lg-zoomed .lg-icon.lg-zoom-out{opacity:1;pointer-events:auto}.lg-outer.lg-first-slide-loading .lg-actual-size,.lg-outer.lg-first-slide-loading .lg-zoom-in,.lg-outer.lg-first-slide-loading .lg-zoom-out,.lg-outer[data-lg-slide-type=iframe] .lg-actual-size,.lg-outer[data-lg-slide-type=iframe] .lg-zoom-in,.lg-outer[data-lg-slide-type=iframe] .lg-zoom-out,.lg-outer[data-lg-slide-type=video] .lg-actual-size,.lg-outer[data-lg-slide-type=video] .lg-zoom-in,.lg-outer[data-lg-slide-type=video] .lg-zoom-out{opacity:.75;pointer-events:none}.lg-outer .lg-pager-outer{text-align:center;z-index:1080;height:10px;margin-bottom:10px}.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont{overflow:visible}.lg-outer.lg-single-item .lg-pager-outer{display:none}.lg-outer .lg-pager-cont{cursor:pointer;display:inline-block;overflow:hidden;position:relative;vertical-align:top;margin:0 5px}.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-pager-cont.lg-pager-active .lg-pager{box-shadow:0 0 0 2px #fff inset}.lg-outer .lg-pager-thumb-cont{background-color:#fff;color:#fff;bottom:100%;height:83px;left:0;margin-bottom:20px;margin-left:-60px;opacity:0;padding:5px;position:absolute;width:120px;border-radius:3px;will-change:transform,opacity;-webkit-transition:opacity .15s ease 0s,-webkit-transform .15s ease 0s;-moz-transition:opacity .15s ease 0s,-moz-transform .15s ease 0s;-o-transition:opacity .15s ease 0s,-o-transform .15s ease 0s;transition:opacity .15s ease 0s,transform .15s ease 0s;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.lg-outer .lg-pager-thumb-cont img{width:100%;height:100%}.lg-outer .lg-pager{background-color:rgba(255,255,255,.5);border-radius:50%;box-shadow:0 0 0 8px rgba(255,255,255,.7) inset;display:block;height:12px;-webkit-transition:box-shadow .3s ease 0s;-o-transition:box-shadow .3s ease 0s;transition:box-shadow .3s ease 0s;width:12px}.lg-outer .lg-pager:focus,.lg-outer .lg-pager:hover{box-shadow:0 0 0 8px #fff inset}.lg-outer .lg-caret{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px dashed;bottom:-10px;display:inline-block;height:0;left:50%;margin-left:-5px;position:absolute;vertical-align:middle;width:0}.lg-fullscreen:after{content:"\e20c"}.lg-fullscreen-on .lg-fullscreen:after{content:"\e20d"}.lg-outer .lg-dropdown-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:absolute;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;will-change:visibility,opacity;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer.lg-dropdown-active .lg-dropdown,.lg-outer.lg-dropdown-active .lg-dropdown-overlay{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer.lg-dropdown-active .lg-share{color:#fff}.lg-outer .lg-dropdown{background-color:#fff;border-radius:2px;font-size:14px;list-style-type:none;margin:0;padding:10px 0;position:absolute;right:0;text-align:left;top:50px;opacity:0;visibility:hidden;-moz-transform:translate3d(0,5px,0);-o-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0);will-change:visibility,opacity,transform;-webkit-transition:-webkit-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-moz-transition:-moz-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-o-transition:-o-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;transition:transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s}.lg-outer .lg-dropdown:after{content:"";display:block;height:0;width:0;position:absolute;border:8px solid transparent;border-bottom-color:#fff;right:16px;top:-16px}.lg-outer .lg-dropdown>li:last-child{margin-bottom:0}.lg-outer .lg-dropdown>li:hover a{color:#333}.lg-outer .lg-dropdown a{color:#333;display:block;white-space:pre;padding:4px 12px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px}.lg-outer .lg-dropdown a:hover{background-color:rgba(0,0,0,.07)}.lg-outer .lg-dropdown .lg-dropdown-text{display:inline-block;line-height:1;margin-top:-3px;vertical-align:middle}.lg-outer .lg-dropdown .lg-icon{color:#333;display:inline-block;float:none;font-size:20px;height:auto;line-height:1;margin-right:8px;padding:0;vertical-align:middle;width:auto}.lg-outer .lg-share{position:relative}.lg-outer .lg-share:after{content:"\e80d"}.lg-outer .lg-share-facebook .lg-icon{color:#3b5998}.lg-outer .lg-share-facebook .lg-icon:after{content:"\e904"}.lg-outer .lg-share-twitter .lg-icon{color:#00aced}.lg-outer .lg-share-twitter .lg-icon:after{content:"\e907"}.lg-outer .lg-share-pinterest .lg-icon{color:#cb2027}.lg-outer .lg-share-pinterest .lg-icon:after{content:"\e906"}.lg-comment-box{width:420px;max-width:100%;position:absolute;right:0;top:0;bottom:0;z-index:9999;background-color:#fff;will-change:transform;-moz-transform:translate3d(100%,0,0);-o-transform:translate3d(100%,0,0);-ms-transform:translate3d(100%,0,0);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .4s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .4s cubic-bezier(0,0,.25,1) 0s;transition:transform .4s cubic-bezier(0,0,.25,1) 0s}.lg-comment-box .lg-comment-title{margin:0;color:#fff;font-size:18px}.lg-comment-box .lg-comment-header{background-color:#000;padding:12px 20px;position:absolute;left:0;right:0;top:0}.lg-comment-box .lg-comment-body{height:100%!important;padding-top:43px!important;width:100%!important}.lg-comment-box .fb-comments{height:100%;width:100%;background:url(/local/include/assets/js/lightgallery/css/../images/loading.gif) no-repeat scroll center center #fff;overflow-y:auto;display:inline-block}.lg-comment-box .fb-comments[fb-xfbml-state=rendered]{background-image:none}.lg-comment-box .fb-comments>span{max-width:100%}.lg-comment-box .lg-comment-close{position:absolute;right:5px;top:12px;cursor:pointer;font-size:20px;color:#999;will-change:color;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.lg-comment-box .lg-comment-close:hover{color:#fff}.lg-comment-box .lg-comment-close:after{content:"\e070"}.lg-comment-box iframe{max-width:100%!important;width:100%!important}.lg-comment-box #disqus_thread{padding:0 20px}.lg-outer .lg-comment-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:fixed;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;will-change:visibility,opacity;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer .lg-comment-toggle:after{content:"\e908"}.lg-outer.lg-comment-active .lg-comment-overlay{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer.lg-comment-active .lg-comment-toggle{color:#fff}.lg-outer.lg-comment-active .lg-comment-box{-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-img-rotate{position:absolute;left:0;right:0;top:0;bottom:0;-webkit-transition:-webkit-transform .4s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .4s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .4s cubic-bezier(0,0,.25,1) 0s;transition:transform .4s cubic-bezier(0,0,.25,1) 0s}.lg-outer[data-lg-slide-type=iframe] .lg-flip-hor,.lg-outer[data-lg-slide-type=iframe] .lg-flip-ver,.lg-outer[data-lg-slide-type=iframe] .lg-rotate-left,.lg-outer[data-lg-slide-type=iframe] .lg-rotate-right,.lg-outer[data-lg-slide-type=video] .lg-flip-hor,.lg-outer[data-lg-slide-type=video] .lg-flip-ver,.lg-outer[data-lg-slide-type=video] .lg-rotate-left,.lg-outer[data-lg-slide-type=video] .lg-rotate-right{opacity:.75;pointer-events:none}.lg-outer .lg-img-rotate:before{content:"";display:inline-block;height:100%;vertical-align:middle}.lg-rotate-left:after{content:"\e900"}.lg-rotate-right:after{content:"\e901"}.lg-icon.lg-flip-hor,.lg-icon.lg-flip-ver{font-size:26px}.lg-flip-ver:after{content:"\e903"}.lg-flip-hor:after{content:"\e902"}.lg-medium-zoom-item{cursor:zoom-in}.lg-medium-zoom .lg-outer{cursor:zoom-out}.lg-medium-zoom .lg-outer.lg-grab img.lg-object{cursor:zoom-out}.lg-medium-zoom .lg-outer.lg-grabbing img.lg-object{cursor:zoom-out}.lg-relative-caption .lg-outer .lg-sub-html{white-space:normal;bottom:auto;padding:0;background-image:none}.lg-relative-caption .lg-outer .lg-relative-caption-item{opacity:0;padding:16px 0;transition:.5s opacity ease}.lg-relative-caption .lg-outer .lg-show-caption .lg-relative-caption-item{opacity:1}.lg-group:after{content:"";display:table;clear:both}.lg-container{display:none;outline:0}.lg-container.lg-show{display:block}.lg-on{scroll-behavior:unset}.lg-overlay-open{overflow:hidden}.lg-hide-sub-html .lg-sub-html,.lg-next,.lg-pager-outer,.lg-prev,.lg-toolbar{opacity:0;will-change:transform,opacity;-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s}.lg-show-in .lg-next,.lg-show-in .lg-pager-outer,.lg-show-in .lg-prev,.lg-show-in .lg-toolbar{opacity:1}.lg-show-in.lg-hide-sub-html .lg-sub-html{opacity:1}.lg-show-in .lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-show-in .lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-show-in .lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}.lg-outer{width:100%;height:100%;position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:.001;outline:0;will-change:auto;overflow:hidden;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-zoom-from-image{opacity:1}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-content{position:absolute;top:0;left:0;right:0;bottom:0}.lg-outer .lg-inner{width:100%;position:absolute;left:0;top:0;bottom:0;-webkit-transition:opacity 0s;-o-transition:opacity 0s;transition:opacity 0s;white-space:nowrap}.lg-outer .lg-item{display:none!important}.lg-outer .lg-item:not(.lg-start-end-progress){background:url(/local/include/assets/js/lightgallery/css/../images/loading.gif) no-repeat scroll center center transparent}.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer.lg-css .lg-current{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:100%;vertical-align:middle}.lg-outer .lg-img-wrap{position:absolute;left:0;right:0;top:0;bottom:0;white-space:nowrap;font-size:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-object{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto;height:auto;position:relative}.lg-outer .lg-empty-html .lg-sub-html,.lg-outer .lg-empty-html.lg-sub-html{display:none}.lg-outer.lg-hide-download .lg-download{opacity:.75;pointer-events:none}.lg-outer .lg-first-slide .lg-dummy-img{position:absolute;top:50%;left:50%}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html{opacity:1;transition:opacity .2s ease-out .15s}.lg-outer .lg-media-cont{text-align:center;display:inline-block;vertical-align:middle;position:relative}.lg-outer .lg-media-cont .lg-object{width:100%!important;height:100%!important}.lg-outer .lg-has-iframe .lg-media-cont{-webkit-overflow-scrolling:touch;overflow:auto}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#000;opacity:0;will-change:auto;-webkit-transition:opacity 333ms ease-in 0s;-o-transition:opacity 333ms ease-in 0s;transition:opacity 333ms ease-in 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-moz-transition:-moz-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-o-transition:-o-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;transition:transform 1s cubic-bezier(.175,.885,.32,1.275) 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-container{display:none}.lg-container.lg-show{display:block}.lg-container.lg-dragging-vertical .lg-backdrop{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-inline .lg-backdrop,.lg-inline .lg-outer{position:absolute}.lg-inline .lg-backdrop{z-index:1}.lg-inline .lg-outer{z-index:2}.lg-inline .lg-maximize:after{content:"\e909"}.lg-components{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);will-change:transform;-webkit-transition:-webkit-transform .35s ease-out 0s;-moz-transition:-moz-transform .35s ease-out 0s;-o-transition:-o-transform .35s ease-out 0s;transition:transform .35s ease-out 0s;z-index:1080;position:absolute;bottom:0;right:0;left:0}
/* End */


/* Start:/local/templates/shop/styles.css?1757929101122*/
/*
.cart-header .row,
.cart-row .row,
.cart-row .row .flex-row-start,
.cart-row {
  display: flex;
  flex-wrap: wrap;
}*/

/* End */


/* Start:/local/klondike.tools/k.css?149889859032208*/
.fs10{font-size:10px}.fs11{font-size:11px}.fs12{font-size:12px}.fs13{font-size:13px}.fs14{font-size:14px}.fs15{font-size:15px}.fs16{font-size:16px}.fs17{font-size:17px}.fs18{font-size:18px}.fs19{font-size:19px}.fs20{font-size:20px}.fs21{font-size:21px}.fs22{font-size:22px}.fs23{font-size:23px}.fs24{font-size:24px}.fs25{font-size:25px}.fs26{font-size:26px}.fs27{font-size:27px}.fs28{font-size:28px}.fs29{font-size:29px}.fs30{font-size:30px}.fs31{font-size:31px}.fs32{font-size:32px}.fs33{font-size:33px}.fs34{font-size:34px}.fs35{font-size:35px}.fs36{font-size:36px}.fs37{font-size:37px}.fs38{font-size:38px}.fs39{font-size:39px}.fs40{font-size:40px}
.m0{margin:0}.m5{margin:5px}.m10{margin:10px}.m15{margin:15px}.m20{margin:20px}.m25{margin:25px}.m30{margin:30px}.m35{margin:35px}.m40{margin:40px}.m45{margin:45px}.m50{margin:50px}.m55{margin:55px}.m60{margin:60px}.m65{margin:65px}.m70{margin:70px}.m75{margin:75px}.m80{margin:80px}.m85{margin:85px}.m90{margin:90px}.m95{margin:95px}.m100{margin:100px}.ml0{margin-left:0}.ml5{margin-left:5px}.ml10{margin-left:10px}.ml15{margin-left:15px}.ml20{margin-left:20px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml45{margin-left:45px}.ml50{margin-left:50px}.ml55{margin-left:55px}.ml60{margin-left:60px}.ml65{margin-left:65px}.ml70{margin-left:70px}.ml75{margin-left:75px}.ml80{margin-left:80px}.ml85{margin-left:85px}.ml90{margin-left:90px}.ml95{margin-left:95px}.ml100{margin-left:100px}.mr0{margin-right:0}.mr5{margin-right:5px}.mr10{margin-right:10px}.mr15{margin-right:15px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr45{margin-right:45px}.mr50{margin-right:50px}.mr55{margin-right:55px}.mr60{margin-right:60px}.mr65{margin-right:65px}.mr70{margin-right:70px}.mr75{margin-right:75px}.mr80{margin-right:80px}.mr85{margin-right:85px}.mr90{margin-right:90px}.mr95{margin-right:95px}.mr100{margin-right:100px}.mt0{margin-top:0}.mt5{margin-top:5px}.mt10{margin-top:10px}.mt15{margin-top:15px}.mt20{margin-top:20px}.mt25{margin-top:25px}.mt30{margin-top:30px}.mt35{margin-top:35px}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt55{margin-top:55px}.mt60{margin-top:60px}.mt65{margin-top:65px}.mt70{margin-top:70px}.mt75{margin-top:75px}.mt80{margin-top:80px}.mt85{margin-top:85px}.mt90{margin-top:90px}.mt95{margin-top:95px}.mt100{margin-top:100px}.mb0{margin-bottom:0}.mb5{margin-bottom:5px}.mb10{margin-bottom:10px}.mb15{margin-bottom:15px}.mb20{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30{margin-bottom:30px}.mb35{margin-bottom:35px}.mb40{margin-bottom:40px}.mb45{margin-bottom:45px}.mb50{margin-bottom:50px}.mb55{margin-bottom:55px}.mb60{margin-bottom:60px}.mb65{margin-bottom:65px}.mb70{margin-bottom:70px}.mb75{margin-bottom:75px}.mb80{margin-bottom:80px}.mb85{margin-bottom:85px}.mb90{margin-bottom:90px}.mb95{margin-bottom:95px}.mb100{margin-bottom:100px}
.p0{padding:0}.p5{padding:5px}.p10{padding:10px}.p15{padding:15px}.p20{padding:20px}.p25{padding:25px}.p30{padding:30px}.p35{padding:35px}.p40{padding:40px}.p45{padding:45px}.p50{padding:50px}.p55{padding:55px}.p60{padding:60px}.p65{padding:65px}.p70{padding:70px}.p75{padding:75px}.p80{padding:80px}.p85{padding:85px}.p90{padding:90px}.p95{padding:95px}.p100{padding:100px}.pl0{padding-left:0}.pl5{padding-left:5px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl30{padding-left:30px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl45{padding-left:45px}.pl50{padding-left:50px}.pl55{padding-left:55px}.pl60{padding-left:60px}.pl65{padding-left:65px}.pl70{padding-left:70px}.pl75{padding-left:75px}.pl80{padding-left:80px}.pl85{padding-left:85px}.pl90{padding-left:90px}.pl95{padding-left:95px}.pl100{padding-left:100px}.pr0{padding-right:0}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px}.pr25{padding-right:25px}.pr30{padding-right:30px}.pr35{padding-right:35px}.pr40{padding-right:40px}.pr45{padding-right:45px}.pr50{padding-right:50px}.pr55{padding-right:55px}.pr60{padding-right:60px}.pr65{padding-right:65px}.pr70{padding-right:70px}.pr75{padding-right:75px}.pr80{padding-right:80px}.pr85{padding-right:85px}.pr90{padding-right:90px}.pr95{padding-right:95px}.pr100{padding-right:100px}.pt0{padding-top:0}.pt5{padding-top:5px}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt40{padding-top:40px}.pt45{padding-top:45px}.pt50{padding-top:50px}.pt55{padding-top:55px}.pt60{padding-top:60px}.pt65{padding-top:65px}.pt70{padding-top:70px}.pt75{padding-top:75px}.pt80{padding-top:80px}.pt85{padding-top:85px}.pt90{padding-top:90px}.pt95{padding-top:95px}.pt100{padding-top:100px}.pb0{padding-bottom:0}.pb5{padding-bottom:5px}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:25px}.pb30{padding-bottom:30px}.pb35{padding-bottom:35px}.pb40{padding-bottom:40px}.pb45{padding-bottom:45px}.pb50{padding-bottom:50px}.pb55{padding-bottom:55px}.pb60{padding-bottom:60px}.pb65{padding-bottom:65px}.pb70{padding-bottom:70px}.pb75{padding-bottom:75px}.pb80{padding-bottom:80px}.pb85{padding-bottom:85px}.pb90{padding-bottom:90px}.pb95{padding-bottom:95px}.pb100{padding-bottom:100px}
.d_n{display:none}.d_t{display:table;width:100%}.d_t_c{display:table-cell}.d_t_r{display:table-row}.d_b{display:block}.d_ib{display:inline-block}
.tc{text-align:center}.tl{text-align:left}.tr{text-align:right}.tj{text-align:justify}
.tup{text-transform:uppercase}.tb{font-weight:bold}.ti{font-style:italic}.tn{font-weight:normal}.tu{text-decoration:underline}
.pr{position:relative}.pa{position:absolute}
.mw100,.mw100 img{max-width:100%}.w100{width:100%}
.lh100{line-height:1}.lh150{line-height:1.5}.lh200{line-height:2}
.hover,.hover:hover{
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
/*fix for SmartFilter-Start*/
.bx_filter .p5{padding:inherit}
/*lg-Start*/
@media(min-width:1200px){
    .fs-lg-10{font-size:10px}.fs-lg-11{font-size:11px}.fs-lg-12{font-size:12px}.fs-lg-13{font-size:13px}.fs-lg-14{font-size:14px}.fs-lg-15{font-size:15px}.fs-lg-16{font-size:16px}.fs-lg-17{font-size:17px}.fs-lg-18{font-size:18px}.fs-lg-19{font-size:19px}.fs-lg-20{font-size:20px}.fs-lg-21{font-size:21px}.fs-lg-22{font-size:22px}.fs-lg-23{font-size:23px}.fs-lg-24{font-size:24px}.fs-lg-25{font-size:25px}.fs-lg-26{font-size:26px}.fs-lg-27{font-size:27px}.fs-lg-28{font-size:28px}.fs-lg-29{font-size:29px}.fs-lg-30{font-size:30px}.fs-lg-31{font-size:31px}.fs-lg-32{font-size:32px}.fs-lg-33{font-size:33px}.fs-lg-34{font-size:34px}.fs-lg-35{font-size:35px}.fs-lg-36{font-size:36px}.fs-lg-37{font-size:37px}.fs-lg-38{font-size:38px}.fs-lg-39{font-size:39px}.fs-lg-40{font-size:40px}
    .m-lg-0{margin:0}.m-lg-5{margin:5px}.m-lg-10{margin:10px}.m-lg-15{margin:15px}.m-lg-20{margin:20px}.m-lg-25{margin:25px}.m-lg-30{margin:30px}.m-lg-35{margin:35px}.m-lg-40{margin:40px}.m-lg-45{margin:45px}.m-lg-50{margin:50px}.m-lg-55{margin:55px}.m-lg-60{margin:60px}.m-lg-65{margin:65px}.m-lg-70{margin:70px}.m-lg-75{margin:75px}.m-lg-80{margin:80px}.m-lg-85{margin:85px}.m-lg-90{margin:90px}.m-lg-95{margin:95px}.m-lg-100{margin:100px}.ml-lg-0{margin-left:0}.ml-lg-5{margin-left:5px}.ml-lg-10{margin-left:10px}.ml-lg-15{margin-left:15px}.ml-lg-20{margin-left:20px}.ml-lg-25{margin-left:25px}.ml-lg-30{margin-left:30px}.ml-lg-35{margin-left:35px}.ml-lg-40{margin-left:40px}.ml-lg-45{margin-left:45px}.ml-lg-50{margin-left:50px}.ml-lg-55{margin-left:55px}.ml-lg-60{margin-left:60px}.ml-lg-65{margin-left:65px}.ml-lg-70{margin-left:70px}.ml-lg-75{margin-left:75px}.ml-lg-80{margin-left:80px}.ml-lg-85{margin-left:85px}.ml-lg-90{margin-left:90px}.ml-lg-95{margin-left:95px}.ml-lg-100{margin-left:100px}.mr-lg-0{margin-right:0}.mr-lg-5{margin-right:5px}.mr-lg-10{margin-right:10px}.mr-lg-15{margin-right:15px}.mr-lg-20{margin-right:20px}.mr-lg-25{margin-right:25px}.mr-lg-30{margin-right:30px}.mr-lg-35{margin-right:35px}.mr-lg-40{margin-right:40px}.mr-lg-45{margin-right:45px}.mr-lg-50{margin-right:50px}.mr-lg-55{margin-right:55px}.mr-lg-60{margin-right:60px}.mr-lg-65{margin-right:65px}.mr-lg-70{margin-right:70px}.mr-lg-75{margin-right:75px}.mr-lg-80{margin-right:80px}.mr-lg-85{margin-right:85px}.mr-lg-90{margin-right:90px}.mr-lg-95{margin-right:95px}.mr-lg-100{margin-right:100px}.mt-lg-0{margin-top:0}.mt-lg-5{margin-top:5px}.mt-lg-10{margin-top:10px}.mt-lg-15{margin-top:15px}.mt-lg-20{margin-top:20px}.mt-lg-25{margin-top:25px}.mt-lg-30{margin-top:30px}.mt-lg-35{margin-top:35px}.mt-lg-40{margin-top:40px}.mt-lg-45{margin-top:45px}.mt-lg-50{margin-top:50px}.mt-lg-55{margin-top:55px}.mt-lg-60{margin-top:60px}.mt-lg-65{margin-top:65px}.mt-lg-70{margin-top:70px}.mt-lg-75{margin-top:75px}.mt-lg-80{margin-top:80px}.mt-lg-85{margin-top:85px}.mt-lg-90{margin-top:90px}.mt-lg-95{margin-top:95px}.mt-lg-100{margin-top:100px}.mb-lg-0{margin-bottom:0}.mb-lg-5{margin-bottom:5px}.mb-lg-10{margin-bottom:10px}.mb-lg-15{margin-bottom:15px}.mb-lg-20{margin-bottom:20px}.mb-lg-25{margin-bottom:25px}.mb-lg-30{margin-bottom:30px}.mb-lg-35{margin-bottom:35px}.mb-lg-40{margin-bottom:40px}.mb-lg-45{margin-bottom:45px}.mb-lg-50{margin-bottom:50px}.mb-lg-55{margin-bottom:55px}.mb-lg-60{margin-bottom:60px}.mb-lg-65{margin-bottom:65px}.mb-lg-70{margin-bottom:70px}.mb-lg-75{margin-bottom:75px}.mb-lg-80{margin-bottom:80px}.mb-lg-85{margin-bottom:85px}.mb-lg-90{margin-bottom:90px}.mb-lg-95{margin-bottom:95px}.mb-lg-100{margin-bottom:100px}
    .p-lg-0{padding:0}.p-lg-5{padding:5px}.p-lg-10{padding:10px}.p-lg-15{padding:15px}.p-lg-20{padding:20px}.p-lg-25{padding:25px}.p-lg-30{padding:30px}.p-lg-35{padding:35px}.p-lg-40{padding:40px}.p-lg-45{padding:45px}.p-lg-50{padding:50px}.p-lg-55{padding:55px}.p-lg-60{padding:60px}.p-lg-65{padding:65px}.p-lg-70{padding:70px}.p-lg-75{padding:75px}.p-lg-80{padding:80px}.p-lg-85{padding:85px}.p-lg-90{padding:90px}.p-lg-95{padding:95px}.p-lg-100{padding:100px}.pl-lg-0{padding-left:0}.pl-lg-5{padding-left:5px}.pl-lg-10{padding-left:10px}.pl-lg-15{padding-left:15px}.pl-lg-20{padding-left:20px}.pl-lg-25{padding-left:25px}.pl-lg-30{padding-left:30px}.pl-lg-35{padding-left:35px}.pl-lg-40{padding-left:40px}.pl-lg-45{padding-left:45px}.pl-lg-50{padding-left:50px}.pl-lg-55{padding-left:55px}.pl-lg-60{padding-left:60px}.pl-lg-65{padding-left:65px}.pl-lg-70{padding-left:70px}.pl-lg-75{padding-left:75px}.pl-lg-80{padding-left:80px}.pl-lg-85{padding-left:85px}.pl-lg-90{padding-left:90px}.pl-lg-95{padding-left:95px}.pl-lg-100{padding-left:100px}.pr-lg-0{padding-right:0}.pr-lg-5{padding-right:5px}.pr-lg-10{padding-right:10px}.pr-lg-15{padding-right:15px}.pr-lg-20{padding-right:20px}.pr-lg-25{padding-right:25px}.pr-lg-30{padding-right:30px}.pr-lg-35{padding-right:35px}.pr-lg-40{padding-right:40px}.pr-lg-45{padding-right:45px}.pr-lg-50{padding-right:50px}.pr-lg-55{padding-right:55px}.pr-lg-60{padding-right:60px}.pr-lg-65{padding-right:65px}.pr-lg-70{padding-right:70px}.pr-lg-75{padding-right:75px}.pr-lg-80{padding-right:80px}.pr-lg-85{padding-right:85px}.pr-lg-90{padding-right:90px}.pr-lg-95{padding-right:95px}.pr-lg-100{padding-right:100px}.pt-lg-0{padding-top:0}.pt-lg-5{padding-top:5px}.pt-lg-10{padding-top:10px}.pt-lg-15{padding-top:15px}.pt-lg-20{padding-top:20px}.pt-lg-25{padding-top:25px}.pt-lg-30{padding-top:30px}.pt-lg-35{padding-top:35px}.pt-lg-40{padding-top:40px}.pt-lg-45{padding-top:45px}.pt-lg-50{padding-top:50px}.pt-lg-55{padding-top:55px}.pt-lg-60{padding-top:60px}.pt-lg-65{padding-top:65px}.pt-lg-70{padding-top:70px}.pt-lg-75{padding-top:75px}.pt-lg-80{padding-top:80px}.pt-lg-85{padding-top:85px}.pt-lg-90{padding-top:90px}.pt-lg-95{padding-top:95px}.pt-lg-100{padding-top:100px}.pb-lg-0{padding-bottom:0}.pb-lg-5{padding-bottom:5px}.pb-lg-10{padding-bottom:10px}.pb-lg-15{padding-bottom:15px}.pb-lg-20{padding-bottom:20px}.pb-lg-25{padding-bottom:25px}.pb-lg-30{padding-bottom:30px}.pb-lg-35{padding-bottom:35px}.pb-lg-40{padding-bottom:40px}.pb-lg-45{padding-bottom:45px}.pb-lg-50{padding-bottom:50px}.pb-lg-55{padding-bottom:55px}.pb-lg-60{padding-bottom:60px}.pb-lg-65{padding-bottom:65px}.pb-lg-70{padding-bottom:70px}.pb-lg-75{padding-bottom:75px}.pb-lg-80{padding-bottom:80px}.pb-lg-85{padding-bottom:85px}.pb-lg-90{padding-bottom:90px}.pb-lg-95{padding-bottom:95px}.pb-lg-100{padding-bottom:100px}
    .tc-lg{text-align:center}.tl-lg{text-align:left}.tr-lg{text-align:right}.tj-lg{text-align:justify}
}
/*md-Start*/
@media(min-width:992px) and (max-width:1199px){
    .fs-md-10{font-size:10px}.fs-md-11{font-size:11px}.fs-md-12{font-size:12px}.fs-md-13{font-size:13px}.fs-md-14{font-size:14px}.fs-md-15{font-size:15px}.fs-md-16{font-size:16px}.fs-md-17{font-size:17px}.fs-md-18{font-size:18px}.fs-md-19{font-size:19px}.fs-md-20{font-size:20px}.fs-md-21{font-size:21px}.fs-md-22{font-size:22px}.fs-md-23{font-size:23px}.fs-md-24{font-size:24px}.fs-md-25{font-size:25px}.fs-md-26{font-size:26px}.fs-md-27{font-size:27px}.fs-md-28{font-size:28px}.fs-md-29{font-size:29px}.fs-md-30{font-size:30px}.fs-md-31{font-size:31px}.fs-md-32{font-size:32px}.fs-md-33{font-size:33px}.fs-md-34{font-size:34px}.fs-md-35{font-size:35px}.fs-md-36{font-size:36px}.fs-md-37{font-size:37px}.fs-md-38{font-size:38px}.fs-md-39{font-size:39px}.fs-md-40{font-size:40px}
    .m-md-0{margin:0}.m-md-5{margin:5px}.m-md-10{margin:10px}.m-md-15{margin:15px}.m-md-20{margin:20px}.m-md-25{margin:25px}.m-md-30{margin:30px}.m-md-35{margin:35px}.m-md-40{margin:40px}.m-md-45{margin:45px}.m-md-50{margin:50px}.m-md-55{margin:55px}.m-md-60{margin:60px}.m-md-65{margin:65px}.m-md-70{margin:70px}.m-md-75{margin:75px}.m-md-80{margin:80px}.m-md-85{margin:85px}.m-md-90{margin:90px}.m-md-95{margin:95px}.m-md-100{margin:100px}.ml-md-0{margin-left:0}.ml-md-5{margin-left:5px}.ml-md-10{margin-left:10px}.ml-md-15{margin-left:15px}.ml-md-20{margin-left:20px}.ml-md-25{margin-left:25px}.ml-md-30{margin-left:30px}.ml-md-35{margin-left:35px}.ml-md-40{margin-left:40px}.ml-md-45{margin-left:45px}.ml-md-50{margin-left:50px}.ml-md-55{margin-left:55px}.ml-md-60{margin-left:60px}.ml-md-65{margin-left:65px}.ml-md-70{margin-left:70px}.ml-md-75{margin-left:75px}.ml-md-80{margin-left:80px}.ml-md-85{margin-left:85px}.ml-md-90{margin-left:90px}.ml-md-95{margin-left:95px}.ml-md-100{margin-left:100px}.mr-md-0{margin-right:0}.mr-md-5{margin-right:5px}.mr-md-10{margin-right:10px}.mr-md-15{margin-right:15px}.mr-md-20{margin-right:20px}.mr-md-25{margin-right:25px}.mr-md-30{margin-right:30px}.mr-md-35{margin-right:35px}.mr-md-40{margin-right:40px}.mr-md-45{margin-right:45px}.mr-md-50{margin-right:50px}.mr-md-55{margin-right:55px}.mr-md-60{margin-right:60px}.mr-md-65{margin-right:65px}.mr-md-70{margin-right:70px}.mr-md-75{margin-right:75px}.mr-md-80{margin-right:80px}.mr-md-85{margin-right:85px}.mr-md-90{margin-right:90px}.mr-md-95{margin-right:95px}.mr-md-100{margin-right:100px}.mt-md-0{margin-top:0}.mt-md-5{margin-top:5px}.mt-md-10{margin-top:10px}.mt-md-15{margin-top:15px}.mt-md-20{margin-top:20px}.mt-md-25{margin-top:25px}.mt-md-30{margin-top:30px}.mt-md-35{margin-top:35px}.mt-md-40{margin-top:40px}.mt-md-45{margin-top:45px}.mt-md-50{margin-top:50px}.mt-md-55{margin-top:55px}.mt-md-60{margin-top:60px}.mt-md-65{margin-top:65px}.mt-md-70{margin-top:70px}.mt-md-75{margin-top:75px}.mt-md-80{margin-top:80px}.mt-md-85{margin-top:85px}.mt-md-90{margin-top:90px}.mt-md-95{margin-top:95px}.mt-md-100{margin-top:100px}.mb-md-0{margin-bottom:0}.mb-md-5{margin-bottom:5px}.mb-md-10{margin-bottom:10px}.mb-md-15{margin-bottom:15px}.mb-md-20{margin-bottom:20px}.mb-md-25{margin-bottom:25px}.mb-md-30{margin-bottom:30px}.mb-md-35{margin-bottom:35px}.mb-md-40{margin-bottom:40px}.mb-md-45{margin-bottom:45px}.mb-md-50{margin-bottom:50px}.mb-md-55{margin-bottom:55px}.mb-md-60{margin-bottom:60px}.mb-md-65{margin-bottom:65px}.mb-md-70{margin-bottom:70px}.mb-md-75{margin-bottom:75px}.mb-md-80{margin-bottom:80px}.mb-md-85{margin-bottom:85px}.mb-md-90{margin-bottom:90px}.mb-md-95{margin-bottom:95px}.mb-md-100{margin-bottom:100px}
    .p-md-0{padding:0}.p-md-5{padding:5px}.p-md-10{padding:10px}.p-md-15{padding:15px}.p-md-20{padding:20px}.p-md-25{padding:25px}.p-md-30{padding:30px}.p-md-35{padding:35px}.p-md-40{padding:40px}.p-md-45{padding:45px}.p-md-50{padding:50px}.p-md-55{padding:55px}.p-md-60{padding:60px}.p-md-65{padding:65px}.p-md-70{padding:70px}.p-md-75{padding:75px}.p-md-80{padding:80px}.p-md-85{padding:85px}.p-md-90{padding:90px}.p-md-95{padding:95px}.p-md-100{padding:100px}.pl-md-0{padding-left:0}.pl-md-5{padding-left:5px}.pl-md-10{padding-left:10px}.pl-md-15{padding-left:15px}.pl-md-20{padding-left:20px}.pl-md-25{padding-left:25px}.pl-md-30{padding-left:30px}.pl-md-35{padding-left:35px}.pl-md-40{padding-left:40px}.pl-md-45{padding-left:45px}.pl-md-50{padding-left:50px}.pl-md-55{padding-left:55px}.pl-md-60{padding-left:60px}.pl-md-65{padding-left:65px}.pl-md-70{padding-left:70px}.pl-md-75{padding-left:75px}.pl-md-80{padding-left:80px}.pl-md-85{padding-left:85px}.pl-md-90{padding-left:90px}.pl-md-95{padding-left:95px}.pl-md-100{padding-left:100px}.pr-md-0{padding-right:0}.pr-md-5{padding-right:5px}.pr-md-10{padding-right:10px}.pr-md-15{padding-right:15px}.pr-md-20{padding-right:20px}.pr-md-25{padding-right:25px}.pr-md-30{padding-right:30px}.pr-md-35{padding-right:35px}.pr-md-40{padding-right:40px}.pr-md-45{padding-right:45px}.pr-md-50{padding-right:50px}.pr-md-55{padding-right:55px}.pr-md-60{padding-right:60px}.pr-md-65{padding-right:65px}.pr-md-70{padding-right:70px}.pr-md-75{padding-right:75px}.pr-md-80{padding-right:80px}.pr-md-85{padding-right:85px}.pr-md-90{padding-right:90px}.pr-md-95{padding-right:95px}.pr-md-100{padding-right:100px}.pt-md-0{padding-top:0}.pt-md-5{padding-top:5px}.pt-md-10{padding-top:10px}.pt-md-15{padding-top:15px}.pt-md-20{padding-top:20px}.pt-md-25{padding-top:25px}.pt-md-30{padding-top:30px}.pt-md-35{padding-top:35px}.pt-md-40{padding-top:40px}.pt-md-45{padding-top:45px}.pt-md-50{padding-top:50px}.pt-md-55{padding-top:55px}.pt-md-60{padding-top:60px}.pt-md-65{padding-top:65px}.pt-md-70{padding-top:70px}.pt-md-75{padding-top:75px}.pt-md-80{padding-top:80px}.pt-md-85{padding-top:85px}.pt-md-90{padding-top:90px}.pt-md-95{padding-top:95px}.pt-md-100{padding-top:100px}.pb-md-0{padding-bottom:0}.pb-md-5{padding-bottom:5px}.pb-md-10{padding-bottom:10px}.pb-md-15{padding-bottom:15px}.pb-md-20{padding-bottom:20px}.pb-md-25{padding-bottom:25px}.pb-md-30{padding-bottom:30px}.pb-md-35{padding-bottom:35px}.pb-md-40{padding-bottom:40px}.pb-md-45{padding-bottom:45px}.pb-md-50{padding-bottom:50px}.pb-md-55{padding-bottom:55px}.pb-md-60{padding-bottom:60px}.pb-md-65{padding-bottom:65px}.pb-md-70{padding-bottom:70px}.pb-md-75{padding-bottom:75px}.pb-md-80{padding-bottom:80px}.pb-md-85{padding-bottom:85px}.pb-md-90{padding-bottom:90px}.pb-md-95{padding-bottom:95px}.pb-md-100{padding-bottom:100px}
    .tc-md{text-align:center}.tl-md{text-align:left}.tr-md{text-align:right}.tj-md{text-align:justify}
}
/*sm-Start*/
@media(min-width:768px) and (max-width:991px){
    .fs-sm-10{font-size:10px}.fs-sm-11{font-size:11px}.fs-sm-12{font-size:12px}.fs-sm-13{font-size:13px}.fs-sm-14{font-size:14px}.fs-sm-15{font-size:15px}.fs-sm-16{font-size:16px}.fs-sm-17{font-size:17px}.fs-sm-18{font-size:18px}.fs-sm-19{font-size:19px}.fs-sm-20{font-size:20px}.fs-sm-21{font-size:21px}.fs-sm-22{font-size:22px}.fs-sm-23{font-size:23px}.fs-sm-24{font-size:24px}.fs-sm-25{font-size:25px}.fs-sm-26{font-size:26px}.fs-sm-27{font-size:27px}.fs-sm-28{font-size:28px}.fs-sm-29{font-size:29px}.fs-sm-30{font-size:30px}.fs-sm-31{font-size:31px}.fs-sm-32{font-size:32px}.fs-sm-33{font-size:33px}.fs-sm-34{font-size:34px}.fs-sm-35{font-size:35px}.fs-sm-36{font-size:36px}.fs-sm-37{font-size:37px}.fs-sm-38{font-size:38px}.fs-sm-39{font-size:39px}.fs-sm-40{font-size:40px}
    .m-sm-0{margin:0}.m-sm-5{margin:5px}.m-sm-10{margin:10px}.m-sm-15{margin:15px}.m-sm-20{margin:20px}.m-sm-25{margin:25px}.m-sm-30{margin:30px}.m-sm-35{margin:35px}.m-sm-40{margin:40px}.m-sm-45{margin:45px}.m-sm-50{margin:50px}.m-sm-55{margin:55px}.m-sm-60{margin:60px}.m-sm-65{margin:65px}.m-sm-70{margin:70px}.m-sm-75{margin:75px}.m-sm-80{margin:80px}.m-sm-85{margin:85px}.m-sm-90{margin:90px}.m-sm-95{margin:95px}.m-sm-100{margin:100px}.ml-sm-0{margin-left:0}.ml-sm-5{margin-left:5px}.ml-sm-10{margin-left:10px}.ml-sm-15{margin-left:15px}.ml-sm-20{margin-left:20px}.ml-sm-25{margin-left:25px}.ml-sm-30{margin-left:30px}.ml-sm-35{margin-left:35px}.ml-sm-40{margin-left:40px}.ml-sm-45{margin-left:45px}.ml-sm-50{margin-left:50px}.ml-sm-55{margin-left:55px}.ml-sm-60{margin-left:60px}.ml-sm-65{margin-left:65px}.ml-sm-70{margin-left:70px}.ml-sm-75{margin-left:75px}.ml-sm-80{margin-left:80px}.ml-sm-85{margin-left:85px}.ml-sm-90{margin-left:90px}.ml-sm-95{margin-left:95px}.ml-sm-100{margin-left:100px}.mr-sm-0{margin-right:0}.mr-sm-5{margin-right:5px}.mr-sm-10{margin-right:10px}.mr-sm-15{margin-right:15px}.mr-sm-20{margin-right:20px}.mr-sm-25{margin-right:25px}.mr-sm-30{margin-right:30px}.mr-sm-35{margin-right:35px}.mr-sm-40{margin-right:40px}.mr-sm-45{margin-right:45px}.mr-sm-50{margin-right:50px}.mr-sm-55{margin-right:55px}.mr-sm-60{margin-right:60px}.mr-sm-65{margin-right:65px}.mr-sm-70{margin-right:70px}.mr-sm-75{margin-right:75px}.mr-sm-80{margin-right:80px}.mr-sm-85{margin-right:85px}.mr-sm-90{margin-right:90px}.mr-sm-95{margin-right:95px}.mr-sm-100{margin-right:100px}.mt-sm-0{margin-top:0}.mt-sm-5{margin-top:5px}.mt-sm-10{margin-top:10px}.mt-sm-15{margin-top:15px}.mt-sm-20{margin-top:20px}.mt-sm-25{margin-top:25px}.mt-sm-30{margin-top:30px}.mt-sm-35{margin-top:35px}.mt-sm-40{margin-top:40px}.mt-sm-45{margin-top:45px}.mt-sm-50{margin-top:50px}.mt-sm-55{margin-top:55px}.mt-sm-60{margin-top:60px}.mt-sm-65{margin-top:65px}.mt-sm-70{margin-top:70px}.mt-sm-75{margin-top:75px}.mt-sm-80{margin-top:80px}.mt-sm-85{margin-top:85px}.mt-sm-90{margin-top:90px}.mt-sm-95{margin-top:95px}.mt-sm-100{margin-top:100px}.mb-sm-0{margin-bottom:0}.mb-sm-5{margin-bottom:5px}.mb-sm-10{margin-bottom:10px}.mb-sm-15{margin-bottom:15px}.mb-sm-20{margin-bottom:20px}.mb-sm-25{margin-bottom:25px}.mb-sm-30{margin-bottom:30px}.mb-sm-35{margin-bottom:35px}.mb-sm-40{margin-bottom:40px}.mb-sm-45{margin-bottom:45px}.mb-sm-50{margin-bottom:50px}.mb-sm-55{margin-bottom:55px}.mb-sm-60{margin-bottom:60px}.mb-sm-65{margin-bottom:65px}.mb-sm-70{margin-bottom:70px}.mb-sm-75{margin-bottom:75px}.mb-sm-80{margin-bottom:80px}.mb-sm-85{margin-bottom:85px}.mb-sm-90{margin-bottom:90px}.mb-sm-95{margin-bottom:95px}.mb-sm-100{margin-bottom:100px}
    .p-sm-0{padding:0}.p-sm-5{padding:5px}.p-sm-10{padding:10px}.p-sm-15{padding:15px}.p-sm-20{padding:20px}.p-sm-25{padding:25px}.p-sm-30{padding:30px}.p-sm-35{padding:35px}.p-sm-40{padding:40px}.p-sm-45{padding:45px}.p-sm-50{padding:50px}.p-sm-55{padding:55px}.p-sm-60{padding:60px}.p-sm-65{padding:65px}.p-sm-70{padding:70px}.p-sm-75{padding:75px}.p-sm-80{padding:80px}.p-sm-85{padding:85px}.p-sm-90{padding:90px}.p-sm-95{padding:95px}.p-sm-100{padding:100px}.pl-sm-0{padding-left:0}.pl-sm-5{padding-left:5px}.pl-sm-10{padding-left:10px}.pl-sm-15{padding-left:15px}.pl-sm-20{padding-left:20px}.pl-sm-25{padding-left:25px}.pl-sm-30{padding-left:30px}.pl-sm-35{padding-left:35px}.pl-sm-40{padding-left:40px}.pl-sm-45{padding-left:45px}.pl-sm-50{padding-left:50px}.pl-sm-55{padding-left:55px}.pl-sm-60{padding-left:60px}.pl-sm-65{padding-left:65px}.pl-sm-70{padding-left:70px}.pl-sm-75{padding-left:75px}.pl-sm-80{padding-left:80px}.pl-sm-85{padding-left:85px}.pl-sm-90{padding-left:90px}.pl-sm-95{padding-left:95px}.pl-sm-100{padding-left:100px}.pr-sm-0{padding-right:0}.pr-sm-5{padding-right:5px}.pr-sm-10{padding-right:10px}.pr-sm-15{padding-right:15px}.pr-sm-20{padding-right:20px}.pr-sm-25{padding-right:25px}.pr-sm-30{padding-right:30px}.pr-sm-35{padding-right:35px}.pr-sm-40{padding-right:40px}.pr-sm-45{padding-right:45px}.pr-sm-50{padding-right:50px}.pr-sm-55{padding-right:55px}.pr-sm-60{padding-right:60px}.pr-sm-65{padding-right:65px}.pr-sm-70{padding-right:70px}.pr-sm-75{padding-right:75px}.pr-sm-80{padding-right:80px}.pr-sm-85{padding-right:85px}.pr-sm-90{padding-right:90px}.pr-sm-95{padding-right:95px}.pr-sm-100{padding-right:100px}.pt-sm-0{padding-top:0}.pt-sm-5{padding-top:5px}.pt-sm-10{padding-top:10px}.pt-sm-15{padding-top:15px}.pt-sm-20{padding-top:20px}.pt-sm-25{padding-top:25px}.pt-sm-30{padding-top:30px}.pt-sm-35{padding-top:35px}.pt-sm-40{padding-top:40px}.pt-sm-45{padding-top:45px}.pt-sm-50{padding-top:50px}.pt-sm-55{padding-top:55px}.pt-sm-60{padding-top:60px}.pt-sm-65{padding-top:65px}.pt-sm-70{padding-top:70px}.pt-sm-75{padding-top:75px}.pt-sm-80{padding-top:80px}.pt-sm-85{padding-top:85px}.pt-sm-90{padding-top:90px}.pt-sm-95{padding-top:95px}.pt-sm-100{padding-top:100px}.pb-sm-0{padding-bottom:0}.pb-sm-5{padding-bottom:5px}.pb-sm-10{padding-bottom:10px}.pb-sm-15{padding-bottom:15px}.pb-sm-20{padding-bottom:20px}.pb-sm-25{padding-bottom:25px}.pb-sm-30{padding-bottom:30px}.pb-sm-35{padding-bottom:35px}.pb-sm-40{padding-bottom:40px}.pb-sm-45{padding-bottom:45px}.pb-sm-50{padding-bottom:50px}.pb-sm-55{padding-bottom:55px}.pb-sm-60{padding-bottom:60px}.pb-sm-65{padding-bottom:65px}.pb-sm-70{padding-bottom:70px}.pb-sm-75{padding-bottom:75px}.pb-sm-80{padding-bottom:80px}.pb-sm-85{padding-bottom:85px}.pb-sm-90{padding-bottom:90px}.pb-sm-95{padding-bottom:95px}.pb-sm-100{padding-bottom:100px}
    .tc-sm{text-align:center}.tl-sm{text-align:left}.tr-sm{text-align:right}.tj-sm{text-align:justify}
}
/*xs-Start*/
@media(max-width:767px){
    .fs-xs-10{font-size:10px}.fs-xs-11{font-size:11px}.fs-xs-12{font-size:12px}.fs-xs-13{font-size:13px}.fs-xs-14{font-size:14px}.fs-xs-15{font-size:15px}.fs-xs-16{font-size:16px}.fs-xs-17{font-size:17px}.fs-xs-18{font-size:18px}.fs-xs-19{font-size:19px}.fs-xs-20{font-size:20px}.fs-xs-21{font-size:21px}.fs-xs-22{font-size:22px}.fs-xs-23{font-size:23px}.fs-xs-24{font-size:24px}.fs-xs-25{font-size:25px}.fs-xs-26{font-size:26px}.fs-xs-27{font-size:27px}.fs-xs-28{font-size:28px}.fs-xs-29{font-size:29px}.fs-xs-30{font-size:30px}.fs-xs-31{font-size:31px}.fs-xs-32{font-size:32px}.fs-xs-33{font-size:33px}.fs-xs-34{font-size:34px}.fs-xs-35{font-size:35px}.fs-xs-36{font-size:36px}.fs-xs-37{font-size:37px}.fs-xs-38{font-size:38px}.fs-xs-39{font-size:39px}.fs-xs-40{font-size:40px}
    .m-xs-0{margin:0}.m-xs-5{margin:5px}.m-xs-10{margin:10px}.m-xs-15{margin:15px}.m-xs-20{margin:20px}.m-xs-25{margin:25px}.m-xs-30{margin:30px}.m-xs-35{margin:35px}.m-xs-40{margin:40px}.m-xs-45{margin:45px}.m-xs-50{margin:50px}.m-xs-55{margin:55px}.m-xs-60{margin:60px}.m-xs-65{margin:65px}.m-xs-70{margin:70px}.m-xs-75{margin:75px}.m-xs-80{margin:80px}.m-xs-85{margin:85px}.m-xs-90{margin:90px}.m-xs-95{margin:95px}.m-xs-100{margin:100px}.ml-xs-0{margin-left:0}.ml-xs-5{margin-left:5px}.ml-xs-10{margin-left:10px}.ml-xs-15{margin-left:15px}.ml-xs-20{margin-left:20px}.ml-xs-25{margin-left:25px}.ml-xs-30{margin-left:30px}.ml-xs-35{margin-left:35px}.ml-xs-40{margin-left:40px}.ml-xs-45{margin-left:45px}.ml-xs-50{margin-left:50px}.ml-xs-55{margin-left:55px}.ml-xs-60{margin-left:60px}.ml-xs-65{margin-left:65px}.ml-xs-70{margin-left:70px}.ml-xs-75{margin-left:75px}.ml-xs-80{margin-left:80px}.ml-xs-85{margin-left:85px}.ml-xs-90{margin-left:90px}.ml-xs-95{margin-left:95px}.ml-xs-100{margin-left:100px}.mr-xs-0{margin-right:0}.mr-xs-5{margin-right:5px}.mr-xs-10{margin-right:10px}.mr-xs-15{margin-right:15px}.mr-xs-20{margin-right:20px}.mr-xs-25{margin-right:25px}.mr-xs-30{margin-right:30px}.mr-xs-35{margin-right:35px}.mr-xs-40{margin-right:40px}.mr-xs-45{margin-right:45px}.mr-xs-50{margin-right:50px}.mr-xs-55{margin-right:55px}.mr-xs-60{margin-right:60px}.mr-xs-65{margin-right:65px}.mr-xs-70{margin-right:70px}.mr-xs-75{margin-right:75px}.mr-xs-80{margin-right:80px}.mr-xs-85{margin-right:85px}.mr-xs-90{margin-right:90px}.mr-xs-95{margin-right:95px}.mr-xs-100{margin-right:100px}.mt-xs-0{margin-top:0}.mt-xs-5{margin-top:5px}.mt-xs-10{margin-top:10px}.mt-xs-15{margin-top:15px}.mt-xs-20{margin-top:20px}.mt-xs-25{margin-top:25px}.mt-xs-30{margin-top:30px}.mt-xs-35{margin-top:35px}.mt-xs-40{margin-top:40px}.mt-xs-45{margin-top:45px}.mt-xs-50{margin-top:50px}.mt-xs-55{margin-top:55px}.mt-xs-60{margin-top:60px}.mt-xs-65{margin-top:65px}.mt-xs-70{margin-top:70px}.mt-xs-75{margin-top:75px}.mt-xs-80{margin-top:80px}.mt-xs-85{margin-top:85px}.mt-xs-90{margin-top:90px}.mt-xs-95{margin-top:95px}.mt-xs-100{margin-top:100px}.mb-xs-0{margin-bottom:0}.mb-xs-5{margin-bottom:5px}.mb-xs-10{margin-bottom:10px}.mb-xs-15{margin-bottom:15px}.mb-xs-20{margin-bottom:20px}.mb-xs-25{margin-bottom:25px}.mb-xs-30{margin-bottom:30px}.mb-xs-35{margin-bottom:35px}.mb-xs-40{margin-bottom:40px}.mb-xs-45{margin-bottom:45px}.mb-xs-50{margin-bottom:50px}.mb-xs-55{margin-bottom:55px}.mb-xs-60{margin-bottom:60px}.mb-xs-65{margin-bottom:65px}.mb-xs-70{margin-bottom:70px}.mb-xs-75{margin-bottom:75px}.mb-xs-80{margin-bottom:80px}.mb-xs-85{margin-bottom:85px}.mb-xs-90{margin-bottom:90px}.mb-xs-95{margin-bottom:95px}.mb-xs-100{margin-bottom:100px}
    .p-xs-0{padding:0}.p-xs-5{padding:5px}.p-xs-10{padding:10px}.p-xs-15{padding:15px}.p-xs-20{padding:20px}.p-xs-25{padding:25px}.p-xs-30{padding:30px}.p-xs-35{padding:35px}.p-xs-40{padding:40px}.p-xs-45{padding:45px}.p-xs-50{padding:50px}.p-xs-55{padding:55px}.p-xs-60{padding:60px}.p-xs-65{padding:65px}.p-xs-70{padding:70px}.p-xs-75{padding:75px}.p-xs-80{padding:80px}.p-xs-85{padding:85px}.p-xs-90{padding:90px}.p-xs-95{padding:95px}.p-xs-100{padding:100px}.pl-xs-0{padding-left:0}.pl-xs-5{padding-left:5px}.pl-xs-10{padding-left:10px}.pl-xs-15{padding-left:15px}.pl-xs-20{padding-left:20px}.pl-xs-25{padding-left:25px}.pl-xs-30{padding-left:30px}.pl-xs-35{padding-left:35px}.pl-xs-40{padding-left:40px}.pl-xs-45{padding-left:45px}.pl-xs-50{padding-left:50px}.pl-xs-55{padding-left:55px}.pl-xs-60{padding-left:60px}.pl-xs-65{padding-left:65px}.pl-xs-70{padding-left:70px}.pl-xs-75{padding-left:75px}.pl-xs-80{padding-left:80px}.pl-xs-85{padding-left:85px}.pl-xs-90{padding-left:90px}.pl-xs-95{padding-left:95px}.pl-xs-100{padding-left:100px}.pr-xs-0{padding-right:0}.pr-xs-5{padding-right:5px}.pr-xs-10{padding-right:10px}.pr-xs-15{padding-right:15px}.pr-xs-20{padding-right:20px}.pr-xs-25{padding-right:25px}.pr-xs-30{padding-right:30px}.pr-xs-35{padding-right:35px}.pr-xs-40{padding-right:40px}.pr-xs-45{padding-right:45px}.pr-xs-50{padding-right:50px}.pr-xs-55{padding-right:55px}.pr-xs-60{padding-right:60px}.pr-xs-65{padding-right:65px}.pr-xs-70{padding-right:70px}.pr-xs-75{padding-right:75px}.pr-xs-80{padding-right:80px}.pr-xs-85{padding-right:85px}.pr-xs-90{padding-right:90px}.pr-xs-95{padding-right:95px}.pr-xs-100{padding-right:100px}.pt-xs-0{padding-top:0}.pt-xs-5{padding-top:5px}.pt-xs-10{padding-top:10px}.pt-xs-15{padding-top:15px}.pt-xs-20{padding-top:20px}.pt-xs-25{padding-top:25px}.pt-xs-30{padding-top:30px}.pt-xs-35{padding-top:35px}.pt-xs-40{padding-top:40px}.pt-xs-45{padding-top:45px}.pt-xs-50{padding-top:50px}.pt-xs-55{padding-top:55px}.pt-xs-60{padding-top:60px}.pt-xs-65{padding-top:65px}.pt-xs-70{padding-top:70px}.pt-xs-75{padding-top:75px}.pt-xs-80{padding-top:80px}.pt-xs-85{padding-top:85px}.pt-xs-90{padding-top:90px}.pt-xs-95{padding-top:95px}.pt-xs-100{padding-top:100px}.pb-xs-0{padding-bottom:0}.pb-xs-5{padding-bottom:5px}.pb-xs-10{padding-bottom:10px}.pb-xs-15{padding-bottom:15px}.pb-xs-20{padding-bottom:20px}.pb-xs-25{padding-bottom:25px}.pb-xs-30{padding-bottom:30px}.pb-xs-35{padding-bottom:35px}.pb-xs-40{padding-bottom:40px}.pb-xs-45{padding-bottom:45px}.pb-xs-50{padding-bottom:50px}.pb-xs-55{padding-bottom:55px}.pb-xs-60{padding-bottom:60px}.pb-xs-65{padding-bottom:65px}.pb-xs-70{padding-bottom:70px}.pb-xs-75{padding-bottom:75px}.pb-xs-80{padding-bottom:80px}.pb-xs-85{padding-bottom:85px}.pb-xs-90{padding-bottom:90px}.pb-xs-95{padding-bottom:95px}.pb-xs-100{padding-bottom:100px}
    .tc-xs{text-align:center}.tl-xs{text-align:left}.tr-xs{text-align:right}.tj-xs{text-align:justify}
}
/* End */


/* Start:/local/include/assets/css/custom.css?173885176429173*/
.d_n {
    display: none;
}
.pr0 {
    padding-right: 0;
}
.circle-img {
    border-radius: 100%;
    border: 1px solid transparent;
}
.catalog-tags label {
    cursor: pointer;
    color: #1A3853;
    display: inline-block;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: 1px dashed #1A3853;
    white-space: nowrap;
    margin-bottom: 13px;
}
.catalog-tags label:not(:last-child) {
    margin-right: 25px;
}
.catalog-tags label:hover, .catalog-tags label.active {
    color: #da5128;
    border-bottom-color: transparent;
}
.catalog-tags label.active:after {
    content: '\e915';
    font-family: "icomoon" !important;
    margin-left: 8px;
    font-size: 8px;
    color: #da5128;
}
.header-bottom-area .ch-group-icon .icon.icon-wish-link-active {
    color: #50667E;
}
.disabled {
    pointer-events: none;
    opacity: .5;
}
.ch-wish-item.active > .icon {
    color: #E76642;
}
.ch-wish-detail.active > .icon {
    color: #E76642;
}
.acc-menu,
.acc-grid-item,
.acc-wrap,
.checkout-info-cart,
.checkout-tabs .tabs_contents,
.cart-wrapper {
    box-shadow: 0 0 4px 2px rgba(142,142,142,.05);
    border-radius: 5px;
    overflow: hidden;
}
.cart-row .cart-row-delete:not(.old) {
    left: 15px;
}
.cart-row a.cart-row-delete:hover {
    background-color: #FF0F00;
}
.info-cart.checkout-info-cart a[href='/catery/'] {
    background-color: #d0dfe8;
}
.info-cart.checkout-info-cart a[href='/catery/'] span {
    color: #1A3853;
    font-weight: 500;
}
.info-cart.checkout-info-cart a[href='/catery/'] span:after {
    content: '\e906';
    font-family: 'icomoon' !important;
    margin-left: 10px;
}
.info-cart.checkout-info-cart a[href='/catery/']:hover {
    background-color: #1A3853;
}
.info-cart.checkout-info-cart a[href='/catery/']:hover span {
    color: #fff;
}
.cart-wrapper .cart-header {
    background-color: #50667E;
}
.cart-wrapper .cart-header p {
    font-weight: 500;
    color: #F1F3F8;
    text-transform: uppercase;
    font-size: 14px;
}
.cart-header-col > div,
.cart-header-col > p,
.cart-row-col > div,
.cart-row-col > p {
    text-align: left;
}
.cart-wrapper .cart-row-title {
    line-height: 1.2;
}
.cart-wrapper .cart-row-title a {
 font-weight: 500;
 font-size: 15px;
 color: #1A3853;
}
.cart-wrapper .cart-row-title a:hover {
    color: #da5128;
   }
.cart-wrapper .cart-row-info li {
    font-size: 14px;
    color: #50667E;
}
.cart-wrapper .cart-row-price span {
    font-size: 17px;
    color: #50667E;
    font-weight: 600;
}
.cart-wrapper .cart-row-price .c-icon {
    color: #50667E;
    font-size: 13px;
}
.cart-wrapper .cart-row-count input[type='text'] {
    text-align: center;
    font-size: 15px;
    color: #333;
}
.cart-wrapper .cart-row-count .minus,
.cart-wrapper .cart-row-count .plus {
    color: #50667E;
}
.cart-wrapper .cart-item-sum span {
    font-size: 18px;
    font-weight: 600;
    color: #1A3853;
}
.cart-wrapper .cart-item-sum .c-icon {
    font-size: 13px;
    color: #1A3853;
}
.checkout-info-cart .checkout-content-title .c-icon {
    font-size: 18px;
    margin-right: 15px;
}
.checkout-info-cart .checkout-content-title span {
    text-transform: uppercase;
    font-size: 14px;
}
.checkout-info-cart .info-cart-discount-hide .btn {
    background-color: #1289A7;
}
.checkout-info-cart .info-cart-discount-hide .btn:hover {
    background-color: #0d687e;
}
.checkout-info-cart .info-cart-row p span:first-child {
    font-size: 13px;
    color: #717C89;
    font-variant: normal;
    padding-top: 0;
}
.checkout-info-cart .info-cart-row p span:last-child,
.checkout-info-cart .info-cart-row p span#allSum {
    font-weight: 500;
    color: #1A3853;
}
.checkout-info-cart .widg-hide-close {
    font-size: 14px;
}
.acc-grid-item:hover {
    background-color: #50667E;
}
.acc-grid-item-title {
    font-size: 17px;
}
.acc-grid-item .c-icon {
    font-size: 28px;
    font-family: 'icomoon' !important;
    margin-bottom: 30px;
}
.acc-menu-list .icon {
    font-family: 'icomoon' !important;
    font-size: 16px;
    color: #7D96A4;
    margin-right: 8px;
}
.acc-grid-item .c-icon.c-icon-lk-01:before,
.acc-menu-list .icon.c-icon-lk-01:before {
    content: '\e934';
}
.acc-grid-item .c-icon.c-icon-lk-05:before,
.acc-menu-list .icon.c-icon-lk-05:before {
    content: '\e90a';
}
.acc-grid-item .c-icon.c-icon-lk-06:before,
.acc-menu-list .icon.c-icon-lk-06:before {
    content: '\e939';
}
.acc-grid-item .c-icon.c-icon-lk-08:before,
.acc-menu-list .icon.c-icon-lk-08:before {
    content: '\e905';
}
.acc-grid-item .c-icon.c-icon-lk-04:before,
.acc-menu-list .icon.c-icon-lk-04:before {
    content: '\e911';
}
.acc-grid-item .c-icon.c-icon-lk-07:before,
.acc-menu-list .icon.c-icon-lk-07:before {
    content: '\e92c';
}
.acc-menu .acc-menu-title {
    background-color: #50667E;
    padding: 12px 18px;
}
.acc-menu .acc-menu-title .icon {
    display: none;
}
.acc-menu .acc-menu-title span {
    font-weight: 500;
}
.acc-menu-list li a {
    font-size: 15px;
    font-weight: 500;
}
.acc-menu-list li a.active-link:after {
    top: 17px;
    border-left: 7px solid #E76642;
}
.acc-menu-list li a.active-link {
    font-weight: 500;
}
.acc-menu-list li a.active-link,
.acc-menu-list li a:hover {
    color: #da5128;
}
.acc-self-alert-text,
.acc-form-row .acc-input, .acc-form-row .acc-label {
    font-size: 15px;
}
.personal-birthday-notice {
    display: block;
    margin: 30px 0 0;
    font-weight: 500;
    text-transform: uppercase;
    color: #50667E;
}
.acc-form-row .acc-label {
    display: block;
    width: auto;
    font-size: 13px;
}

.acc-form-row .acc-label.personal-coffee {
    display: flex;
    margin-bottom: 10px;
}
.acc-form-row.flex-row-center {
    display: block;
}
.acc-left-mar {
    margin-left: 0;
}
.acc-form-buttons input[type="submit"],
.acc-form-buttons a.btn {
    border: none;
    background-color: #50667E;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 2px;
}
.acc-form-buttons input[type="submit"]:hover,
.acc-form-buttons a.btn:hover {
    background-color: #1A3853;
}
.acc-profile-top-link {
    display: inline-block;
    color: #EE5A24;
    border-bottom: 1px dashed #EE5A24;
}
.acc-profile-top-link:hover {
    border-bottom-color: transparent
}
.acc-order-title {
    font-weight: 500;
    color: #1A3853;
    font-size: 18px;
}
.acc-order-title-status.pay:before {
    font-size: 15px;
}
.acc-order-info-text {
    font-size: 17px;
    font-weight: 500;
    color: #091922;
    margin-bottom: 5px;
}
.acc-order-info-place {
    color: #50667E;
    font-size: 13px;
}
.acc-order-info-cols p {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.acc-sales-item {
    border-color: #1289A7;
}
.acc-sales-item-title {
    font-weight: 500;
    font-size: 20px;
    color: #1A3853;
}
.acc-sales-item-wrapper > div span {
    color: #50667E;
    font-size: 18px;
}
.acc-sales-item-time:before {
    top: 1px;
    left: 3px;
    font-size: 16px;
    color: #7D96A4;
}
.popup-corner {
    background-size: 2.4375rem auto;
    padding: 1rem;
}
.popup-border-vertical:after, .popup-border-vertical:before {
    left: 35px;
    right: 35px;
    height: 2px;
    background-color: #e2e7ef;
}
.popup-border:after, .popup-border:before {
    top: 35px;
    bottom: 35px;
    width: 2px;
    background-color: #e2e7ef;
}
.checkout-content-title,
.checkout-tabs > ul > li.active {
    background-color: #50667E;
    border-radius: 5px 5px 0 0;
}
.checkout-tabs > ul > li.active {
    border-radius: 5px 5px 0 0;
}
.checkout-tabs > ul > li > a {
    font-size: 18px;
}
.checkout-tabs > ul > li > a .c-icon {
    font-size: 22px;
}
.checkout-tabs > ul > li.active:after {
    border-top: 10px solid #50667E;
    bottom: -22px;
}
.checkout-tab-row .check-label > span {
    color: #da5128;
    font-size: 14px;
    margin-left: 2px;
}
.checkout-tab-row-wrapper .add-phone {
    color: #da5128;
    font-size: 16px;
}
.checkout-tab-row-wrapper .add-phone:before {
    font-size: 14px;
}
.checkout-tab-row-wrapper .add-phone span {
    border-bottom-style: dashed;
    border-bottom-color: #da5128;
}
.checkout-page .irs-single:after {
    border-top-color: #50667E;
}
.checkout-page .irs-slider,
.checkout-page .irs-slider:after, .checkout-page .irs-slider:before,
.checkout-page .irs-single {
    background-color: #50667E;
}
.tabs-time .tab_button_wrapper .tab_button {
    color: #da5128;
    border-bottom-color: #da5128;
}
.checkout-info {
    background: none;
    position: relative;
}
.checkout-info:before {
    content: '\e934';
    font-family: 'icomoon' !important;
    font-size: 18px;
    color: #50667E;
    position: absolute;
    top: 2px;
    left: 0;
}
.checkout-info-title {
    color:  #50667E;
}
.checkout-content-title span {
    font-family: 'inter', sans-serif;
    font-size: 18px;
}
.checkout-content-title img,
.checkout-content-title .c-icon {
    vertical-align: middle;
    margin-right: 15px;
}
.checkout-content-title .c-icon {
    font-size: 18px;
}
.checkout-content-title img {
    width: 20px;
}
.adress-select .jq-selectbox__trigger-arrow {
    border-top-color: #50667E;
}
.adress-select .jq-selectbox__select-text {
    font-size: 16px;
}
.c-bxmaker-authuserphone_login-default-box .cbaup_row input[type="text"],
.c-bxmaker-authuserphone_login-default-box .cbaup_row input[type="tel"],
.c-bxmaker-authuserphone_login-default-box .cbaup_row input[type="password"] {
    box-shadow: none !important;
    padding: 12px !important;
}
.userAuthPopup.popup-wrapper.popup-auth {
    padding: 30px 10px !important;
}
.c-bxmaker-authuserphone_login-default-box {
    border-width: 0 !important;
    margin: 0 auto;
}
.c-bxmaker-authuserphone_warning {
    font-weight: 400 !important;
    color: #50667E !important;
    font-style: italic;
    font-size: 14px !important;
}
.regystry-title-item:before {
    background: none !important;
    content: '\e904' !important;
    font-family: 'icomoon' !important;
    font-size: 36px;
    color: #9FB0BA !important;
}
.acc-cart .cart-row .btn {
    margin: 5px 0 0 0 ;
}
.acc-cart .cart-row .btn .icon:before {
    content: '\e936'
}
.info-cart-row p span:last-child {
    font-size: 18px;
}

#auth-form a.authBasketCloseButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 14px;
    padding: 0 30px;
    width: 270px;
    top: 0;
    margin-top: 10px;
    margin-left: calc(50% - 135px);
    right: auto;
    border-radius: 3px;
    color: #fff;
    position: relative;
    background-color: #50667E;
    line-height: 1;
}
.acc-order-info-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.acc-order-info-footer:before,
.acc-order-info-footer:after {
    display: none !important;
}
.acc-order-info-footer a.btn.btn-trans span {
    color: #da5128;
    border-bottom: 1px dashed #da5128;
    line-height: 1.3;
}
.acc-order-info-footer a.btn.btn.btn-grey-trans span {
    color: #50667E;
    border-bottom: 1px dashed #50667E;
    line-height: 1.3;
}
.acc-order-info-footer a.btn.btn.btn-grey-trans:hover span,
.acc-order-info-footer a.btn.btn-trans:hover span {
    border-bottom-color: transparent;
}
.acc-order-title-status.podtverz {
    color: #006722;
    font-weight: 500;
    font-size: 16px;
}
.acc-order-title-status.podtverz:before {
    content: '\e937';
    font-family: 'icomoon' !important;
    font-size: 16px;
}
.sale-order-list-payment-wrapper a.btn.btn-regular.btn-positive.btn-text-16.mt-20.sale-order-list-payment-show-detail {
    color: #da5128;
    border-bottom: 1px dotted #da5128;
}
.acc-history-footer a.btn.btn-regular.btn-positive.btn-text-14.btn-icon.btn-trans span,
.acc-order-info-footer a.btn.btn-regular.btn-positive.btn-text-14.button.btn-icon.float-right span,
.sale-order-list-payment-wrapper a.btn.btn-regular.btn-positive.btn-text-16.mt-20.sale-order-list-change-payment span {
    color: #50667E;
    border-bottom: 1px dotted #50667E;
    margin-right: 15px;
}
.acc-history-footer a.btn.btn-regular.btn-positive.btn-text-14.btn-icon.btn-trans:hover span,
.acc-order-info-footer a.btn.btn-regular.btn-positive.btn-text-14.button.btn-icon.float-right:hover span,
.sale-order-list-payment-wrapper a.btn.btn-regular.btn-positive.btn-text-16.mt-20.sale-order-list-payment-show-detail:hover,
.sale-order-list-payment-wrapper a.btn.btn-regular.btn-positive.btn-text-16.mt-20.sale-order-list-change-payment:hover span {
    border-bottom-color: transparent;
}
a.btn.btn-regular.btn-positive.btn-text-16.mt-20.sale-order-list-cancel-payment span {
    color: #0d687e
}
.acc-prod .cart-wrapper {
    border-radius: 0;
}
.acc-prod .cart-wrapper .cart-header {
    padding: 15px 15px 5px;
}
.acc-prod .cart-wrapper .cart-row .col-md-7.col-sm-12.col-xs-12 {
    display: flex;
}
.acc-prod .cart-wrapper .cart-row .col-md-7.col-sm-12.col-xs-12 > a:first-child {
    flex: 0 1 auto;
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.acc-prod .cart-wrapper .cart-row {
    padding: 15px;
    border-bottom: 1px solid #ececec;
}
.acc-prod .cart-wrapper .cart-row .col-md-7.col-sm-12.col-xs-12 > a:first-child > img {
    object-fit: cover;
    display: block;
}
.acc-prod .cart-wrapper .cart-row .col-md-7.col-sm-12.col-xs-12 > .cart-row-title {
    flex: 0 1 auto;
    width: calc(100% - 140px);
    padding-left: 15px;
    line-height: 1;
}
.acc-prod .cart-row-price,
.acc-prod .cart-row-count .bold-positive,
.acc-prod .cart-item-sum {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1A3853 !important;
}
.acc-prod .cart-row-footer p span:last-child:after,
.acc-prod .cart-row-price:after,
.acc-prod .cart-item-sum:after {
    content: 'p'
}
.acc-prod .cart-row-footer {
    border-top-width: 0;
    padding: 10px 0;
}
.acc-prod .cart-row-footer p {
    margin-bottom: 10px;
    display: flex;
}
.acc-prod .cart-row-footer p span:first-child {
    color: #7D96A4;
    margin-right: 5px;
}
.acc-prod .cart-row-footer p span:last-child {
    color: #1A3853;
    font-weight: 500;
}

.popup-wrapper .btn {
    display: inline-flex !important;
}
.popup-wrapper .btn span {
    text-transform: none !important;
    font-weight: 500 !important;
}

.popup-bigprod .product-price p {
    font-size: 16px;
    color: #50667E;
}
.popup-bigprod .product-price p span {
    color: #da5128;
    font-weight: 500;
    font-size: 22px !important;
}
.popup-bigprod .product-price p span .c-icon {
    font-size: 16px !important;
}
.product-carousel-small .slick-slide:only-child {
    display: none !important;
}
.popup-bigprod .product-description {
    font-size: 16px;
    color: #50667E;
    line-height: 1.4;
}
.popup-bigprod .product-description p {
    margin-bottom: 10px;
    color: inherit;
    font-size: inherit;
}
.popup-bigprod .product-description br {
    content: "";
    margin: 2em;
    display: block;
    font-size: 24%;
}
.popup-bigprod .product-description br:only-child {
    display: none !important;
}
.popup-bigprod .b-product__attributes-row {
    margin-bottom: 7px;
}
.popup-bigprod .b-product__attributes-row:first-child {
    margin-top: 10px;

}
.popup-bigprod .b-product__attributes-row .b-product__attributes-label {
    color: #50667E;
    margin-right: 7px;
}
.popup-bigprod .b-product__attributes-row .b-product__attributes-value {
    color: #1A3853;
    font-weight: 500;
}
.cart-row .cart-row-delete:not(.old) {
    width: 24px;
    height: 24px;
}
.cart-row .cart-row-delete i {
    font-size: 16px;
}
.cart-row .cart-row-delete i:before {
    content: '\e966';
    font-family: 'icomoon' !important;
}

@media all and (max-width: 1200px) {
    .info-cart-row p span:last-child {
        float: none;
        display: block;
    }
    .info-cart-row-btn {
        text-align: left;
        margin-bottom: 10px;
    }
    .info-cart-row {
        padding: 10px 15px;
    }
    .info-cart-row p {
        margin: 0 0 5px;
    }
}
@media all and (max-width: 992px) {
    .cart-row .pl-40 {
        padding-left: 0;
    }
    .cart-row .cart-row-delete:not(.old) {
        top: 40%;
        left: auto;
        right: 20px;
    }
    .acc-prod .cart-row-footer {
        text-align: left;
    }
    .acc-prod .cart-wrapper .cart-row .col-md-7.col-sm-12.col-xs-12 > a:first-child {
        margin-bottom: 15px;
    }
    .acc-prod .cart-header .row .col-md-5.col-sm-6.col-xs-12 {
        width: 100% !important;
    }
    .acc-prod .cart-header .row .col-md-7.col-sm-6.col-xs-12 {
        display: none;
    }
}
@media all and (max-width: 768px) {
    #delivery-popup {
        height: 100vh;
        margin: 6px 0;
        overflow-y: auto;
    }
    #delivery-popup .popup-corner,
    #delivery-popup .popup-border-vertical,
    #delivery-popup .popup-border {
        height: 100%;
    }
    .checkout-page .acc.st-accordion {
        margin-bottom: 30px;
    }
    .acc-order-info-footer {
        flex-direction: column;
    }
    .acc-order-info-footer a {
        display: inline-block;
        margin-left: 0 !important;
    }
    .acc-order-info-footer a:first-child {
        margin-bottom: 15px;
    }
    .acc-order-info-cols-item {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .acc-prod .cart-wrapper .cart-row .col-md-7.col-sm-12.col-xs-12 > a:first-child {
        width: 90px;
    }
    .acc-prod .cart-wrapper .cart-row .col-md-7.col-sm-12.col-xs-12 > .cart-row-title {
        width: calc(100% - 90px);
        padding: 10px 0 0 10px;
    }
}
@media (min-width: 576px) {
    .catalog-tags label:not(:last-child) {
        margin-right: 40px;
    }
}
@media all and (max-width: 500px) {
    #delivery-popup .popup-corner {
        border-width: 0;
        background: none;
    }
    #delivery-popup .popup-border:after,
    #delivery-popup .popup-border:before,
    #delivery-popup .popup-border-vertical:after,
    #delivery-popup .popup-border-vertical:before {
        background-color: transparent;
    }
    .cart-row .cart-row-delete:not(.old) {
        right: 10px;
    }
    .checkout-content-title {
        line-height: 15px;
        padding: 10px 25px 12px;
    }
    .checkout-content-title span,
    .checkout-tabs > ul > li > a {
        font-size: 15px;
    }
    .checkout-content-title .c-icon,
    .checkout-tabs > ul > li > a .c-icon {
        display: none;
    }
    .checkout-tabs > ul > li {
        padding: 10px 25px;
    }
    .checkout-tab-content {
        padding: 15px;
    }
    .checkout-footer-btn {
        display: flex;
        flex-direction: column;
        padding-right: 0;
    }
    .checkout-footer-text {
        margin-top: 15px;
    }
    .checkout-footer-btn .btn {
        border-radius: 3px;
    }
    .checkout-footer-btn .btn:after {
        display: none;
    }
    .checkout-date-time,
    .tabs-time .tab_button_wrapper {
        float: none !important;
        display: block;
    }
    .userAuthPopup.popup-wrapper.popup-auth {
        max-width: none;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        margin: 6px 0;
    }
}
.popup-big {
    overflow: auto;
}

.checkout-refund-text {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.thank-item-form-row label.first-label-open-text + label.open-text + .ch-add {
    display: none;
}

.thank-item-form-row label.first-label-open-text.open-text + label + .ch-add {
    display: block;
}

@media (min-width: 992px) {
    .crm-col-title {
        height: auto;
    }
}
.ta-r {
    text-align: right;
}
.anchor-link {
    position: absolute;
    top: -80px;
}
.popup-item {
    overflow-y: auto;
}
.f-label-checkbox + .f-label-checkbox {
    margin-left: 20px;
}

.crm-table-short .crm-row.crm-type-back .ch-cell-id:after {
    content: '\e993';
}

.crm-table-short .crm-row.crm-type-reverse .ch-cell-id:after {
    content: '\e992';
}

.address-input-error {
    border: 1px solid red;
}
.address-input-error + .informer {
    display: flex;
    color: #EE5A24;
    padding: 10px 0px;
    background-color: transparent;
}
.address-input-error + .informer .informer-text {
    padding-left: 10px;
}
@media (min-width:992px) {
    .hidden-sm {
        display: none !important;
    }
}
.crm-col-data .ch-cell-item {
    overflow-x: auto;
}

.covers-item > a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.side-menu-inner-wrap {
    height: auto;
    min-height: 100%;
}
@media (min-width: 992px) {
    .side-menu-inner {
        overflow-y: auto;
    }
}

.gallery-filter .btn-gallery span {
    font-size: 0.875rem;
}

.gallery-filter .btn-gallery:not(.active) {
    background-color: #fff;
}

.gallery-filter .btn-gallery:not(.active) span {
    color: #1A3853;
}

.gallery-filter .btn-gallery.active {
    background-color: #50667E;
}

.gallery-filter .btn-gallery.active span {
    color: #fff;
}
.menubar-info-btns {
    justify-content: center;
}
button.recipes-sort-item {
    text-align: left;
}
@media (max-width:991px) {
    .menus .title-decor {
        display: none;
    }
}

.projects-logo {
    justify-content: center;
}

.mt-30 {
    margin-top: 30px;
}

.formError {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

form .formError .formErrorContent {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 0;
    color: #da5128;
}

.formError + input,
.formError + input:focus,
.formError + select,
.formError + textarea,
.formError + input[type='checkbox']:not(.switch):not(checked) + span:before {
    border-color: #da5128;
}

.jsStandartAuth span {
    color: #1A3853;
    border-bottom: 1px dashed #1A3853;
}

#yandexAuth a.authBasketCloseButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 14px;
    padding: 0 30px;
    width: 270px;
    top: 0;
    margin-top: 10px;
    margin-left: calc(50% - 135px);
    right: auto;
    border-radius: 3px;
    color: #fff;
    position: relative;
    background-color: #50667E;
    line-height: 1;
}

.form_wrapper {
    max-width: 70%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form_wrapper {
        max-width: 100%;
    }
}

.bad_stage {
    padding: 20px 0;
}
@media (max-width:767px) {
    .a-desktop {
        display: none;
    }
    .products-notify span {
        display: none;
    }
    #header-basket {
        margin-left: -10px;
    }
    .products-bottom .products-price-piece {
        display: none;
    }
    .products-bottom.opened .products-price-piece {
        display: inline-block;
    }
}
@media (min-width:768px) {
    .a-mobile {
        display: none;
    }
}
.js-carousel-banner-noDots {
    margin-bottom: 26px;
}

.easy-autocomplete-container {
    position: relative !important;
    box-shadow: none !important;
}

.ch-btns-bonus {
    font-size: 0.875rem;
    margin: -10px 40px 0px 20px;
    padding-bottom: 20px;
}

.ch-btns-bonus button {
    cursor: pointer;
}

.block-menu-list .slick-track {
    display: flex;
    align-items: center;
}

.block-menu-list .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
}

.block-menu-list .slick-track button.active:before {
    display: none;
}

.block-menu-list .slick-track button.slick-slide {

    border-radius: 20px;
}

.block-menu-list .slick-track button.slick-slide.active {
    margin: 0;
    padding: 11px;
    background-color: #e76642;
}

.block-menu-list .slick-list {
     padding-top: 0 !important;
     padding-bottom: 0 !important;}

.products-price-old, .ch-old-price-item {
    text-decoration: line-through;
    color: #485059;
}
.xname.name {
    display:block;
    height:.1px;
    margin:0!important;
    overflow:hidden;
    padding:0!important;
    width:.1px;
    border:0;
    opacity:.01;
}

.--hidden-itemprop {
    display: none;
}
a.a-mobile {
    display: none !important;
}

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

    .block-gallery .d_n {
        display: block !important;
        margin-top: 20px;
    }
}
@media screen and (max-width: 468px) {
    form#basket_form {
        margin: 0 -10px;
    }
    a.a-desktop {
        display: none !important;
    }
    a.a-mobile {
        display: block !important;
    }
    .bg-main-small.cart-present {
        margin: 0px -10px;
    }
}

@media screen and (min-width: 468px) and (max-width: 568px){
    form#basket_form {
        margin: 0 -10px;
    }
    a.a-desktop {
        display: none !important;
    }
    a.a-mobile {
        display: block !important;
    }
    .bg-main-small.cart-present {
        margin: 0px -10px;
    }
}

@media screen and (min-width: 568px) and (max-width: 768px){
    form#basket_form {
        margin: 0 -10px;
    }
    a.a-desktop {
        display: none !important;
    }
    a.a-mobile {
        display: block !important;
    }
    .bg-main-small.cart-present {
        margin: 0px -10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 968px){
    form#basket_form {
        margin: 0 -15px;
    }
    /* a.a-desktop {
        display: none !important;
    }
    a.a-mobile {
        display: block !important;
    } */
    .bg-main-small.cart-present {
        margin: 0px -15px;
    }
}

@media screen and (min-width: 968px) and (max-width: 1268px){
    form#basket_form {
        margin: 0 -15px;
    }
    /* a.a-desktop {
        display: none !important;
    }
    a.a-mobile {
        display: block !important;
    } */
}

/*.products.not-new-year{*/
/*    order: 999;*/
/*}*/

.informer .informer-text a {
	color: #fff;
	border-bottom: 1px dashed #fff;
}
.informer .informer-text a:hover {
	color: #1a3853;
	border-bottom: 1px dashed #1a3853;
}


/* new add survey form */
.popup-survey .radio-group-horizontal {
    flex-direction: row;
}
.popup-survey .radio-group-horizontal>label:not(:first-child) {
    margin-left: 20px
}
.popup-survey .f-label {
    font-size: 1rem;
}
/* new add survey form */


.features-text-list li span {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #1a3853;
    font-family: Lora,serif;
    font-size: 1.125rem
}


/* Dilshod MOD */
.popup-btn.hidden {
    display: none;
}
.js-popup-review.hidden {
    display: none;
}
.side-delivery-item-map .ch-link span {
    width: calc(31% - 47px) !important;
}
.acc-order-title.d-flex-wrap {
    margin-bottom: 1px;
}


/*@media (min-width: 1260px) {
    .account-right>div:not(:last-child) {
        margin-bottom: 30px !important;
    }
}
.account-right>div:not(:last-child) {
    margin-bottom: 20px;
}*/
/*.cart-table-row.cart-table-top {
    justify-content: center;
    align-items: center;
    display: flex;
}*/
/*.cart-table-row {
    display: flex;
}*/

.h1 {font-size: 1.5rem}
.h2 {font-size: 1.375rem}
.h3 {font-size: 1.25rem}
.h4 {font-size: 1.125rem}
.h5 {font-size: 1.0625rem}
.h6 {font-size: .9375rem}
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: Lora, serif;
    font-weight: 500;
    color: #1a3853;
    margin: 0 0 .8em;
    line-height: 1.3
}
.headline {
    font-family: Lora, serif;
    font-weight: 500;
}

.btn-thin {
    height: 32px;
    padding: 0 16px;
    border-radius: 2px;
    gap: 6px;
}
.art-divider:before{background:none;}

.carousel-banner-img .ch-img a {
    display: flex;
    height: 100%;
}

.carousel-banner-img .ch-video a:before {
    content: '\e90d';
    font-family: "icomoon" !important;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(50% - 40px);
    transition-duration: .2s;
}

.swiper-pagination {
    width: 100%;
    bottom: 0;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 4px;
    background-color: #50667e;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #e76642;
}
@media (max-width: 768px) {
    #popupProductDesktop .popup-product .product-gallery, #popupProductDesktop .popup-product .product-info {
        width: 100%;
    }
    #popupProductDesktop .popup-product .product-popup-content {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
    }
}
.carousel-banner-img .lightgallery .ch-img a {
    position: relative;
}

.features-text p {
    margin-bottom: 15px;
}
.features-text  p:last-child{
    margin-bottom: 0;
}
.features-text :not(.features-text-list) li {
    position: relative;
    margin-bottom: 10px;
    margin-left: 30px;
}
.features-text ul:not(.features-text-list) li:before {
    content: '';
    position: absolute;
    top: .5em;
    left: -15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #da5128;
}
.content .features-text-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    color: #485059;
    margin-left: 0;
}
.content .features-text-list li:before {
    content: '\e937';
    font-family: icomoon !important;
    font-size: 1.125rem;
    color: #e76642;
    position: absolute;
    top: -2px;
    left: 0;
    background: none;
}
.acc-order-pay-status {display:none!important;}
.article-row > p, .article-row > ul {width: 100%;}
.products-swipe .product-info-mobile-fixed {position: absolute;}
/* End */
/* /local/include/assets/css-v4/main.css?1729509069565385 */
/* /local/include/assets/js/airdatapicker/air-datepicker.css?167160737919693 */
/* /local/include/assets/css-v4/swiper-bundle.min.css?172183627418431 */
/* /local/templates/.default/components/bxmaker/authuserphone.login/new_auth/style.css?171083689030566 */
/* /local/templates/shop/css/old/popup.css?16548767793971 */
/* /local/templates/shop/css/old/auth.css?1653617519635 */
/* /local/templates/.default/components/bitrix/system.auth.form/popup_auth/style.css?1530972454659 */
/* /local/templates/.default/ajax/ajax.css?1482742660448 */
/* /local/templates/.default/components/bitrix/system.auth.form/errors/style.css?1493463996477 */
/* /local/templates/.default/components/arturgolubev/search.title/header_new/style.css?171197780411988 */
/* /local/include/assets/js/lightgallery/css/lightgallery-bundle.min.css?172674928231060 */
/* /local/templates/shop/styles.css?1757929101122 */
/* /local/klondike.tools/k.css?149889859032208 */
/* /local/include/assets/css/custom.css?173885176429173 */
