/* Safari FOUC fix: prevent flash of focus outlines on page load */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: none; }

/*
Reboot
Normalization of HTML elements, manually forked from Normalize.css to remove styles targeting irrelevant browsers while applying new styles.
Normalize is licensed MIT. https://github.com/necolas/normalize.css
* Bootstrap v4.0.0-beta (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*
Document
1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
2. Change the default font family in all browsers.
3. Correct the line height in all browsers.
4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
6. Change the default tap highlight to be completely transparent in iOS.
*/

/*@import "./templates/menu.css";*/
/*@import "./templates/banner-match-v2.css";*/
/*@import "./templates/event-v2.css";*/
/*@import "./templates/banner-jul.css";*/
/*@import "./templates/concert.css";*/

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes hithere {
  3% { transform: scale(1.2); }
  4%, 6% { transform: rotate(-20deg) scale(1.2); }
  5% { transform: rotate(20deg) scale(1.2); }
  7% { transform: rotate(0deg) scale(1.2); }
  10% { transform: scale(1); }
  100% { transform: scale(1); }
}

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

html {
  font-family: sans-serif; /* 2 */
  line-height: 1.15; /* 3 */
  -webkit-text-size-adjust: 100%; /* 4 */
  -ms-text-size-adjust: 100%; /* 4 */
  -ms-overflow-style: scrollbar; /* 5 */
  -webkit-tap-highlight-color: transparent; /* 6 */
}

/* IE10+ doesn't honor `<meta name="viewport">` in some cases. */
/* stylelint-disable selector-list-comma-newline-after
Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) */
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

:root{
    --heart-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='rgba(255,182,193,0.6)'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

@media (max-width: 1199px) {
    .lt-1200-d-none{
        display: none;
    }
}

@media (min-width: 1200px) {
    .gt-1200-d-none{
        display: none;
    }
}

/*
Body
1. Remove the margin in all browsers.
2. As a best practice, apply a default `background-color`.
3. Set an explicit initial text-align value so that we can later use the `inherit` value on things like `<th>` elements.
*/
body {
  margin: 0; /* 1 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #212529;
  text-align: left; /* 3 */
  background-color: #fff; /* 2 */
  padding-top: 48px !important;
}
html.march8-bg body {
  background-image: url('https://img.gestion.ph/avenirtel.fr/img/background-8marth.png');
  background-repeat: repeat;
  background-size: 400px;
}
html.equinox-bg body {
  background-image: url('https://img.gestion.ph/avenirtel.fr/img/marth21/pattern-21marth.png');
  background-repeat: repeat;
  background-size: 400px;
}
html.easter-bg body {
  background-image: url('https://img.gestion.ph/avenirtel.fr/img/easter/pattern-easter.png');
  background-repeat: repeat;
  background-size: 400px;
}

/*
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: none !important;
}

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

/* 
Typography
*/
/* 
Remove top margins from headings
By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top margin for easier control within type scales as it avoids margin collapsing.
*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/*
Reset margins on paragraphs
Similarly, the top margin on `<p>`s get reset. However, we also reset the bottom margin to use `rem` units instead of `em`.
*/
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/*
Abbreviations
1. Remove the bottom border in Firefox 39-.
2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
3. Add explicit cursor to indicate changed behavior.
4. Duplicate behavior to the data-* attribute for our tooltip plugin
*/
abbr[title],
abbr[data-original-title] { /* 4 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted; /* 2 */
  text-decoration: underline dotted; /* 2 */
  cursor: help; /* 3 */
  border-bottom: 0; /* 1 */
}

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

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

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

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0; /* Undo browser default */
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic; /* Add the correct font style in Android 4.3- */
}

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/*
And undo these styles for placeholder links/named anchors (without href) which have not been made explicitly keyboard-focusable (without tabindex). It would be more straightforward to just use a[href] in previous block, but that causes specificity issues in many other styles that are too complex to fix.
See https://github.com/twbs/bootstrap/issues/19402
*/
a:not([href]):not([tabindex]) {
  /* color: inherit; */
  text-decoration: none;
}



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

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

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

pre {
  /* Remove browser default top margin */
  margin-top: 0;
  /* Reset browser default of `1em` to use `rem`s */
  margin-bottom: 1rem;
  /* Don't allow content to break outside */
  overflow: auto;
  /* 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. */
  -ms-overflow-style: scrollbar;
}

/*
Figures
*/
figure {
  /* Apply a consistent margin strategy (matches our type styles). */
  margin: 0 0 1rem;
}

/*
Images and content
*/
img {
  vertical-align: middle;
  border-style: none; /* Remove the border on images inside links in IE 10-. */
}

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

/*
Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.
In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11 DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present. However, they DO support removing the click delay via `touch-action: manipulation`.
See:
* https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch
* https://caniuse.com/#feat=css-touch-action
*  https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
*/
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

/*
Tables
*/
table {
  border-collapse: collapse; /* Prevent double borders */
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}

th {
  /* Matches default `<td>` alignment by inheriting from the `<body>`, or the closest parent with a set `text-align`. */
  text-align: inherit;
}

/*
Forms
*/
label {
  /* Allow labels to use `margin` for spacing. */
  display: inline-block;
  margin-bottom: 0.5rem;
}

/*
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: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/* Override the global button:focus webkit-focus-ring for header nav buttons.
   This block must come after the global rule to win the cascade. */
.header-button:focus,
.mobile-nav__item:focus {
  outline: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0; /* Remove the margin in Firefox and Safari */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

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

/*
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,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/*
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 {
  padding: 0;
  border-style: none;
}

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  /* 
  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
  */
  -webkit-appearance: listbox;
}

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

fieldset {
  /* 
  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  
  */
  min-width: 0;
  /* Reset the default outline behavior of fieldsets so they don't affect page layout. */
  padding: 0;
  margin: 0;
  border: 0;
}

/*
1. Correct the text wrapping in Edge and IE.
2. Correct the color inheritance from `fieldset` elements in IE.
*/
legend {
  display: block;
  width: 100%;
  max-width: 100%; /* 1 */
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

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

/* 
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;
}

[type=search] {
  /* 
  This overrides the extra rounded corners on search inputs in iOS so that our `.form-control` class can properly style them. Note that this cannot simply be added to `.form-control` as it's not specific enough. 

  For details, see https://github.com/twbs/bootstrap/issues/11586.
  */
  outline-offset: -2px;
  -webkit-appearance: none;
}

/*
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 {
  font: inherit;
  -webkit-appearance: button;
}

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

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

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

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

body {
  background-color: #F6F6FC;
   /*background-image: url('https://img.gestion.ph/avenirtel.fr/img/valentines-day/background.png');*/
  background-repeat: repeat;
  background-size: 400px;
  background-attachment: fixed;
  font: 400 16px/1.75 "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 56px;
  padding-top: 48px;
}
.trust-widget-warp {
position: absolute;
    bottom: 8px;
    left: 12px;
    width: 92px;
    height: 44px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 4px hsl(0deg 0% 0% / 25%);
    border-radius: 4px;
    z-index: 999;
    transition: 0.3s opacity;
}
.trust-widget-warp > .trustpilot-widget{
  top: -2px;
}
.trust-widget-warp-desktop {
  transition: 0.3s opacity;
  display: none;
  position: absolute;
      background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 4px hsl(0deg 0% 0% / 25%);
    border-radius: 6px;
    z-index: 999;
    top: 106px;
    right: 16px;
}
.trust-widget-warp-desktop > .trustpilot-widget {
  left: 5px;
  transform: scale(0.94);
}
/* widget avis*/
.widget-avis {
  transition: 0.3s opacity;
  z-index: 999;
  position: absolute;
  left: 118px;
  bottom: 8px;
  width: 92px;
  height: 44px;
    background-color: #016ff4;
    padding: 4px 0;
    border-radius: 4px;
    box-shadow: 0 4px 4px hsl(0deg 0% 0% / 25%);  
  transition: .3s;
  display: flex;
    overflow: hidden;
}
.widget-avis img {
}

.hide-me {
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0 !important;
}

.progress-circle-warp {
    display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
    width: 100%;
}
.progress-circle-warp .progress-ring__circle {
  stroke-width: 10;
  /*stroke: #5f27cd;*/
  fill: none;
  transform-origin: center;
  transform: rotate(-90deg);
}
.progress-ring {
    position: absolute;
  z-index: 2;
  /*animation: spin 1s infinite linear;*/
}
.progress-ring-background {
  position: absolute;
  z-index: 1;
}
.modal-success__icon .call-icon {
  animation: hithere 10s ease infinite;
}
.progress-ring-background .progress-ring__circle-background{
  stroke-width: 10;
  stroke: #F6F6FC;
  fill: none;
  transform-origin: center;
  transform: rotate(-90deg);
}
.progress-circle-warp .progress-point {
  position: absolute;
}
#recruiter-icons {
  display: flex;
  align-items: center;
  height: 50px;
}
#recruiter-icons .call-success, #recruiter-icons .call-icon {
  position: absolute;
  height: 50px;
  width: 50px;
}
#recruiter-icons .call-success {
  z-index: 1;
  opacity: 1;
  visibility: 1;
  transition: visibility 0s, opacity 0.5s linear;
}
#recruiter-icons .call-success.off{
    opacity: 0;
  visibility: 0;
}
#recruiter-icons .call-icon {
  z-index: 2;
  opacity: 0;
  visibility: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
#recruiter-icons .call-icon.on{
  opacity: 1;
  visibility: 1;
}

  .widgetTrust .trustpilot-widget{
    display: none;
  }
  .widgetTrust .trustpilot-widget.mobile{
    display: block;
  }

@media (min-width: 375px) {
  .trust-widget-warp {
        left: 16px;
  }
.trust-widget-warp > .trustpilot-widget{
  top: -1px;
}
}
@media (min-width: 768px) {
  .widget-avis {
    bottom: inherit;
    left: inherit;
    top: 12px;
    right: 12px;
  }
    .trust-widget-warp {
      left: inherit;
    right: 12px;
    top: 62px;
    height: 44px;
  }
  .trust-widget-warp > .trustpilot-widget{
    top: 0px;
  }
  .widgetTrust .trustpilot-widget{
    display: block;
  }
  .widgetTrust .trustpilot-widget.mobile{
    display: none;
  }
}
@media (min-width: 1200px) {
  .widget-avis {
    top: 14px;
    right: 16px;
    width: initial;
    bottom: initial;
    max-width: initial;
    height: initial;
    padding: 6px 0px;
  }
  .widget-avis img {
    border-radius: 8px;
    transform: scale(0.92);
  }
  .trust-widget-warp {
      display: none;
    width: 188px;
  }
  .trust-widget-warp-desktop {
      display: block;
      top: 114px;
  }
}
/* widget avis*/

@media (min-width: 1200px) {
  body {
    padding-bottom: 0;
  }
}
body.hidden {
  overflow: hidden;
}
@media (min-width: 1200px) {
  body.hidden {
    overflow: visible;
  }
}
/*@media (min-width: 1200px) {*/
/*  body.hidden .header {*/
/*    width: calc(100% - 17px);*/
/*  }*/
/*}*/
body.recrute {
  padding-bottom: 128px;
}
@media (min-width: 1200px) {
  body.recrute {
    padding-bottom: 0;
  }
}
body.profile {
  padding-bottom: 149px;
}
@media (min-width: 375px) {
  body.profile {
    padding-bottom: 159px;
  }
}
@media (min-width: 768px) {
  body.profile {
    padding-bottom: 56px;
  }
}
@media (min-width: 1200px) {
  body.profile {
    padding-bottom: 0;
  }
}

.main {
  flex-grow: 1;
  position: relative;
}
a {
  color: #242434;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  color: #242434;
  text-decoration: none;
}
.img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-control {
  background-color: #fff;
  border-radius: 8px;
  color: #242434;
  height: auto;
  transition: 0.3s ease, background-position 0s;
  border: 1px solid #C0C0DD;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.3333333333;
}
.form-control:focus, .form-control:hover {
  border-color: #5F27CD;
  background-color: transparent !important;
}
.form-control + label {
  pointer-events: none;
  position: absolute;
  left: 13px;
  top: 12px;
  font-size: 15px;
  line-height: 1.3333333333;
  color: #706DB0;
  transition: all 0.3s ease, text-transform 0s;
  display: block;
  margin-bottom: 0;
  padding: 0 3px;
  background: #fff;
  transform-origin: 0 0;
}
.form-control:focus + label,
.form-control:valid + label {
  top: 0;
  transform: scale(0.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 700;
  color: #5F27CD;
}
.form-control::-moz-placeholder-shown + label {
  top: 0;
  transform: scale(0.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 700;
}
.form-control:placeholder-shown + label:not(.label--textarea-placeholder) {
  top: 0;
  transform: scale(0.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 700;
}
.form-control.error {
  border-color: #F75F5F;
}
.form-control.error + label {
  color: #F75F5F;
}

.form-group {
  position: relative;
}
/* .form-group .form-control::-moz-placeholder {
  color: transparent;
}
.form-group .form-control::placeholder {
  color: transparent;
} */
  .form-group.checkbox {
    display: flex;
    align-items: start;
    user-select: none;
  }
  .form-group.checkbox a{
    cursor: pointer;
    color: #5f27cd;
    border-bottom: 1px solid transparent;
  }
  .form-group.checkbox a:hover{
    border-color: #5f27cd;
  }

  .form-group input[type=checkbox] { 
	-moz-appearance:none;
	-webkit-appearance:none;
	-o-appearance:none;
	outline: none;
	content: none;	
  cursor: pointer;
  }

  .form-group input[type=checkbox]::before {
    content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M11.6673 3.79199L5.25065 10.2087L2.33398 7.29199' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    font-size: 18px;
    color: transparent !important;
    background: #ffffff;
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #5f27cd;
    margin-top: 2px;
    padding: 1px 1px 0px;
    border-radius: 4px;
    cursor: pointer;
  }
  .form-group input[type=checkbox]:checked:before {
    color: #fff !important;
    background-color: #5f27cd;
    border: 2px solid #5f27cd;
  }


  .form-group input[type=checkbox] + label {
    line-height: 1.3;
    font-size: 16px;
    margin-left: 12px;
    margin-bottom: 0;
    cursor: pointer;
   }
.form-group__alert {
  font-size: 12px;
  line-height: 1.6666666667;
  color: #706DB0;
  margin-top: 4px;
}

input::-moz-placeholder, textarea::-moz-placeholder, .form-control::-moz-placeholder {
  font-weight: 400;
  color: #706DB0;
  opacity: 1;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
  font-weight: 400;
  color: #706DB0;
  opacity: 1;
}

input:focus,
textarea:focus {
  box-shadow: none !important;
  outline: none;
}

.textarea {
  transition: all 0.3s ease, height 0s !important;
}
.textarea--placeholder {
  min-height: 110px !important;
}
.textarea--placeholder.error + .label--textarea-placeholder {
  top: 0;
  transform: scale(.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 700;
}
.textarea--placeholder::placeholder {
  opacity: 0;
}
.textarea--placeholder:focus::placeholder {
  opacity: 0.5;
}
.textarea--placeholder.error::placeholder {
  opacity: 1 !important;
}
input,
textarea {
  font-family: "Arial", sans-serif;
}

textarea {
  resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.z-index-1104 {
  z-index: 1104;
}
.btn {
  transition: 0.3s ease;
  border-radius: 8px;
  padding: 14px 32px;
  border: 0;
  color: #242434;
  background: transparent;
  font: 400 16px/1.75 "Arial", sans-serif;
  line-height: 1.25;
  letter-spacing: 0.32px;
  cursor: pointer;
}
.btn:disabled {
  opacity: 0.5;
}
.btn:active {
  opacity: 1;
  background: inherit !important;
  color: inherit !important;
}
.btn:focus {
  box-shadow: none !important;
  outline: none;
}
.btn--prepay-private path {
  fill: #10AC84;
}
.btn--randevu {
  font-size: 13px;
}
.btn--trans {
  border: 1px solid;
}
.btn--widget-offer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn--main {
  background: #5F27CD;
  color: #fff;
}
.btn--main:focus {
  background: #5F27CD;
  color: #fff;
}
.btn--main:active, .btn--main:hover {
  background: #5824BE !important;
  color: #fff !important;
}
.btn--main.btn--trans {
  border-color: #5F27CD;
  background: transparent;
  color: #5F27CD;
}
.btn--main.btn--trans:focus {
  border-color: #5F27CD;
  background: transparent;
  color: #5F27CD;
}
.btn--main.btn--trans:active, .btn--main.btn--trans:hover {
  border-color: transparent !important;
  background: #5F27CD !important;
  color: #fff !important;
}
.btn--main.btn--prepay-private {
  border-color: #10AC84;
  color: #10AC84;
}
.btn--main.btn--prepay-private:hover {
  background: #10AC84 !important;
  color: #fff !important;
}
.btn--main.btn--prepay-private:hover path {
  fill: #fff !important;
}
.btn--green {
  background: #10AC84;
  color: #fff;
  fill: #fff;
}
.btn--private {
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%);
  border-bottom: 2px solid #2D7865;
  border-radius: 8px;
}
.btn--private path {
  stroke: #fff;
}
.btn--green:focus {
  background: #10AC84;
  color: #fff;
  fill: #fff;
}
.btn--green:active, .btn--green:hover {
  background: #10AC84 !important;
  color: #fff !important;
  fill: #fff;
}
.btn--private:hover {
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%) !important;
}
.btn--green.btn--trans {
  border-color: #10AC84;
  background: transparent;
  color: #10AC84;
  fill: #10AC84;
}
.btn--green.btn--trans:focus {
  border-color: #10AC84;
  background: transparent;
  color: #10AC84;
  fill: #10AC84;
}
.btn--green.btn--trans:active, .btn--green.btn--trans:hover {
  border-color: transparent !important;
  background: #10AC84 !important;
  color: #fff !important;
  fill: #fff;
  stroke: #fff;
}
.btn--green.btn--trans:hover path {
  transition: 0.3s;
  stroke: #fff;
}
.container {
  width: 100%;
  padding: 0 16px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 375px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 16px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 30px;
  }
}

.select {
  position: relative;
}
.select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #242434;
}
.select__btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select__btn svg {
  transition: 0.3s ease;
  width: 10px;
  height: 6px;
  flex: 0 0 10px;
}
.select__btn.active svg {
  transform: rotate(180deg);
}
.select__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  z-index: 10;
}
.select__item {
  transition: 0.3s ease;
  cursor: pointer;
}
.select.active {
  pointer-events: none;
}

#modal-autorization-success .content {
  display: flex;
  background-color: #F3F3FB;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px; 
  font-size: 14px; 
  align-items: center;
}
#modal-autorization-success .content .logo, #modal-autorization-success .content .name{
  flex: auto;
}
#modal-autorization-success .content .logo {
  display: flex;
    justify-content: end;
    padding-right: 8px;
}
#modal-autorization-success .content .logo>div {
  width: 40px;
height: 40px;
max-width: 40px;
border-radius: 50%;
border: 1px #fff solid;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

#modal-autorization-success .content .logo img{
  max-width: 100%;
    height: auto;
}

.r-modal {
  position: fixed;
  z-index: 1104;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  overflow: auto  ;
}
.r-modal--active {
  opacity: 1;
  visibility: visible;
}
.r-modal-widget-offer .comments-form__form {
  flex-direction: column;
}
.r-modal__container {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100%;
  justify-content: center;
  padding: 16px;
}

/*r-modal-comment-rules*/
.r-modal-comment-rules__dialog {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 0 12px 0 #00000033;
  width: 100%;
  max-width: 690px;
  padding: 24px;
}
.r-modal-comment-rules__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 11px;
  margin-bottom: 16px;
}
.r-modal-comment-rules__title {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #242434;
  margin: 0;
}
.r-modal-comment-rules__close {
  cursor: pointer;
  width: 17px;
  min-width: 17px;
}
.r-modal-comment-rules__content {
  margin-bottom: 16px;
}
.r-modal-comment-rules__block {
  margin-bottom: 16px;
}
.r-modal-comment-rules__block:last-child {
  margin-bottom: 0;
}
.r-modal-comment-rules__block__title {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #242434;
  margin-bottom: 16px;
}
.r-modal-comment-rules__text {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 16px;
  color: #242434;
}
.r-modal-comment-rules__text span{
  font-weight: 700;
}
.r-modal-comment-rules__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .r-modal-comment-rules__title, .r-modal-comment-rules__block__title {
    font-size: 24px;
    line-height: 32px;
  }
  .r-modal-comment-rules__text {
    font-size: 17px;
  }
}
/*r-modal-comment-rules*/

/*r-modal-voyant-name*/
.r-modal-voyant-name__dialog {
  background: #FFFFFF;
  box-shadow: 0 0 12px 0 #00000033;
  border-radius: 8px;
  padding: 16px;
  max-width: 512px;
}
.r-modal-voyant-name__photo {
  width: 51px;
  height: 51px;
  position: relative;
  margin: 0 auto 6px;
}
.r-modal-voyant-name__photo__box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #5F27CD;
}
.r-modal-voyant-name__photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.r-modal-voyant-name__photo__logo {
  position: absolute;
  right: -5px;
  bottom: 0;
}
.r-modal-voyant-name__veri {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 13.8px;
  letter-spacing: 0.3006666600704193px;
  text-align: center;
  margin-bottom: 12px;
  color: #706DB0;
}
.r-modal-voyant-name__title {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  color: #242434;
  margin: 0 auto 12px;
  max-width: 220px;
}
.r-modal-voyant-name__text {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #242434;
  max-width: 390px;
  margin: 0 auto 16px;
}
.r-modal-voyant-name__button--transparent {
  border: 1px solid #C0C0DD ;
  color: #6967AC !important;
  background: #fff !important;
  margin-top: 12px;
}
/*r-modal-voyant-name*/

/*r-modal-widget-offer*/
.r-modal-widget-offer__dialog {
  width: 100%;
  max-width: 618px;
  box-shadow: 0 0 12px 0 #00000033;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 16px;
}
.r-modal-widget-offer__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}
.r-modal-widget-offer__close {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
}
.r-modal-widget-offer__close svg {
  width: 100%;
  height: auto;
}
.r-modal-widget-offer__title {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.6px;
  color: #242434;
  margin: 0;
}
.r-modal-widget-offer__text {
  font-family: 'Arial', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: #242434;
  margin-bottom: 10px;
}
.r-modal-widget-offer__form-group {
  margin-bottom: 16px;
}
.r-modal-widget-offer__form-group--textarea {
  margin-bottom: 6px;
}
.r-modal-widget-offer__form-group:last-child {
  margin-bottom: 0;
}
.r-modal-widget-offer__textarea {
  height: 120px;
}
.r-modal-widget-offer__policy {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #242434;
}
.r-modal-widget-offer__policy a{
  font-weight: 700;
  color: #5F27CD;
}
.r-modal-widget-offer__button {
  width: 100%;
}
/*r-modal-widget-offer*/

/*r-modal-promocode*/
.r-modal-promocode__dialog {
  box-shadow: 0 0 12px 0 #00000033;
  position: relative;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  width: 100%;
  max-width: 402px;
}
.r-modal-promocode__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.r-modal-promocode__close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.r-modal-promocode__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  margin: 0;
}
.r-modal-promocode__title--success {
  text-align: center;
  margin-bottom: 8px;
}
.r-modal-promocode__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 17.25px;
  color: #242434;
}
.r-modal-promocode__text--success {
  text-align: center;
  margin-bottom: 8px;
}
.r-modal-promocode__promo {
  font-size: 12px;
  font-weight: 700;
  line-height: 13.8px;
  color: #242434;
  margin: 0 auto 24px;
  padding: 2px 5px;
  background: #FECA57;
  border-radius: 2px;
  width: min-content;
}
.r-modal-promocode__input-group {
  margin-bottom: 16px;
}
.r-modal-promocode__img {
  display: block;
  margin: 0 auto 16px;
}
.r-modal-promocode__error {
  font-size: 12px;
  color: #EE5353;
  display: none;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .r-modal-promocode__title {
    font-size: 24px;
    line-height: 27.6px;
  }
  .r-modal-promocode__header {
    margin-bottom: 24px;
  }
}
/*r-modal-promocode*/

/*r-modal-comment-moderate*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.r-modal-comment-moderate .voyant-comment__like {
  position: relative;
}
.r-modal-comment-moderate .voyant-comment__time {
  width: auto !important;
}
.r-modal-comment-moderate .voyant-comment__like::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: 0;
}
.r-modal-comment-moderate__container {
  align-items: flex-end;
  padding: 16px 0 0;
}
.r-modal-comment-moderate__dialog {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 0 12px 0 #00000033;
  border-radius: 8px 8px 0 0;
  padding: 16px;
  max-width: 736px;
}
.r-modal-comment-moderate__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
}
.r-modal-comment-moderate__auth {
  position: relative;
  z-index: 2;
}
.r-modal-comment-moderate__title{
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.6000000238418579px;
  margin: 0;
  color: #242434;
}
.r-modal-comment-moderate__close {
  display: flex;
  cursor: pointer;
  width: 15px;
}
.r-modal-comment-moderate__close svg {
  width: 100%;
}
.r-modal-comment-moderate__content {
  border: 1px solid #DADAF3;
  border-radius: 8px;
  padding: 16px 8px;
  animation: fadeIn 0.3s;
  position: relative;
  z-index: 1;
}
.r-modal-comment-moderate__content--inactive {
  display: none;
}
.r-modal-comment-moderate__content .voyant-comments__item {
  margin: 0;
  padding: 0;
}
.r-modal-comment-moderate__content .voyant-comment__header {
  top: 0;
  margin: 0 0 28px;
  padding: 0 0 12px;
  border-radius: 0;
}
.r-modal-comment-moderate__content .voyant-comments__item {
  box-shadow: none;
  overflow-y: auto;
  max-height: calc(100vh - 193px);
  padding: 0 8px;
}
.r-modal-comment-moderate__content .voyant-comment__body::after {
  right: -8px;
}
.r-modal-comment-moderate__content .medium-card__rating__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 700;
}
.r-modal-comment-moderate__content .medium-card__comments a {
  font-weight: 700;
}
.r-modal-comment-moderate__content .medium-card__info {
  margin: 0;
}
.r-modal-comment-moderate__content .medium-card__rating__box span {
  line-height: normal;
  font-size: 13px;
}
.r-modal-comment-moderate__content .voyant-comment__inner--first {
  width: calc(100% - 10px);
  margin-left: auto;
  position: relative;
}
.r-modal-comment-moderate__content .voyant-comment__inner--first::after {
  content: '';
  position: absolute;
  left: 14px;
  bottom: calc(100% + 12px);
  height: 16px;
  width: 1px;
  background: #DADAF3;
}
.r-modal-comment-moderate__content .voyant-comment__response {
  display: none;
}
.r-modal-comment-moderate__reason {
  display: none;
}
.r-modal-comment-moderate__reason--active {
  display: block;
  animation: fadeIn 0.3s;
}
.r-modal-comment-moderate__reason__button {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0 40px 16px 0;
  border-bottom: 1px solid #C0C0DD;
  color: #242434;
}
.r-modal-comment-moderate__reason__button svg {
  transition: 0.3s;
  cursor: pointer;
  min-width: 24px;
}
.r-modal-comment-moderate__reason__button svg:hover {
  opacity: 0.7;
}
.r-modal-comment-moderate__reason__button span {
  display: inline-block;
  margin: auto;
}
.r-modal-comment-moderate__reason__content {
  padding: 16px 8px 0;
  margin: 0 -8px;
  overflow: auto;
  max-height: calc(100vh - 57px - (67px + 16px) - 28px - 32px - 16px);
}
.r-modal-comment-moderate__reason__title {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 16px;
}
.r-modal-comment-moderate__reason__item {
  border: 1px solid #C0C0DD;
  border-radius: 8px;
  padding: 12px;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-bottom: 16px;
  color: #706DB0;
  cursor: pointer;
  transition: 0.3s;
}
.r-modal-comment-moderate__reason__item:hover {
  border-color: #5F27CD;
  color: #5F27CD;
}
.r-modal-comment-moderate__reason__item--last {
  margin-bottom: 0;
}

.moderate {
  margin-top: 16px;
}
.moderate__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.moderate__radio {
  display: block;
  cursor: pointer;
  margin: 0;
  width: 100%;
}

.moderate__radio:hover .moderate__radio__content {
  border-color: #5F27CD;
}
.moderate__radio:hover .moderate__radio__text {
  color: #5F27CD;
}
.moderate__radio__input {
  display: none;
}
.moderate__radio__input:checked+.moderate__radio__content {
  background: #5F27CD;
  border-color: #5F27CD;
}
.moderate__radio__input:checked+.moderate__radio__content .moderate__radio__icon svg:first-child {
  display: none;
}
.moderate__radio__input:checked+.moderate__radio__content .moderate__radio__icon svg:last-child {
  display: flex;
}
.moderate__radio__input:checked+.moderate__radio__content .moderate__radio__text {
  color: #fff;
}
.moderate__radio__content {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #C0C0DD;
  border-radius: 8px;
  padding: 11px 15px;
  width: 100%;
  transition: 0.3s;
}
.moderate__radio__icon {
  display: flex;
}
.moderate__radio__icon svg:last-child {
  display: none;
}
.moderate__radio__text {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #706DB0;
  transition: 0.3s;
}
.moderate__reason {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border: 1px solid #C0C0DD;
  border-radius: 8px;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.002em;
  color: #706DB0;
  margin-bottom: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.moderate__reason:hover {
  border-color: #5F27CD;
  color: #5F27CD;
}
.moderate__reason:hover svg path:first-child {
  fill: #5F27CD;
}
.moderate__reason svg path {
  transition: 0.3s;
}
.moderate__reason--disabled {
  background: #F8F8F8;
  color: #8E8E96;
  border: 1px solid #E8E8E8;
  cursor: default;
}
.moderate__reason--disabled:hover  {
  border-color: #E8E8E8;
  color: #8E8E96;
}
.moderate__reason--disabled:hover svg path:first-child {
  fill: #706DB0;
}
.moderate__reason--disabled svg {
  opacity: 0.6;
}
.moderate__reason svg {
  width: 18px;
  min-width: 18px;
}
.moderate__msg {
  border: 1px solid #FECA57;
  background: #FECA571A;
  border-radius: 10px;
  padding: 12px;
}
.moderate__msg--disabled {
  border: 1px solid #E8E8E8;
  background: #F8F8F8;
}
.moderate__msg--disabled * {
  color: #8E8E96 !important;
  border-color: #B5B5B5 !important;
}
.moderate__msg--disabled img, .moderate__msg--disabled svg {
  filter: grayscale(100%);
}
.moderate__msg--disabled svg {
  opacity: 0.5;
}
.moderate__msg--disabled .moderate__textarea {
  /*opacity: 0;*/
  /*visibility: hidden;*/
  pointer-events: none;
}
.moderate__msg__header {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.moderate__msg__photo {
  width: 26px;
  min-width: 26px;
  height: 26px;
  position: relative;
}
.moderate__msg__photo__wrap {
  width: 100%;
  height: 100%;
  border: 1px solid #5F27CD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.moderate__msg__photo img {
  max-width: 100%;
  pointer-events: none;
}
.moderate__msg__photo svg {
  position: absolute;
  top: 16px;
  left: 15px;
}
.moderate__msg__name {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #242434;
}
.moderate__msg__name span {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.moderate__msg__name span svg {
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(2px);
}
.moderate__msg__row__name {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  color: #5F27CD;
  margin: 0;
  display: contents;
}
.moderate__msg__row {
  width: max-content;
  max-width: 100%;
  display: inline;
}
.moderate__msg__row__text {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #24243480;
  margin: 0;
  pointer-events: none;
}
.moderate__textarea {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #242434;
  background: transparent;
  border: none;
  resize: none;
  width: 100%;
  height: 121px;
  overflow: auto;
}
/*.moderate__textarea font {*/
/*  color: #242434 !important;*/
/*}*/
/*.moderate__textarea b {*/
/*  font-weight: 400;*/
/*}*/

/*.moderate__textarea span {*/
/*  font-weight: 700;*/
/*}*/
.moderate__textarea:focus {
  outline: none;
}
.moderate__textarea:focus .moderate__msg__row__text{
  display: none;
}
.moderate__status {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  padding: 8px 16px;
  background: #F8F8F8;
  border-radius: 8px;
  margin-top: 16px;
}
.moderate__status--disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.moderate__button {
  width: 100%;
  cursor: pointer;
  display: none;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.3199999928474426px;
  text-align: center;
  margin-top: 16px;
  border: none;
  border-bottom: 2px solid #2D7865;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, #0F9472 100%);
  transition: 0.3s;
  color: #FFFFFF;
  /*padding: 16px 0;*/
  border-radius: 8px;
  height: 51px;
  align-items: center;
  justify-content: center;
}
.moderate__button span {
  margin-top: 2px;
}
.moderate__button:hover {
  opacity: 0.8;
}
.moderate__button--green {
  display: flex;
}
.moderate__button--red {
  border-bottom: 2px solid #8C0101;
  background: linear-gradient(180deg, #EE5353 0%, #C64848 100%);
  display: flex;
}
.moderate__button--yellow {
  border-bottom: 2px solid #976800;
  background: linear-gradient(180deg, #FEBB57 0%, #D69C46 100%);
  display: flex;
}
.moderate__button--disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/*widget https://www.avis-verifies.com/*/
.skeepers-widget-wrapper-3932dc3d-a246-4452-9ff8-d82c1209e285 {
  bottom: 64px !important;
  right: 12px !important;
  /* opacity: 0; */
}
.skeepers-widget-wrapper-3932dc3d-a246-4452-9ff8-d82c1209e285.shift {
  right: 64px !important;
  opacity: 1;
}

@media (min-width: 375px) {

  .r-modal-voyant-name__text {
    font-size: 15px;
  }

  .r-modal-comment-moderate__content .voyant-comments__item {
    max-height: calc(100vh - 209px);
  }
  .r-modal-comment-moderate__header {
    align-items: flex-start;
    margin-bottom: 8px;
  }
  .r-modal-comment-moderate__title {
    font-size: 20px;
    line-height: 36px;
  }
  .moderate__msg__header {
    flex-wrap: nowrap;
  }
  .moderate__msg__row{
    line-height: 20px;
  }
  .moderate__msg__row__name, .moderate__msg__row__text {
    display: inline;
  }
}
@media (min-width: 768px) {
  .r-modal-voyant-name__dialog {
    padding: 24px;
  }
  .r-modal-voyant-name__photo{
    margin-bottom: 7px;
    width: 60px;
    height: 60px;
  }
  .r-modal-voyant-name__veri {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .r-modal-voyant-name__title {
    font-size: 20px;
    max-width: none;
  }
  .r-modal-voyant-name__text{
    margin-bottom: 24px;
  }
  .r-modal-voyant-name__button--transparent {
    margin-top: 16px;
  }

  .r-modal-widget-offer__title {
    font-size: 20px;
    line-height: 23px;
  }
  .r-modal-widget-offer__header {
    margin-bottom: 8px;
  }
  .r-modal-widget-offer__text {
    margin-bottom: 8px;
  }

  .r-modal-widget-offer__dialog {
    padding: 24px;
  }
  .r-modal-widget-offer__text {
    margin-bottom: 16px;
  }
  .r-modal-widget-offer__title {
    font-size: 24px;
    line-height: 27px;
  }
  .r-modal-widget-offer__close {
    width: 17px;
    height: 17px;
  }
  .r-modal-widget-offer__header {
    margin-bottom: 12px;
  }

  .r-modal-comment-moderate__reason__content {
    max-height: calc(100vh - 41px - (74px + 24px) - 52px - 48px - 32px);
    padding: 16px 12px 0;
    margin: 0 -12px;
  }
  .r-modal-comment-moderate__content .voyant-comments__item {
    max-height: calc(100vh - 264px);
  }
  .r-modal-comment-moderate__reason__button {
    font-size: 20px;
  }
  .r-modal-comment-moderate__container {
    padding: 16px;
    align-items: center;
  }
  .r-modal-comment-moderate__dialog {
    border-radius: 8px;
    padding: 24px;
  }
  .r-modal-comment-moderate__header {
    margin-bottom: 16px;
  }
  .r-modal-comment-moderate__close {
    width: 17px;
  }
  .r-modal-comment-moderate__title {
    font-size: 24px;
  }
  .r-modal-comment-moderate__auth {
    margin-bottom: 24px !important;
  }
  .moderate__row {
    flex-direction: row;
  }
  .moderate__radio__text {
    white-space: nowrap;
  }
  .moderate__status {
    padding: 16px;
  }
  .skeepers-widget-wrapper-3932dc3d-a246-4452-9ff8-d82c1209e285 {
    bottom: 64px !important;
    right: 12px !important;
  }
  .skeepers-widget-wrapper-3932dc3d-a246-4452-9ff8-d82c1209e285.shift {
    right: 72px !important;
  }
  
}
@media (min-width: 1200px) {
  .moderate__radio__content--2 {
    padding: 11px 10px;
    gap: 6px;
  }
  .moderate__radio__content--3 {
    padding: 11px 5px;
    gap: 4px;
  }
  .moderate__row--3 {
    gap: 10px;
    justify-content: space-between;
  }
  .moderate__radio--3 {
    width: max-content;
  }
  .r-modal-comment-moderate__container {
    padding: 0;
    justify-content: flex-end;
  }
  .r-modal-comment-moderate__dialog {
    max-width: 582px;
    border-radius: 0;
    min-height: 100vh;
  }
  .r-modal-comment-moderate__content .voyant-comments__item {
    max-height: calc(100vh - 232px);
  }
  .r-modal-comment-moderate__reason__button {
    font-size: 16px;
    line-height: 18px;
  }
  .skeepers-widget-wrapper-3932dc3d-a246-4452-9ff8-d82c1209e285 {
    bottom: 50px !important;
    right: 1vh !important;
  }
  .skeepers-widget-wrapper-3932dc3d-a246-4452-9ff8-d82c1209e285.shift {
    right: 112px !important;
  }
  .footer-bottom {
    padding: 24px 0 !important;
  }
}
/*r-modal-comment-moderate*/

.r-input-group {
  position: relative;
  width: 100%;
}
.r-input {
  border: 1px solid #706DB0;
  font-size: 15px;
  font-weight: 400;
  line-height: 17.25px;
  padding: 13px 16px;
  color: #242434;
  width: 100%;
  border-radius: 8px;
}
.r-input::placeholder {
  color: #706DB0;
}

.r-input.error {
  border-color: #EE5353;
}
.r-button {
  background: #5F27CD;
  width: 100%;
  border-radius: 8px;
  padding: 13px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.4px;
  transition: 0.3s;
  border: 1px solid #5F27CD;
  color: #fff;
}
.r-button:hover {
  background: #7438ef;
  border-color: #7438ef;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1103;
  overflow-y: auto;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  transition: all 0.3s ease;
  transform: scale(0.8);
  margin: 16px auto;
  min-height: calc(100% - 32px);
  display: flex;
  align-items: center;
  max-width: 420px;
  width: calc(100% - 32px);
  pointer-events: none;
}
@media (min-width: 375px) {
  .modal__dialog {
    width: calc(100% - 48px);
    min-height: calc(100% - 48px);
    margin: 24px auto;
  }
}
@media (min-width: 768px) {
  .modal__dialog {
    margin: 16px auto;
    min-height: calc(100% - 32px);
    width: calc(100% - 32px);
  }
}
.modal__dialog > * {
  pointer-events: auto;
}
.modal.show .modal__dialog {
  transform: scale(1);
}
.modal__content {
  background: #fff;
  border-radius: 8px;
  position: relative;
  width: 100%;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
}
.modal__close {
  cursor: pointer;
  position: absolute;
  width: 48px;
  height: 48px;
  top: 5px;
  right: 5px;
  fill: #706DB0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.modal__close:hover {
  fill: #5F27CD;
}

/*modal-success-comment*/
.modal-success-comment__dialog {
  max-width: 394px;
}
.modal-success-comment__content {
  padding: 16px;
}
.modal-success-comment__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.modal-success-comment__icon {
  width: 30px;
  margin: 0;
}
.modal-success-comment__icon img {
  max-width: 100%;
  height: auto;
}
.modal-success-comment__title {
  margin: 0;
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  color: #242434;
}
.modal-success-comment__subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 8px;
  color: #242434;
}
.modal-success-comment__subtitle p {
  margin-bottom: 0;
}
.modal-success-comment__text {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
  color: #242434;
  margin-bottom: 16px;
}
.modal-success-comment__text p {
  margin-bottom: 8px;
}
.modal-success-comment__text p:last-child {
  margin-bottom: 0;
}
.modal-success-comment__text span {
  font-weight: 700;
  color: #5F27CD;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 375px) {
  .modal-success-comment__subtitle {
    font-size: 14px;
    line-height: 16px;
  }
  .modal-success-comment__text {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 768px) {
  .modal-success-comment__content {
    padding: 24px;
  }
  .modal-success-comment__subtitle {
    font-size: 15px;
    line-height: 17px;
  }
}
/*modal-success-comment*/

.modal-tooltip__content {
  padding: 44px 24px 32px;
}
.modal-tooltip__body > p {
  font-size: 15px;
  line-height: 1.4666666667;
  color: #2E2E2E;
}
.modal-tooltip__body > p:last-child {
  margin-bottom: 0;
}

.modal-technical__content {
  padding: 24px;
}
@media (min-width: 768px) {
  .modal-technical__content {
    padding-top: 36px;
  }
}
.modal-technical__icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  width: 74px;
}
@media (min-width: 375px) {
  .modal-technical__icon {
    width: 96px;
  }
}
@media (min-width: 768px) {
  .modal-technical__icon {
    width: 115px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .modal-technical__icon {
    margin-bottom: 20px;
  }
}
.modal-technical__icon > img {
  width: 100%;
  height: auto;
}
.modal-technical__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 6px;
}
@media (min-width: 1200px) {
  .modal-technical__title {
    margin-bottom: 12px;
  }
}
.modal-technical__desc {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .modal-technical__desc {
    margin-bottom: 20px;
  }
}
.modal-technical__desc > p {
  font-size: 15px;
  line-height: 1.3333333333;
}
.modal-technical__desc > p:last-child {
  margin-bottom: 0;
}
.modal-technical__button {
  width: 100%;
  cursor: pointer;
}

.modal-success__dialog {
  max-width: 394px;
}
.modal-success__content {
  padding: 24px;
}
@media (min-width: 768px) {
  .modal-success__content {
    padding-top: 36px;
  }
}
.modal-success__icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  width: 50px;
}
@media (min-width: 768px) {
  .modal-success__icon {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .modal-success__icon {
    margin-bottom: 24px;
  }
}
.modal-success__icon > img {
  width: 100%;
  height: auto;
}
.modal-success__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
}
.modal-success__desc {
  text-align: center;
  margin-bottom: 24px;
}
.modal-success__desc > p {
  font-size: 13px;
  line-height: 1.1538461538;
}
@media (min-width: 375px) {
  .modal-success__desc > p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .modal-success__desc > p {
    font-size: 15px;
  }
}
.modal-success__desc > p:last-child {
  margin-bottom: 0;
}
.modal-success__text {
  margin-bottom: 12px;
  text-align: center;
}
.modal-success__text > p {
  font-size: 14px;
  line-height: 1.2307692308;
}
@media (min-width: 768px) {
  .modal-success__text > p {
    font-size: 15px;
  }
}
.modal-success__text > p:last-child {
  margin-bottom: 0;
}
.modal-success__label {
  margin-bottom: 24px;
  text-align: center;
  font-size: 12px;
  line-height: 1.1818181818;
}
@media (min-width: 768px) {
  .modal-success__label {
    font-size: 11px;
  }
}
.modal-success__label > p:last-child {
  margin-bottom: 0;
}
.modal-success__button {
  padding: 13px;
  width: 100%;
  cursor: pointer;
}

.modal-error__content {
  padding-top: 36px;
}
.modal-error__desc {
  text-align: center;
  margin-bottom: 24px;
}
.modal-error__desc > p {
  font-size: 15px;
}
.modal-error__desc > p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .modal-divice {
    display: none;
  }
}
.modal-divice__dialog {
  max-width: 328px;
}
.modal-divice__content {
  padding: 24px;
}
.modal-divice__icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  width: 102px;
}
.modal-divice__icon > img {
  width: 100%;
}
.modal-divice__desc {
  text-align: center;
  margin-bottom: 16px;
}
.modal-divice__desc > p {
  font-size: 15px;
  line-height: 1.1333333333;
}
@media (min-width: 375px) {
  .modal-divice__desc > p {
    line-height: 1.3333333333;
  }
}
.modal-divice__desc > p:last-child {
  margin-bottom: 0;
}
.modal-divice__button {
  width: 100%;
  cursor: pointer;
}

@media (min-width: 375px) {
  .modal-comment__dialog {
    max-width: 328px;
  }
}
@media (min-width: 768px) {
  .modal-comment__dialog {
    max-width: 618px;
  }
}
.modal-comment__content {
  padding: 16px;
}
@media (min-width: 768px) {
  .modal-comment__content {
    padding: 24px;
  }
}
.modal-comment__close {
  top: 15px;
  right: 15px;
}
@media (min-width: 1200px) {
  .modal-comment__close {
    top: 24px;
    right: 24px;
  }
}
.modal-comment__body .comments-form__group {
  margin-bottom: 16px;
}
.modal-comment__body .comments-form__rating {
  padding: 6px 12px 8px;
}
@media (min-width: 768px) {
  .modal-comment__body .comments-form__rating {
    padding: 12px 16px;
  }
}
.modal-comment__body .comments-form__rating > ul {
  -moz-column-gap: 0;
       column-gap: 0;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .modal-comment__body .comments-form__rating > ul {
    width: auto;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.modal-comment__title {
  font-size: 16px;
  line-height: 1.125;
  margin-bottom: 10px;
}
@media (min-width: 375px) {
  .modal-comment__title {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .modal-comment__title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.tooltip {
  position: absolute;
  z-index: 3;
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(115, 115, 167, 0.5);
  border-radius: 12px;
  padding: 16px;
  width: 480px;
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin: 0;
}
.tooltip.show {
  opacity: 1;
  visibility: visible;
}
.tooltip > * {
  font-size: 14px;
  line-height: 1.4285714286;
  color: #242434;
  text-align: left;
  position: relative;
  z-index: 1;
  margin-bottom: 1.36em;
}
.tooltip > *:last-child {
  margin-bottom: 0;
}
.tooltip::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 34px;
  background-image: url(https://img.gestion.ph/avenirtel.fr/newIntegration/img/icons/tooltip-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.spoiler__header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.spoiler__icon {
  flex: 0 0 24px;
  position: relative;
  width: 24px;
  height: 24px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spoiler__icon > span {
  display: block;
  width: 14px;
  height: 2px;
  background: #706DB0;
  transition: 0.3s ease;
}
.spoiler__icon > span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (hover: hover) {
  .spoiler__header:hover .spoiler__icon > span {
    background: #5F27CD;
  }
}
.spoiler.active .spoiler__icon {
  transform: rotate(180deg);
}
.spoiler.active .spoiler__icon > span {
  background: #5F27CD;
}
.spoiler.active .spoiler__icon > span:nth-child(1) {
  opacity: 0;
}
.spoiler__body {
  display: none;
}

.breadcrumbs {
  padding: 24px 0;
}
.breadcrumbs ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}
.breadcrumbs ul > li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.7142857143;
  color: #6967AC;
}
.breadcrumbs ul > li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
}
.breadcrumbs ul > li > a {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #6967AC;
}
@media (hover: hover) {
  .breadcrumbs ul > li > a:hover {
    color: #5F27CD;
  }
}

/* ===== Header stars animations ===== */
@keyframes star-twinkle {
  0%, 100% { opacity: var(--min-o); transform: scale(0.5); }
  50% { opacity: var(--max-o); transform: scale(1); }
}
@keyframes star-glow-pulse {
  0%, 100% { box-shadow: 0 0 var(--glow-size) var(--glow-spread) rgba(251,191,36,0.5); }
  50% { box-shadow: 0 0 var(--glow-size-max) var(--glow-spread-max) rgba(251,191,36,0.25); }
}
@keyframes star-cross-twinkle {
  0%, 100% { opacity: var(--min-o); transform: rotate(var(--rot)) scale(0.5); }
  50% { opacity: var(--max-o); transform: rotate(var(--rot)) scale(1); }
}
.header-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.header-stars__dot,
.header-stars__cross {
  position: absolute;
}
.header-stars__dot {
  border-radius: 50%;
  animation: star-twinkle var(--dur) ease-in-out var(--delay) infinite,
             star-glow-pulse var(--dur) ease-in-out var(--delay) infinite;
}
.header-stars__cross {
  animation: star-cross-twinkle var(--dur) ease-in-out var(--delay) infinite;
}
/* Hide tablet/desktop sets by default (mobile-first) */
.header-stars__dot--tablet,
.header-stars__cross--tablet,
.header-stars__dot--desktop,
.header-stars__cross--desktop {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .header-stars { display: none; }
}
/* Tablet: hide mobile, show tablet, keep desktop hidden */
@media (min-width: 768px) {
  .header-stars__dot:not(.header-stars__dot--tablet):not(.header-stars__dot--desktop),
  .header-stars__cross:not(.header-stars__cross--tablet):not(.header-stars__cross--desktop) {
    display: none;
  }
  .header-stars__dot--tablet,
  .header-stars__cross--tablet {
    display: block;
  }
}
/* Desktop: hide mobile+tablet, show desktop */
@media (min-width: 1200px) {
  .header-stars__dot:not(.header-stars__dot--desktop),
  .header-stars__cross:not(.header-stars__cross--desktop) {
    display: none;
  }
  .header-stars__dot--desktop,
  .header-stars__cross--desktop {
    display: block;
  }
}
/* Female symbol next to logo text */
.header__logo-female {
  position: relative;
  top: -6px;
  margin-left: 2px;
  flex-shrink: 0;
}

/* === EQUINOX 21 MARCH: Aurora borealis gradient === */
@keyframes aurora-flow1 {
  0%   { background-position: 0% 50%; opacity: 0.4; }
  50%  { opacity: 0.65; }
  100% { background-position: 100% 50%; opacity: 0.45; }
}
@keyframes aurora-flow2 {
  0%   { background-position: 100% 50%; opacity: 0.3; }
  50%  { opacity: 0.55; }
  100% { background-position: 0% 50%; opacity: 0.35; }
}
.header-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.header-aurora::before,
.header-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
}
.header-aurora::before {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0,220,210,0.22) 20%,
    rgba(20,210,200,0.18) 35%,
    rgba(80,170,210,0.1) 50%,
    rgba(180,110,190,0.15) 65%,
    rgba(220,80,170,0.2) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: aurora-flow1 14s ease-in-out infinite alternate;
}
.header-aurora::after {
  background: linear-gradient(
    80deg,
    transparent 0%,
    rgba(0,200,200,0.14) 25%,
    rgba(50,220,190,0.18) 42%,
    rgba(140,140,210,0.1) 58%,
    rgba(210,90,170,0.16) 75%,
    transparent 100%
  );
  background-size: 250% 100%;
  animation: aurora-flow2 20s ease-in-out infinite alternate;
}

/* === EQUINOX 21 MARCH: Morphing silver star constellations === */
@keyframes eq-twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}
.header-constellations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.eq-grp {
  position: absolute;
}
.eq-grp-a {
  left: 42%; top: 3%;
  animation: eq-twinkle 3.2s ease-in-out infinite;
}
.eq-grp-b {
  left: 70%; top: 5%;
  animation: eq-twinkle 2.8s ease-in-out 1.2s infinite;
}
.eq-grp-c {
  left: 57%; top: 45%;
  animation: eq-twinkle 3.5s ease-in-out 0.6s infinite;
}
.eq-star {
  fill: rgba(220,230,245,0.75);
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.6)) drop-shadow(0 0 4px rgba(180,210,245,0.4));
}
.eq-star--main {
  fill: rgba(255,255,255,0.85);
  filter: drop-shadow(0 0 2.5px rgba(255,255,255,0.7)) drop-shadow(0 0 5px rgba(180,210,245,0.5));
}
@media (prefers-reduced-motion: reduce) {
  .header-constellations, .header-aurora { display: none; }
}
@media (min-width: 768px) {
  .eq-grp-a { left: 20%; top: 5%; }
  .eq-grp-b { left: 62%; top: 12%; }
  .eq-grp-c { left: 42%; top: 34%; }
}
@media (min-width: 1200px) {
  .eq-grp-a { left: 14%; top: 5%; }
  .eq-grp-b { left: 72%; top: 8%; }
  .eq-grp-c { left: 19%; top: 42%; }
}
/* Equinox yin-yang symbol next to logo */
@keyframes equinox-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.header__logo-equinox {
  position: relative;
  top: -3px;
  margin-left: 5px;
  flex-shrink: 0;
  animation: equinox-spin 35s linear infinite;
}

/* ============================================
   EASTER (Pâques) — Header decorations
   ============================================ */

/* --- Pastel gradient background --- */
@keyframes easter-gradient1 {
  0%   { background-position: 0% 50%; opacity: 0.35; }
  50%  { opacity: 0.55; }
  100% { background-position: 100% 50%; opacity: 0.4; }
}
@keyframes easter-gradient2 {
  0%   { background-position: 100% 50%; opacity: 0.25; }
  50%  { opacity: 0.45; }
  100% { background-position: 0% 50%; opacity: 0.3; }
}
.header-easter-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.header-easter-gradient::before,
.header-easter-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
}
.header-easter-gradient::before {
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,182,193,0.2) 15%,
    rgba(221,160,221,0.18) 30%,
    rgba(173,216,230,0.16) 50%,
    rgba(152,251,152,0.12) 70%,
    rgba(255,218,185,0.18) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: easter-gradient1 16s ease-in-out infinite alternate;
}
.header-easter-gradient::after {
  background: linear-gradient(
    75deg,
    transparent 0%,
    rgba(173,216,230,0.15) 20%,
    rgba(255,182,193,0.17) 40%,
    rgba(255,255,180,0.12) 55%,
    rgba(221,160,221,0.16) 75%,
    transparent 100%
  );
  background-size: 250% 100%;
  animation: easter-gradient2 22s ease-in-out infinite alternate;
}

/* --- Falling Easter eggs (top → down) --- */
.easter-eggs-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.easter-egg {
  position: absolute;
  left: var(--x);
  top: -15px;
  width: var(--size);
  height: calc(var(--size) * 1.3);
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  animation: eggFall var(--dur) linear infinite;
  animation-delay: var(--delay);
}
.easter-egg::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--egg-color);
  box-shadow: inset -2px -2px 4px rgba(0,0,0,0.08), inset 2px 2px 4px rgba(255,255,255,0.4);
}
.easter-egg::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 15%;
  right: 15%;
  height: 22%;
  border-radius: 2px;
  background: var(--stripe-color);
  opacity: 0.5;
}
@keyframes eggFall {
  0%   { transform: translateY(0) rotate(var(--rot)); opacity: 0; }
  3%   { opacity: var(--alpha); }
  97%  { opacity: var(--alpha); }
  100% { transform: translateY(var(--travel)) rotate(var(--rot)); opacity: 0; }
}

/* Desktop (1200px+): two groups — left edge (after logo ~12-18%) and right edge (after nav ~82-92%) */
.easter-egg_1  { --x: 16%;  --size: 8px; --alpha: 0.45; --dur: 6.5s; --delay: 0s;   --rot: -10deg; --travel: 70px; --egg-color: linear-gradient(135deg, #FFB6C1, #FF9AAF); --stripe-color: #fff; }
.easter-egg_2  { --x: 73%;  --size: 7px;  --alpha: 0.35; --dur: 7.8s; --delay: 1s;   --rot: 8deg;   --travel: 65px; --egg-color: linear-gradient(135deg, #98FB98, #7FD17F); --stripe-color: #fff; }
.easter-egg_3  { --x: 18%;  --size: 9px; --alpha: 0.4;  --dur: 8.2s; --delay: 2.2s; --rot: -5deg;  --travel: 72px; --egg-color: linear-gradient(135deg, #ADD8E6, #87CEEB); --stripe-color: #fff; }
.easter-egg_4  { --x: 75%;  --size: 7px; --alpha: 0.4;  --dur: 7.0s; --delay: 3.5s; --rot: 12deg;  --travel: 68px; --egg-color: linear-gradient(135deg, #FFB6C1, #FFC0CB); --stripe-color: #ADD8E6; }
.easter-egg_5  { --x: 14%;  --size: 8px; --alpha: 0.45; --dur: 9.0s; --delay: 4.8s; --rot: -7deg;  --travel: 70px; --egg-color: linear-gradient(135deg, #FFE4B5, #FFDAB9); --stripe-color: #FFB6C1; }
.easter-egg_6  { --x: 71%;  --size: 7px;  --alpha: 0.35; --dur: 7.5s; --delay: 6s;   --rot: 6deg;   --travel: 64px; --egg-color: linear-gradient(135deg, #B0E0E6, #87CEEB); --stripe-color: #DDA0DD; }
.easter-egg_7  { --x: 20%;  --size: 8px; --alpha: 0.35; --dur: 8.5s; --delay: 7.5s; --rot: -9deg;  --travel: 72px; --egg-color: linear-gradient(135deg, #E6E6FA, #D8BFD8); --stripe-color: #DDA0DD; }
.easter-egg_8  { --x: 77%;  --size: 7px; --alpha: 0.3;  --dur: 6.8s; --delay: 9s;   --rot: 5deg;   --travel: 66px; --egg-color: linear-gradient(135deg, #DDA0DD, #D8A0E5); --stripe-color: #FFE4B5; }

/* Tablet (768-1199px): spread across all free space, hide egg_8 */
@media (max-width: 1199px) {
  .easter-egg_8 { display: none; }
  .easter-egg_1 { --x: 25%; }
  .easter-egg_2 { --x: 35%; }
  .easter-egg_3 { --x: 45%; }
  .easter-egg_4 { --x: 55%; }
  .easter-egg_5 { --x: 65%; }
  .easter-egg_6 { --x: 75%; }
  .easter-egg_7 { --x: 85%; }
}

/* Mobile (<768px): only right side ~48%-80%, avoid logo left & burger right */
@media (max-width: 767px) {
  .easter-egg_7, .easter-egg_8 { display: none; }
  .easter-egg_1 { --x: 48%; --delay: 0s; }
  .easter-egg_2 { --x: 54%; --delay: 2s; }
  .easter-egg_3 { --x: 60%; --delay: 4s; }
  .easter-egg_4 { --x: 66%; --delay: 6.5s; }
  .easter-egg_5 { --x: 72%; --delay: 9s; }
  .easter-egg_6 { --x: 78%; --delay: 11.5s; }
}

/* Small mobile (<375px): fewer eggs */
@media (max-width: 374px) {
  .easter-egg_5, .easter-egg_6 { display: none; }
}

/* --- Bell icon near logo --- */
@keyframes bell-swing {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(12deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(8deg); }
  60% { transform: rotate(-5deg); }
  75% { transform: rotate(3deg); }
}
.header__logo-easter-bell {
  position: relative;
  top: -2px;
  margin-left: 5px;
  flex-shrink: 0;
  transform-origin: top center;
  animation: bell-swing 3s ease-in-out infinite;
  animation-delay: 2s;
  filter: drop-shadow(0 0 3px rgba(255,215,0,0.4));
}

@media (prefers-reduced-motion: reduce) {
  .header-easter-gradient, .easter-egg { display: none; }
  .header__logo-easter-bell { animation: none; }
}

/* --- Footer Easter bell near logo --- */
.footer__logo-easter-bell {
  position: relative;
  top: -1px;
  margin-left: 5px;
  flex-shrink: 0;
  transform-origin: top center;
  animation: bell-swing 3s ease-in-out infinite;
  animation-delay: 2s;
  filter: drop-shadow(0 0 3px rgba(255,215,0,0.4));
}

/* --- Easter mascot wobble --- */
@keyframes mascot-wobble {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-4deg); }
  45% { transform: rotate(3deg); }
  60% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
}

/* --- Easter chick on medium card header --- */
.medium-card__easter-chick {
  width: 40px;
  height: 40px;
  object-fit: contain;
  pointer-events: none;
  flex-shrink: 0;
  position: absolute;
  top: 0px;
  right: 80px;
}
@media (max-width: 767px) {
  .medium-card__easter-chick {
    width: 40px;
    height: 40px;
  }
}

/* --- Easter egg on medium cards --- */
.medium-card__easter-egg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 767px) {
  .medium-card__easter-egg {
    width: 85px;
    height: 85px;
    top: -8px;
    left: -8px;
  }
}

/* --- Planning Easter sticker --- */
#planning-easter-sticker {
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  #planning-easter-sticker {
    width: 75px;
    height: 75px;
    bottom: -50px !important;
  }
}

/* --- Voyant Planning Easter sticker --- */
#voyant-planning-easter-sticker {
  display: block !important;
}
@media (min-width: 1200px) {
  #voyant-planning-easter-sticker {
    right: 10px;
    top: -78px !important;
  }
}

/* --- Widget Easter sticker --- */
.widget-mediums:has(#widget-easter-sticker) {
  overflow: visible;
}
@media (min-width: 768px) {
  #widget-easter-sticker {
    display: none !important;
  }
}

/* --- Favorite Easter sticker --- */
.favorite-easter-sticker {
  position: absolute;
  top: -75px;
  right: 10px;
  width: 85px;
  height: 85px;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
}
#easter-sticker-cards {
  right: auto;
  left: 130px;
  top: -75px;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .favorite-easter-sticker {
    width: 75px;
    height: 75px;
    top: -65px;
  }
  #easter-sticker-empty {
    right: 10px;
  }
  #easter-sticker-cards {
    top: -65px;
    left: 10px;
    right: auto;
  }
  .medium-cards__row:has(#easter-sticker-cards) {
    max-width: 382px;
    margin: 0 auto;
  }
}

/* --- Footer falling Easter eggs --- */
.footer-easter-eggs-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-easter-egg {
  position: absolute;
  left: var(--x);
  top: -12px;
  width: var(--size);
  height: calc(var(--size) * 1.3);
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  animation: footerEggFall var(--dur) linear infinite;
  animation-delay: var(--delay);
}
.footer-easter-egg::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--egg-color);
}
.footer-easter-egg::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 15%;
  right: 15%;
  height: 20%;
  border-radius: 2px;
  background: var(--stripe-color);
  opacity: 0.5;
}
@keyframes footerEggFall {
  0%   { transform: translateY(0) rotate(var(--rot)); opacity: 0; }
  3%   { opacity: var(--alpha); }
  97%  { opacity: var(--alpha); }
  100% { transform: translateY(var(--travel)) rotate(var(--rot)); opacity: 0; }
}
.footer-easter-egg_1 { --x: 5%;   --size: 12px; --alpha: 0.3;  --dur: 14s;  --delay: 0s;   --rot: -8deg;  --travel: 350px; --egg-color: linear-gradient(135deg, #FFB6C1, #FF9AAF); --stripe-color: #fff; }
.footer-easter-egg_2 { --x: 28%;  --size: 10px; --alpha: 0.25; --dur: 18s;  --delay: 3.5s; --rot: 6deg;   --travel: 320px; --egg-color: linear-gradient(135deg, #ADD8E6, #87CEEB); --stripe-color: #fff; }
.footer-easter-egg_3 { --x: 50%;  --size: 12px; --alpha: 0.3;  --dur: 16s;  --delay: 7s;   --rot: -5deg;  --travel: 340px; --egg-color: linear-gradient(135deg, #DDA0DD, #D8A0E5); --stripe-color: #FFE4B5; }
.footer-easter-egg_4 { --x: 72%;  --size: 10px; --alpha: 0.25; --dur: 20s;  --delay: 12s;  --rot: 7deg;   --travel: 360px; --egg-color: linear-gradient(135deg, #98FB98, #7FD17F); --stripe-color: #fff; }
.footer-easter-egg_5 { --x: 93%;  --size: 11px; --alpha: 0.28; --dur: 17s;  --delay: 16.5s;--rot: -6deg;  --travel: 330px; --egg-color: linear-gradient(135deg, #FFE4B5, #FFDAB9); --stripe-color: #FFB6C1; }

@media (max-width: 767px) {
  .footer-easter-egg_3, .footer-easter-egg_4 { display: none; }
}

/* --- Footer Easter sticker68 mobile only --- */
@media (min-width: 768px) {
  .footer-easter-sticker61 {
    display: none !important;
  }
}

/* --- Footer Easter sticker (dark footer - desktop/tablet) --- */
html.easter-bg .footer {
  overflow: visible;
}
.footer__easter-sticker--dark {
  position: absolute;
  bottom: -39px;
  right: calc(50% - 600px);
  width: 150px;
  height: 150px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1199px) {
  .footer__easter-sticker--dark { right: 15px; }
}
@media (max-width: 767px) {
  .footer__easter-sticker--dark { display: none; }
}
/* --- Footer Easter sticker (purple footer - mobile) --- */
.footer__easter-sticker--purple {
  position: absolute;
  bottom: -41px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  display: none;
}
@media (max-width: 767px) {
  .footer__easter-sticker--purple { display: block; }
}

/* --- Easter card decorations: pastel shadow --- */
html.easter-bg .medium-card,
html.easter-bg .widget {
  box-shadow: 0 4px 16px rgba(186, 147, 210, 0.18), 0 2px 6px rgba(255, 182, 193, 0.15);
}

/* === EQUINOX 21 MARCH: Footer constellations === */
.footer-constellations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.eq-grp-fa {
  left: 5%; top: 10%;
  animation: eq-twinkle 3.4s ease-in-out 0.3s infinite;
}
.eq-grp-fb {
  left: 75%; top: 15%;
  animation: eq-twinkle 2.9s ease-in-out 1.5s infinite;
}
.eq-grp-fc {
  left: 50%; top: 60%;
  animation: eq-twinkle 3.6s ease-in-out 0.8s infinite;
}
.eq-grp-fd {
  left: 20%; top: 75%;
  animation: eq-twinkle 3.1s ease-in-out 2.0s infinite;
}
.eq-grp-fe,
.eq-grp-ff { display: none; }
.eq-grp-fe {
  left: 60%; top: 38%;
  animation: eq-twinkle 3.8s ease-in-out 0.5s infinite;
}
.eq-grp-ff {
  left: 30%; top: 35%;
  animation: eq-twinkle 2.7s ease-in-out 1.8s infinite;
}
@media (min-width: 768px) {
  .eq-grp-fa { left: 3%; top: 8%; }
  .eq-grp-fb { left: 85%; top: 20%; }
  .eq-grp-fc { left: 45%; top: 65%; }
  .eq-grp-fd { left: 15%; top: 72%; }
  .eq-grp-fe,
  .eq-grp-ff { display: block; }
  .eq-grp-fe { left: 65%; top: 42%; }
  .eq-grp-ff { left: 28%; top: 30%; }
}
@media (min-width: 1200px) {
  .eq-grp-fa { left: 2%; top: 12%; }
  .eq-grp-fb { left: 88%; top: 15%; }
  .eq-grp-fc { left: 55%; top: 55%; }
  .eq-grp-fd { left: 10%; top: 68%; }
  .eq-grp-fe { left: 72%; top: 38%; }
  .eq-grp-ff { left: 32%; top: 28%; }
}
/* Footer equinox yin-yang */
.footer__logo-equinox {
  margin-left: 6px;
  flex-shrink: 0;
  animation: equinox-spin 35s linear infinite;
}
/* === EQUINOX 21 MARCH: Card decorations === */
.medium-card.medium-card_equinox,
.voyant-card.voyant-card_equinox {
  box-shadow: 0 0 0 1.5px rgba(155,176,196,0.4), 0 0 8px rgba(155,176,196,0.2);
  animation: eq-card-glow 4s ease-in-out infinite;
}
@keyframes eq-card-glow {
  0%, 100% { box-shadow: 0 0 0 1.5px rgba(155,176,196,0.4), 0 0 8px rgba(155,176,196,0.2); }
  50% { box-shadow: 0 0 0 1.5px rgba(201,168,76,0.45), 0 0 8px rgba(201,168,76,0.25); }
}
.medium-card__eq-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.eq-card-star {
  position: absolute;
  filter: drop-shadow(0 0 3px currentColor);
}
.eq-card-star--tl {
  top: 6px; left: 6px;
  color: #9BB0C4;
  animation: eq-twinkle 3.2s ease-in-out infinite;
}
.eq-card-star--tr {
  top: 6px; right: 6px;
  color: #C9A84C;
  animation: eq-twinkle 2.8s ease-in-out 0.8s infinite;
}
.eq-card-star--br {
  bottom: 6px; right: 6px;
  color: #9BB0C4;
  animation: eq-twinkle 3.5s ease-in-out 1.5s infinite;
}
.eq-astro-moon {
  margin-right: 2px;
  vertical-align: -1px;
  flex-shrink: 0;
}
.eq-float {
  animation: eq-float 3s ease-in-out infinite;
}
@keyframes eq-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.eq-astro-label {
  color: #C9A84C;
  font-weight: 600;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1103;
  background: #5F27CD;
}
@media screen and (min-width: 1200px){
  .header__container {
    position: relative;
  }
}
.header__box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: center;
}
.header__box--login {
  gap: 0;
}
.header__box__block {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__box__block__photo-box {
  position: relative;
  display: none;
}
.header__box__block__photo-box .auth__form__item__dots__content__row__text {
  color: #3B3A46;
}
.header__box__block__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border: 1px solid #FFFFFF;
  cursor: pointer;
}
.header__box__block__photo img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 425px) {
  .header__box__block__photo-box {
    display: block;
  }
  .header__box--login {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .header__box {
    gap: 8px;
  }
  .header__box--login {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .header__box__block {
    gap: 0;
  }
  .header__box__block__photo {
    width: 33px;
    min-width: 33px;
    height: 33px;
  }
}
.header__body {
  display: flex;
  justify-content: space-between;
    position: relative;
}
.header__logo {
  margin-left: -12px;
}
.header__logo > div,
.header__logo > a {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  padding: 8px 12px;
}
@media (min-width: 1200px) {
  .header__logo > div,
  .header__logo > a {
    padding: 8px 12px;
  }
}
.header__logo > div > img,
.header__logo > a > img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1200px) {
  .header__logo > div > img,
  .header__logo > a > img {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }
}
.header__logo > div > span,
.header__logo > a > span {
  font-size: 20px;
  line-height: 1.15;
  color: #fff;
}

.header-button__time {
  font: 700 14px/16px Arial;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  padding: 8px 0;
  background: #FECA57;
  height: 100%;
  width: 96px;
  min-width: 96px;
}

.header-nav--1 {
  position: absolute;
  top: 100%;
  right: -24px;
  min-width: 293px;
  background: #5F27CD;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 24px;
  height: calc(100vh - 48px);
  overflow-y: auto;
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.header-nav--login {
  padding-top: 79px !important;
}
.header-nav .header-nav__user {
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-nav__user {
  position: absolute;
  top: 15px;
  left: 16px;
  width: calc(100% - 32px);
}
.header-nav__user__photo {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #FFFFFF
}
.header-nav__user__photo img {
  max-width: 100%;
  height: auto;
}
.header-nav .header-nav__user__link {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 16px;
  padding: 11px 0;
  justify-content: space-between;
}
.header-nav__user__link__logout {
  cursor: pointer;
}
.header-nav__user__link__box {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.header-nav__user__link__box:hover {
  color: #fff;
}
@media (min-width: 1200px) {
  .header-nav--1 {
    position: static;
    top: 0;
    width: auto;
    background: transparent;
    border-top: 0;
    padding: 0 !important;
    height: auto;
    overflow: initial;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: 0s;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }

  .header-nav--2 {
    position: absolute;
    top: 100%;
    right: 0;
    width: 293px;
    background: #5F27CD;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 24px;
    height: auto;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .header-nav__user {
    position: static;
    width: 100%;
  }
}
.header-nav.show {
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 12px 16px 80px;
}
.header-nav__menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.header-nav__menu .sub-menu li:hover a {
  color: #FECA57;
}
@media (min-width: 1200px) {
  .header-nav__menu:not(.header-nav__menu--2) {
    display: flex;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
  .header-nav.show {
    padding: 0;
  }
  .header-nav.show .header-nav--2 {
    padding: 0 16px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.header-nav__menu > li:not(.header-nav__user) {
  /*padding: 0px 24px 0px 0;*/
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.header-nav__menu > li:not(.header-nav__user):first-child {
  /*padding: 0px 24px 0px 0;*/
  border-top: none;
  border-top: none;
}
.header-nav__menu > li.last {
  padding: 0;
}


.header-nav__img {
  display: flex;
  width: 24px;
  overflow: hidden;
  height: 24px;
  position: relative;

}

.header-nav__img > svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}
.header-nav__img > svg path {
  transition: stroke 0.3s ease, fill 0.3s ease;
}

@media (min-width: 1200px) {
  .header-nav__img {
    height: 20px;
    width: 20px;
  }
}

@media (min-width: 1200px) {
  .header-nav__menu--1 > li {
    margin-top: 0;
    border-top: 0;
    padding: 0;
    font-size: 0;
  }
  .header-nav__menu--2 > li:first-child {
    border-top: 0;
  }
}
.header-nav__menu > li > a:not(.header-nav__user__link__box) {
  color: #fff;
  padding: 16px 0px;
  font-size: 14px;
  line-height: 1.1428571429;
  display: flex;
  gap: 12px;
  position: relative;
  align-items: center;
}
@media (min-width: 1200px) {
  .header-nav__menu > li > a:not(.header-nav__user__link__box) {
    text-transform: initial;
  }
  .header-nav__menu--1 > li > a {
    gap: 5px;
    letter-spacing: 0.3px;
    padding: 13px 0px;
  }

  .header-nav__img > svg path {
    transition: stroke 0.3s ease, fill 0.3s ease;
    stroke-width: 1.8;
  }

}
@media (hover: hover) {
  .header-nav__menu > li:hover a {
    color: #FECA57;
  }
  .header-nav__user:hover a {
    color: #fff !important;
  }
  .header-nav__user:hover path {
    stroke: #fff !important;
  }
  .header-nav__menu > li:hover path {
    stroke: #FECA57;
  }
  .header-nav__menu > li._serv:hover path:nth-child(2) {
    fill: #FECA57;
    stroke: none;
  }
  .header-nav__menu > li._serv:hover path:nth-child(3) {
    fill: #FECA57;
    stroke: none;
  }
  .header-nav__menu > li._serv:hover path:nth-child(4) {
    fill: #FECA57;
    stroke: none;
  }
  .header-nav__menu > li:hover::after {
    background-image: url("https://img.gestion.ph/avenirtel.fr/newIntegration/img/general/chevron-drop-active.svg") !important;
  }
}

.header-nav__menu > li.has-child {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
}
.header-nav__menu > li.has-child::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  background-image: url(https://img.gestion.ph/avenirtel.fr/newIntegration/img/general/chevron-drop.svg);
  background-repeat: no-repeat;
  /*background-size: contain;*/
  background-position: center;
  transition: 0.3s ease;
}
@media (min-width: 1200px) {
  .header-nav__menu--1 > li.has-child::after {
    top: 8px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzEwNjIwXzEyMykiPgo8cmVjdCBvcGFjaXR5PSIwLjAxIiB4PSItNCIgeT0iLTQiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0E0QTRCRSIgZmlsbC1vcGFjaXR5PSIwLjIxOTYwOCIvPgo8cGF0aCBkPSJNMTMgNkw4IDExTDMgNiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzEwNjIwXzEyMyI+CjxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
    pointer-events: none;
  }

  .header-nav__menu--1 > li.has-child:hover svg path {
    stroke: #FECA57;
  } 
}
.header-nav__menu > li.has-child.active::after {
  transform: rotate(180deg);
}
.header-nav__menu > li.has-child > a {
  padding-top: 16px;
  padding-bottom: 16px;
  margin-right: -16px;
}
@media (min-width: 1200px) {
  .header-nav__menu--1 > li.has-child > a {
    margin-right: 0;
    padding: 5px 21px 5px 0;
  }
}
.header-nav__menu--1 > li.has-child > a::before {
  top: 16px;
}

@media (min-width: 1200px) and (hover: hover) {
  .header-nav__menu--1 > li.has-child:hover::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yLjQ2OTY3IDUuNDY5NjdDMi43NjI1NiA1LjE3Njc4IDMuMjM3NDQgNS4xNzY3OCAzLjUzMDMzIDUuNDY5NjdMOCA5LjkzOTM0TDEyLjQ2OTcgNS40Njk2N0MxMi43NjI2IDUuMTc2NzggMTMuMjM3NCA1LjE3Njc4IDEzLjUzMDMgNS40Njk2N0MxMy44MjMyIDUuNzYyNTYgMTMuODIzMiA2LjIzNzQ0IDEzLjUzMDMgNi41MzAzM0w4LjUzMDMzIDExLjUzMDNDOC4yMzc0NCAxMS44MjMyIDcuNzYyNTYgMTEuODIzMiA3LjQ2OTY3IDExLjUzMDNMMi40Njk2NyA2LjUzMDMzQzIuMTc2NzggNi4yMzc0NCAyLjE3Njc4IDUuNzYyNTYgMi40Njk2NyA1LjQ2OTY3WiIgZmlsbD0iI0ZFQ0E1NyIvPgo8L3N2Zz4K");
  }
  .header-nav__menu--1 > li.has-child:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
}
.header-nav__menu > li .sub-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  margin-right: -16px;
  display: none;
}
@media (min-width: 1200px) {
  .header-nav__menu--1 > li .sub-menu {
    margin-right: 0;
    display: block;
    position: absolute;
    top: calc(100% + 4px);
    left: -10px;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0px 11px 26px 0px rgba(115, 115, 167, 0.3);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }
}
.header-nav__menu > li .sub-menu > li {
  margin-bottom: 4px;
}
@media (min-width: 1200px) {
  .header-nav__menu--1 > li .sub-menu > li {
    margin-bottom: 24px;
  }
}
.header-nav__menu > li .sub-menu > li:last-child {
  margin-bottom: 0;
}
.header-nav__menu > li .sub-menu > li > a {
  padding: 16px 12px;
  display: block;
  /*text-transform: uppercase;*/
  color: #fff;
  font-size: 14px;
  line-height: 1.1428571429;
}
@media (min-width: 1200px) {
  .header-nav__menu > li .sub-menu > li > a {
    text-transform: none;
  }
  .header-nav__menu--1 > li .sub-menu > li > a {
    padding: 0;
    color: #242434;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) and (hover: hover) {
  .header-nav__menu--1 > li .sub-menu > li > a:hover {
    color: #5F27CD;
  }
}

/* Remove browser default focus outline on nav links/buttons (mouse clicks).
   :focus-visible is preserved for keyboard navigation accessibility.
   Safari-specific resets included: -webkit-tap-highlight-color and -webkit-appearance
   override the WebKit focus ring that ignores plain outline:none in Safari/iOS. */
.header-nav a:focus,
.header-nav__menu a:focus,
.header-nav__menu .sub-menu a:focus,
.header-button:focus,
.mobile-nav__item:focus {
  outline: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}

.header-button {
  padding: 16px 0 16px 36px;
  display: block;
  position: relative;
  color: #fff;
  font-size: 15px;
  /* line-height: 1.1428571429; */
  line-height: 1;
}
.header-button--2 {
  display: none;
}
.header-button:hover {
  color: #fff;
}


@media (min-width: 1200px) {
  .header-button {
    display: none;
  }
  .header-button--2 {
    display: block;
    padding: 7px 11px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
  }
}
@media (min-width: 1200px) and (hover: hover) {
  .header-button:hover {
    color: #FECA57;
    border-color: #FECA57;
  }
}
.header-button::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(https://img.gestion.ph/avenirtel.fr/newIntegration/img/icons/cupon.svg);
}

#promocode_inactive::before {
  content: initial
}

#promocode_inactive {
  border: 1px solid #FECA57;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .header-button {
    text-transform: initial;
  }
  .header-button::before {
    display: none;
  }

  #promocode_inactive {
    padding: 8.5px 12px;
    margin-bottom: initial;
  }
}
.header-button--promo:hover {
    background: #FECA57;
}
.header-button--promo:hover .header-button__text{
    background: #FECA57;
}
.header-button--promo:hover svg path {
    stroke: #242434;
}
.header-button--promo--active {
  pointer-events: none !important;
}
.header-button--promo {
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 120px;
  min-width: 120px;
  display: none;
  align-items: stretch;
  border-radius: 5px;
  background: #FFF7E6;
  color: #242434;
  font-weight: 700;
  border: 1px solid #FECA57;
  overflow: hidden;
}
.header-button__time {
  width: 100%;
  font-size: 11px;
  line-height: 12px;
  padding: 2px 0;
}
.header-button__text {
  font-size: 9px;
  line-height: 11px;
  gap: 2px;
  text-transform: none;
  padding: 3px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  transition: 0.3s ease;
  width: 100%;
}
.header-button__text svg {
  width: 14px;
  display: none;
}
body[promocode="true"] .header-button--promo {
  display: flex;
}
body[promocode="true"] .header-button--promo:hover {
    color: initial;
    border-color: initial;
}
@media (min-width: 375px) {
  .header-button--promo {
    width: 142px;
    min-width: 142px;
  }
  .header-button--promo .header-button__text svg {
    display: block;
  }
}
@media (min-width: 768px) {
  .header-button--promo {
    min-width: 299px;
    width: 299px;
    height: 32px;
    flex-direction: row;
  }
  .header-button__text {
    font: 700 14px/16px Arial;
    gap: 4px;
  }
  .header-button__text svg {
    width: 16px;
  }
  .header-button__time {
    font: 700 14px / 16px Arial;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #feca57;
    height: 100%;
    width: 96px;
    min-width: 96px;
  }
}
@media (hover: hover) {
  .header-button--promo:hover {
    background: #FFF7E6;
    color: #242434;
  }
}
.header-button--promo::before {
  display: none;
}

.bars {
  cursor: pointer;
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin-left: -4px;
}
.bars > span {
  background: #fff;
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.bars > span:nth-child(1) {
  top: 17px;
}
.bars > span:nth-child(2) {
  top: 23px;
}
.bars > span:nth-child(3) {
  bottom: 17px;
}
@media (min-width: 375px) {
  .bars {
    margin-left: 0;
    margin-right: -14px;
  }
}
@media (min-width: 1200px) {
  .bars {
    margin-right: 0;
  }
  .bars > span:nth-child(1) {
    top: 16px;
  }
  .bars > span:nth-child(2) {
    top: 22px;
  }
  .bars > span:nth-child(3) {
    bottom: 18px;
  }
}
.bars.active > span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.bars.active > span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.bars.active > span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.header-nav-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1200px) {
  .header-nav-shadow {
    background: transparent;
  }
}
.header-nav-shadow.show {
  opacity: 1;
  visibility: visible;
}
/*@media (min-width: 1200px) {*/
/*  .header-nav-shadow.show {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*  }*/
/*}*/

/* Footer petals animation */
@keyframes footer-petal-fall {
  0% {
    transform: translateY(-70px) translateX(0px) rotate(0deg) scale(1);
    opacity: 1;
  }
  15% {
    transform: translateY(calc(var(--fall-distance) * 0.12)) translateX(var(--drift-x)) rotate(calc(var(--end-rotation) * 0.15)) scale(0.95);
    opacity: 1;
  }
  30% {
    transform: translateY(calc(var(--fall-distance) * 0.28)) translateX(calc(var(--drift-x) * -0.6)) rotate(calc(var(--end-rotation) * 0.3)) scale(1.02);
    opacity: 1;
  }
  50% {
    transform: translateY(calc(var(--fall-distance) * 0.48)) translateX(calc(var(--drift-x) * 0.8)) rotate(calc(var(--end-rotation) * 0.5)) scale(0.9);
    opacity: 1;
  }
  70% {
    transform: translateY(calc(var(--fall-distance) * 0.68)) translateX(calc(var(--drift-x) * -0.4)) rotate(calc(var(--end-rotation) * 0.7)) scale(1);
    opacity: 0.8;
  }
  85% {
    transform: translateY(calc(var(--fall-distance) * 0.85)) translateX(calc(var(--drift-x) * 0.5)) rotate(calc(var(--end-rotation) * 0.85)) scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: translateY(var(--fall-distance)) translateX(var(--drift-x)) rotate(var(--end-rotation)) scale(0.85);
    opacity: 0;
  }
}
.footer-petals {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.footer-petal {
  position: absolute;
  top: -70px;
  object-fit: contain;
}

.footer {
  background: #242434;
  padding: 48px 0;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1200px) {
  .footer {
    padding: 64px 0;
  }
}
.footer__body {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}
@media (min-width: 1200px) {
  .footer__body {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .footer__main {
    align-items: flex-start;
  }
}
.footer__logo {
  margin-bottom: 32px;
}
.footer__logo > a {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.footer__logo > a > img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer__logo > a > span {
  font-size: 20px;
  line-height: 1.15;
  color: #fff;
}
.footer__brand {
  text-align: center;
}
@media (min-width: 375px) {
  .footer__brand {
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .footer__brand {
    max-width: 302px;
    text-align: left;
  }
}
.footer__brand > p {
  color: #fff;
  font: 400 16px/1.75 "Arial", sans-serif;
}
@media (min-width: 1200px) {
  .footer__brand > p {
    font: 400 17px/1.6470588235 "Arial", sans-serif;
  }
}
.footer__brand > p:last-child {
  margin-bottom: 0;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .footer__contacts {
    align-items: flex-start;
  }
}
.footer__contacts > h5 {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.1333333333;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__contacts > h5 {
    width: initial;
  }
}
.footer__tel {
  margin-bottom: 24px;
  font-size: 0;
  line-height: 0;
}
.footer__tel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.1428571429;
}
@media (min-width: 1200px) and (hover: hover) {
  .footer__tel > a:hover {
    color: #FECA57;
  }
}
.footer__tel > a > svg {
  flex: 0 0 17px;
  fill: #fff;
}
.footer__socials {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 1200px) {
  .footer__socials {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.footer__socials > li {
  line-height: 0;
  font-size: 0;
}
.footer__socials > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  fill: #fff;
}
@media (hover: hover) {
  .footer__socials > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

.footer-nav {
  display: none;
}
@media (min-width: 1200px) {
  .footer-nav {
    display: block;
  }
}
@media (min-width: 1200px) {
  .footer-nav__title {
    font-size: 14px;
    line-height: 1.1428571429;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .footer-nav__menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .footer-nav__menu > li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.125;
  }
}
@media (min-width: 1200px) {
  .footer-nav__menu > li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .footer-nav__menu > li > a {
    font-size: 16px;
    line-height: 1.125;
    color: #fff;
  }
}
@media (min-width: 1200px) and (hover: hover) {
  .footer-nav__menu > li > a:hover {
    color: #FECA57;
  }
}

.footer-bottom {
  background: #5F27CD;
  padding: 24px 0 100px;
  position: relative;
  overflow: hidden;
}
.footer-bottom__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 24px;
}
.footer-bottom__text {
  text-align: center;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .footer-bottom__text {
    text-align: left;
  }
}
.footer-bottom__text > p {
  color: #fff;
  font-size: 14px;
  line-height: 1.4285714286;
}
.footer-bottom__text > p:last-child {
  margin-bottom: 0;
}
.footer-bottom__text > p > a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media (hover: hover) {
  .footer-bottom__text > p > a:hover {
    border-color: #FECA57;
    color: #FECA57;
  }
}
.footer-bottom__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-grow: 1;
  gap: 24px;
}
@media (min-width: 1200px) {
  .footer-bottom__list {
    flex-grow: 0;
  }
}
.footer-bottom__list > li {
  color: #fff;
  font-size: 14px;
  line-height: 1.1428571429;
}
.footer-bottom__list > li > a {
  color: #fff;
  font-size: 1em;
  line-height: 1.1428571429;
  border-bottom: 1px solid #fff;
}
@media (hover: hover) {
  .footer-bottom__list > li > a:hover {
    border-color: #FECA57;
    color: #FECA57;
  }
}

.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0px 0px 16px rgba(115, 115, 167, 0.2);
  overflow: visible;
}
.mobile-nav__sticker {
  position: absolute;
  top: -53px;
  left: -5px;
  width: 70px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .mobile-nav__sticker {
    display: none;
  }
}
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav--shadow0 {
  box-shadow: none;
}
.mobile-nav__body {
  display: flex;
  /* justify-content: center; */
  justify-content: space-between;
  align-items: center;
  height: 56px !important;
  padding: 0px 5px;
  margin: 0px auto;
}

@media (min-width: 375px) {
  .mobile-nav__body {
    gap: 2px !important;
  }
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0;
  line-height: 0;
  width: 100%;
}


.mobile-nav__icon {
  stroke: #706DB0;
  fill: transparent;
}
.mobile-nav__text {
  text-align: center;
  text-transform: uppercase;
  font-size: 8px;
  line-height: 1.125;
  color: #706DB0;
}
@media (min-width: 375px) {
  .mobile-nav__text {
    font-size: 9px;
    line-height: 1.1111111111;
  }
}
.rgpd {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0px;
  top: 0;
  background: #00000066;
  border-bottom: 1px solid #C0C0DD;
  box-shadow: 0px 2px 16px 0px rgba(115, 115, 167, 0.7);
  z-index: 1103;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.rgpd>.container {
  background-color: #fff;
}
@media (min-width: 768px) {
  .rgpd {
    align-items: center;
    justify-content: center;
  }
  .rgpd > .container {
    display: flex;
    max-width: 700px;
    padding: 0px 24px;
    box-shadow: 0px 0px 12px 0px #00000033;
    border-radius: 8px;
  }
}
@media (min-width: 1200px) {
  .rgpd {
    bottom: 0;
    border-bottom: 0;
  }
}
.rgpd.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
}
.rgpd.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.rgpd__body {
  padding: 16px 8px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 12px;
}
@media (min-width: 375px) {
  .rgpd__body {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .rgpd__body {
    padding: 24px 0;
    row-gap: 16px;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1200px) {
  .rgpd__body {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.rgpd__content > p {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.18px;
}
@media (min-width: 768px) {
  .rgpd__content > p {
    font-size: 17px;
    letter-spacing: 0.17px;
  }
}
.rgpd__content > p:last-child {
  margin-bottom: 0;
}
.rgpd__content > p > a {
  color: #5F27CD;
  border-bottom: 1px solid #5F27CD;
}
.rgpd__actions {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: 100%;
  margin-top: 12px;
}

.rgpd__button {
  font-size: 14px;
  line-height: 14px;
  width: calc(50% - 8px);
  text-align: center;
  padding: 17px 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .rgpd__actions {
    margin-top: 8px;
  }
  .rgpd__button {
    padding: 13px 14px;
    font-size: 16px;
    line-height: 1.25;
  }
}
.reg-rgpd {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000066;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1103;
  visibility: hidden;
  opacity: 0;
}
.reg-rgpd-container {
  width: calc(100% - 36px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px #00000033;
  padding: 16px;
}
@media (min-width: 375px) {
  .reg-rgpd-container {
    width: calc(100% - 48px);
  }
}
@media (min-width: 768px) {
  .reg-rgpd-container {
    max-width: 700px;
    padding: 24px;
  }
}
.reg-rgpd.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
}
.reg-rgpd.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.reg-rgpd__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3333333333;
  /* margin-bottom: 16px; */
  margin-bottom: 0px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.reg-rgpd-container .reg-rgpd__title {
  margin-bottom: 16px;
}


.reg-rgpd__title > img {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .reg-rgpd__title {
    font-size: 24px;
    gap: 10px;
  }
  .reg-rgpd__title > img {
    width: 26px;
    height: 26px;
  }
}
.reg-rgpd__check {
  display: none;
}
.reg-rgpd__label {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 4px;
       column-gap: 4px;
  position: relative;
  margin-bottom: 8px;
  cursor: pointer;
}
.reg-rgpd__fake {
  font-size: 0;
  line-height: 0;
}
.reg-rgpd__fake > svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s ease;
  opacity: 0;
}
.reg-rgpd__check:checked + .reg-rgpd__label > .reg-rgpd__fake > svg:nth-child(2) {
  opacity: 1;
}
.reg-rgpd__text {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #5F27CD;
}
.reg-rgpd__desc {
  margin-bottom: 16px;
}
.reg-rgpd__desc > p {
  font-size: 11px;
  line-height: 1.2727272727;
  letter-spacing: 0.18px;
}
.reg-rgpd__desc > p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .reg-rgpd__desc > p {
    font-size: 15px;
  }
}
.reg-rgpd__accept {
  padding: 14px;
  width: 100%;
  margin-bottom: 9px;
  cursor: pointer;
}
.reg-rgpd__link {
  display: flex;
  justify-content: center;
  line-height: 0;
  font-size: 0;
}
.reg-rgpd__link > a {
  display: inline-block;
  padding: 8px 0;
  color: #5F27CD;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.28px;
}

.slider-banners {
  background: #fff;
  padding: 24px 0;
  margin-bottom: 24px;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
}
.slider-banners__slider {
  overflow: hidden;
  height: 150px;
}
.slick-initialized {
  overflow: visible;
}
@media (min-width: 768px) {
  .slider-banners__slider {
    height: 240px;
  }
}
@media (min-width: 1200px) {
  .slider-banners__slider {
    height: 300px;
  }
}
/*.slider-banners__window {*/
/*  overflow: hidden;*/
/*}*/
/*.slider-banners__field {*/
/*  display: flex;*/
/*  width: max-content;*/
/*  margin-bottom: 12px;*/
/*}*/
/*.slider-banners__card {*/
/*  width: calc(100vw - 32px);*/
/*}*/
/*.slider-banners__dots {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: 10px;*/
/*  margin-bottom: 12px;*/
/*}*/
/*.slider-banners__dot {*/
/*  width: 6px;*/
/*  height: 6px;*/
/*  border-radius: 50%;*/
/*  background: #000000;*/
/*  opacity: 0.3;*/
/*}*/
/*.slider-banners__dot--active {*/
/*  opacity: 1;*/
/*}*/
/*@media (min-width: 375px) {*/
/*  .slider-banners__card {*/
/*    width: calc(100vw - 48px);*/
/*  }*/
/*}*/
/*@media (min-width: 768px) {*/
/*  .slider-banners__card {*/
/*    width: 736px;*/
/*  }*/
/*}*/
@media (min-width: 1200px) {
  .slider-banners {
    padding: 32px 0;
  }
  /*.slider-banners__card {*/
  /*  width: 1140px;*/
  /*}*/
}
.slider-banners__slider {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .slider-banners__slider {
    margin-bottom: 16px;
  }
}
.slider-banners__actions {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .slider-banners__actions {
    display: none;
  }
}
.banner-main {
  height: 150px;
  border-radius: 12px;
  border: 1px solid #ECECF9;
  background: #F6F6FC;
  position: relative;
  overflow: hidden;
  padding: 8px 30.25% 56px 12px;
  display: flex;
  align-items: center;
}

@media (min-width: 375px) {
  .banner-main {
    padding-top: 8px;
    padding-bottom: 54px;
    padding-left: 16px;
    padding-right: 25.3%;
  }
}
@media (min-width: 768px) {
  .banner-main {
    height: 240px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 34px;
    padding-right: 31.6576086957%;
  }
}
@media (min-width: 1200px) {
  .banner-main {
    height: 300px;
    padding-left: 90px;
    padding-right: 0;
  }
}
.banner-main__content {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .banner-main__content {
    max-width: 576px;
  }
}
.banner-main__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1428571429;
  margin-bottom: 5px;
}
@media (min-width: 375px) {
  .banner-main__title {
    font-size: 17px;
    margin-bottom: 0px;
  }
}
@media (min-width: 768px) {
  .banner-main__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .banner-main__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.banner-main__desc.mobile {
  display: block;
}
.banner-main__desc.mobile > p {
  line-height: 1.25;
}
@media (min-width: 768px) {
  .banner-main__title--mobile, .banner-main__desc.mobile {
    display: none;
  }
}
.banner-main__title--desktop, .banner-main__desc {
  display: none;
}

.banner-main__desc > p {
  font-size: 12px;
  line-height: 1.35;
}


@media (min-width: 768px) {
  .banner-main__title--desktop, .banner-main__desc {
    display: block;
  }
    .banner-main__desc {
    margin-bottom: 22px;
  }
}
@media (min-width: 1200px) {
  .banner-main__desc {
    margin-bottom: 24px;
  }
}

@media (min-width: 375px) {
  .banner-main__desc > p {
    padding-right: 21px;
  }
}
@media (min-width: 768px) {
  .banner-main__desc > p {
    font-size: 14px;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .banner-main__desc > p {
    font: 400 18px/1.5555555556 "Arial", sans-serif;
  }
}
.banner-main__desc > p:last-child {
  margin-bottom: 0;
}
.banner-main__actions {
  display: none;
}
@media (min-width: 768px) {
  .banner-main__actions {
    display: flex;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
@media (min-width: 1200px) {
  .banner-main__actions {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.banner-main__action {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .banner-main__action {
    margin-bottom: 0;
  }
}
.banner-main__action:last-child {
  margin-bottom: 0;
}
.banner-main__button {
  height: 56px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2px;
  padding: 0;
  flex-grow: 1;
  color: #fff;
  font-size: 13px;
  line-height: 1.1538461538;
  cursor: pointer;
}
@media (min-width: 768px) {
  .banner-main__button {
    height: 48px;
    font-size: 12px;
    row-gap: 1px;
    width: 160px;
    padding-top: 2px;
  }
}
@media (min-width: 1200px) {
  .banner-main__button {
    position: relative;
    width: 260px;
    height: auto;
    padding: 10px 47px 10px 14px;
    font-size: 14px;
    row-gap: 2px;
    line-height: 16px;
  }
}
.banner-main__button--violet {
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%);
  border-bottom: 2px solid #4B2C87;
}
.banner-main__button--violet:hover, .banner-main__button--violet:active, .banner-main__button--violet:focus {
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%) !important;
  border-bottom: 2px solid #4B2C87 !important;
  color: #fff !important;
}
.banner-main__button--green {
  border-bottom: 2px solid #2D7865;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%);
}
.banner-main__button--green:hover, .banner-main__button--green:active, .banner-main__button--green:focus {
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%) !important;
  border-bottom: 2px solid #2D7865 !important;
  color: #fff !important;
}
.banner-main__button > span:nth-child(1) {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1428571429;
}
@media (min-width: 768px) {
  .banner-main__button > span:nth-child(1) {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .banner-main__button > span:nth-child(1) {
    font-size: 16px;
    line-height: 18px;
  }
}
.banner-main__button > svg {
  display: none;
}
@media (min-width: 1200px) {
  .banner-main__button > svg {
    display: block;
    position: absolute;
    right: 20px;
    /*width: 16px;*/
    /*height: 16px;*/
    top: 50%;
    transform: translateY(-50%);
  }
}
.banner-main__button--faq {
  width: 56px;
  flex: 0 0 56px;
  padding: 0;
  position: relative;
}
@media (min-width: 768px) {
  .banner-main__button--faq {
    flex: 0 0 48px;
    width: 48px;
  }
}
@media (min-width: 1200px) {
  .banner-main__button--faq {
    display: none;
  }
}
.banner-main__button--faq > svg {
  display: block;
  width: 21px;
  height: 21px;
}
@media (min-width: 768px) {
  .banner-main__button--faq > svg {
    width: 20px;
    height: 20px;
  }
}
.banner-main__text {
  display: none;
}
.banner-main__image,
.banner-main__image-haloween {
  margin: 0;
  position: absolute;
  right: -117px;
  top: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .banner-main__image,
  .banner-main__image-haloween {
    right: -110px;
  }
}
@media (min-width: 1200px) {
  .banner-main__image,
  .banner-main__image-haloween {
    right: 0;
  }
}
.banner-main__image > img,
.banner-main__image-haloween > img {
  height: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .banner-main__tooltip {
    bottom: 46px;
    right: 50%;
    transform: translateX(50%);
    text-align: left;
    width: 496px;
  }
}
@media (min-width: 1200px) {
  .banner-main__tooltip {
    bottom: 49px;
    right: -220px;
    transform: translate(0);
  }
}
@media (min-width: 768px) {
  .banner-main__tooltip--mobile {
    left: -180px;
    right: auto;
    transform: translate(0);
  }
}
@media (min-width: 1200px) {
  .banner-main__tooltip--mobile {
    bottom: 49px;
    right: -212px;
  }
}
@media (min-width: 768px) {
  .banner-main__tooltip--mobile::after {
    left: 205px;
  }
}
@media (min-width: 1200px) {
  .banner-main__tooltip--mobile::after {
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.block-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 12px;
}
@media (min-width: 768px) {
  .block-features {
    gap: 16px;
    flex-wrap: nowrap;
  }
}
.block-features__item {
  flex: 0 0 calc(50% - 6px);
  width: calc(50% - 6px);
  background: #F6F6FC;
  border-radius: 12px;
  border: 1px solid #ECECF9;
  padding: 12px;
    position: relative;
}
@media (min-width: 768px) {
  .block-features__item {
    flex: 0 0 calc(25% - 12px);
    width: calc(25% - 12px);
  }
}
@media (min-width: 1200px) {
  .block-features__item {
    padding: 24px;
    display: flex;
    align-items: center;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.block-features__item > img {
  height: 24px;
  width: auto;
  margin-bottom: 6px;
}
@media (min-width: 1200px) {
  .block-features__item > img {
    margin-bottom: 0;
    height: 28px;
    width: 28px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
.block-features__text {
  font-size: 13px;
  line-height: 1.1538461538;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .block-features__text {
    font-size: 14px;
    line-height: 1.1428571429;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .block-features__text--mobile {
    display: none;
  }
}
.block-features__text--desktop {
  display: none;
}
@media (min-width: 1200px) {
  .block-features__text--desktop {
    display: block;
  }
}

.home-filters {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  /* .home-filters {
    margin-bottom: 0px;
  } */
}
.home-filters__body {
  margin-left: -6px;
  margin-right: -6px;
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  position: relative;
}
@media (min-width: 375px) {
  .home-filters__body {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .home-filters__body {
    -moz-column-gap: 21px;
         column-gap: 21px;
    margin-bottom: 0 !important;
  }
}
.home-filters__item {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}
@media (min-width: 768px) {
  .home-filters__item {
    flex: 0 0 calc(33.3% - 14px);
    width: calc(33.3% - 14px);
  }
}
@media (min-width: 1200px) {
  .home-filters__item {
    flex: 0 0 286px;
    width: 286px;
    height: 46px;
  }
}
.home-filters__item.show {
  flex-grow: 1;
  width: auto;
}

.filter-item {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #C0C0DD;
  transition: border-color 0.3s ease;
}
.filter-item--inactive {
  opacity: 0.5;
  background: #E7E7F5;
}
@media (min-width: 768px) {
  .filter-item {
    position: relative;
  }
}
@media (hover: hover) {
  .filter-item:not(.filter-item--inactive):hover {
    border-color: #5F27CD;
  }
}
.filter-item.active {
  border-color: #5F27CD;
}
.filter-item__button {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.filter-item__button--inactive {
  cursor: auto;
}
.filter-item__button--inactive input {
  cursor: default;
}
.filter-item__button::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: #F75F5F;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  display: none;
}
.filter-item.edited:not(.show) .filter-item__button::after {
  display: block;
}
@media (min-width: 768px) {
  .filter-item.edited:not(.show) .filter-item__button::after {
    display: none;
  }
}
.filter-item__inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.02em;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 40px;
  color: #706DB0;
  fill: #706DB0;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 375px) {
  .filter-item__inner {
    padding-right: 36px;
  }
}
@media (min-width: 768px) {
  .filter-item__inner {
    font-size: 15px;
    opacity: 1;
    visibility: visible;
  }
}
.filter-item__inner > svg {
  flex: 0 0 16px;
}
.filter-item.active .filter-item__inner {
  color: #5F27CD;
  fill: #5F27CD;
}
.filter-item.show .filter-item__inner {
  opacity: 1;
  visibility: visible;
}
.filter-item__chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 12px;
  font-size: 0;
  line-height: 0;
  fill: #5F27CD;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .filter-item__chevron {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) rotate(0deg);
    fill: #706DB0;
    transition: 0.3s ease;
  }
}
.filter-item.active .filter-item__chevron {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .filter-item.active .filter-item__chevron {
    transform: translateY(-50%) rotate(180deg);
  }
}
.filter-item__icon {
  position: absolute;
  fill: #706DB0;
  transition: fill 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  line-height: 0;
}
@media (min-width: 768px) {
  .filter-item__icon {
    display: none;
  }
}
.filter-item.show .filter-item__icon {
  right: 16px;
  left: auto;
  transform: translateY(-50%);
}
@media (min-width: 375px) {
  .filter-item.show .filter-item__icon {
    right: 10px;
  }
}
@media (min-width: 768px) {
  .filter-item.show .filter-item__icon {
    right: 16px;
  }
}
.filter-item.active .filter-item__icon {
  display: none;
}
.filter-item__list {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: calc(100% + 16px);
  display: none;
}
@media (min-width: 768px) {
  .filter-item__list {
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    box-shadow: 0px 11px 26px 0px rgba(115, 115, 167, 0.3);
    top: calc(100% + 12px);
  }
}
@media (min-width: 1200px) {
  .filter-item__list {
    padding: 16px;
  }
}
.filter-item.active .filter-item__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.filter-item__item {
  background: #fff;
  border-radius: 8px;
  transition: 0.3s ease;
  border: 1px solid #C0C0DD;
  color: #706DB0;
  fill: #706DB0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  min-height: 48px;
  position: relative;
  cursor: pointer;
}
@media (hover: hover) {
  .filter-item__item:hover {
    border-color: #5F27CD;
    color: #5F27CD;
    fill: #5F27CD;
  }
}
.filter-item__item > span {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 15px;
  line-height: 1;
}
.filter-item__item.active {
  background: #5F27CD;
  border-color: #5F27CD;
  color: #fff;
  fill: #fff;
}

.filter-item__item.active path {
  stroke: #fff !important;
}
.filter-item__toggle {
  position: absolute;
  fill: #706DB0;
  transition: 0.3s ease;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
  font-size: 0;
}
.filter-item__item.active .filter-item__toggle {
  fill: #fff;
  transform: translateY(-50%) rotate(45deg);
}
.filter-item__trash {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: #5F27CD;
  fill: #5F27CD;
  font-size: 15px;
  line-height: 1.3333333333;
  cursor: pointer;
}
@media (min-width: 768px) {
  .filter-item__trash {
    margin-bottom: 8px;
    margin-top: 4px;
  }
}
@media (min-width: 1200px) {
  .filter-item__trash {
    margin-bottom: 0px;
  }
}

.filter-search {
  position: relative;
  display: block;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .filter-search {
    flex: 0 0 526px;
    width: 526px;
  }
}
.filter-search::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: #F75F5F;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  display: none;
}
.filter-search.active {
  border-color: #5F27CD;
}
.filter-search.edited:not(.show)::after {
  display: block;
}
@media (min-width: 768px) {
  .filter-search.edited:not(.show)::after {
    display: none;
  }
}
.filter-search__icon {
  position: absolute;
  fill: #706DB0;
  transition: 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  line-height: 0;
  font-size: 0;
  pointer-events: none;
}
.filter-search.active .filter-search__icon {
  fill: #5F27CD;
}
.filter-search__input {
  border-radius: 0;
  border: 0;
  background-color: transparent;
  padding-left: 44px;
  height: 100%;
  padding-top: 0;
  padding-bottom: 1px;
  padding-right: 20px;
  display: none;
}
@media (min-width: 375px) {
  .filter-search__input {
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .filter-search__input {
    display: block;
  }
}
.filter-search.show .filter-search__input {
  display: block;
}
.filter-search__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: absolute;
  line-height: 0;
  font-size: 0;
  fill: #706DB0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: fill 0.3s ease;
}
.filter-search__remove > * {
  pointer-events: none;
}
.filter-search.active .filter-search__remove {
  fill: #5F27CD;
}
/* .filter-search.edited.show:not(.active) .filter-search__remove { */
.filter-search.edited:not(.active) .filter-search__remove {
  opacity: 1;
  visibility: visible;
}
.filter-search.edited.active .filter-search__remove {
  opacity: 1;
  visibility: visible;
}

.home-blog {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .home-blog {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .home-blog {
    margin-bottom: 90px;
  }
}
.home-blog__row {
  row-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.home-blog__row--panning {
  flex-direction: column-reverse;
}
@media (min-width: 375px) {
  .home-blog__row {
    row-gap: 32px;
  }
}
@media (min-width: 768px) {
  .home-blog__row {
    row-gap: 24px;
  }
}
@media (min-width: 1200px) {
  .home-blog__row {
    display: flex;
    flex-wrap: nowrap;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .home-blog__row--panning {
    flex-direction: row;
  }
}
.home-blog--centered .home-blog__row {
  justify-content: center;
}
.home-blog__body {
  width: 100%;
}
@media (min-width: 1200px) {
  .home-blog__body {
    flex: 0 0 60.5263157895%;
    width: 60.5263157895%;
  }
}
.home-blog__body > * {
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  margin-left: -16px;
  margin-right: -16px;
  padding: 24px 16px;
  margin-bottom: 24px;
}
.home-blog__body > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 375px) {
  .home-blog__body > * {
    margin-left: 0;
    margin-right: 0;
    padding: 24px;
    border-radius: 12px;
  }
}
@media (min-width: 768px) {
  .home-blog__content {
    font: 400 17px/1.6470588235 "Arial", sans-serif;
  }
}
.home-blog__content > figure {
  margin-bottom: 16px;
  width: 100%;
}
@media (min-width: 1200px) {
  .home-blog__content > figure {
    margin-bottom: 24px;
  }
}
.home-blog__content > figure > img {
  width: 100%;
  border-radius: 8px;
}
.home-blog__content > h2 {
  margin: 16px 0;
  font: 700 20px/1.5 "Arial", sans-serif;
}
@media (min-width: 768px) {
  .home-blog__content > h2 {
    font: 700 24px/1.3333333333 "Arial", sans-serif;
  }
}
@media (min-width: 1200px) {
  .home-blog__content > h2 {
    margin: 24px 0;
  }
}
.home-blog__content a {
  cursor: pointer;
  color: #5F27CD;
  border-bottom: 1px solid transparent;
}
.home-blog__content a:hover {
  border-color: #5F27CD;
}
.home-blog__content > h2:first-child {
  margin-top: 0;
}
.home-blog__content > p {
  margin-bottom: 1em;
}
@media (min-width: 1200px) {
  .home-blog__content > p {
    margin-bottom: 24px;
  }
}
.home-blog__content > .btn {
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 1200px) {
  .home-blog__content > .btn {
    display: none;
  }
}
.home-blog__content > *:last-child {
  margin-bottom: 0 !important;
}
@media (min-width: 1200px) {
  .home-blog__sidebar {
    flex-grow: 1;
    min-width: 0;
  }
}
@media (min-width: 1200px) {
  .home-blog--sticky .home-blog__sidebar {
    position: sticky;
    top: 72px;
  }
}

.widget-mediums {
  position: relative;
  overflow: hidden;
}
.widget-mediums__sticker {
  position: absolute;
  top: -61px;
  right: 65px;
  width: 61px;
  height: 89px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .widget-mediums__sticker {
    display: none;
  }
}

.widget {
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  margin-left: -16px;
  margin-right: -16px;
  padding: 24px 16px;
  margin-bottom: 24px;
}
.widget-offer--after-post, .widgetTrustAvisDesktop {
  display: none;
}

@media (min-width: 375px) {
  .widget {
    margin-left: 0;
    margin-right: 0;
    padding: 24px;
    border-radius: 12px;
  }
  .widget-offer {
    margin-bottom: 40px;
  }
}
.widget:last-child {
  margin-bottom: 0;
}
.widget__title {
  font: 700 20px/1.3333333333 "Arial", sans-serif;
  margin-bottom: 1em;
}

@media (min-width: 420px) {
  .widget__title {
    font: 700 24px/1.3333333333 "Arial", sans-serif;
  }
  
}
.widgetTrustAvisDesktop .home-comment-block-trust  {
padding: 32px 24px 0px;
}
.widgetTrustAvisDesktop .home-comment-block {
    display: flex;
    align-items: center;
    justify-content: center;
}
.widgetTrustMobile .home-comment-block-trust, .widgetAvisMobile .home-comment-block  {
  padding: 0px 0px 0px;
  box-shadow: none;
  margin: 0;
}
.widgetAvisMobile .home-comment-block  {
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-horoscope__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 23px;
}
@media (min-width: 375px) {
  .widget-horoscope__list {
    gap: 8px 16px;
  }

}
@media (min-width: 768px) {
  .widgetTrustMobile {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 40px;
  }
  .widget-horoscope__list {
    gap: 8px 40px;
  }
  .widget-offer {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .widget-offer--before-post, .widgetTrustMobile, .widgetAvisMobile {
    display: none;
  }
  .widget-offer--after-post, .widgetTrustAvisDesktop {
    display: block;
  }

  .home-blog__sidebar--index {
    display: flex;
    flex-direction: column;
  }
  .home-blog__sidebar--index .widget-horoscope {
    order: 1;
  }
  .home-blog__sidebar--index .widget-articles {
    order: 2;
  }
  .home-blog__sidebar--index .widget-contacts {
    order: 3;
  }
  .home-blog__sidebar--index .widget-offer {
    order: 4;
    margin-bottom: 0;
    margin-top: 24px;
  }
  .widget-horoscope__list {
    gap: 8px 6px;
  }
}
.widget-horoscope__item {
  flex: 1 0 80px;
}
.widget-horoscope__item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.0833333333;
  letter-spacing: 0.1px;
}
.widget-horoscope__item > a > figure {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.widget-horoscope__item--red > a {
  color: #F75F5F;
}
.widget-horoscope__item--red > a:hover {
  background: rgba(247, 95, 95, 0.08);
}
.widget-horoscope__item--red > a > figure {
  background: #F75F5F;
}
.widget-horoscope__item--green > a {
  color: #54A42F;
}
.widget-horoscope__item--green > a:hover {
  background: rgba(84, 164, 47, 0.08);
}
.widget-horoscope__item--green > a > figure {
  background: #54A42F;
}
.widget-horoscope__item--violet > a {
  color: #5F27CD;
}
.widget-horoscope__item--violet > a:hover {
  background: rgba(95, 39, 205, 0.08);
}
.widget-horoscope__item--violet > a > figure {
  background: #5F27CD;
}
.widget-horoscope__item--blue > a {
  color: #2B66F6;
}
.widget-horoscope__item--blue > a:hover {
  background: rgba(43, 102, 246, 0.08);
}
.widget-horoscope__item--blue > a > figure {
  background: #2B66F6;
}

.widget-articles__row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .widget-articles__row {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.post-nouv {
  width: 100%;
}
@media (min-width: 768px) {
  .post-nouv {
    width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
}
@media (min-width: 1200px) {
  .post-nouv {
    width: 100%;
    flex: 0 0 100%;
  }
}
.post-nouv__thumbnail {
  display: block;
  margin-bottom: 12px;
}
.post-nouv__thumbnail > figure {
  margin: 0;
  padding-top: 54.5138888889%;
  position: relative;
}
@media (min-width: 768px) {
  .post-nouv__thumbnail > figure {
    padding-top: 63.2530120482%;
  }
}
@media (min-width: 1200px) {
  .post-nouv__thumbnail > figure {
    padding-top: 55.5555555556%;
  }
}
.post-nouv__thumbnail > figure > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}
.post-nouv__tag {
  display: inline-block;
  margin-bottom: 6px;
  color: #5F27CD;
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 700;
  border-bottom: 1px solid transparent;
}
@media (hover: hover) {
  .post-nouv__tag:hover {
    border-color: #5F27CD;
    color: #5F27CD;
  }
}
.post-nouv__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
}
.post-nouv__title h4 {
  margin-bottom: 0px;
}
@media (hover: hover) {
  .post-nouv__title:hover {
    color: #5F27CD;
  }
}

.home-sticky {
  padding-top: 16px;
  background: #fff;
  position: sticky;
  top: 32px;
  z-index: 100;
}
@media (min-width: 1200px) {
  .home-sticky {
    background: transparent;
    padding-top: 0;
    top: 36px;
  }
}
.home-sticky.scrolling {
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
}
@media (min-width: 1200px) {
  .home-sticky.scrolling {
    box-shadow: none;
  }
}
@media (min-width: 1200px) {
  .home-sticky.scrolling .sticky-cats {
    box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
    border-radius: 0 !important;
  }
}

.sticky-cats {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  overflow-x: auto;
  padding: 8px 0 8px 16px;
}
@media (min-width: 375px) {
  .sticky-cats {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    padding: 8px 0 8px 24px;
  }
}
@media (min-width: 768px) {
  .sticky-cats {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 8px 0 8px 16px;
  }
}
@media (min-width: 1200px) {
  .sticky-cats {
    background: #fff;
    overflow: initial;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 24px 24px 12px;
    border-radius: 12px 12px 0 0;
  }
}
.sticky-cats::-webkit-scrollbar {
  opacity: 0;
  display: none;
  width: 0;
  height: 0;
}
.sticky-cats__list {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 16px;
}
@media (min-width: 375px) {
  .sticky-cats__list {
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .sticky-cats__list {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding-right: 16px;
    justify-content: space-between;
    width: 100%;
  }
  .sticky-cats__list--specialisation {
    justify-content: flex-start;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}
@media (min-width: 1200px) {
  .sticky-cats__list {
    padding-right: 0;
  }
}

.sticky-cat {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 8px 11px;
  border: 1px solid #C0C0DD;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  color: #706DB0;
}
.sticky-cat__box {
  display: flex;
  align-items: center;
  min-height: 26px;
}
@media (min-width: 768px) {
  .sticky-cat {
    flex: 1 0 auto;
  }
}
@media (min-width: 1200px) {
  .sticky-cat {
    padding: 5px 16px;
    gap: 16px;
    min-width: 163px;
    width: min-content;
    /* justify-content: center;
    width: -moz-fit-content;
    width: fit-content; */
  }
}
.sticky-cat:hover {
  color: #706DB0;
  border-color: #C0C0DD;
}
@media (hover: hover) {
  .sticky-cat:hover {
    color: #5F27CD;
    border-color: #5F27CD;
  }
}
.sticky-cat__icon {
  /* flex: 0 0 22px; */
}
.sticky-cat__icon--static {
  fill: transparent;
  transition: 0.3s ease;
}
.sticky-cat__icon--active {
  display: none;
}
.sticky-cat.active .sticky-cat__icon--static {
  display: none;
}
.sticky-cat.active .sticky-cat__icon--active {
  display: block;
}
.sticky-cat--audiotel .sticky-cat__icon--static {
  stroke: #706DB0;
}
.sticky-cat--mediums .sticky-cat__icon--static {
  fill: #706DB0;
}
.sticky-cat--tarologues .sticky-cat__icon--static {
  fill: #706DB0;
}
.sticky-cat--numerologues .sticky-cat__icon--static {
  fill: #706DB0;
}
.sticky-cat--astrologues .sticky-cat__icon--static {
  fill: #706DB0;
}
@media (hover: hover) {
  .sticky-cat--audiotel:hover .sticky-cat__icon--static {
    stroke: #5F27CD;
  }
  .sticky-cat--mediums:hover .sticky-cat__icon--static {
    fill: #5F27CD;
  }
  .sticky-cat--tarologues:hover .sticky-cat__icon--static {
    fill: #5F27CD;
  }
  .sticky-cat--numerologues:hover .sticky-cat__icon--static {
    fill: #5F27CD;
  }
  .sticky-cat--astrologues:hover .sticky-cat__icon--static {
    fill: #5F27CD;
  }
}
.sticky-cat--prive .sticky-cat__icon--static {
  stroke: #706DB0;
}
@media (hover: hover) {
  .sticky-cat--prive:hover .sticky-cat__icon--static {
    stroke: #5F27CD;
  }
}
.sticky-cat--nouv .sticky-cat__icon {
  flex: 0 0 24px;
}
.sticky-cat--nouv .sticky-cat__icon--static > path:nth-child(1) {
  stroke: #706DB0;
}
@media (hover: hover) {
  .sticky-cat--nouv:hover .sticky-cat__icon--static > path:nth-child(1) {
    stroke: #5F27CD;
  }
}
.sticky-cat--promo .sticky-cat__icon {
  flex: 0 0 32px;
}
.sticky-cat--promo .sticky-cat__icon--static > path:nth-child(1) {
  stroke: #706DB0;
}
@media (hover: hover) {
  .sticky-cat--promo:hover .sticky-cat__icon--static > path:nth-child(1) {
    stroke: #5F27CD;
  }
}

@media (hover: hover) {
  .sticky-cat--market:hover .sticky-cat__icon--static > g > path:nth-child(3),
  .sticky-cat--market:hover .sticky-cat__icon--static > g > path:nth-child(4) {
    stroke: #5F27CD;
  }
}
.sticky-cat--tous .sticky-cat__icon--static {
  stroke: #706DB0;
}
@media (hover: hover) {
  .sticky-cat--tous:hover .sticky-cat__icon--static {
    stroke: #5F27CD;
  }
}
.sticky-cat > p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.1538461538;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .sticky-cat > p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (min-width: 1200px) {
  .sticky-cat > p > br {
    /* display: none; */
  }
}
.sticky-cat.active {
  background: #5F27CD;
  border-color: #5F27CD;
}
.sticky-cat.active > p {
  color: #fff;
}

.home-head {
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  padding: 16px 0;
}
@media (min-width: 375px) {
  .home-head {
    padding: 16px 0 24px;
  }
}
@media (min-width: 1200px) {
  .home-head {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .home-head__body {
    border-radius: 0 0 12px 12px;
    padding: 12px 24px 24px;
    background: #fff;
  }
}
.home-head__title {
  font: 400 18px/1.5555555556 "Arial", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 1200px) {
  .home-head__title {
    font: 700 24px/1.3333333333 "Arial", sans-serif;
  }
}
.home-head__desc > p {
  font: 400 16px/1.75 "Arial", sans-serif;
}
@media (min-width: 1200px) {
  .home-head__desc > p {
    font: 400 17px/1.6470588235 "Arial", sans-serif;
  }
}
.home-head__desc > p:last-child {
  margin-bottom: 0;
}
/* Mascot image (non-sticky, between sticky tabs and head) */
.home-mascot-wrap {
  position: relative;
  z-index: 101;
  height: 0;
  overflow: visible;
  pointer-events: none;
}
.home-mascot-wrap > .container {
  position: relative;
}
.home-mascot {
  position: absolute;
  right: 0;
  top: -144px;
  pointer-events: none;
}
.home-mascot__img {
  width: 45px;
  height: 88px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(95, 39, 205, 0.15));
}
@media (min-width: 768px) {
  .home-mascot {
    top: -144px;
  }
}
@media (min-width: 1200px) {
  .home-mascot {
    top: -148px;
    right: 30px;
  }
}

/* Swallow sticker (between cards and Trustpilot) */
@keyframes swallow-fly {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-4px) rotate(-1deg);
  }
  75% {
    transform: translateY(-12px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}
@keyframes swallow-shadow {
  0%, 100% {
    filter: drop-shadow(0 4px 8px rgba(95, 39, 205, 0.18));
  }
  25%, 75% {
    filter: drop-shadow(0 8px 14px rgba(95, 39, 205, 0.10));
  }
  50% {
    filter: drop-shadow(0 6px 10px rgba(95, 39, 205, 0.14));
  }
}
.home-swallow-wrap {
  position: relative;
  z-index: 1;
  height: 0;
  overflow: visible;
  pointer-events: none;
}
.home-swallow-wrap > .container {
  position: relative;
}
.home-swallow {
  position: absolute;
  left: 0;
  top: -40px;
  pointer-events: none;
  animation: swallow-fly 4s ease-in-out infinite;
}
.home-swallow__img {
  width: 91px;
  height: 83px;
  display: block;
  object-fit: contain;
  animation: swallow-shadow 4s ease-in-out infinite;
}
@media (min-width: 768px) {
  .home-swallow {
    top: -50px;
    left: 10px;
  }
}
@media (min-width: 1200px) {
  .home-swallow {
    top: -50px;
    left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-swallow,
  .home-swallow__img {
    animation: none;
  }
}

.medium-cards {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .medium-cards {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .medium-cards {
    margin-bottom: 90px;
  }
}
.medium-cards__title {
  color: #6967AC;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1666666667;
  padding-bottom: 15px;
  margin-bottom: 16px;
  border-bottom: 1px solid #C0C0DD;
  margin-left: -6px;
  margin-right: -6px;
}
@media (min-width: 375px) {
  .medium-cards__title {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .medium-cards__title {
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .medium-cards__title {
    margin-bottom: 24px;
  }
}
.medium-cards__row {
  margin-left: -6px;
  margin-right: -6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 375px) {
  .medium-cards__row {
    margin-left: 0;
    margin-right: 0;
    row-gap: 24px;
  }
}
@media (min-width: 768px) {
  .medium-cards__row {
    justify-content: flex-start;
    row-gap: 16px;
  }
}
@media (min-width: 1200px) {
  .medium-cards__row {
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 24px;
  }
}
.medium-cards--promo {
  margin-bottom: 0;
  margin-bottom: 0;
}
.medium-cards--promo .medium-cards__row {
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .medium-cards--promo .medium-cards__row {
    margin-bottom: 48px;
  }
}
.medium-cards--promo .medium-cards__row:last-child {
  margin-bottom: 0;
}
.medium-cards__action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .medium-cards__action {
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  .medium-cards__action {
    margin-top: 48px;
  }
}
.medium-cards__more {
  cursor: pointer;
}

.medium-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
}
@media (min-width: 375px) {
  .medium-card {
    /* max-width: 328px; */
    max-width: 382px;
  }
}
@media (min-width: 768px) {
  .medium-card {
    max-width: 100%;
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }
}
@media (min-width: 1200px) {
  .medium-card {
    flex: 0 0 calc(33.3% - 16px);
    width: calc(33.3% - 16px);
  }
}
.medium-card--disabled {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.medium-card--disabled::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}
.medium-card--premium {
  padding-top: 0;
  border: 2px solid #5F27CD;
}
.medium-card__placeholder {
  display: none;
  border-radius: 7px 7px 0 0;
  background: #5F27CD;
  padding: 4px 12px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1.1666666667;
  margin-left: -13px;
  margin-right: -13px;
  margin-top: -2px;
}
.medium-card--premium .medium-card__placeholder {
  display: block;
}
.medium-card__top {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin-bottom: 8px;
}
.medium-card__thumbnail {
  position: relative;
  flex: 0 0 96px;
  width: 96px;
  overflow: hidden;
  border-radius: 4px;
}
.medium-card__thumbnail > figure {
  margin: 0;
  position: relative;
  padding-top: 144.7916666667%;
}
.medium-card__thumbnail > figure > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px 4px 6px 6px;
}
.medium-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2727272727;
  font-weight: 700;
  letter-spacing: 0.22px;
  display: none;
}
.medium-card__label--promo {
  background: #FECA57;
  color: #242434;
  z-index: 1;
}
.medium-card__label--nouv {
  background: #F75F5F;
  color: #fff;
}
.medium-card--promo .medium-card__label--promo {
  display: block;
}
.medium-card--nouv .medium-card__label--nouv {
  display: block;
}

.medium-card__label--mp {
  display: flex;
  align-items: center;
  justify-content: center;
  background:  #CF5FF7;  
  color: white;
  font-size: 10.5px;
  height: 18px;
}

.medium-card__content {
  flex-grow: 1;
  min-width: 0;
}
.medium-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.medium-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.4117647059;
  font-weight: 700;
  color: #242434;
}
@media (min-width: 768px) {
  .medium-card__title {
    font-size: 20px;
    line-height: 1.2;
  }
}
.medium-card__fav {
  padding: 3px 5px;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  border-radius: 8px;
  border: 1px solid #706DB0;
  color: #706DB0;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
.medium-card__fav > svg {
  transition: opacity 0.3s ease;
}
.medium-card__fav > svg:nth-child(1) {
  flex: 0 0 16px;
  fill: transparent;
  stroke: #706DB0;
}
.medium-card__fav > svg:nth-child(2) {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.medium-card__fav.active {
  color: #5F27CD;
  border-color: #5F27CD;
}
.medium-card__fav.active > svg:nth-child(1) {
  opacity: 0;
}
.medium-card__fav.active > svg:nth-child(2) {
  opacity: 1;
}
@media (min-width: 1200px) {
  .medium-card__fav > span {
    position: relative;
  }
}
.medium-card__status {
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}
.medium-card__status--gray {
  color: #242434;
}
.medium-card__status--green {
  color: #1DCB8E;
}
.medium-card__success {
  margin-bottom: 8px;
}
.medium-card__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.0833333333;
}
@media (min-width: 768px) {
  .medium-card__text {
    font-size: 13px;
    line-height: 1;
  }
}
.medium-card__text > span:last-child {
  font-weight: 700;
}
.medium-card__bar {
  height: 4px;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
  background: #DBDBF5;
}
.medium-card__bar > span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
}
.medium-card__bar--red > span {
  background: #F75F5F;
}
.medium-card__bar--yellow > span {
  background: #FECA57;
}
.medium-card__bar--green > span {
  background: #1DCB8E;
}
.medium-card__info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.medium-card__info > li {
  line-height: 0;
  padding: 0 9px;
  position: relative;
}
.medium-card__info > li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
  width: 1px;
  height: 12px;
  background: #C0C0DD;
}
.medium-card__info > li:nth-child(1) {
  padding-left: 0;
}
.medium-card__info > li:last-child {
  padding-right: 0;
}
.medium-card__info > li:last-child::after {
  display: none;
}
.medium-card__info > li > a {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-size: 13px;
  line-height: 1;
}
.medium-card__info > li > a > span {
  position: relative;
  top: 1px;
  color: #706DB0;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
.medium-card__info > li > a:hover > span {
  border-color: #706DB0;
}
.medium-card__types {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.3076923077;
  letter-spacing: 0.35px;
  color: #706DB0;
}
.medium-card__footer {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.medium-card__audio {
  flex: 0 0 96px;
  width: 96px;
}
.medium-card__main {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.medium-card__permalink {
  flex-grow: 1;
  text-align: center;
  padding: 7px 0;
  text-transform: uppercase;
  border: 1px solid #242434;
  color: #242434;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.1px;
}
@media (min-width: 375px) {
  .medium-card__permalink {
    font-size: 12px;
    line-height: 1.0833333333;
  }
}
@media (min-width: 768px) {
  .medium-card__permalink {
    font-size: 13px;
    line-height: 1;
    max-width: 139px;
  }
}
@media (hover: hover) {
  .medium-card__permalink:hover {
    color: #fff;
    background: #242434;
  }
}
.medium-card__permalink--audiotel {
  border-color: #5F27CD;
  color: #5F27CD;
}
@media (hover: hover) {
  .medium-card__permalink--audiotel:hover {
    color: #fff;
    background: #5F27CD;
  }
}
.medium-card__permalink--prive {
  border-color: #10AC84;
  color: #10AC84;
}
@media (hover: hover) {
  .medium-card__permalink--prive:hover {
    color: #fff;
    background: #10AC84;
  }
}
.medium-card--offline .medium-card__permalink {
  display: none;
}
.medium-card__prices {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  font-size: 10px;
  line-height: 1.3;
}
@media (min-width: 375px) {
  .medium-card__prices {
    font-size: 12px;
    line-height: 1.0833333333;
  }
}
.medium-card--offline .medium-card__prices {
  display: none;
}
.medium-card__price {
  white-space: nowrap;
}
.medium-card__price--new {
  color: #F75F5F;
  font-weight: 700;
  display: none;
}
.medium-card__price--old {
  color: #706DB0;
}
.medium-card--promo .medium-card__price--new {
  display: block;
}
.medium-card--promo .medium-card__price--old {
  text-decoration: line-through;
}
.medium-card__schedule {
  display: none;
  margin-top: 12px;
  font-size: 9px;
  line-height: 1.3333333333;
}
.medium-card--promo .medium-card__schedule {
  display: block;
}
.medium-card__offline {
  font-size: 10px;
  line-height: 1.1666666667;
  display: none;
}

@media (min-width: 375px) {
  .medium-card__offline {
    font-size: 12px;
  }
}
.medium-card--offline .medium-card__offline {
  display: block;
}

.audio-player {
  position: relative;
  cursor: pointer;
}
.audio-player__body {
  height: 28px;
  border-radius: 50px;
  background: #F1F1FF;
  position: relative;
}
.audio-player__button {
  width: 30px;
  height: 30px;
  top: -1px;
  left: -1px;
  border-radius: 50%;
  border: 1px solid #5F27CD;
  position: absolute;
  background: #fff;
  padding: 0;
}
.audio-player__button > span {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 7px;
  left: 7px;
  background-image: url(https://img.gestion.ph/avenirtel.fr/newIntegration/img/icons/volume.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: 0 0;
}
.audio-player__text {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.4545454545;
  pointer-events: none;
}

.block-faqs {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .block-faqs {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .block-faqs {
    margin-bottom: 90px;
  }
}
.block-faqs__title {
  text-align: center;
  color: #5F27CD;
  font: 700 24px/1.3333333333 "Arial", sans-serif;
  margin-bottom: 32px;
}
.faq-spoiler {
  margin-bottom: 24px;
  padding: 8px 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
}
.faq-spoiler:last-child {
  margin-bottom: 0;
}
.faq-spoiler__header {
  padding: 16px;
}
.faq-spoiler__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333333333;
  color: #706DB0;
  transition: 0.3s ease;
  margin: 0;
}
@media (hover: hover) {
  .faq-spoiler__header:hover .faq-spoiler__title {
    color: #5F27CD;
  }
}
.faq-spoiler.active .faq-spoiler__title {
  color: #5F27CD;
}
.faq-spoiler__body {
  padding: 0 16px 16px;
}
.faq-spoiler__body > p:last-child {
  margin-bottom: 0;
}

.technical-works {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .technical-works {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .technical-works {
    margin-bottom: 90px;
  }
}
.technical-works__body {
  background: #fff;
  border-radius: 8px;
  padding: 24px 12px;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  max-width: 574px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 375px) {
  .technical-works__body {
    padding: 24px 16px;
  }
}
@media (min-width: 768px) {
  .technical-works__body {
    padding: 36px 24px 24px;
  }
}
@media (min-width: 1200px) {
  .technical-works__body {
    max-width: 782px;
  }
}
.technical-works__icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  width: 74px;
}
@media (min-width: 375px) {
  .technical-works__icon {
    width: 96px;
  }
}
@media (min-width: 768px) {
  .technical-works__icon {
    width: 115px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .technical-works__icon {
    margin-bottom: 20px;
  }
}
.technical-works__icon > img {
  width: 100%;
  height: auto;
}
.technical-works__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 6px;
}
@media (min-width: 1200px) {
  .technical-works__title {
    margin-bottom: 12px;
  }
}
.technical-works__desc {
  text-align: center;
}
.technical-works__desc > p {
  font-size: 16px;
  line-height: 1.35;
}
@media (min-width: 375px) {
  .technical-works__desc > p {
    line-height: 1.375;
  }
}
.technical-works__desc > p:last-child {
  margin-bottom: 0;
}

.search-empty {
  margin-bottom: 48px;
}
.search-empty__header {
  display: none;
}
.search-empty--promo {
  display: block !important;
  margin-bottom: 48px !important;

}
.search-empty--promo .search-empty__header{
  display: block;

}
.search-empty--promo .search-empty__body{
  max-width: none;
}
@media (min-width: 768px) {
  .search-empty {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .search-empty {
    margin-bottom: 90px;
  }
}
.search-empty__body {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  max-width: 420px;
  margin-left: -6px;
  margin-right: -6px;
}
@media (min-width: 375px) {
  .search-empty__body {
    padding: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .search-empty__body {
    max-width: 428px;
  }
}
.search-empty__icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  width: 50px;
}
.search-empty__icon--loupe {
  display: none;
}
.search-empty__icon > img {
  width: 100%;
  height: auto;
}
.search-empty__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
}
.search-empty__desc {
  text-align: center;
}
.search-empty__desc > p {
  font-size: 16px;
  line-height: 1.5;
}
.search-empty__desc > p:last-child {
  margin-bottom: 0;
}

.block-weeks {
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .block-weeks {
    background: transparent;
    box-shadow: none;
  }
}
.block-weeks__list {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 16px;
  overflow-x: auto;
}
@media (min-width: 375px) {
  .block-weeks__list {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 768px) {
  .block-weeks__list {
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media (min-width: 1200px) {
  .block-weeks__list {
    background: #fff;
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
.block-weeks__list::-webkit-scrollbar {
  opacity: 0;
  display: none;
  width: 0;
  height: 0;
}
.block-weeks__day {
  border-radius: 8px;
  border: 1px solid #C0C0DD;
  padding: 11px 15px;
  transition: 0.3s ease;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .block-weeks__day {
    padding: 11px 23px;
  }
}
@media (min-width: 1200px) {
  .block-weeks__day {
    flex-grow: 1;
  }
}
@media (hover: hover) {
  .block-weeks__day:hover {
    border-color: #5F27CD;
  }
}
.block-weeks__day.active {
  background: #5F27CD;
  border-color: #5F27CD;
}
.block-weeks__nom {
  white-space: nowrap;
  color: #242434;
  transition: 0.3s ease;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
}
@media (hover: hover) {
  .block-weeks__day:hover .block-weeks__nom {
    color: #5F27CD;
  }
}
.block-weeks__day.active .block-weeks__nom {
  color: #fff;
}
.block-weeks__date {
  white-space: nowrap;
  color: #706DB0;
  transition: 0.3s ease;
  font-size: 12px;
  line-height: 1.4;
}
.block-weeks__day.active .block-weeks__date {
  color: rgba(255, 255, 255, 0.7);
}
.block-weeks__sticker {
  position: absolute;
  left: 8px;
  top: 0;
  transform: translateY(-50%);
  background: #F75F5F;
  color: #fff;
  padding: 2px 8px;
  font-size: 11px;
  line-height: 1.1818181818;
  font-weight: 700;
  border-radius: 4px;
}

.page-head {
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(115, 115, 167, 0.2);
  margin-bottom: 24px;
    position: relative;
}
@media (min-width: 1200px) {
  .page-head {
    margin-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  .page-head--planning {
    margin-bottom: 24px;
  }
}
.page-head__body {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 48px;
}
.page-head__button {
  position: absolute;
  line-height: 0;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  fill: #706DB0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0px;
}
.page-head__button:focus {
  outline: none;
}
@media (hover: hover) {
  .page-head__button:hover {
    fill: #5F27CD;
  }
}
@media (min-width: 1200px) {
  .page-head__button {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }
}
@media (min-width: 1200px) and (hover: hover) {
  .page-head__button:hover {
    fill: #fff;
    background: #5F27CD;
  }
}
.page-head__title {
  margin: 0;
  font-size: 10px;
  line-height: 14px;
  color: #242434;
  text-align: center;
}
.page-head--back .page-head__title {
  padding: 0 32px;
}
@media (min-width: 375px) {
  .page-head--back .page-head__title {
    padding: 0 34px;
  }
  .page-head__title {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 768px) {
  .page-head__title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 1200px) {
  .page-head__title {
    font-size: 18px;
    line-height: 1.3333333333;
    color: #706DB0;
  }
}
.page-head__sticker {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 79px;
  height: 45px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .page-head__sticker {
    right: 15px;
  }
}
@media (min-width: 1200px) {
  .page-head__sticker {
    right: calc(50% - 260px);
    width: 72px;
    height: 41px;
    transform: translateY(-45%);
  }
}
.page-head__sticker--left {
  right: auto;
  left: 5px;
  width: 82px;
  height: 63px;
  transform: translateY(-40%);
}
@media (min-width: 768px) {
  .page-head__sticker--left {
    left: 15px;
  }
}
@media (min-width: 1200px) {
  .page-head__sticker--left {
    left: calc(50% - 370px);
    width: 82px;
    height: 63px;
    transform: translateY(-35%);
  }
}
.contacts__body-text {
  position: relative;
}
.contacts__sticker {
  position: absolute;
  top: -35px;
  right: -5px;
  width: 78px;
  height: 58px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .contacts__sticker {
    top: -40px;
    right: -10px;
  }
}
@media (min-width: 1200px) {
  .contacts__sticker {
    top: -45px;
    right: -15px;
  }
}

.favorite-empty {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .favorite-empty {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .favorite-empty {
    margin-bottom: 90px;
  }
}
.favorite-empty__body {
  margin-left: -6px;
  margin-right: -6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  padding: 24px;
  max-width: 402px;
}
@media (min-width: 375px) {
  .favorite-empty__body {
    margin-left: auto;
    margin-right: auto;
  }
}
.favorite-empty__image {
  width: 100%;
  margin-bottom: 24px;
}
.favorite-empty__image > img {
  width: 100%;
  border-radius: 8px;
}
.favorite-empty__desc {
  text-align: center;
  margin-bottom: 24px;
}
.favorite-empty__desc > p {
  font: 400 17px/1.6470588235 "Arial", sans-serif;
}
.favorite-empty__desc > p:last-child {
  margin-bottom: 0;
}
.favorite-empty__button {
  width: 100%;
  display: block;
  text-align: center;
}

.error-404 {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .error-404 {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .error-404 {
    margin-bottom: 90px;
  }
}
.error-404__body {
  margin-left: -6px;
  margin-right: -6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  padding: 24px;
  max-width: 402px;
}
@media (min-width: 375px) {
  .error-404__body {
    margin-left: auto;
    margin-right: auto;
  }
}
.error-404__image {
  width: 100%;
  margin-bottom: 24px;
}
.error-404__image > img {
  width: 100%;
  border-radius: 8px;
}
.error-404__title {
  font: 700 20px/1.5 "Arial", sans-serif;
  text-align: center;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .error-404__title {
    font: 700 24px/1.3333333333 "Arial", sans-serif;
  }
}
.error-404__desc {
  text-align: center;
  margin-bottom: 24px;
}
.error-404__desc > p {
  font: 400 16px/1.75 "Arial", sans-serif;
}
.error-404__desc > p:last-child {
  margin-bottom: 0;
}
.error-404__button {
  width: 100%;
  display: block;
  text-align: center;
}

.planning {
  margin-bottom: 48px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  padding: 24px 0 0;
}
@media (min-width: 768px) {
  .planning {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .planning {
    margin-bottom: 90px;
    padding-top: 0;
    background: transparent;
    box-shadow: none;
  }
}
@media (min-width: 768px) {
  .planning--voyant {
    margin-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  .planning--voyant {
    margin-bottom: 48px;
  }
}
.planning__body {
    position: relative;
    overflow: visible;
}
.planning__sticker {
  display: none;
  position: absolute;
  top: -34px;
  right: -18px;
  width: 80px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 375px) {
  .planning__sticker {
    display: block;
  }
}
@media (min-width: 768px) {
  .planning__sticker {
    display: none;
  }
}
@media (min-width: 1200px) {
  .planning__body {
    background: #fff;
    box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
    border-radius: 8px;
  }
  .planning__sticker {
    display: none;
  }
}
.planning-page__sticker {
  position: absolute;
  top: -66px;
  right: -5px;
  width: 85px;
  height: 62px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .planning-page__sticker {
    top: -67px;
    right: -10px;
  }
}
@media (min-width: 1200px) {
  .planning-page__sticker {
    top: -42px;
    right: 5px;
  }
}
.planning__head {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .planning__head {
    padding: 24px 24px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.planning--voyant .planning__head {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .planning--voyant .planning__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.planning__title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .planning__title {
    margin-bottom: 0;
  }
}
@media (min-width: 375px) {
  .planning__actions {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (min-width: 768px) {
  .planning__actions {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .planning__actions {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (min-width: 375px) {
  .planning--voyant .planning__actions {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .planning--voyant .planning__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (min-width: 1200px) {
  .planning--voyant .planning__actions {
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
.planning__legends {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 1200px) {
  .planning__legends {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
.planning__legends > li {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.planning__legends > li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 3px;
}
.planning__legends > li.gratuit::before {
  background: #FECA57;
}
.planning__legends > li.audio::before {
  background: #5F27CD;
}
.planning__legends > li.prive::before {
  background: #10AC84;
}
.planning__legends > li.indispo::before {
  background: #C0C0DD;
}
.planning--voyant .planning__legends {
  margin-bottom: 0;
}
.planning__region {
  margin-bottom: 0;
  font: 400 16px/1.75 "Arial", sans-serif;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .planning__region {
    font: 400 17px/1.6470588235 "Arial", sans-serif;
  }
}
.planning--voyant .planning__region {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .planning--voyant .planning__region {
    margin-bottom: 0;
  }
}
.planning__table {
  overflow-x: auto;
  margin-left: -16px;
  margin-right: -16px;
  position: relative;
}
@media (min-width: 375px) {
  .planning__table {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 768px) {
  .planning__table {
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media (min-width: 1200px) {
  .planning__table {
    margin-left: 0;
    margin-right: 0;
  }
}
.planning__table::-webkit-scrollbar {
  opacity: 0;
  display: none;
  width: 0;
  height: 0;
}
.planning__table > table {
  position: relative;
}
.planning__table > table > thead.head-row {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 0;
  width: 100%;
  background: #F9F9FD;
  height: 55px;
  font-size: 11px;
  line-height: 1.2727272727;
  color: #706DB0;
  border-top: 1px solid #C0C0DD;
  border-bottom: 0 !important;
}
.planning__table > table > thead.head-row .head-column {
  padding-left: 0;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #706DB0;
  line-height: 1.6363636364;
  background: #F9F9FD;
  border-bottom: 1px solid #C0C0DD !important;
  height: 55px;
}
.planning__table > table > thead.head-row .head-column::after {
  height: 55px;
}
.planning__table > table > thead.head-row > .row {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.planning__table > table > thead.head-row th {
  border-top: 0 !important;
  background: #F9F9FD;
}
.planning__table > table > thead.head-row th:last-child > .head-cell, .planning__table > table > thead.head-row th:nth-child(25) > .head-cell {
  border-right: 0;
}
.planning__table > table > tbody#ajax > .row:nth-child(2n) {
  background: #F9F9FD;
}
.planning__table > table > tbody#ajax > .row:nth-child(2n+1) {
  background: #fff;
}
@media (min-width: 1200px) {
  .planning__table > table > tbody#ajax > .row:last-child > td {
    border-bottom: 0 !important;
  }
}
.planning__table > table .head-column {
  width: 120px;
  min-width: 120px;
  height: 42px;
  padding-left: 12px;
  border-right: 0;
  position: sticky;
  left: 0;
  z-index: 2;
  background: inherit;
}
.planning__table > table .head-column::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background: #C0C0DD;
}
.planning__table > table .head-column > a {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 13px;
  line-height: 1.2307692308;
  cursor: pointer;
}
.planning__table > table .head-column > a:hover {
  color: #5F27CD;
}
.planning__table > table .head-column > a > img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.planning__table > table .head-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 8px 0px;
  padding-right: 1px;
  border-right: 1px solid #C0C0DD;
}
.planning__table > table .row > * {
  border-top: 1px solid #C0C0DD;
  border-bottom: 1px solid #C0C0DD;
}
.planning__table > table .row > *:last-child > .cell, .planning__table > table .row > *:nth-child(25) > .cell {
  border-right: 0;
}
.planning__table > table .row > *:not(.head-column) {
  width: 43px;
  min-width: 43px;
}
@media (min-width: 1200px) {
  .planning__table > table .row > *:not(.head-column) {
    min-width: 1px;
  }
}
.planning--voyant .planning__table > table .head-column {
  width: 75px;
  min-width: 75px;
  padding-left: 0;
  font-size: 13px;
  line-height: 1.2307692308;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .planning--voyant .planning__table > table .head-column {
    width: 120px;
    min-width: 120px;
  }
}
.planning--voyant .planning__table > table tbody > tr > td.head-column {
  height: 46px !important;
  min-height: 46px !important;
}
.planning--voyant .planning__table > table tbody > tr > td.head-column::after {
  height: 46px;
}

.planning-days {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 0 16px;
  overflow-x: auto;
}
@media (min-width: 375px) {
  .planning-days {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 768px) {
  .planning-days {
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media (min-width: 1200px) {
  .planning-days {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.planning-days::-webkit-scrollbar {
  opacity: 0;
  display: none;
  width: 0;
  height: 0;
}
.planning-days__item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #706DB0;
  padding: 9px 8px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .planning-days__item > a {
    padding: 9px 8px 6px;
  }
}
.planning-days__item > a > .week-day {
  font-size: 10px;
  line-height: 1;
  text-align: center;
  padding-bottom: 5px;
  position: relative;
  margin-bottom: 6px;
}
@media (min-width: 1200px) {
  .planning-days__item > a > .week-day {
    padding-bottom: 4px;
    margin-bottom: 5px;
  }
}
.planning-days__item > a > .week-day::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #706DB0;
  height: 1px;
  width: 10px;
}
.planning-days__item > a > p {
  margin-bottom: 0;
  letter-spacing: 0.32px;
}
.planning-days__item > a > p:last-child {
  font-size: 16px;
  line-height: 1;
}
@media (hover: hover) {
  .planning-days__item > a:hover {
    background: #5F27CD;
    color: #fff;
  }
  .planning-days__item > a:hover > .week-day::after {
    background: #fff;
  }
}
.planning-days__item.active > a {
  background: #5F27CD;
  color: #fff;
}
.planning-days__item.active > a > .week-day::after {
  background: #fff;
}

.planning-search {
  margin-bottom: 16px;
}
@media (min-width: 375px) {
  .planning-search {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (min-width: 768px) {
  .planning-search {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .planning-search {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.planning-search__group {
  position: relative;
}
.planning-search__group > img {
  position: absolute;
  left: 11px;
  top: 49%;
  transform: translateY(-50%);
  pointer-events: none;
}
.planning-search__group .form-control {
  padding: 13px 16px 13px 45px;
  font-size: 15px;
  line-height: 1.1333333333;
  width: 100%;
}
.planning-search__remove {
  position: absolute;
  line-height: 0;
  font-size: 0;
  fill: #5F27CD;
  top: 50%;
  transform: translateY(-50%);
  right: 11px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}
.planning-search__remove > * {
  pointer-events: none;
}
.planning-search__group .form-control:not(:-moz-placeholder-shown) ~ .planning-search__remove {
  opacity: 1;
  visibility: visible;
}
.planning-search__group .form-control:not(:placeholder-shown) ~ .planning-search__remove {
  opacity: 1;
  visibility: visible;
}

.null-row {
  height: 55px;
  opacity: 0;
}

.cell {
  display: flex;
  gap: 1px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3px 4px 3px 3px;
  border-right: 1px solid #C0C0DD;
}
.cell.promo {
  position: relative;
  padding: 3px 4.5px 3px 2.5px;
}
.cell.promo::before {
  content: "PROMO";
  width: 35px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid #feca57;
  position: absolute;
  top: -8px;
  background: rgba(254, 202, 87, 0.11);
  z-index: 0;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  color: #242434;
  padding: 2px 1px;
  text-align: center;
}
.cell.promo::after {
  content: "3€ / APP";
  position: absolute;
  left: calc(50% - 1px);
  transform: translateX(-50%);
  bottom: -9px;
  z-index: 1;
  background: #FECA57;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  color: #242434;
  border-radius: 0 0 1px 1px;
  width: 34.5px;
  padding: 1px 0 0;
  text-align: center;
}
.cell .part {
  background: #C0C0DD;
  border-radius: 2px;
  width: 7px;
  height: 8px;
  margin-bottom: 0;
}
.cell .part.auditel_bar {
  background: #5F27CD;
}
.cell .part.cb_bar {
  background: #10AC84;
}

.widget-form {
  max-width: 426px;
}
.widget-form__head {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  background: #F3F3FB;
  border-radius: 8px;
  padding: 12px;
}
.widget-form__image {
  margin: 0;
  flex: 0 0 74px;
  width: 74px;
}
.widget-form__image > img {
  width: 100%;
}
.widget-form__title {
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 700;
  color: #5F27CD;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .widget-form__title {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.widget-form__desc > p {
  font-size: 12px;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .widget-form__desc > p {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}
.widget-form__desc > p:last-child {
  margin-bottom: 0;
}
.widget-form__group {
  margin-bottom: 15px;
  line-height: 0;
}
.widget-form__group:last-child {
  margin-bottom: 0;
}
.widget-form__group .textarea {
  min-height: 100px;
}
.widget-form__submit {
  width: 100%;
}

.recrute-button {
  position: fixed;
  bottom: 68px;
  left: 16px;
  right: 16px;
  box-shadow: 0px 8px 20px 0px rgba(115, 115, 167, 0.5);
}
@media (min-width: 1200px) {
  .recrute-button {
    display: none !important;
  }
}

@media (min-width: 375px) {
  .horoscope-content {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .horoscope-content {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1200px) {
  .horoscope-content {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
.horoscope-content__title {
  font: 700 20px/1.5 "Arial", sans-serif;
  margin-bottom: 12px;
}
@media (min-width: 375px) {
  .horoscope-content__title {
    font: 700 24px/1.3333333333 "Arial", sans-serif;
  }
}
.horoscope-content__date {
  color: #5F27CD;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4285714286;
  margin-bottom: 12px;
}
.horoscope-content__desc {
  margin-bottom: 24px;
}
.horoscope-content__desc:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .horoscope-content__desc > p {
    font: 400 17px/1.6470588235 "Arial", sans-serif;
  }
}
.horoscope-content__desc > p:last-child {
  margin-bottom: 0;
}
.horoscope-content__desc > p > a {
  color: #5F27CD;
  border-bottom: 1px solid transparent;
}
@media (hover: hover) {
  .horoscope-content__desc > p > a:hover {
    border-color: #5F27CD;
  }
}
.horoscope-content__zadiacs {
  margin-bottom: 24px;
}
.horoscope-content__zadiacs > h3 {
  font: 700 20px/1.5 "Arial", sans-serif;
  margin-bottom: 24px;
}
.horoscope-content__zadiacs > .widget-horoscope__list {
  padding: 16px;
  gap: 24px 6px;
  border: 1px solid #E6E6F2;
  border-radius: 8px;
}
@media (min-width: 375px) {
  .horoscope-content__zadiacs > .widget-horoscope__list {
    justify-content: space-between;
    gap: 24px 8px;
  }
}
@media (min-width: 768px) {
  .horoscope-content__zadiacs > .widget-horoscope__list {
    gap: 24px 38px;
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .horoscope-content__zadiacs > .widget-horoscope__list {
    gap: 24px 6px;
    padding: 24px;
  }
}
@media (min-width: 375px) {
  .horoscope-content__zadiacs > .widget-horoscope__list > .widget-horoscope__item {
    flex-grow: 0;
  }
}
@media (min-width: 768px) {
  .horoscope-content__zadiacs > .widget-horoscope__list > .widget-horoscope__item {
    flex-grow: 1;
  }
}
@media (min-width: 375px) {
  .widget-mediums {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .widget-mediums {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
.widget-mediums__title {
  margin-bottom: 12px;
}
.widget-mediums__desc {
  margin-bottom: 24px;
}
.widget-mediums__desc > p {
  font-size: 16px;
  line-height: 1.5;
}
.widget-mediums__desc > p:last-child {
  margin-bottom: 0;
}
.widget-mediums__row {
  margin-left: -6px;
  margin-right: -6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 24px;
}
@media (min-width: 375px) {
  .widget-mediums__row {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .widget-mediums__row {
    justify-content: flex-start;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 16px;
  }
}
@media (min-width: 1200px) {
  .widget-mediums__row {
    row-gap: 24px;
  }
}
@media (min-width: 1200px) {
  .widget-mediums__row > * {
    flex: 0 0 100%;
    width: 100%;
  }
}
.widget-mediums__action {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.widget-mediums__more {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .widget-mediums__more {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.horoscope-card {
  margin-bottom: 24px;
  border-radius: 8px;
  background: #F3F3FB;
  padding: 24px;
}
.horoscope-card__header {
  font: 700 20px/1.5 "Arial", sans-serif;
  margin-bottom: 6px;
  color: #5F27CD;
}
.horoscope-card__header > span {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.12;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .horoscope-card__desc > p {
    font: 400 17px/1.6470588235 "Arial", sans-serif;
  }
}
.horoscope-card__desc > p:last-child {
  margin-bottom: 0;
}

.articles-nav {
  margin-bottom: 24px;
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  overflow-x: auto;
}
@media (min-width: 375px) {
  .articles-nav {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.articles-nav::-webkit-scrollbar {
  opacity: 0;
  display: none;
  width: 0;
  height: 0;
}
.articles-nav > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(112, 109, 176, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  min-width: 100%;
}
.articles-nav > ul > li {
  line-height: 0;
}
.articles-nav > ul > li > a {
  text-transform: uppercase;
  color: #706DB0;
  padding-bottom: 12px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  display: block;
  position: relative;
}
@media (hover: hover) {
  .articles-nav > ul > li > a:hover {
    color: #5F27CD;
  }
}
.articles-nav > ul > li > a::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  width: 100%;
  bottom: -1px;
  background: #5F27CD;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.articles-nav > ul > li > a.active {
  color: #5F27CD;
}
.articles-nav > ul > li > a.active::after {
  opacity: 1;
}

@media (min-width: 375px) {
  .blog-content {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .blog-content {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1200px) {
  .blog-content {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
.blog-content__list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  overflow-x: auto;
  display: none;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (min-width: 375px) {
  .blog-content__list {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1200px) {
  .blog-content__list {
    flex-wrap: wrap;
    overflow: initial;
    gap: 12px;
  }
}
.blog-content__list::-webkit-scrollbar {
  opacity: 0;
  display: none;
  width: 0;
  height: 0;
}
.blog-content__list > li > a {
  display: block;
  padding: 3px 11px;
  font-size: 14px;
  line-height: 1.7142857143;
  color: #706DB0;
  cursor: pointer;
  border: 1px solid #C0C0DD;
  border-radius: 8px;
  white-space: nowrap;
}
@media (hover: hover) {
  .blog-content__list > li > a:hover {
    color: #5F27CD;
    border-color: #5F27CD;
  }
}
.blog-content__list > li > a.active {
  background: #5F27CD;
  color: #fff;
  border-color: #5F27CD;
}
.blog-content__list--tags {
  list-style: none;
  margin-bottom: 0;
  gap: 8px;
}
@media (min-width: 375px) {
  .blog-content__list--tags {
    gap: 12px;
  }
}
.blog-content__list--tags > li > a {
  display: block;
  padding: 3px 15px;
  border-radius: 100px;
  border: 1px solid #C0C0DD;
  color: #706DB0;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (hover: hover) {
  .blog-content__list--tags > li > a:hover {
    color: #5F27CD;
    border-color: #5F27CD;
  }
}
.blog-content__list--tags > li > a.active {
  color: #fff;
  border-color: #5F27CD;
  background: #5F27CD;
}

.blog-cards {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
@media (min-width: 375px) {
  .blog-cards {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 768px) {
  .blog-cards {
    margin-left: 0;
    margin-right: 0;
  }
}
.blog-cards__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
}
@media (min-width: 1200px) {
  .blog-cards__row {
    gap: 24px;
  }
}

.blog-card {
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  padding: 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 375px) {
  .blog-card {
    padding: 24px;
  }
}
@media (min-width: 768px) {
  .blog-card {
    border-radius: 12px;
  }
}
@media (min-width: 768px) {
  .blog-card:nth-child(3n-1) {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }
}
@media (min-width: 1200px) {
  .blog-card:nth-child(3n-1) {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}
@media (min-width: 768px) {
  .blog-card:nth-child(3n) {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }
}
@media (min-width: 1200px) {
  .blog-card:nth-child(3n) {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}
@media (min-width: 768px) {
  .blog-card:nth-child(3n+1):not(:first-child) {
    flex-direction: row;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.blog-card__thumbnail {
  display: block;
  margin-bottom: 16px;
}
.blog-card__thumbnail > figure {
  margin: 0;
  padding-top: 55.9027777778%;
  position: relative;
}
.blog-card__thumbnail > figure > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .blog-card:nth-child(3n+1):not(:first-child) .blog-card__thumbnail {
    flex: 0 0 316px;
    width: 316px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .blog-card:nth-child(3n+1):not(:first-child) .blog-card__thumbnail {
    flex: 0 0 306px;
    width: 306px;
  }
}
@media (min-width: 768px) {
  .blog-card:nth-child(3n+1):not(:first-child) .blog-card__thumbnail > figure {
    padding-top: 93.0379746835%;
  }
}
@media (min-width: 1200px) {
  .blog-card:nth-child(3n+1):not(:first-child) .blog-card__thumbnail > figure {
    padding-top: 96.0784313725%;
  }
}
.blog-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card__info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.blog-card__info > li {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
}
.blog-card__info > li:not(:last-child)::after {
  content: "";
  margin: 0 12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #706DB0;
}
.blog-card__category {
  color: #5F27CD;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4285714286;
  border-bottom: 1px solid transparent;
}
@media (hover: hover) {
  .blog-card__category:hover {
    border-color: #5F27CD;
    color: #5F27CD;
  }
}
.blog-card__date {
  display: block;
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #706DB0;
}
.blog-card__title {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin-bottom: 8px;
  fill: #242434;
  color: #242434;
}
@media (hover: hover) {
  .blog-card__title:hover {
    fill: #5F27CD;
    color: #5F27CD;
  }
}
.blog-card__title > h2 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.blog-card__title > svg {
  margin-top: 4px;
  flex: 0 0 24px;
}
.blog-card__excerpt {
  margin-bottom: 16px;
}
.blog-card__excerpt > p {
  line-height: 1.5;
}
.blog-card__excerpt > p:last-child {
  margin-bottom: 0;
}
.blog-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card__fav {
  padding: 4px 11px 4px 7px;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border-radius: 8px;
  border: 1px solid #C0C0DD;
  color: #706DB0;
  font-size: 16px;
  line-height: 1;
  fill: transparent;
  stroke: #706DB0;
  cursor: pointer;
}
@media (hover: hover) {
  .blog-card__fav:hover {
    color: #5F27CD;
    border-color: #5F27CD;
    stroke: #5F27CD;
  }
}
.blog-card__fav.active {
  color: #5F27CD;
  border-color: #5F27CD;
  fill: #F75F5F;
  stroke: #fff;
}
.blog-card__fav > svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
@media (min-width: 1200px) {
  .blog-card__fav > span {
    position: relative;
    top: 1px;
  }
}
.blog-card__views {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  fill: rgba(112, 109, 176, 0.7);
  font-size: 15px;
  line-height: 1.6;
  color: #706DB0;
}
.blog-card__views > svg {
  flex: 0 0 18px;
}

.blog-pagination {
  background: transparent;
  padding: 0 16px;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 375px) {
  .blog-pagination {
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px;
  }
}
@media (min-width: 768px) {
  .blog-pagination {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.blog-pagination__button {
  padding: 0;
  line-height: 0;
  fill: #706DB0;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #C0C0DD;
  border-radius: 8px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .blog-pagination__button {
    border-radius: 10px;
    flex: 0 0 120px;
    width: 120px;
  }
}
@media (hover: hover) {
  .blog-pagination__button:hover {
    fill: #fff;
    border-color: #5F27CD;
    background: #5F27CD;
  }
}
.blog-pagination__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: none;
}
@media (min-width: 768px) {
  .blog-pagination__list {
    display: flex;
    justify-content: center;
    -moz-column-gap: 6px;
         column-gap: 6px;
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .blog-pagination__list > li > a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: #fff;
    border: 1px solid #C0C0DD;
    border-radius: 10px;
    cursor: pointer;
    color: #706DB0;
  }
}
@media (hover: hover) {
  .blog-pagination__list > li > a:hover {
    color: #fff;
    border-color: #5F27CD;
    background: #5F27CD;
  }
}
.blog-pagination__dots {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #706DB0;
}
.blog-pagination__pages {
  flex-grow: 1;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  color: #000;
}
@media (min-width: 768px) {
  .blog-pagination__pages {
    flex-grow: 0;
    min-width: 204px;
    display: none;
  }
}
@media (min-width: 375px) {
  .widget-categories {
    border-radius: 0;
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 768px) {
  .widget-categories {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
.widget-categories__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .widget-categories__list {
    -moz-column-count: 2;
         column-count: 2;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .widget-categories__list {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.widget-categories__list > li {
  margin-bottom: 12px;
}
.widget-categories__list > li > a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(112, 109, 176, 0.15);
}
@media (hover: hover) {
  .widget-categories__list > li > a:hover {
    color: #5F27CD;
  }
}
.widget-categories__list > li > a > span {
  font-weight: 400;
  color: #706DB0;
}
.widget-categories__list > li > a.active {
  color: #5F27CD;
}
.widget-categories__list > li > a.active > span {
  color: #5F27CD;
}
.widget-categories__list > li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .widget-categories__list > li:last-child {
    margin-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  .widget-categories__list > li:last-child {
    margin-bottom: 0;
  }
}
.widget-categories__list > li:last-child > a {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 768px) {
  .widget-categories__list > li:last-child > a {
    padding-bottom: 13px;
  }
}
@media (min-width: 1200px) {
  .widget-categories__list > li:last-child > a {
    padding-bottom: 0;
  }
}

@media (min-width: 375px) {
  .widget-tags {
    border-radius: 0;
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 768px) {
  .widget-tags {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
.widget-tags__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 375px) {
  .widget-tags__list {
    gap: 12px;
  }
}
.widget-tags__list > li > a {
  display: block;
  padding: 3px 15px;
  border-radius: 100px;
  border: 1px solid #C0C0DD;
  color: #706DB0;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (hover: hover) {
  .widget-tags__list > li > a:hover {
    color: #5F27CD;
    border-color: #5F27CD;
  }
}
.widget-tags__list > li > a.active {
  color: #fff;
  border-color: #5F27CD;
  background: #5F27CD;
}

@media (min-width: 375px) {
  .single-post {
    border-radius: 0;
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 768px) {
  .single-post {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
.single-post__title {
  font: 700 24px/1.3333333333 "Arial", sans-serif;
  margin-bottom: 1em;
}
.single-post__info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single-post__info > li {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
}
.single-post__info > li:not(:last-child)::after {
  content: "";
  margin: 0 12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #706DB0;
}
.single-post__category {
  color: #5F27CD;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4285714286;
  border-bottom: 1px solid transparent;
}
@media (hover: hover) {
  .single-post__category:hover {
    border-color: #5F27CD;
    color: #5F27CD;
  }
}
.single-post__date {
  display: block;
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #706DB0;
}
.single-post__thumbnail {
  margin-bottom: 24px;
  position: relative;
  padding-top: 46.875%;
}
.single-post__thumbnail > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .single-post__content {
    font: 400 17px/1.6470588235 "Arial", sans-serif;
  }
}
.single-post__actions {
  margin-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(112, 109, 176, 0.15);
  display: flex;
  justify-content: space-between;
}
.single-post__list {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(112, 109, 176, 0.15);
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.single-post__list > li > a {
  display: block;
  padding: 3px 15px;
  border-radius: 100px;
  border: 1px solid #C0C0DD;
  color: #706DB0;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (hover: hover) {
  .single-post__list > li > a:hover {
    color: #5F27CD;
    border-color: #5F27CD;
  }
}
.single-post__list > li > a.active {
  color: #fff;
  border-color: #5F27CD;
  background: #5F27CD;
}
.single-post__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .single-post__nav {
    flex-wrap: nowrap;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.single-post__button {
  display: block;
  cursor: pointer;
  fill: #706DB0;
  color: #706DB0;
}
@media (min-width: 768px) {
  .single-post__button {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}
.single-post__button:hover {
  fill: #5F27CD;
  color: #5F27CD;
}
.single-post__button > span {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 4px;
}
.single-post__button > span > svg {
  flex: 0 0 36px;
  position: relative;
  top: -1px;
}
.single-post__button--next > span {
  padding-left: 10px;
}
.single-post__button--next > span > svg {
  transform: rotate(180deg);
}
.single-post__button > h5 {
  margin: 0;
  padding: 0 10px;
  font-size: 18px;
  line-height: 1.4444444444;
  color: #242434;
}

.promo-code {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .promo-code {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .promo-code {
    margin-bottom: 90px;
  }
}
.promo-code__body {
  position: relative;
  overflow: visible;
  margin-left: -6px;
  margin-right: -6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  padding: 24px;
  max-width: 402px;
}
@media (min-width: 375px) {
  .promo-code__body {
    margin-left: auto;
    margin-right: auto;
  }
}
.promo-code__sticker {
  position: absolute;
  top: -90px;
  right: 5px;
  width: 69px;
  height: 77px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .promo-code__sticker {
    top: -85px;
    right: 0px;
  }
}
@media (min-width: 1200px) {
  .promo-code__sticker {
    top: -110px;
    right: 10px;
  }
}
.promo-code__image {
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .promo-code__image {
    margin-bottom: 24px;
  }
}
.promo-code__image > img {
  width: 100%;
  border-radius: 8px;
}
.promo-code__title {
  font: 700 20px/1.5 "Arial", sans-serif;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .promo-code__title {
    font: 700 24px/1.3333333333 "Arial", sans-serif;
    margin-bottom: 24px;
  }
}
.promo-code__group {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .promo-code__group {
    margin-bottom: 12px;
  }
}
.promo-code__button {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .promo-code__button {
    margin-bottom: 24px;
  }
}
.promo-code__link {
  display: flex;
  justify-content: center;
}
.promo-code__link > a {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1333333333;
  color: #5F27CD;
  border-bottom: 1px solid transparent;
}
.promo-code__link > a:hover {
  color: #5F27CD;
}
@media (hover: hover) {
  .promo-code__link > a:hover {
    border-color: #5F27CD;
    color: #5F27CD;
  }
}

.code-active {
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .code-active {
    margin-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .code-active {
    margin-bottom: 90px;
  }
}
.code-active__body {
  margin-left: -6px;
  margin-right: -6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  padding: 24px 16px 16px;
}
@media (min-width: 375px) {
  .code-active__body {
    max-width: 402px;
    margin-left: auto;
    margin-right: auto;
  }
}
.code-active__icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  width: 50px;
}
@media (min-width: 768px) {
  .code-active__icon {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .code-active__icon {
    margin-bottom: 24px;
  }
}
.code-active__icon > img {
  width: 100%;
  height: auto;
}
.code-active__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 6px;
}
.code-active__desc {
  text-align: center;
  margin-bottom: 8px;
}
.code-active__desc > p {
  font-size: 14px;
  line-height: 1.3;
}
.code-active__desc > p:last-child {
  margin-bottom: 0;
}
.code-active__label {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.code-active__label > span {
  background: #FECA57;
  color: #242434;
  text-transform: uppercase;
  padding: 2px 5px;
  display: inline-block;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.1666666667;
}
.code-active__button {
  padding: 13px;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .code-active__button {
    padding: 14px;
  }
}
.voyant {
  /*margin-bottom: 48px;*/
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .voyant {
    /*margin-bottom: 64px;*/
    margin-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  .voyant {
    /*margin-bottom: 90px;*/
    margin-bottom: 48px;
  }
}
.voyant__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .voyant__body {
    gap: 16px;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .voyant__body {
    max-width: 906px;
    margin-left: auto;
    margin-right: auto;
  }
}
.voyant__left {
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 375px) {
  .voyant__left {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .voyant__left {
    flex: 0 0 400px;
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .voyant__left {
    flex: 0 0 530px;
    width: 530px;
  }
}
.voyant__right {
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 375px) {
  .voyant__right {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .voyant__right {
    flex-grow: 1;
  }
}
.voyant-card {
  background: #fff;
  padding: 16px;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 24px;
    position: relative;
}
@media (min-width: 375px) {
  .voyant-card {
    border-radius: 12px;
  }
}
@media (min-width: 768px) {
  .voyant-card {
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .voyant-card {
    padding-bottom: 15px;
  }
}
.voyant-card__thumbnail {
  flex: 0 0 96px;
  width: 96px;
}
.voyant-card__thumbnail > figure {
  margin: 0 0 8px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  padding-top: 130.2083333333%;
}
@media (min-width: 1200px) {
  .voyant-card__thumbnail > figure {
    margin-bottom: 9px;
  }
}
.voyant-card__thumbnail > figure > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px 4px 6px 6px;
}
.voyant-card__content {
  flex-grow: 1;
  min-width: 0;
}
.voyant-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2727272727;
  font-weight: 700;
  letter-spacing: 0.22px;
  display: none;
}
.voyant-card__label--promo {
  background: #FECA57;
  color: #242434;
}
.voyant-card__label--nouv {
  background: #F75F5F;
  color: #fff;
}
.voyant-card--promo .voyant-card__label--promo {
  display: block;
}
.voyant-card--nouv .voyant-card__label--nouv {
  display: block;
}
.voyant-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (min-width: 1200px) {
  .voyant-card__header {
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) {
  .voyant-card__header {
    margin-bottom: 9px;
  }
}
@media (min-width: 1200px) {
  .voyant-card__header {
    margin-bottom: 15.5px;
  }
}
.voyant-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.4117647059;
  font-weight: 700;
  color: #242434;
  letter-spacing: -0.6px;
}
@media (min-width: 768px) {
  .voyant-card__title {
    font-size: 20px;
    line-height: 1.2;
  }
}
.voyant-card__fav {
  padding: 3px 5px;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  border-radius: 8px;
  border: 1px solid #706DB0;
  color: #706DB0;
  font-size: 13px;
  line-height: 1;
  fill: transparent;
  stroke: #706DB0;
  cursor: pointer;
}
.voyant-card__fav.active {
  color: #5F27CD;
  border-color: #5F27CD;
  fill: #F75F5F;
  stroke: #fff;
}
.voyant-card__fav > svg {
  flex: 0 0 16px;
}
@media (min-width: 1200px) {
  .voyant-card__fav > span {
    position: relative;
  }
}
.voyant-card__status {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 768px) {
  .voyant-card__status {
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .voyant-card__status {
    margin-bottom: 14.5px;
  }
}
.voyant-card__status--gray {
  color: #242434;
}
.voyant-card__status--green {
  color: #10AC84;
}
.voyant-card__status--red {
  color: #F75F5F;
}
.voyant-card__success {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .voyant-card__success {
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .voyant-card__success {
    margin-bottom: 14.5px;
  }
}
.voyant-card__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .voyant-card__text {
    font-size: 13px;
  }
}
.voyant-card__text > span:last-child {
  font-weight: 700;
}
.voyant-card__bar {
  height: 4px;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
  background: #DBDBF5;
}
.voyant-card__bar > span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
}
.voyant-card__bar--red > span {
  background: #F75F5F;
}
.voyant-card__bar--yellow > span {
  background: #FECA57;
}
.voyant-card__bar--green > span {
  background: #1DCB8E;
}
.voyant-card__info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .voyant-card__info {
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .voyant-card__info {
    margin-bottom: 14.5px;
  }
}
.voyant-card__info > li {
  line-height: 0;
  padding: 0 10px;
  position: relative;
}
.voyant-card__info > li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
  width: 1px;
  height: 12px;
  background: #C0C0DD;
}
.voyant-card__info > li:nth-child(1) {
  padding-left: 0;
}
.voyant-card__info > li:last-child {
  padding-right: 0;
}
.voyant-card__info > li:last-child::after {
  display: none;
}
.voyant-card__info > li > a {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-size: 13px;
  line-height: 1;
}
.voyant-card__info > li > a > span {
  position: relative;
  top: 1px;
  color: #706DB0;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
.voyant-card__info > li > a:hover > span {
  border-color: #706DB0;
}
.voyant-card__types {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.35px;
  color: #706DB0;
}
@media (min-width: 768px) {
  .voyant-card__types {
    font-size: 14px;
    line-height: 1.8;
  }
}

.voyant-bio {
  position: relative;
  background: #fff;
  padding: 16px;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  max-height: 406px;
  /* height: 100%; */
  height: fit-content;
}

.voyant-bio__sticker {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 94px;
  height: 66px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.voyant-no-presentation.voyant-bio {
  /* max-height: 102px; */
  /* min-height: 102px; */
}

@media (min-width: 375px) {
  .voyant-bio {
    border-radius: 12px;
  }
}


.voyant-bio__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.voyant-bio__desc {
  position: relative;
  overflow: hidden;
  height: 306px;
  margin-bottom: 12px;
}

.voyant-no-presentation .voyant-bio__desc {
  height: fit-content;
}
.voyant-bio__desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px; 
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}

.voyant-no-presentation .voyant-bio__desc::after {
  display: none;
}

@media (min-width: 768px) {
  .voyant-bio {
    height: 373px;
    max-height: 373px;
    /* min-height: 373px; */
  }

  .voyant-no-presentation.voyant-bio {
    max-height: unset;
    min-height: unset;
  }
  .voyant-bio__desc {
    height: 271px;
    /* min-height: 271px; */
  }
}

@media (min-width: 1200px) {
  .voyant-bio {
    height: 352px;
    max-height: 352px;
    /* min-height: 352px; */
  }
  .voyant-no-presentation.voyant-bio {
    max-height: unset;
    min-height: unset;
  }
  .voyant-bio__desc {
    height: 253px;
    /* min-height: 253px; */
  }
}

.voyant-bio.opened {
    max-height: fit-content;
    height: fit-content;
}
.voyant-bio.opened .voyant-bio__desc {
  height: fit-content;
}
.voyant-bio.opened .voyant-bio__desc::after {
  content: initial
}
.voyant-bio .voyant-bio__button svg {
  transition: transform 0.3s ease;
}
.voyant-bio.opened .voyant-bio__button svg {
  transform: rotateZ(180deg);
}

.voyant-bio__button:focus {
  outline: none;
}
.voyant-bio__button {
  display: flex;
  align-items: center;
  font: 700 14px/10px Arial, sans-serif;
  color: #5F27CD;
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;

}
@media (min-width: 1200px) {
  .voyant-bio__desc > p {
    line-height: 1.78125;
  }
}
.voyant-bio__desc > p:last-child {
  margin-bottom: 0;
}

.voyant-phone {
  background: #fff;
  padding: 16px;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  margin-bottom: 24px;
}
@media (min-width: 375px) {
  .voyant-phone {
    border-radius: 12px;
  }
}
@media (min-width: 768px) {
  .voyant-phone {
    margin-bottom: 16px;
  }
}
.voyant-phone:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .voyant-phone--prepay {
    margin-top: -2px;
  }
}
.voyant-phone__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.voyant-phone--promo .voyant-phone__header {
  align-items: flex-end;
  margin-top: -5px;
}
.voyant-phone__title {
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-weight: 700;
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  display: inline;
  position: relative;
}
.voyant-phone__title > div {
  cursor: pointer;
}
@media (min-width: 768px) {
  .voyant-phone__title {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .voyant-phone__title > div {
    display: none;
  }
}
.voyant-phone__title > div .tooltip {
  display: none;
}
@media (min-width: 1200px) {
  .voyant-phone__title > div .tooltip {
    display: block;
  }
}
.voyant-phone__title > div:last-child {
  display: none;
  position: relative;
}
@media (min-width: 1200px) {
  .voyant-phone__title > div:last-child {
    display: block;
  }
}
@media (min-width: 1200px) {
  .voyant-phone__title > div:last-child .tooltip {
    bottom: calc(100% + 13px);
    right: -54px;
    max-width: 596px;
  }
  .voyant-phone__title > div:last-child .tooltip::after {
    right: 48px;
    left: auto;
    transform: translate(0);
  }
}
.voyant-phone__title > div:last-child .tooltip > p {
  text-transform: none;
  font-weight: 400;
}
.voyant-phone__title > div > svg {
  fill: #706DB0;
  transition: 0.3s ease;
}
.voyant-phone__title > div:hover > svg {
  fill: #5F27CD;
}
.voyant-phone--prive .voyant-phone__title > span:hover > svg {
  fill: #10AC84;
}
.voyant-phone__prices {
  font-size: 12px;
  line-height: 1.1666666667;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1px;
  margin-top: 2px;
}
@media (min-width: 1200px) {
  .voyant-phone__prices {
    margin-top: 1px;
  }
}
@media (min-width: 1200px) {
  .voyant-phone__prices {
    font-size: 13px;
    line-height: 1.1538461538;
  }
}
.voyant-phone__price {
  position: relative;
  font-size: 12px;
  line-height: 1.1666666667;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .voyant-phone__price {
    font-size: 13px;
    line-height: 1.1538461538;
  }
}
.voyant-phone__price--new {
  color: #F75F5F;
  white-space: nowrap;
  font-weight: 700;
  display: none;
}
.voyant-phone__price--old {
  color: #706DB0;
}
.voyant-phone--promo .voyant-phone__price--new {
  display: block;
}
.voyant-phone--promo .voyant-phone__price--old {
  text-decoration: line-through;
}
.voyant-phone__number {
  display: none;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding: 24px 24px 22px;
  color: #fff;
  fill: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1.1363636364;
  font-weight: 700;
}
.voyant-phone__number:hover, .voyant-phone__number:active, .voyant-phone__number:focus {
  color: #fff;
}
.voyant-phone--online .voyant-phone__number {
  display: flex;
}
.voyant-phone--audiotel .voyant-phone__number {
  border-bottom: 2px solid #4B2C87;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%);
}
.voyant-phone--audiotel .voyant-phone__number:hover, .voyant-phone--audiotel .voyant-phone__number:active, .voyant-phone--audiotel .voyant-phone__number:focus {
  border-bottom: 2px solid #4B2C87 !important;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%) !important;
}
.voyant-phone--prive .voyant-phone__number {
  border-bottom: 2px solid #2D7865;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%);
}
.voyant-phone--prive .voyant-phone__number:hover, .voyant-phone--prive .voyant-phone__number:active, .voyant-phone--prive .voyant-phone__number:focus {
  border-bottom: 2px solid #2D7865 !important;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%) !important;
}
.voyant-phone--promo .voyant-phone__number {
  border-bottom: 2px solid #B68A2A;
  background: linear-gradient(180deg, #FECA57 0%, #EDB947 100%);
  color: #242434;
  fill: #242434;
}
.voyant-phone--promo .voyant-phone__number:hover, .voyant-phone--promo .voyant-phone__number:active, .voyant-phone--promo .voyant-phone__number:focus {
  fill: #242434;
  color: #242434 !important;
  border-bottom: 2px solid #B68A2A !important;
  background: linear-gradient(180deg, #FECA57 0%, #EDB947 100%) !important;
}
.voyant-phone__number--mb {
  margin-bottom: 0;
}
.voyant-phone__schedule {
  font-size: 9px;
  line-height: 1.4444444444;
  letter-spacing: 0.1px;
  display: none;
  margin-bottom: 0 !important;
}
.voyant-phone--promo .voyant-phone__schedule {
  display: block;
}
.voyant-phone__promocode {
  width: 100%;
  display: none;
  text-align: center;
  margin-bottom: 0 !important;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .voyant-phone__promocode {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }
}
.voyant-phone--online .voyant-phone__promocode {
  display: block;
}
.voyant-phone--prive .voyant-phone__promocode {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  width: 100%;
  font-size: 14px;
  line-height: 1.1428571429;
  flex-grow: 1;
  min-height: 48px;
  padding: 4px;
}
.voyant-phone--prive .btn--randevu {
  font-size: 13px;
}
.voyant-phone--prive .voyant-phone__promocode > span:last-child {
  display: none;
}
@media (min-width: 1200px) {
  .voyant-phone--prive .voyant-phone__promocode > span:last-child {
    display: block;
    position: relative;
    line-height: 0;
  }
  .voyant-phone--prive .btn--randevu {
    font-size: 16px;
  }
}
.voyant-phone--prive .voyant-phone__promocode > span:last-child .tooltip {
  display: none;
}
@media (min-width: 1200px) {
  .voyant-phone--prive .voyant-phone__promocode > span:last-child .tooltip {
    display: block;
    bottom: calc(100% + 13px);
    right: -50px;
    max-width: 355px;
  }
  .voyant-phone--prive .voyant-phone__promocode > span:last-child .tooltip::after {
    right: 48px;
    left: auto;
    transform: translate(0);
  }
}
.voyant-phone--promo .voyant-phone__promocode {
  display: none;
}
.voyant-phone__respromo {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-bottom: 0 !important;
  margin-top: 12px;
}
.voyant-phone--online .voyant-phone__respromo {
  display: flex;
}
.voyant-phone__resfaq {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .voyant-phone__resfaq {
    display: none;
  }
}
.voyant-phone__resfaq .tooltip {
  display: none;
}
.voyant-phone__alert {
  padding: 16px 12px;
  border-radius: 8px;
  text-align: center;
}
.voyant-phone__alert--offline {
  margin-bottom: 0 !important;
}
.voyant-phone__alert__in-consult {
  font-weight: 700;
  color: #10AC84;
}
.voyant-phone__alert--fixed {
  background: rgba(16, 172, 132, 0.05);
  color: #242434;
}
@media (min-width: 1200px) {
  .voyant-phone__alert {
    padding: 16px;
  }
}
.voyant-phone__alert > p {
  font-size: 14px;
  line-height: 1.4285714286;
}
.voyant-phone__alert--called {
    padding: 0 9px;
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.voyant-phone__alert--called--desktop {
    height: 72px;
}
.voyant-phone__alert--called p {
    font-size: 13px
}
@media (min-width: 375px) {
  .voyant-phone__alert--called {
    padding: 0 12px;
  }
  .voyant-phone__alert--called p {
    font-size: 13px;
  }
}
@media (min-width: 425px) {
  .voyant-phone__alert--called p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .voyant-phone__alert--called {
    padding: 0 10px;
  }
  .voyant-phone__alert--called p{
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .voyant-phone__alert--called p {
    font-size: 14px;
  }
}
.voyant-phone__alert > p:last-child {
  margin-bottom: 0;
}
.voyant-phone--online .voyant-phone__alert {
  display: none;
}
.voyant-phone--online .voyant-phone__alert--called {
  display: flex;
}
.voyant-phone--audiotel .voyant-phone__alert {
  background: rgba(95, 39, 205, 0.05);
  color: #5F27CD;
}
.voyant-phone--prive .voyant-phone__alert {
  background: rgba(16, 172, 132, 0.05);
  color: #242434;
}
.voyant--offline .voyant-phone__alert {
  background: #F8F8F8;
  color: #555555;
}
.voyant--offline .voyant-phone__promocode__offline {
  border: 1px solid #5D5D5D;
  color: #5D5D5D;
}
.voyant--offline .voyant-phone__promocode__offline:hover {
  border: 1px solid #5D5D5D !important;
  color: #5D5D5D !important;
  background: transparent !important;
}
.voyant--offline .voyant-phone__title {
  color: #5D5D5D;
}
.voyant--offline .voyant-phone__price {
  color: #5D5D5D;
}
.voyant--offline .voyant-phone__title path {
  stroke: #5D5D5D;
}
.voyant-phone__reserve {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.voyant-phone__reserve > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  min-height: 48px;
  font-size: 14px;
  color: #fff;
  line-height: 1.1428571429;
  padding: 4px;
  border-radius: 8px;
  fill: #fff;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.voyant-phone__reserve > a > span:last-child {
  display: none;
}
@media (min-width: 1200px) {
  .voyant-phone__reserve > a > span:last-child {
    display: block;
    position: relative;
    line-height: 0;
  }
}
.voyant-phone__reserve > a > span:last-child .tooltip {
  display: none;
}
@media (min-width: 1200px) {
  .voyant-phone__reserve > a > span:last-child .tooltip {
    display: block;
    bottom: calc(100% + 13px);
    right: -54px;
    max-width: 336px;
  }
  .voyant-phone__reserve > a > span:last-child .tooltip::after {
    right: 48px;
    left: auto;
    transform: translate(0);
  }
}
.voyant-phone--online .voyant-phone__reserve {
  display: none;
}
.voyant-phone--audiotel .voyant-phone__reserve > a {
  border-bottom: 2px solid #4B2C87;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%);
}
.voyant-phone--audiotel .voyant-phone__reserve > a:hover, .voyant-phone--audiotel .voyant-phone__reserve > a:active, .voyant-phone--audiotel .voyant-phone__reserve > a:focus {
  border-bottom: 2px solid #4B2C87 !important;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%) !important;
}
.voyant-phone--prive .voyant-phone__reserve > a {
  border-bottom: 2px solid #2D7865;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%);
}
.voyant-phone--prive .voyant-phone__reserve > a:hover, .voyant-phone--prive .voyant-phone__reserve > a:active, .voyant-phone--prive .voyant-phone__reserve > a:focus {
  border-bottom: 2px solid #2D7865 !important;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%) !important;
}
.voyant-phone__faq {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  fill: #fff;
}
@media (min-width: 1200px) {
  .voyant-phone__faq {
    display: none;
  }
}
.voyant-phone__faq .tooltip {
  display: none;
}
.voyant-phone--audiotel .voyant-phone__faq {
  border-bottom: 2px solid #4B2C87;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%);
}
.voyant-phone--audiotel .voyant-phone__faq:hover, .voyant-phone--audiotel .voyant-phone__faq:active, .voyant-phone--audiotel .voyant-phone__faq:focus {
  border-bottom: 2px solid #4B2C87 !important;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%) !important;
}
.voyant-phone--prive .voyant-phone__faq {
  border-bottom: 2px solid #2D7865;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%);
}
.voyant-phone--prive .voyant-phone__faq:hover, .voyant-phone--prive .voyant-phone__faq:active, .voyant-phone--prive .voyant-phone__faq:focus {
  border-bottom: 2px solid #2D7865 !important;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%) !important;
}
.voyant-phone > * {
  margin-bottom: 12px;
}
.voyant-phone > *:last-child {
  margin-bottom: 0 !important;
}
.voyant-phone--no-randevu .voyant-phone__number {
  margin-bottom: 0;
}
.voyant-phone__step {
  border: 2.4px solid #EAE5F4;
  background: #5F27CD;
  display: inline-flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  margin-right: 10px;
  vertical-align: middle;
}
.voyant-phone__number--code {
  background: #F2F2FF;
  color: #242434;
  fill: #242434;
  min-height: 62px;
  font-size: 32px;
  font-weight: 700;
  cursor: default;
}
.voyant-phone__number--code:hover,
.voyant-phone__number--code:active,
.voyant-phone__number--code:focus {
  color: #242434 !important;
  background: #F2F2FF !important;
}
.voyant-phone__note {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  color: #242434;
  margin-bottom: 0 !important;
}
.voyant-phone__prepay {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  padding: 11px 12px;
  width: 100%;
  fill: #5F27CD;
  font-size: 14px;
  line-height: 1.1428571429;
  cursor: pointer;
  letter-spacing: 0.32px;
}
@media (min-width: 1200px) {
  .voyant-phone__prepay {
    font-size: 16px;
    line-height: 1;
  }
}
.voyant-phone__prepay:focus {
  fill: #5F27CD;
}
.voyant-phone__prepay:hover, .voyant-phone__prepay:active {
  fill: #fff;
}
@media (min-width: 1200px) {
  .voyant-phone__prepay > svg {
    position: relative;
    top: -1px;
  }
}
.voyant-phone__desc > p {
  font-size: 13px;
  line-height: 1.3846153846;
}
.voyant-phone__desc > p:last-child {
  margin-bottom: 0;
}
.voyant-phone__desc > p > a {
  color: #5F27CD;
  border-bottom: 1px solid #5F27CD;
}
.voyant-phone__hidden {
  display: none;
}
.voyant-phone__hidden > * {
  margin-bottom: 12px;
}
.voyant-phone__hidden > *:last-child {
  margin-bottom: 0;
}
.voyant-phone__tooltip {
  display: none;
}

.fixed-phones {
  position: fixed;
  bottom: 56px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(115, 115, 167, 0.7);
  border-bottom: 1px solid #C0C0DD;
  padding: 6px 16px;
  z-index: 10;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: visible;
}
.fixed-phones__sticker {
  position: absolute;
  top: -53px;
  left: 10px;
  width: 70px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
/*.fixed-phones--padding-small {*/
/*  padding: 6px 16px 12px;*/
/*}*/
@media (min-width: 375px) {
  .fixed-phones {
    min-height: 100px;
  }
  /*.fixed-phones--padding-small {*/
  /*  padding: 6px 16px 12px;*/
  /*}*/
}
@media (min-width: 768px) {
  .fixed-phones {
    display: none;
  }
}

.fixed-phone {
  display: none;
  padding: 4px 0 5px;
}
.fixed-phone--online {
  padding: 0;
}
.fixed-phone--shown {
  display: block;
}
.fixed-phone__header {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-bottom: 8px;
}
.fixed-phone__header--mb {
  margin-bottom: 6px;
}
.fixed-phone__header > span {
  font-size: 0;
  line-height: 0;
  fill: #706DB0;
}
.fixed-phone__title {
  font-size: 12px;
  line-height: 1.1818181818;
  margin: 0;
  font-weight: 700;
  text-align: center;
  max-width: 269px;
  display: none;
}
.fixed-phone__title--active {
  display: block;
}
.fixed-phone__title--small {
  font-size: 11px;
}
.fixed-phone__tooltip {
  display: none;
}
.fixed-phone__number {
  display: none;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 7px;
  color: #fff;
  fill: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 700;
  min-height: 45px;
}
@media (min-width: 375px) {
  .fixed-phone__number {
    font-size: 20px;
    line-height: 1.05;
    min-height: 49px;
    padding: 9px;
  }
  .fixed-phone__title {
    max-width: 318px;
  }
  .fixed-phone__title--small {
    font-size: 13px;
  }
}
.fixed-phone__number:hover, .fixed-phone__number:active, .fixed-phone__number:focus {
  color: #fff;
}
.fixed-phone__number > svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  position: relative;
  top: -1px;
}
@media (min-width: 375px) {
  .fixed-phone__number > svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    top: 0;
  }
}
.fixed-phone__number > span:nth-child(2) {
  white-space: nowrap;
}
.fixed-phone--online .fixed-phone__number {
  display: flex;
}
.fixed-phone--audiotel .fixed-phone__number {
  border-bottom: 2px solid #4B2C87;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%);
}
.fixed-phone--audiotel .fixed-phone__number:hover, .fixed-phone--audiotel .fixed-phone__number:active, .fixed-phone--audiotel .fixed-phone__number:focus {
  border-bottom: 2px solid #4B2C87 !important;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%) !important;
}
.fixed-phone--prive .fixed-phone__number {
  border-bottom: 2px solid #2D7865;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%);
}
.fixed-phone--prive .fixed-phone__number:hover, .fixed-phone--prive .fixed-phone__number:active, .fixed-phone--prive .fixed-phone__number:focus {
  border-bottom: 2px solid #2D7865 !important;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%) !important;
}
.fixed-phone--promo .fixed-phone__number {
  border-bottom: 2px solid #B68A2A;
  background: linear-gradient(180deg, #FECA57 0%, #EDB947 100%);
  color: #242434;
  fill: #242434;
}
.fixed-phone--promo .fixed-phone__number:hover, .fixed-phone--promo .fixed-phone__number:active, .fixed-phone--promo .fixed-phone__number:focus {
  fill: #242434;
  color: #242434 !important;
  border-bottom: 2px solid #B68A2A !important;
  background: linear-gradient(180deg, #FECA57 0%, #EDB947 100%) !important;
}
.fixed-phone__prices {
  font-size: 12px;
  line-height: 1.0833333333;
  margin-left: 1px;
  width: -moz-fit-content;
  width: fit-content;
}
.fixed-phone__price {
  display: block;
  font-size: 12px;
  line-height: 1.0833333333;
  letter-spacing: 0.1px;
}
.fixed-phone__price--new {
  display: none;
  margin-bottom: 3px;
}
.fixed-phone--promo .fixed-phone__price--new {
  display: block;
}
.fixed-phone--promo .fixed-phone__price--old {
  font-weight: 400;
  opacity: 0.7;
  text-decoration: line-through;
}
.fixed-phone__reserve {
  padding: 11px 11px 9px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
}
.fixed-phone__reserve:hover {
  color: #fff;
}
@media (min-width: 375px) {
  .fixed-phone__reserve {
    padding: 12px 13px 10px;
  }
}
.fixed-phone--online .fixed-phone__reserve {
  display: none;
}
.fixed-phone--online .fixed-phone__reserve--visible {
  display: block;
}
.fixed-phone--audiotel .fixed-phone__reserve {
  border-bottom: 2px solid #4B2C87;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%);
}
.fixed-phone--audiotel .fixed-phone__reserve:hover, .fixed-phone--audiotel .fixed-phone__reserve:active, .fixed-phone--audiotel .fixed-phone__reserve:focus {
  border-bottom: 2px solid #4B2C87 !important;
  background: linear-gradient(180deg, rgba(95, 39, 205, 0.76) 0%, rgba(95, 39, 205, 0.95) 100%) !important;
}
.fixed-phone--prive .fixed-phone__reserve {
  border-bottom: 2px solid #2D7865;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%);
}
.fixed-phone--prive .fixed-phone__reserve:hover, .fixed-phone--prive .fixed-phone__reserve:active, .fixed-phone--prive .fixed-phone__reserve:focus {
  border-bottom: 2px solid #2D7865 !important;
  background: linear-gradient(180deg, rgba(17, 155, 120, 0.76) 0%, rgba(17, 155, 120, 0.95) 100%, #119B78 100%) !important;
}

.comments-form {
   position: relative;
}
.comments-form__sticker {
  position: absolute;
  top: -55px;
  right: -5px;
  width: 110px;
  height: 113px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 375px) {
  .comments-form {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .comments-form {
    padding: 24px;
  }
  .comments-form__sticker {
    top: -60px;
    right: -10px;
  }
}
@media (min-width: 1200px) {
  .comments-form__sticker {
    top: -55px;
    right: -12px;
  }
}
.comments-form__title {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .comments-form__title {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.5;
  }
}
.comments-form__desc {
  margin-bottom: 16px;
}
.comments-form__desc span {
  font-weight: 700;
  color: #5F27CD;
  cursor: pointer;
}
.comments-form__desc span:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .comments-form__desc {
    margin-bottom: 24px;
  }
}
.comments-form__desc > p {
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .comments-form__desc > p {
    font: 400 16px/1.75 "Arial", sans-serif;
  }
}
.comments-form__desc > p:last-child {
  margin-bottom: 0;
}
.auth__logout {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #5F27CD;
  margin-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
}

@media (min-width: 375px) {
 .auth-logout {
  letter-spacing: 0px;
 }
}


.modal-comment__dialog .auth__logout {
  font-size: 13px;
  letter-spacing: -0.2px;
}

@media (min-width: 345px) {
  .modal-comment__dialog .auth__logout {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .modal-comment__dialog .auth__logout {
    font-size: 13px;
  }
}

@media (min-width: 1200px) {
  .modal-comment__dialog .auth__logout {
    letter-spacing: 0px; 
  }
}




.auth__logout:hover {
  opacity: 0.7;
  color: #5F27CD;
}
.auth__form__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #F7F7FD;
  border-radius: 8px;
  margin-bottom: 16px;
  width: 100%;
}
.auth__form__item__dots {
  position: relative;
}
.auth__form__item__dots--header .auth__form__item__dots__content__row__text {
  color: #3B3A46;
}
.auth__form__item__dots--active .auth__form__item__dots__content {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.auth__form__item__dots__content {
  position: absolute;
  z-index: 1;
  right: -15px;
  top: calc(100% + 11px);
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px 0 rgba(34, 34, 34, 0.2509803922);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s;
}
.auth__form__item__dots__content--header {
  right: -13px;
}
.auth__form__item__dots__content__rect {
  position: absolute;
  right: 13px;
  top: -10px;
  z-index: 1;
}
.auth__form__item__dots__content__row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
.auth__form__item__dots__content__row:hover {
  opacity: 0.7;
}
.auth__form__item__dots__content__row__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  color: #ADADC3;
  white-space: nowrap;
  margin-bottom: 0;
  text-transform: none;
}
.auth__form__item__dots__content__row__img img {
  max-width: none;
}
.auth__form__item__dots__button {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
  cursor: pointer;
}
.auth__form__item__dots__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9C9CB6;
}
.auth__form__item__dots__dot--white {
  background: #fff;
}
.auth__form__item__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 5px;
  color: #000;
}
.auth__form__item__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  color: #242434;
  display: flex;
  align-items: center;
  gap: 6px;
}
.auth__form__item__id {
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
}
.auth__form__item__photo {
  width: 50px;
  min-width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth__form__item__photo img {
  max-width: 100%;
  height: auto;
}
.auth__form__item__box {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (min-width: 1200px) {
  .auth__form__item__dots__content--header {
    right: -11px;
  }
}

/*MAX width*/
@media (max-width: 575px) {
  .auth__logout {
    margin-top: 8px;
  }
  .auth__form__item {
    padding: 12px;
  }
  .auth__form__item__name {
    font-size: 18px;
    line-height: 20px;
  }
  .auth__form__item__photo {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}

@media (max-width: 375px) {
  .auth__form__item {
    padding: 13px 12px;
  }
  .auth__form__item__box {
    gap: 8px;
  }
  .auth__form__item__photo {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}

@media (min-width: 768px) {
  .comments-form__form {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.comments-form__group {
  margin-bottom: 16px;
  line-height: 0;
}
@media (min-width: 768px) {
  .comments-form__group {
    margin-bottom: 24px;
    flex: 0 0 100%;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .comments-form__group:nth-child(1), .comments-form__group:nth-child(2) {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}
.comments-form__group:last-child {
  margin-bottom: 0;
}
.comments-form__group .textarea {
  min-height: 100px;
}
.comments-form__rating {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #C0C0DD;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 8px;
}
@media (min-width: 768px) {
  .comments-form__rating {
    align-items: center;
  }
}
.comments-form__rating > h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .comments-form__rating > h4 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.comments-form__rating > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
@media (min-width: 768px) {
  .comments-form__rating > ul {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.comments-form__rating > ul > li {
  line-height: 0;
  font-size: 0;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  background: #EEEFF5;
  cursor: pointer;
}
@media (min-width: 768px) {
  .comments-form__rating > ul > li {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }
}
.comments-form__rating > ul > li > img {
  transition: 0.3s ease;
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .comments-form__rating > ul > li > img {
    width: 26px;
    height: 26px;
  }
}
.comments-form__rating > ul > li > img:nth-child(2) {
  opacity: 0;
}
.comments-form__rating > ul > li.selected > img {
  width: 36px;
  height: 36px;
}
@media (min-width: 768px) {
  .comments-form__rating > ul > li.selected > img {
    width: 38px;
    height: 38px;
  }
}
.comments-form__rating > ul > li.selected > img:nth-child(1) {
  opacity: 0;
}
.comments-form__rating > ul > li.selected > img:nth-child(2) {
  opacity: 1;
}
@media (hover: hover) and (min-width: 768px) {
  .comments-form__rating > ul > li:hover > img {
    width: 38px;
    height: 38px;
  }
}
.comments-form__total {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
@media (min-width: 768px) {
  .comments-form__total {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media (min-width: 768px) {
  .comments-form__total--mobile {
    display: none;
  }
}
.comments-form__total--desktop {
  display: none;
}
@media (min-width: 768px) {
  .comments-form__total--desktop {
    display: flex;
  }
}
.comments-form__total > svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  position: relative;
  top: -2px;
}
@media (min-width: 768px) {
  .comments-form__total > svg {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
  }
}
.comments-form__total > p {
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 2.5px;
  line-height: 23px;
  display: block;
}
@media (min-width: 768px) {
  .comments-form__total > p {
    font-size: 16px;
  }
}
.comments-form__total > p > span {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .comments-form__total > p > span {
    font-size: 24px;
  }
}
.comments-form__submit {
  width: 100%;
  cursor: pointer;
}

.voyant-comments {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 16px;
  padding: 0;
  box-shadow: none;
  background: transparent;
}
/*@media (min-width: 1200px) {*/
/*  .voyant-comments {*/
/*    margin-bottom: 0;*/
/*  }*/
/*}*/
.voyant-comments__item {
  margin-left: -16px;
  margin-right: -16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
  margin-bottom: 20px;
}
@media (min-width: 375px) {
  .voyant-comments__item {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}
@media (min-width: 768px) {
  .voyant-comments__item {
    padding: 24px;
  }
}
.voyant-comments__item:last-child {
  margin-bottom: 0;
}

.voyant-comment {
  margin-bottom: 24px;
}
.voyant-comment .moderate__msg__row__name:hover {
  text-decoration: underline;
  cursor: pointer;
}
.voyant-comment--moderate {
  outline: 1px solid #FECA57;
  background: #FECA571A;
  padding: 12px;
  border-radius: 10px;
  margin-top: 10px;
}
.voyant-comment--before-moderate::before {
  display: none;
}
.voyant-comment--moderate:last-child::after {
  display: none;
}
.voyant-comment--moderate::after {
  background: #DADAF3;
  width: 1px !important;
}
.voyant-comment--moderate .voyant-comment__text {
  margin-left: -36px;
  line-height: 20px;
  font-size: 15px;
}
.voyant-comment--moderate .voyant-comment__head {
  margin-top: 5px;
}
.voyant-comment--moderate .voyant-comment__actions {
  margin-left: -36px;
}
.voyant-comment--moderate-4 {
  outline: 1px solid #FECA57;
  background: #FECA571A;
  padding: 12px;
  border-radius: 10px;
  width: calc(100% - 36px);
  margin-left: auto;
  margin-top: -14px;
}
.voyant-comment--moderate-4::before {
  left: -57px !important;
  top: -24px !important;
  height: calc(100% + 5px) !important;
}
.voyant-comment--moderate-4::after {
  display: none;
}
.voyant-comment--moderate-4 .voyant-comment__text {
  margin-left: -36px;
  line-height: 20px;
  font-size: 15px;
}
.voyant-comment--moderate-4 .voyant-comment__head {
  margin-top: 5px;
}
.voyant-comment--moderate-4 .voyant-comment__actions {
  margin-left: -36px;
}
.voyant-comment--before-moderate-4::before {
  display: none !important;
}
@media (min-width: 768px) {
  .voyant-comment--moderate .voyant-comment__text {
    margin-left: -44px;
  }
  .voyant-comment--moderate .voyant-comment__actions {
    margin-left: -44px;
  }
  .voyant-comment--moderate-4 {
    width: calc(100% - 44px);
  }
  .voyant-comment--moderate-4 .voyant-comment__text {
    margin-left: -44px;
  }
  .voyant-comment--moderate-4 .voyant-comment__actions {
    margin-left: -44px;
  }
  .voyant-comment--moderate-4::before {
    left: -72px !important;
  }
}
@media (min-width: 1200px) {
  .voyant-comment--moderate {
    margin-top: 12px;
  }
}
.voyant-comment:last-child {
  margin-bottom: 0;
}
.voyant-comment__no-comment {
  box-shadow: 0px 0px 4px 0px #7373A733;
  padding: 32px 24px;
  background: #FFFFFF;
  margin-left: -16px;
  margin-right: -16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #242434;
}
@media (min-width: 375px) {
  .voyant-comment__no-comment {
    border-radius: 8px;
    margin: 0;
  }
}
.voyant-comment__inner {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (min-width: 768px) {
  .voyant-comment__inner {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.voyant-comment__image {
  margin: 0;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}
.voyant-comment__image svg{
  display: none;
}
.voyant-comment__image--moderator {
  position: relative;
}
.voyant-comment__image--moderator svg {
  display: block;
  position: absolute;
  right: -3px;
  bottom: -4px;
}
.voyant-comment__image--moderator img, .voyant-comment__image--medium img {
  border: 1px solid #5F27CD;
}
@media (min-width: 768px) {
  .voyant-comment__image {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }
}
.voyant-comment__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.voyant-comment__content {
  flex-grow: 1;
  min-width: 0;
}
.voyant-comment__content:has(.voyant-comment) > .voyant-comment__body {
/* .voyant-comment__content  .voyant-comment__body { */
  position: relative;
}
.voyant-comment__content:has(.voyant-comment) > .voyant-comment__body::before {
/* .voyant-comment__content .voyant-comment__body::before { */
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 38px);
  background: #DADAF3;
  left: -21px;
  top: 38px;
}
@media (min-width: 768px) {
  .voyant-comment__content:has(.voyant-comment) > .voyant-comment__body::before {
  /* .voyant-comment__content .voyant-comment__body::before { */
    left: -28px;
    top: 44px;
  }
}
.voyant-comment__body {
  padding-top: 2px;
  margin-bottom: 24px;
  position: relative;
}
.voyant-comment__body:has(+ .voyant-comment--moderate) {
  margin-bottom: 10px;
}
.voyant-comment__body:has(.voyant-comment--moderate)::before {
  display: none;
}
.voyant-comment__body--moderate::before {
  display: none;
}
.voyant-comment__body:last-child {
  margin-bottom: 0;
}
.voyant-comment__body::after {
  content: "";
  position: absolute;
  top: -12px;
  left: -48px;
  right: -12px;
  bottom: -12px;
  border-radius: 8px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .voyant-comment__body::after {
    left: -56px;
  }
}
.voyant-comment__body.blink::after {
  animation: blink 1s linear;
}
.voyant-comment__body > * {
  position: relative;
  z-index: 1;
}
.voyant-comment__body ~ .voyant-comment {
  position: relative;
}
.voyant-comment__body ~ .voyant-comment::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 48px);
  background: #DADAF3;
  left: -21px;
  top: 48px;
}
@media (min-width: 768px) {
  .voyant-comment__body ~ .voyant-comment::before {
    left: -28px;
  }
}
.voyant-comment__body ~ .voyant-comment:last-child::before {
  display: none;
}
.voyant-comment__body ~ .voyant-comment::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 57px;
  left: -21px;
  bottom: calc(100% - 14px);
  background-image: url(https://img.gestion.ph/avenirtel.fr/newIntegration/img/icons/comment-line.svg);
  background-repeat: no-repeat;
  background-size: 15px 57px;
  background-position: center;
}
@media (min-width: 768px) {
  .voyant-comment__body ~ .voyant-comment::after {
    left: -28px;
  }
}
.voyant-comment__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  max-width: 100%;
  gap: 5px;
}
.voyant-comment__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333333333;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 6px;
       column-gap: 6px;
  overflow: hidden;
  max-width: 100%;
}
.voyant-comment__name__reject {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  text-align: left;
  color: #242434;
  background: #F3F3FF;
  border-radius: 5px;
  padding: 4px 6px;
  white-space: nowrap;
  white-space: nowrap;
}
.voyant-comment__name__span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.voyant-comment__link {
  cursor: pointer;
}
.voyant-comment__link--text {
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s;
}
.voyant-comment__link--text:hover {
  color: #5f27cd;
}
.voyant-comment__name__veri {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.35199999809265137px;
  text-align: center;
  color: #706DB0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .voyant-comment__name {
    font-size: 20px;
    line-height: 1.2;
  }
}
.voyant-comment__name > img {
  width: 17px;
  height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.voyant-comment__rating {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  margin-top: 3px;
}
.voyant-comment__rating--reject {
  position: relative;
}
.voyant-comment__rating--reject::before {
  content: '';
  position: absolute;
  height: 1px;
  left: -2px;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
}
.voyant-comment__text {
  margin-bottom: 10px;
  overflow: hidden;
}
.voyant-comment__text--reject>p {
  text-decoration: line-through;
}
.voyant-comment__text--moderator {
  border: 1px solid #FECA57;
  background: #FECA571A;
  padding: 8px 12px;
  border-radius: 10px;
  line-height: 20px;
  font-size: 15px;
}
.voyant-comment__text--voyant {
  border: 1px solid #5F27CD;
  background: #5F27CD0D;
  padding: 8px 12px;
  border-radius: 10px;
}
.voyant-comment__text > p {
  font-size: 15px;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .voyant-comment__text > p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.voyant-comment__text > p:last-child {
  margin-bottom: 0;
}
.voyant-comment__text > p > b {
  color: #5F27CD;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.voyant-comment__text > p > b:hover {
  border-color: #5F27CD;
}
.voyant-comment__actions {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 376px) {
  .voyant-comment__actions {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 768px) {
  .voyant-comment__actions {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}

.voyant-comment__time {
  color: #706DB0;
  font: 700 12px/16px 'Arial', sans-serif;
}
.voyant-comment__response {
  cursor: pointer;
  color: #5F27CD;
  font: 700 14px/16px 'Arial', sans-serif;
  border-bottom: none;
  transition: 0.3s ease;
}
.voyant-comment__response:hover {
  border-color: #5F27CD;
}
.voyant-comment__response--disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes blink {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(179, 179, 231, 0.2);
  }
  100% {
    background-color: transparent;
  }
}/*# sourceMappingURL=style.css.map */



.home-blog__content img,
.single-post__content img {
  width: 100%;
  height: auto;
}

.medium-card__types {
  text-transform: capitalize;
}

.cell .empty_bar {
  background: #C0C0DD;
  border-radius: 2px;
  width: 7px;
  height: 8px;
  margin-bottom: 0;
}

.horoscope-card__header img {
  width: 30px;
}

.medium-card {
  position: relative;
}

.medium-card--unactive::after {
  content: "";
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  background-color: #00000020;
}

.audio-player__body {
  overflow: hidden;
}

.audio-player__progress-bar {
  display: flex;
  position: absolute;
  left: 0px;
  max-width: 100%;
  height: 28px;
  width: 27px;
  background-color: #E3D4FF;
  border-radius: 0px 14px 14px 0px;
  top: 0px;
}

.audio-player__button > span {
  top: 6px;
  left: 6px;
}
.audio-player__button {
  width: 28px;
  height: 28px;
  top: 0px;
  left: 0px;
  z-index: 3;
}
.audio-player__waveform {
  width: calc(100% - 14px);
  display: flex;
  height: 100%;
  position: absolute;
  left: 14px;
  z-index: 2;
  cursor: auto;
}

.audio-player__waveform wave {
  width: 100%;
  border-right: none !important;
  cursor: pointer;
}

.audio-player__button.play span {
  animation: pause2 2s infinite steps(3);
}
@keyframes pause2 {
  0% {
    width: 7.8px;
  }
  100% {
    width: 18px;
  }  
}

.promo-code__error {
  display: none;
  margin-bottom: 16px;
}

.promo-code__error > span {
  display: none;
  color: #ee5353;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  margin-top: -4px;
}

/* promocode info */
.promocode_info {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1103;
}

.promocode_content {
  display: flex;
  position: absolute;
  right: -500px;
  top: 0px;
  flex-direction: column;
  width: 488px;
  background-color: #fff;
  padding: 32px;
  gap: 24px;
  height: 100%;
  transition: right 0.3s;   
  box-shadow: 0px 4px 12px 0px #00000040;
}

.promocode_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.promocode_title {
  font: 700 24px/32px Arial;
  color: #242434;
}

.promocode_header button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.promocode_body {
  display: flex;
  flex-direction: column;
  background-color: #FECA5726;
  padding: 16px;
  border-radius: 8px;
  gap: 12px;
}

.promocode_body_title {
  font: 700 20px/30px Arial;
  color: #242434;
}

.promocode_body_text {
  font: 400 16px/24px Arial;
  color: #242434;
}

.promocode_expired {
  display: flex;
  gap: 8px;
  font: 700 14px/16.1px Arial;
  color: #706DB0;
  align-items: center;
}

#promocode_expired_time {
  display: flex;
  font: 700 20px/30px Arial;
  color: #242434;
  background-color: unset !important;
}

.promocode_remove {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #F75F5F;
  justify-content: center;
  align-items: center;
  background: none;
  cursor: pointer;
}

.promocode_remove span {
  font: 400 16px/20px Arial;
  color: #F75F5F;
}

@media (max-width: 1024px) {


  .promocode_info {
    align-items: center;
    justify-content: center;
  }

  .promocode_content {
    position: unset;
    height: fit-content;
    width: 423px;
    border-radius: 8px;
    padding: 16px;
  }
}

@media (max-width: 470px) {
  .promocode_content {
    width: calc(100vw - 48px);
  }

  .promocode_expired {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 357px) {
  .promocode_content {
    width: calc(100vw - 32px);
    padding: 16px;
  }
}


/* promocode remove modal */

.promocode_remove_modal {
  display: none;
  position: fixed;
  background-color: #00000014;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1103;
}


.promo-inline-badge {
  display: inline-block;
  padding: 2px 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #242434;
  border-radius: 2px;
  background-color: #FECA57;
  text-transform: uppercase;
}


.promocode_remove_content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  gap:12px;
  box-shadow: 0px 0px 12px 0px #00000033;
  background-color: #fff;
  width: 394px;
  align-items: center;
}

.promocode_remove_image {
  margin-top: 12px;
  display: flex;  
}

.promocode_remove_image img {
  width: 50px;
  height: 50px;
}

.promocode_remove_text {
  font: 700 20px/23px Arial;
  color: #242434;
  text-align: center;
}

.promocode_remove_actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}

.promocode_remove_actions button {
  font: 400 16px/20px Arial;
  border-radius: 8px;
  padding: 14px 32px;
  width: 100%;
  cursor: pointer;
}

.promocode_remove_cancel {
  border: 1px solid #5F27CD;
  color: #5F27CD;
  background: #FFF;
}

.promocode_remove_success {
  border: 1px solid #5F27CD;
  background: #5F27CD;
  color: #fff;
}

@media (max-width: 470px) {
  .promocode_remove_content {
    width: calc(100vw - 48px);
  }
}

@media (max-width: 357px) {
  .promocode_remove_content {
    width: calc(100vw - 32px);
    padding: 16px;
  }
}

/* эффекты наведения на кнопку */
.promocode_remove:hover {
  background-color: #FFFAFA;
}



.promocode_remove_success:hover {
  background-color: #7F47ED;
}

@media (min-width: 1024px) {
  .flow-in .promocode_content {
    right: 0px;
  }
}

#receiver {
  position: absolute;
  padding: 13px 16px;
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #5F27CD;
  display: contents;
  text-transform: capitalize;
}

#tech_works .merci_content, #merci .merci_content, #merci_comment .merci_content, #comment_status_err_client .merci_content {
  position: relative;
  width: 394px;
  padding: 24px;
}

.merci__body {
  opacity: 1;
  visibility: visible;
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: rgb(0 0 0 / 30%);
}

.merci_content {
  display: flex;
  width: 328px;
  padding: 40px 30px 30px;
  /* height: 500px; */
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 0px 4px #7373a733;
  justify-content: center;
  align-items: center;
}

.merci_block {
  /* width: 240px; */
  /* height: 412px; */
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.merci_top {
  display: flex;
  width: 240px;
  height: 240px;
  justify-content: center;
  align-items: center;
}

.merci_top > img {
  object-fit: contain;
}

.mm_title {
  font-size: 20px;
  color: #242434;
  font-weight: 700;
  width: 100%;
  text-align: center;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.mm_subtitle {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  font-size: 15px;
  color: #242434;
  letter-spacing: 0px;
  line-height: 20px;
  text-align: center;
}

.merci_bottom {
  display: flex;
  width: 100%;
  height: 48px;
  justify-content: center;
  align-items: center;
}

.merci_btn {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #5f27cd;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 20px;
  border-style: none;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.merci_btn:hover {
  cursor: pointer;
}

.filt-btn {
  display: none;
}

@media screen and (max-width: 349px) {
  .merci_content {
    width: 100%;
    margin: 0 8px;
  }
}

/* merci panel */

/* #merci_comment {
  position: relative;
} */
#tech_works .merci_content,
#merci .merci_content,
#merci_comment .merci_content,
#comment_status_err_client .merci_content{
  position: relative;
  width: 394px;
  padding: 24px;
}


#comment_status_err_client .merci_top > img {
  width: 50px;
}

#merci .merci_top > img,
#merci_comment .merci_top > img {
  width: 50px;
}

#tech_works .merci_top > img {
  width: 115px;
}

#tech_works .merci_top,
#merci .merci_top,
#merci_comment .merci_top,
#comment_status_err_client .merci_top {
  width: 100%;
  height: auto;
}
#tech_works .merci_top,
#merci .merci_top,
#merci_comment .merci_top,
#comment_status_err_client .merci_top {
  margin-top: 12px;
}

#tech_works .mm_title,
#merci .mm_title,
#merci_comment .mm_title {
  color: #242434;
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: initial;
  font-weight: 500;
}

#tech_works .merci_block {
  gap: 16px;
}

#merci .merci_block,
#merci_comment .merci_block {
  gap: 24px;
}

#tech_works .mm_description,
#merci .mm_description,
#merci_comment .mm_description,
#comment_status_err_client .mm_description {
  /* padding-top: 16px; */
  font-size: 11px;
  text-align: center;
}
#tech_works .merci_middle,
#merci .merci_midle,
#merci_comment .merci_midle {
  gap: 12px;
  display: flex;
  flex-direction: column;
}

#tech_works .merci_bottom,
#merci .merci_bottom,
#merci_commen .merci_bottom {
  height: 44px;
}

#tech_works .merci_bottom {
  margin-top: 4px;
}

#tech_works .merci_btn,
#merci .merci_btn,
#merci_comment .merci_btn {
  width: 100%;
}

/* #closeMerci:not(.merci_close__button) { */
.merci_btn:not(.merci_close__button) {
  min-width: 176px;
}

#tech_works .mm_title {
  margin-bottom: 6px;
}

.merci_close__button {
  position: absolute;
  top: 0;
  right: 0;
  border: unset;
  background-color: unset;
  cursor: pointer;
}

#comment_status_err_client .merci_block {
  gap: 16px;
}

#comment_status_err_client .merci_midle {
  padding-bottom: 8px;
}

#comment_status_err_client .mm_title {
  color: #242434;
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 12px;
  font-weight: 500;
}
#comment_status_err_client .merci_bottom {
  height: 44px;
}

#comment_status_err_client .merci_btn {
  width: 100%;
}

@media ( max-width: 700px ) {
  #merci_comment .merci_top,
  #comment_status_err_client .merci_top {
    width: 350px;
  }
}

@media ( max-width: 480px ) {
  #merci_comment .merci_content,
  #comment_status_err_client .merci_content {
    width: 300px;
    padding: 24px;

  }

  #merci_comment .merci_top,
  #comment_status_err_client .merci_top {
    width: 260px;
  }

  #merci_comment .mm_title {
    font-size: 17px;
    line-height: 25px;
  }
}

@media (max-width: 768px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 13px;
    padding: 5.5px 12px;
  }
}

@media (max-width: 740px) {
  .card__tag_and_number .btn-show-numbers {
    padding: 5.5px 6px;
  }
}

@media (max-width: 730px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 11px;
    padding: 5.5px 6px;
  }
}

@media (max-width: 705px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 11px;
    padding: 5.5px 3px;
  }
  .card__phone_number_tarif {
    font-size: 11px;
  }
}

@media ( max-width: 702px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 11px;
    padding: 5.5px 3px;
  }
}

/* @media ( max-width: 681px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 11px;
    padding: 5.5px 0px;
  }
} */



@media ( max-width: 680px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 13px;
    padding: 5.5px 17px;
  }
  .card__phone_number_tarif {
    font-size: 12px;
  }


  #tech_works .merci_block {
    gap: 12px;
  }
  #tech_works .merci_top,
  #merci .merci_top,
  #merci_comment .merci_top {
    margin-top: 0px;
    margin-bottom: -8px;
  }
  #merci .mm_subtitle,
  #merci_comment .mm_subtitle {
    font-size: 14px;
  }
  #merci .merci_top > img,
  #merci_comment .merci_top > img,
  #comment_status_err_client .merci_top > img {
    width: 46px;
    height: 46px;
  }
  #tech_works .merci_top > img {
    width: 96px;
  }
  #tech_works .merci_content {
    max-width: 328px;
  }
  #tech_works .merci_top {
    margin-bottom: 0px;
  }
  #merci .merci_content,
  #merci_comment .merci_content, 
  #comment_status_err_client .merci_content {
    width: 328px;
  }
  #merci .merci_top, #merci_comment .merci_top, #comment_status_err_client .merci_top {
    width: 100%;
  }
}
@media (max-width: 428px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 14px;
    padding: 5.5px 12px;
  }
}

@media (max-width: 410px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 13px;
    padding: 5.5px 10px;
  }
}
@media (max-width: 405px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 13px;
    padding: 5.5px 5px;
  }
}

@media (max-width: 390px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 13px;
    padding: 5.5px 5px;
  }
}

@media (max-width: 380px) {
  .card__tag_and_number .btn-show-numbers {
    font-size: 12px;
    padding: 5.5px 6px;
  }
  .card__phone_number_tarif {
    font-size: 11px;
  }
}

@media (max-width: 374px) {
  #merci .merci_top > img, #merci_comment .merci_top > img, #comment_status_err_client .merci_top > img {
    width: 40px;
    height: 40px;
  }
  #merci .merci_content, #merci_comment .merci_content, #comment_status_err_client .merci_content {
    width: 288px;
  }
  #tech_works .merci_content {
    width: calc(100vw - 44px);
  }
}

.blog-pagination a.active {
    color: #fff;
    border-color: #5F27CD;
    background: #5F27CD;
}

.select2-container {
  width: 75px !important;
  left: 8px;
  top: 9px;
  position: absolute !important;
  z-index: 1101;
}
.select2-container--default .select2-selection--single {
  border: none !important;
}

.select2-dropdown.select2-dropdown--below, .select2-dropdown.select2-dropdown--above {
  width: 260px !important;
}

#tel-1,
#tel-2 {
  position: relative;
  padding-left: 0px;
  width: calc(100% - 85px);
  margin-left: 85px;
  border: 0px;
}

#tel-1 + label,
#tel-2 + label {
  margin-left: 85px;
}
#tel-1:focus + label,
#tel-1:valid + label,
#tel-2:focus + label,
#tel-2:valid + label {
  top: 0;
  transform: scale(0.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin-left: 0px;
  font-weight: 700;
  color: #5F27CD;
}
#tel-1::-moz-placeholder-shown + label,
#tel-2::-moz-placeholder-shown + label {
  top: 0;
  transform: scale(0.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin-left: 0px;
  font-weight: 700;
}
#tel-1::placeholder-shown + label,
#tel-2::placeholder-shown + label {
  top: 0;
  transform: scale(0.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin-left: 13px;
  font-weight: 700;
}

.extended-phone-container {
  background-color: #fff;
  border-radius: 8px;
  color: #242434;
  height: auto;
  transition: 0.3s ease, background-position 0s;
  border: 1px solid #C0C0DD;
  width: 100%;
  padding: 0px 0px;
  font-size: 15px;
  line-height: 1.3333333333;
}

.extended-phone-container:hover { 
  border-color: #5F27CD;
    background-color: transparent !important;
}

.extended-phone-container.error {
  border-color: #F75F5F;
}

.extended-phone-container.error #tel-1 + label,
.extended-phone-container.error #tel-2 + label {
  margin-left: 0px;
}
.form-control.error + label {
  color: #706DB0;
}

.error::placeholder,
.extended-phone-container.error input::placeholder {
  color: #F75F5F;
}

.medium-card__prices,
.voyant-phone__prices,
.fixed-phone__prices {
  text-transform: uppercase;
}


.medium-card__calls a,
.medium-card__rating a,
.voyant-card__calls a,
.voyant-card__rating a,
.fixed-phone__calls a {
  pointer-events: none;
}

@media (min-width: 1200px) {
  .home-sticky.scrolling .sticky-cats {
      box-shadow: 0px 3px 6px #7373a733;
      border-radius: 0 !important;
  }
}

.spoiler__header {
  align-items: flex-start;
}

.medium-card__title:hover {
  color: #5f27cd;
}

.medium-card:hover .medium-card__permalink {
	animation: jittery 4s infinite;
	-webkit-animation: jittery 4s infinite;
}

@keyframes jittery {
	5%,
	50% {
		transform: scale(1);
	}
	10% {
		transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
}
	15% {
		transform: scale(1.05);
		-webkit-transform: scale(1.05);
		-moz-transform: scale(1.05);
		-ms-transform: scale(1.05);
		-o-transform: scale(1.05);
}
	20% {
		transform: scale(1.05) rotate(-5deg);
		-webkit-transform: scale(1.05) rotate(-5deg);
		-moz-transform: scale(1.05) rotate(-5deg);
		-ms-transform: scale(1.05) rotate(-5deg);
		-o-transform: scale(1.05) rotate(-5deg);
}
	25% {
		transform: scale(1.05) rotate(5deg);
		-webkit-transform: scale(1.05) rotate(5deg);
		-moz-transform: scale(1.05) rotate(5deg);
		-ms-transform: scale(1.05) rotate(5deg);
		-o-transform: scale(1.05) rotate(5deg);
}
	30% {
		transform: scale(1.05) rotate(-3deg);
		-webkit-transform: scale(1.05) rotate(-3deg);
		-moz-transform: scale(1.05) rotate(-3deg);
		-ms-transform: scale(1.05) rotate(-3deg);
		-o-transform: scale(1.05) rotate(-3deg);
}
	35% {
		transform: scale(1.05) rotate(2deg);
		-webkit-transform: scale(1.05) rotate(2deg);
		-moz-transform: scale(1.05) rotate(2deg);
		-ms-transform: scale(1.05) rotate(2deg);
		-o-transform: scale(1.05) rotate(2deg);
}
	40% {
		transform: scale(1.05) rotate(0);
		-webkit-transform: scale(1.05) rotate(0);
		-moz-transform: scale(1.05) rotate(0);
		-ms-transform: scale(1.05) rotate(0);
		-o-transform: scale(1.05) rotate(0);
}
}

.cell .part.gratuit_bar {
  background: #5F27CD;
}

.cell[data-discount="0"].promo::after { content:' '; }
.cell[data-discount="1"].promo::after { content:'-1%'; }
.cell[data-discount="2"].promo::after { content:'-2%'; }
.cell[data-discount="3"].promo::after { content:'-3%'; }
.cell[data-discount="4"].promo::after { content:'-4%'; }
.cell[data-discount="5"].promo::after { content:'-5%'; }
.cell[data-discount="6"].promo::after { content:'-6%'; }
.cell[data-discount="7"].promo::after { content:'-7%'; }
.cell[data-discount="8"].promo::after { content:'-8%'; }
.cell[data-discount="9"].promo::after { content:'-9%'; }
.cell[data-discount="10"].promo::after { content:'-10%'; }
.cell[data-discount="11"].promo::after { content:'-11%'; }
.cell[data-discount="12"].promo::after { content:'-12%'; }
.cell[data-discount="13"].promo::after { content:'-13%'; }
.cell[data-discount="14"].promo::after { content:'-14%'; }
.cell[data-discount="15"].promo::after { content:'-15%'; }
.cell[data-discount="16"].promo::after { content:'-16%'; }
.cell[data-discount="17"].promo::after { content:'-17%'; }
.cell[data-discount="18"].promo::after { content:'-18%'; }
.cell[data-discount="19"].promo::after { content:'-19%'; }
.cell[data-discount="20"].promo::after { content:'-20%'; }
.cell[data-discount="21"].promo::after { content:'-21%'; }
.cell[data-discount="22"].promo::after { content:'-22%'; }
.cell[data-discount="23"].promo::after { content:'-23%'; }
.cell[data-discount="24"].promo::after { content:'-24%'; }
.cell[data-discount="25"].promo::after { content:'-25%'; }
.cell[data-discount="26"].promo::after { content:'-26%'; }
.cell[data-discount="27"].promo::after { content:'-27%'; }
.cell[data-discount="28"].promo::after { content:'-28%'; }
.cell[data-discount="29"].promo::after { content:'-29%'; }
.cell[data-discount="30"].promo::after { content:'-30%'; }
.cell[data-discount="31"].promo::after { content:'-31%'; }
.cell[data-discount="32"].promo::after { content:'-32%'; }
.cell[data-discount="33"].promo::after { content:'-33%'; }
.cell[data-discount="34"].promo::after { content:'-34%'; }
.cell[data-discount="35"].promo::after { content:'-35%'; }
.cell[data-discount="36"].promo::after { content:'-36%'; }
.cell[data-discount="37"].promo::after { content:'-37%'; }
.cell[data-discount="38"].promo::after { content:'-38%'; }
.cell[data-discount="39"].promo::after { content:'-39%'; }
.cell[data-discount="40"].promo::after { content:'-40%'; }
.cell[data-discount="41"].promo::after { content:'-41%'; }
.cell[data-discount="42"].promo::after { content:'-42%'; }
.cell[data-discount="43"].promo::after { content:'-43%'; }
.cell[data-discount="44"].promo::after { content:'-44%'; }
.cell[data-discount="45"].promo::after { content:'-45%'; }
.cell[data-discount="46"].promo::after { content:'-46%'; }
.cell[data-discount="47"].promo::after { content:'-47%'; }
.cell[data-discount="48"].promo::after { content:'-48%'; }
.cell[data-discount="49"].promo::after { content:'-49%'; }
.cell[data-discount="50"].promo::after { content:'-50%'; }
.cell[data-discount="51"].promo::after { content:'-51%'; }
.cell[data-discount="52"].promo::after { content:'-52%'; }
.cell[data-discount="53"].promo::after { content:'-53%'; }
.cell[data-discount="54"].promo::after { content:'-54%'; }
.cell[data-discount="55"].promo::after { content:'-55%'; }
.cell[data-discount="56"].promo::after { content:'-56%'; }
.cell[data-discount="57"].promo::after { content:'-57%'; }
.cell[data-discount="58"].promo::after { content:'-58%'; }
.cell[data-discount="59"].promo::after { content:'-59%'; }
.cell[data-discount="60"].promo::after { content:'-60%'; }
.cell[data-discount="61"].promo::after { content:'-61%'; }
.cell[data-discount="62"].promo::after { content:'-62%'; }
.cell[data-discount="63"].promo::after { content:'-63%'; }
.cell[data-discount="64"].promo::after { content:'-64%'; }
.cell[data-discount="65"].promo::after { content:'-65%'; }
.cell[data-discount="66"].promo::after { content:'-66%'; }
.cell[data-discount="67"].promo::after { content:'-67%'; }
.cell[data-discount="68"].promo::after { content:'-68%'; }
.cell[data-discount="69"].promo::after { content:'-69%'; }
.cell[data-discount="70"].promo::after { content:'-70%'; }
.cell[data-discount="71"].promo::after { content:'-71%'; }
.cell[data-discount="72"].promo::after { content:'-72%'; }
.cell[data-discount="73"].promo::after { content:'-73%'; }
.cell[data-discount="74"].promo::after { content:'-74%'; }
.cell[data-discount="75"].promo::after { content:'-75%'; }
.cell[data-discount="76"].promo::after { content:'-76%'; }
.cell[data-discount="77"].promo::after { content:'-77%'; }
.cell[data-discount="78"].promo::after { content:'-78%'; }
.cell[data-discount="79"].promo::after { content:'-79%'; }
.cell[data-discount="80"].promo::after { content:'-80%'; }
.cell[data-discount="81"].promo::after { content:'-81%'; }
.cell[data-discount="82"].promo::after { content:'-82%'; }
.cell[data-discount="83"].promo::after { content:'-83%'; }
.cell[data-discount="84"].promo::after { content:'-84%'; }
.cell[data-discount="85"].promo::after { content:'-85%'; }
.cell[data-discount="86"].promo::after { content:'-86%'; }
.cell[data-discount="87"].promo::after { content:'-87%'; }
.cell[data-discount="88"].promo::after { content:'-88%'; }
.cell[data-discount="89"].promo::after { content:'-89%'; }
.cell[data-discount="90"].promo::after { content:'-90%'; }
.cell[data-discount="91"].promo::after { content:'-91%'; }
.cell[data-discount="92"].promo::after { content:'-92%'; }
.cell[data-discount="93"].promo::after { content:'-93%'; }
.cell[data-discount="94"].promo::after { content:'-94%'; }
.cell[data-discount="95"].promo::after { content:'-95%'; }
.cell[data-discount="96"].promo::after { content:'-96%'; }
.cell[data-discount="97"].promo::after { content:'-97%'; }
.cell[data-discount="98"].promo::after { content:'-98%'; }
.cell[data-discount="99"].promo::after { content:'-99%'; }
.cell[data-discount="100"].promo::after { content:'-100%'; }


.home-blog__content img, .single-post__content img {
  border-radius: 8px;
  margin-bottom: 16px;
}

@media (min-width: 1200px) {
  .home-blog__content img, .single-post__content img {
    margin-bottom: 24px;
  }
}

.voyant-bio pre {
  font: 400 16px/1.75 "Arial", sans-serif;
  white-space: break-spaces;
}

.single-post__button:hover h5 {
  color: #5F27CD;
}

.fixed-phone__number svg,
.voyant-phone__number svg {
  -webkit-animation: tada 1.5s infinite;
  animation: tada 1.5s infinite;
}


@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  100% {
    transform: scaleX(1);
  }
}

#commentaries {
  opacity: 0;
  height: 0px;
  margin: 0px;
  padding: 0px;
}

.voyant-phone--audiotel .voyant-phone__promocode__offline {
  display: block;
}
.voyant-phone--audiotel.voyant-phone--online .voyant-phone__promocode__offline {
  display: none;
}
body[promocode="true"] .voyant-phone--audiotel .voyant-phone__promocode__offline {
  display: none;
}
body[promocode="true"] #promocode_inactive {
  display: none;
}

@media (min-width: 1200px) {
  body[promocode="true"] #promocode_inactive {
    display: none;
    min-width: 248px;
    width: 248px;
  }
  body .header-nav__menu {
    column-gap: 24px;
  }
}

#comment-2 + label {
  top: 13px;
}

#comment-2:focus + label, #comment-2:valid + label {
  left: 16px !important;
  top: 0px;
}

#comment-2.edited + label {
  top: 0;
  left: 16px !important;
  transform: scale(0.734) translateY(-50%);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 700;
}

#answer_comment_error {
  display: inline-block;
  color: red;
}

.modal-comment__close {
  top: 1px;
  right: 1px;
}
@media (min-width: 375px){
  .modal-comment__close {
      top: 9px;
  }
}
@media (min-width: 768px){
  .modal-comment__close {
      right: 11px;
  }
}

@media (min-width: 1200px) {
  .home-blog--sticky .home-blog__sidebar {
    position: sticky;
    top: 48px;
  }
}

.home-blog__content a.button-secondary {
  width: 100% !important;
  justify-content: center;
}

@media (min-width: 768px) {
  .home-blog__content a.button-secondary {
    display: none !important;
  }
}

.medium-card {
  width: 100%;
}

#form_info_2 {
  opacity: 1;
  height: 0px;
  padding: 0;
  margin: 0;
}

.recrute-button { 
  z-index: 1;
}

.select2-results__option {
  font-size: 12px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #f3f3fb;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: #b3b2e4;
  border-radius: 2px;
}

.widget-tags__list > li.hide,
.blog-content__list--tags > li.hide {
  display: none;
}
.blog-content__list--tagBtn {
  cursor: pointer;
}

.blog-card__fav {
  position: relative;
}

.blog-card__fav > svg:nth-child(1) {
  flex: 0 0 24px;
  fill: transparent;
  stroke: #706DB0;
}

.blog-card__fav > svg:nth-child(2) {
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  opacity: 0;
  stroke: none;
}

.blog-card__fav > svg {
  transition: opacity 0.3s ease;
}
.blog-card__fav.active > svg:nth-child(1) {
  opacity: 0;
}
.blog-card__fav.active > svg:nth-child(2) {
  opacity: 1;
}



.voyant-card__fav {
  position: relative;
}

.voyant-card__fav > svg:nth-child(1) {
  flex: 0 0 16px;
  fill: transparent;
  stroke: #706DB0;
}

.voyant-card__fav > svg:nth-child(2) {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  stroke: none;
}

.voyant-card__fav > svg {
  transition: opacity 0.3s ease;
}
.voyant-card__fav.active > svg:nth-child(1) {
  opacity: 0;
}
.voyant-card__fav.active > svg:nth-child(2) {
  opacity: 1;
}

.planning__table > table {
  width: 100%;
}

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

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

.widgetAvis>.container, .widgetTrust > .container {
  padding: 0;
}

.home-comment-block {
  border-radius: 0;
  padding: 20px 24px 8px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 0 6px 0 rgba(115, 115, 167, .2);
}
.home-comment-block-trust {
  border-radius: 0;
  padding: 18px 20px 0px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 0 6px 0 rgba(115, 115, 167, .2);
}
  .home-comment-block-trust .trust-link {
    padding-bottom: 18px;
    text-align: center;
  }
  .widgetAvis .trust-link {
    text-align: center;
  }

@media (min-width: 375px){
  .widgetAvis > .container, .widgetTrust > .container {
    padding: 0 24px;
  }
  .home-comment-block, .home-comment-block-trust {
    border-radius: 12px;
  }
  .home-comment-block-trust {
    padding: 24px 24px 20px;
  }
  .home-comment-block-trust .trust-link {
    padding-bottom: initial;
  }
}

@media (min-width: 768px) {
  .fixed-phones {
    visibility: hidden !important;
  }
  .widgetAvis > .container, .widgetTrust > .container {
    padding: 0 16px;
  }
    .home-comment-block-trust {
    padding: 94px 24px 20px;
  }
  .home-comment-block-trust .trust-link {
    padding-top: 46px;
    text-align: right;
  }
  .widgetAvis .trust-link {
    text-align: right;
  }
}




@media (min-width: 1200px) {
  .header-nav__menu {
    column-gap: 16px;
  }
  .widgetAvis > .container, .widgetTrust > .container {
    padding: 0 30px;
  }
}

.voyant-phone--prepay.hidden {
  visibility: hidden;
  display: none;
}

.tel_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
  border-radius: 20px;
  margin-top: 20px !important;

}

.tel_item {
  position: relative;
  width: 283px;
  background: #fff;
  height: 35px;
  box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
  margin-right: 20px;
  margin-bottom: 20px;
}

.tel_item .number {
  color: #a50e78;
  font-size: 25px;
  font-weight: bold;
  font-family: arial;
  padding: 0px 5px;
  letter-spacing: -2px;
  line-height: 37px;
}

.tax {
  position: absolute;
  top: -5px;
  right: 7px;
  background: url("https://img.gestion.ph/avenirtel.fr/img/tax_bg.svg")
  no-repeat;
  background-size: cover;
  height: 47px;
  width: 131px;
  color: #fff;
  font-size: 12px;
  padding: 9px 0 0 16px;
  line-height: 1.2;
  font-family: arial;
  /* font-weight: bold; */
}
.header-nav__menu > li.active-after::after {
  background-image: url('https://img.gestion.ph/avenirtel.fr/newIntegration/img/general/chevron-drop-active.svg');
}
.header-nav__menu > li > a.active {
  color: #FECA57;
}
.header-nav__menu > li .sub-menu > li > a.active {
  color: #FECA57;
}
@media (min-width:1200px) {
  .header-nav__menu--1 > li > a.active {
    text-underline-offset: 5px;
  }
  .header-nav__menu--1 > li {
    border: none !important;
  }
  .header-nav__menu--1 > li .sub-menu > li > a.active {
    color: #5F27CD;
  }
}

.header-nav__menu a.active:hover {
  color: #FECA57;
  cursor: pointer;
}

@media (min-width:1200px) {
  .header-nav__menu>.sub-menu a.active {
    color: #5F27CD !important;
    text-decoration: none;
  }
  
}

.fixed-phones {
  z-index: 1101;
}

.fixed-phones[data-planning="CB"] .fixed-phone--audiotel {
  display: none;
}
.fixed-phones[data-planning="CB"] .fixed-phone--prive {
  display: block;
}
.fixed-phones[data-planning="AUDIO"] .fixed-phone--audiotel {
  display: block;
}
.fixed-phones[data-planning="AUDIO"] .fixed-phone--prive {
  display: none;
}
.fixed-phones[data-planning="null"] .fixed-phone--audiotel {
  display: none;
}
.fixed-phones[data-planning="null"] .fixed-phone--prive {
  display: none;
}
.body-fixed-phones--hidden .fixed-phones {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.fixed-phones--hidden{
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.body-fixed-phones--hidden .mobile-nav {
  box-shadow: 0 0 16px rgba(115, 115, 167, 0.2) !important;
}
.fixed-phones__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  display: flex;
}

tr.row td:nth-child(26),
tr.row td:nth-child(27),
tr.row td:nth-child(28),
tr.row td:nth-child(29),
tr.row td:nth-child(30) {
  display: none;
}

.table-block td:nth-child(26),
.table-block td:nth-child(27),
.table-block td:nth-child(28),
.table-block td:nth-child(29),
.table-block td:nth-child(30) {
  display: none;
}

#modal-planning-rotate .modal__dialog {
  width: 288px;
}

#modal-planning-rotate .modal-tooltip__body {
  text-align: center;
}
#modal-planning-rotate .modal__close {
  display: none;
}

@media (min-width: 375px) {
  #modal-planning-rotate .modal__dialog {
    width: 328px;
  }
}


@media (min-width: 768px) {
  #modal-planning-rotate .modal__dialog {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  #modal-planning-rotate .modal__dialog {
    display: none !important;
  }
}



.medium-card.__template {
  pointer-events: none;
  background:repeating-linear-gradient(75grad, rgba(0,0,0,0) 25%,rgba(255,255,255,1) 0%, rgba(0,0,0,0.0) 100%, rgba(0,0,0,0) 100%),  #f9f9f9;
  /*запуск анимации, для повышения скорости надо 5s уменьшить до 4,3,2,1 итд*/
  animation: template_mymove 0.5s infinite linear;
  display: none;
  flex-direction: row;
  gap: 12px;
  order: 999; 
  height: 200px;
}
@keyframes template_mymove {
0%   { background-position: 0px 0px;}
100% { background-position: 370px 0px;}
}

.medium-card--disabled {
  pointer-events: all;
}
.medium-card--disabled::after {
  pointer-events: none;
}

.medium-card__preloader_image {
  display: flex;
  width: 96px;
  min-width: 96px;
  height: 139px;
  background-color: #f8f8fa;
}

@media (min-width: 768px) {
  .voyant__right .voyant-phone--prepay {
    height: fit-content;
  }
}
body {
  padding-bottom: 0px;
}

.fixed-phones.visibility-hidden ~ #footer_phones {
  display: none;
}  


@media (max-width: 767px) {
  .fixed-phones[data-planning="CB"] ~ #footer_phones,
  .fixed-phones[data-planning="AUDIO"] ~ #footer_phones {
    padding-bottom: 168px;
  }  


  
}

@media (max-width: 1200px) {
  body.footer-phones {
    padding-bottom: 56px;
  }
}


/* @media (min-width: 1200px) {
  .widget-mediums__row {
    max-height: 800px;
    overflow-y: scroll;
  }

  .widget-mediums__row::-webkit-scrollbar {
    width: 0px;
  }
} */

.medium-card--disabled .medium-card__permalink,
.medium-card--disabled .medium-card__prices {
  display: none;
}

.medium-card--disabled .medium-card__offline{
  display: block;
}


.card_flag {
  display: flex;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(192, 192, 221, 0.239216);
  box-shadow: 0px 0px 4px rgba(115, 115, 167, 0.4);
}

.card_flag img {
  width: 100%;
}

.medium-card__header__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav {
  z-index: 1102;
}

.reg-rgpd,
.rgpd {
  z-index: 1103;
}

.fixed-phones[data-planning="AUDIO"] ~ .mobile-nav,
.fixed-phones[data-planning="CB"] ~ .mobile-nav {
  box-shadow: none;
}

body[rgpd="on"] .mobile-nav {
  box-shadow: none;
}

@media (min-width: 768px) {
  .blog-pagination__list > li {
    display: none;
  }

  .fixed-phones[data-planning="AUDIO"] ~ .mobile-nav,
  .fixed-phones[data-planning="CB"] ~ .mobile-nav {
    box-shadow: 0 0 16px rgba(115, 115, 167, 0.2)
  }

  .blog-pagination__list > li.visible {
    display: flex;
  }
}


.blog-pagination__list > li > a:hover {
  color: #5F27CD;
  border-color: #5F27CD;
  background-color: #fff;
}
.blog-pagination__list > li.active > a {
  color: #fff;
  border-color: #5F27CD;
  background: #5F27CD;
}
.blog-pagination__list > li.active > a:hover {
  color: #fff;
  border-color: #5F27CD;
  background: #5F27CD;
}


.voyant-comment__body ~ .voyant-comment::before {
  top: 0px;
  height: 100%;
}


.medium-cards--promo.hidden {
  display: none;
}

.btn-tooltip {
  border: none;
  background-color: transparent;
}

.btn-tooltip:focus {
  outline: none;
}

.voyant-card__success__title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.voyant-card__success__title figure {
  margin: 0px;
}

.tooltip {
  box-shadow: 0px 6px 20px 0px #22222280;
}


body[data-team="TOUS"] .cb-only {
  display: none;
}


@media (min-width: 1200px) and (hover: hover) {
  .header-nav__menu--1 > li.has-child:hover > .sub-menu {
      opacity: initial;
      visibility: initial;
      transform: initial;
  }

  .header-nav__menu--1 > li.has-child:hover > a {
    color: #FECA57;
  }
}

.long-name {
  font-size: 13px;
}

@media (min-width: 768px) {
  .long-name {
    font-size: 16px;
  } 
}

.medium-card__text {
  font-size: 13px;
}

.single-post__content h2,
.home-blog__content h2 {
  line-height: 1.4;
}

.single-post__content h2,
.single-post__content h3,
.home-blog__content h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .single-post__content h2,
  .home-blog__content h2 {
    line-height: 1.33;
  }
  .single-post__content h3,
  .home-blog__content h3 {
    font-size: 24px;
    line-height: 1.33;
  }
}
.post-nouv__tag {
  margin-bottom: 12px;
}
.post-nouv__thumbnail {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .post-nouv__tag {
    margin-bottom: 6px;
  }
  .post-nouv__thumbnail {
    margin-bottom: 12px;
  }
  .widget-articles__row {
    row-gap: 32px;
  }
}


@media (min-width: 1200px) {
  .single-post__content > p {
      margin-bottom: 24px;
  }
}

.mobile-nav__item .mobile-nav__icon {
  position: relative;
}

.mobile-nav__item .mobile-nav__icon > svg:nth-child(1) {
  flex: 0 0 16px;
  fill: transparent;
  stroke: #706DB0;
}

.mobile-nav__item .mobile-nav__icon > svg:nth-child(2) {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  stroke: none;
}

.mobile-nav__item .mobile-nav__icon > svg {
  transition: opacity 0.3s ease;
}
.mobile-nav__item.active > .mobile-nav__icon > svg:nth-child(1) {
  opacity: 0;
}
.mobile-nav__item.active > .mobile-nav__icon > svg:nth-child(2) {
  opacity: 1;
}

.header-nav__menu > li .sub-menu > li > a {
  cursor: pointer;
}


.widget-mediums .medium-card {
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.7);
}

@media (min-width: 768px) {
  .widget-mediums .medium-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (min-width: 1200px) {
  .widget-mediums .medium-card {
    flex: 0 0 100%;
  }
}

.medium-card__prices,
.voyant-phone__prices {
  font-weight: 700;
}

@media (max-width: 767px) {
  .voyant-phone__title {
    column-gap: 2px;
  }
}

@media (min-width: 1200px) and (hover: hover) {
  .footer-nav__menu > li > a.active,
  .footer-nav__menu > li > a.active:hover {
      color: #FECA57;
  }

  .footer-nav__menu > li > a.active {
    text-decoration: underline;
    cursor: pointer;
    text-underline-offset: 5px;
  }
}

@media (min-width: 1200px) {
  button.btn-tooltip {
    margin: 0px;
    padding: 0px;
  }
}

.header-button--promo:hover {
    color: #242434;
}


.medium-card--disabled[data-endgratuithours="1"]:not(.medium_card--unactive)::after {
  background: transparent;
}



.mobile-nav__item.active .mobile-nav__text {
  color: #5F27CD;
}


.form-control:focus-visible {
  outline: none;
}


.header-nav__menu > li > a.active .header-nav__img > svg path {
  stroke: #feca57;
}
.header-nav__menu > li._serv > a.active .header-nav__img > svg path:nth-child(2) {
  stroke: none;
  fill: #feca57;
}
.header-nav__menu > li._serv > a.active .header-nav__img > svg path:nth-child(3) {
  stroke: none;
  fill: #feca57;
}
.header-nav__menu > li._serv > a.active .header-nav__img > svg path:nth-child(4) {
  stroke: none;
  fill: #feca57;
}

@media (min-width: 1200px) {
  .header-nav__menu--1 > li > a.active .header-nav__img > svg path,
  .header-nav__menu--1 > li > a:hover .header-nav__img > svg path {
    stroke: #feca57;
  } 
}


.header-nav__menu > li > a._avis.active .header-nav__img > svg path:nth-child(1){
  stroke: initial;
  fill: #feca57;
}

@media (min-width: 1200px) {
  .header-nav__menu--1 > li > a._avis.active .header-nav__img > svg path:nth-child(1),
  .header-nav__menu--1 > li > a._avis:hover .header-nav__img > svg path:nth-child(1) {
    stroke: initial;
    fill: #feca57;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 57px;
  }

}

@media (max-width: 1200px) {
  body {
    padding-bottom: 57px;
  }

}

.tooltip-element {
  position: relative;
  display: flex;
}
.tooltip-element--prive, .tooltip-element--audio {
  position: static !important;
}
.tooltip__arrow__box {
  position: relative;
  display: inline-flex;
}
.tooltip__arrow__box:has(+ .show) .tooltip__arrow {
  position: absolute;
  bottom: calc(100% + 3px);
  right: -7px;
  width: 28px;
  height: 20px;
  background-image: url(https://img.gestion.ph/avenirtel.fr/newIntegration/img/icons/tooltip-arrow.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 4;
}
.tooltip-element span{
  vertical-align: baseline;
}
.tooltip-element .tooltip__arrow__box{
  vertical-align: text-top;
}
.tooltip-element svg{
  vertical-align: text-bottom;
}

#success-tooltip {
  width: 268px;
  top: -145px;
  left: -207px;
}
#success-tooltip::after {
  left: 215px;
}

.voyant-card__success__title > div > svg {
  /*fill: #706DB0;*/
  transition: 0.3s ease;
}

@media (min-width: 375px) {
  #success-tooltip {
    width: 328px;
    top: -124px;
    left: -232px;
  }
  #success-tooltip::after {
    left: 240px;
  }
}
@media (min-width: 500px) {
  #success-tooltip {
    width: 358px;
    left: -171px;
  }
  #success-tooltip::after {
    left: 50%;
  }
}



.voyant-phone__title > div:last-child {
  display: inline-block;
}
.voyant-phone__title > div:last-child span{
  white-space: nowrap;
}

.voyant-phone__title > div .tooltip {
  display: block;
}

#profile-audiotel-tooltip-mob::after {
  display: none;
}

#profile-prive-tooltip-mob::after {
  display: none;
}

@media (max-width: 374px) {
  #profile-audiotel-tooltip-mob {
    width: 268px;
    bottom: 30px;
    left: -16px;
  }

  #profile-prive-tooltip-mob {
    width: 268px;
    top: auto;
    bottom: 30px;
    left: -16px;
  }
}

@media (min-width: 375px) and (max-width: 499px) {
  #profile-audiotel-tooltip-mob {
    width: 328px;
    bottom: 30px;
    left: -16px;
  }
  #profile-prive-tooltip-mob {
    width: 328px;
    bottom: 30px;
    left: -16px;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  #profile-audiotel-tooltip-mob {
    width: 358px;
    top: -165px;
    left: -16px;
  }
  #profile-prive-tooltip-mob {
    width: 358px;
    top: -124px;
    left: -16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tooltip__arrow {
    display: none;
  }
  .tooltip-element--prive, .tooltip-element--audio {
    position: relative !important;
  }
  #profile-audiotel-tooltip-mob {
    width: 500px;
    top: -75px;
    left: -432px;
  }
  #profile-audiotel-tooltip-mob::after {
    display: block;
    left: calc(100% - 21px);
    transform: scaleY(0.8);
    bottom: 12px;
  }
  #profile-prive-tooltip-mob {
    width: 480px;
    top: -55px;
    left: -432px;
  }
  #profile-prive-tooltip-mob::after {
    display: block;
    left: calc(100% - 21px);
    transform: scaleY(0.8);
    bottom: 12px;
  }
}

.merci__body {
  z-index: 1102;
}
.merci_content {
  padding: 24px;
}
.merci_block {
  gap: 24px;
}

.merci__body .modal-success__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  margin-top: 12px;
}
.mm_title {
  font-weight: 700;
  margin-bottom: 12px;
}

.mm_subtitle {
  font-size: 15px;
  line-height: 1.15;
}

@media (min-width: 378px) {
  .merci__body .modal-success__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .merci_content {
    width: 394px;
  }
}

.medium-card__header {
  align-items: center;
}

@media (min-width:1200px) {
  .code-active {
    margin-bottom: 0px;
  }
}

.hrefNoLink {
  cursor: pointer;
}

.single-post__content a {
  color: #5F27CD;
  /* font-weight: 700; */
  /* font-size: 14px; */
  /* line-height: 1.4285714286; */
  border-bottom: 1px solid transparent;
}
.single-post__content a:hover {
  border-color: #5F27CD;
  color: #5F27CD;
}

@media (min-width:1200px) {
  .single-post__title {
    font-size: 32px;
  }
  .single-post__content h2 {
    font-size: 24px;
  }

}

@media (max-width: 768px) {
  .single-post__button--next > h5,
  .single-post__button--prev > h5 {
    color: #5F27CD;
  }
}

.voyant-comment__like {
  display: flex;
  
  
}

.voyant-comment__like > button {
  background: none;
  border: none;
  display: flex;
  padding: 0px;
  gap: 4px;
  color: #706DB0;
  font: 700 14px/16px Arial, sans-serif;
  align-items: center;
  cursor: pointer;
}
.voyant-comment__like > button:focus,
.voyant-comment__like > button:focus-visible {
  outline: none;
}

.voyant-comment__like svg {
  transform: translateY(-2px);
}

.voyant-comment__like.active svg path {
  /* stroke: #5F27CD; */
  stroke: #F75F5F;
}
.voyant-comment__like.active > button {
  /* color: #5F27CD; */
  color: #F75F5F;
}


.voyant-comment__header {
  display: flex;
  /* justify-content: space-between; */
  gap: 12px;
  margin: -16px;
  border-radius: 16px 16px 0px 0px;
  position: sticky;
  top: 47px;
  background-color: #fff;
  z-index: 10;
  padding: 16px;
}
.voyant-comment__title {
  display: flex;
  gap: 12px;
  align-items: center;
  font: 700 18px/24px Arial, sans-serif;
  /* max-width: 48px; */
  max-height: 48px;
}

.voyant-comment__header > .voyant-comment__title {
  max-width: 48px;
}

.voyant-comment__title:hover {
  color: #5f27cd;
}


.voyant-comment__title figure {
  margin-bottom: unset;
  max-width: 48px;
}
.voyant-comment__title figure img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.voyant-avis .voyant-comments__item {
  row-gap: 40px;
  display: flex;
  flex-direction: column;
}

.voyant-avis .voyant-comment__header ~ .voyant-comment__inner {
  position: relative;
  padding-left: 6px;
}

.voyant-avis .medium-card__info {
  margin-bottom: 0px;
  min-width: 92px;
}

.voyant-avis .medium-card__comments > div ,
.voyant-avis .medium-card__rating > div {
  gap: 4px;
  display: flex;
  align-items: center;
}

.voyant-avis .voyant-comment__header ~ .voyant-comment__inner::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background: #DADAF3;
  left: 20px;
  top: -27px;
}

.voyant-avis .medium-card__info > li > div,
.voyant-avis .medium-card__info > li > a {
  font: 700 13px/13px Arial, sans-serif;
}

@media (min-width: 768px) {

  /* .voyant-comment__header {
    margin-left: 0px;
  } */

  .voyant-avis .voyant-comment__header ~ .voyant-comment__inner {
    padding-left: 60px;
  }

  .voyant-avis .voyant-comments__item {
    row-gap: 24px;
  }
  .voyant-avis .voyant-comment__header ~ .voyant-comment__inner::before {
    background-color: #fff;
    content: "";
    position: absolute;
    width: 24px;
    height: 29px;
    left: 24px;
    bottom: calc(100% - 14px);
    top: -12px;
    background-image: url(https://img.gestion.ph/avenirtel.fr/newIntegration/img/icons/comment-avis-line.svg);
    background-repeat: no-repeat;
    background-size: 24px 29px;
    background-position: center;
  }

  .voyant-comment__title span {
    font: 700 20px/24px Arial, sans-serif;
  }
}


.third-level .voyant-comment__actions {
  flex-wrap: wrap;
  gap: 16px;
}

.third-level .voyant-comment__actions .voyant-comment__time {
  width: 100%;
}

@media (min-width: 390px) {
  .third-level .voyant-comment__actions .voyant-comment__time {
    width: inherit;
  }
  
}

.__template_comment_preloader {
  display: none;
  gap: 12px;
  pointer-events: none;
  background: repeating-linear-gradient(75grad, rgba(0,0,0,0) 25%, rgba(255,255,255,1) 0%, rgba(0,0,0,0.0) 100%, rgba(0,0,0,0) 100%), #f9f9f9;
  background-size: 200% 100%; /* Установка размера фона */
  animation: template_mymove_comment 1s infinite linear;
  flex-direction: row !important;
}

@keyframes template_mymove_comment {
  0%   { background-position: 100% 0px; }
  100% { background-position: -100% 0px; } /* Смещение фона на 100% его ширины */
}



.__template_comment_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.__template_comment-head {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.__template_comment-header {
  background-color: #F0F0FB;
  display: flex;
  width: 68px;
  height: 16px;
  border-radius: 3px;

}

.__template_comment-rating {
  opacity: 0.4;
  font: 700 13px/13px Arial, sans-serif;
  color: #242434;
  display: flex;
  gap: 4px;
  align-items: center;
}

.__template_comment-text {
  display: flex;
  width: 100%;
  height: 16px;
  border-radius: 3px;
  background-color: #F8F8FA;
}

.__template_comment-text:nth-child(4) {
  width: calc(100% - 86px);
}

.__template_comment-actions {
  display: flex;
  gap: 10px;
}

.__template_comment-action {
  display: flex;
  width: 103px;
  height: 16px;
  border-radius: 3px;
  background-color: #F0F0FB;
}


@media (min-width: 768px) {
  .__template_comment-header {
    height: 20px;
  }
  .__template_comment_image svg {
    transform: scale(1.33);
  }
  .__template_comment-text:nth-child(4) {
    width: calc(100% - 135px);
  }
}
@media (min-width: 1200px) {
  .__template_comment-text:nth-child(4) {
    width: calc(100% - 89px);
  }
}


.hrefNoActive {
  cursor: pointer;
}

.lazy {
  opacity: 0;
}

.common-up {
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  position: fixed;
  right: 10px;
  bottom: 84px;
  z-index: 1100;
}

.common-up-button {
  padding: 9px;
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid #C0C0DD;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  body.footer-phones .common-up {
    bottom: 170px;
  }
  body.footer-phones.body-fixed-phones--hidden .common-up {
    bottom: 66px;
  }

}

@media (max-width: 374px) {
  body.footer-phones .common-up {
    bottom: 160px;
  }
}

@media (max-width: 1200px) {
  body.recrutement .common-up {
    bottom: 138px;
  }
}


@media (max-width: 768px) {
  body.recrutement .common-up {
    bottom: 132px;
  }
}


@media (min-width: 768px) {
  .common-up {
    right: 16px;
    bottom: 76px;
  }
  .common-up-button {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1200px) {
  .common-up {
    right: 54px;
    bottom: 84px;
  }
}

.common-up-button:focus {
  outline: none;
}

.common-up.show {
  opacity: 1;
}

.contacts {
  display: flex;
  background-color: #fff;
  margin-top: 24px;
  margin-bottom: 48px;
  padding: 24px 0px;
  box-shadow: 0px 0px 4px 0px #7373A733;

}

.contacts__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contacts__body h2 {
  font: 700 20px/26px Arial;
  margin-bottom: 8px;
}

.contacts__body p {
  font: 400 16px/28px Arial;
  margin-bottom: 0px;
}

.contacts-items {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.contacts-item {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
}

.contacts-item figure {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.contact-item__container {
  display: flex;
  flex-direction: column;
}

.contacts__reclamation {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background-color: #F6F6FC;
  border-radius: 8px;
  row-gap: 16px;
}

.contacts__reclamation a {
  display: flex;
  font: 400 16px/20px Arial;
  color: #5F27CD;
  padding: 14px;
  width: 100%;
  text-align: center;
  border: 1px solid #5F27CD;
  border-radius: 8px;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.contacts__reclamation a:hover {
  background: #5F27CD;
  color: #fff;
}

.contacts .widget-form {
  max-width: unset;
}

@media (min-width: 768px) {
  .contacts {
    max-width: 690px;
    border-radius: 12px;
    margin: 24px auto 90px;
  }

  .contacts .container {
    padding: 0px 24px;
  }

  .contacts__body h2 {
    font: 700 24px/32px Arial;
  }

  .contacts__body p {
    font: 400 17px/28px Arial;
  }

  .contacts-items {
    flex-direction: row;
    column-gap: 48px;
  }

  .contacts-item {
    flex-direction: column;
    row-gap: 8px;
  }

  .contact-item__container {
    row-gap: 4px;
  }

  .contacts .widget-form__group {
    margin-bottom: 0px;
  }

  .contacts .widget-form {
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-half-item {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }

  .form-full-item {
    width: 100%;
  }


}



@media (min-width:345px) and (max-width: 678px) {
  .footer-bottom__body {
    padding: 0px 44px;
  }
}

.widget-articles.__template,
.home-blog__content.__template {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  gap: 8px;
  background:repeating-linear-gradient(75grad, rgba(0,0,0,0) 25%,rgba(255,255,255,1) 0%, rgba(0,0,0,0.0) 100%, rgba(0,0,0,0) 100%),  #f9f9f9;
  /*запуск анимации, для повышения скорости надо 5s уменьшить до 4,3,2,1 итд*/
  animation: template_mymove 0.5s infinite linear;

}

.widget-articles-title.__template,
.mainArticle-title.__template {
  display: flex;
  height: 22.4px;
  border-radius: 3px;
  background-color: #F8F8FA;
  width: 100%
}

.widget-articles.__template {
  padding: 24px;
  border-radius: 12px;
  /* background-color: #fff; */
  box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
}

.mainArticle-title.__template:nth-of-type(3) {
  width: 80%;
}

.widget-articles-image.__template,
.mainArticle-image.__template {
  display: flex;
  width: 100%;
  max-width: 640px;
  height: auto;
  height: 300px;
  border-radius: 8px;
  background-color: #F8F8FA;
  margin-top: 16px;
  margin-bottom: 16px;
  border-radius: 3px;
}

.widget-articles-content.__template,
.mainArticle-content.__template {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.widget-articles-p.__template,
.mainArticle-p.__template {
  display: flex;
  height: 16px;
  border-radius: 3px;
  background-color: #F8F8FA;
  width: 100%;
}
.widget-articles-p.__template:nth-of-type(2),
.mainArticle-p.__template:nth-of-type(3) {
  width: 80%;
}


.widget-articles {
  background-color: #FFF;
}

.contact-item__text {
  font: 400 16px/24px Arial;
}

.banner-main {
  position: relative;
}
.banner-main__image,
.banner-main__image-haloween {
  position: absolute;
  right: 0px;
  display: flex;
  width: 106px;
  height: 148px;
  /* background-image: url('https://img.gestion.ph/avenirtel.fr/newIntegration/img/mainImage_1-min (1).webp'); */
  background-image: url('https://img.gestion.ph/avenirtel.fr/newIntegration/img/main-image-mobile.webp');
  background-repeat: no-repeat;
  background-size: contain;
}

.banner-main__image-haloween {
  background-image: url('https://img.gestion.ph/avenirtel.fr/img/haloween/haloween-female-mobile.webp');
}

@media (min-width: 768px) {
  .banner-main__image,
  .banner-main__image-haloween {
    width: 256px;
    height: 238px;
    background-image: url('https://img.gestion.ph/avenirtel.fr/newIntegration/img/main-image-tablet.webp');
  }
  .banner-main__image-haloween {
    background-image: url('https://img.gestion.ph/avenirtel.fr/img/haloween/haloween-female-tablet.webp');
  }

}

@media (min-width: 1200px) {
  .banner-main__image,
  .banner-main__image-haloween {
    width: 459px;
    height: 298px;
    background-image: url('https://img.gestion.ph/avenirtel.fr/newIntegration/img/main-image-desktop.webp');
  }
  .banner-main__image-haloween {
    background-image: url('https://img.gestion.ph/avenirtel.fr/img/haloween/haloween-female.webp');
  }
}

.voaynt-comment__header-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  gap: 8px;
}

.avis-row {
  display: flex;
}

.voaynt-comment__header-block .avis-row:nth-child(1) {
  justify-content: space-between;
}

.voyant_status {
  display: flex; 
  font: 700 11px/11px Arial;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.mainArticle-inner {
  margin-bottom: 16px !important;
}

@media (min-width:768px) {
  .mainArticle-inner {
    margin-top: 60px;
    margin-bottom: 48px !important;
  }
}


.voyant-comment-title {
  background: none !important;
  box-shadow: none !important;
  margin: 0px !important;
  margin-bottom: 24px !important;
  padding: 0px !important;
  font: 700 20px/36px Arial;
  color: #242434;
  text-align: center;
  margin-top: 32px !important;
}
@media (min-width: 375px) {
  .voyant-comment-title {
    margin-bottom: 21px !important;
  }
}
@media (min-width: 768px) {
  .voyant-comment-title {
    font: 700 24px/36px Arial;
    margin-top: 48px !important;
    margin-bottom: 32px !important;
  }
}

.widget-contacts .widget-mediums__desc > p {
  font: 400 17px/28px Arial;
}
.widget-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.footer-contact__link {
  padding: 12px 24px;
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: white;
  margin-bottom: 24px;
  line-height: 20px;
}
.footer-contact__link:hover {
  color: white;
  background-color:  rgba(255,255,255,0.1);
}

.widget-mediums__title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__logo>a>img.header__logo-text, .header__logo>div>img.header__logo-text {
  width: unset;
  flex: unset;
  height: 23px;
  width: 87px
}


.voyant-bio__short {
  height: 91px;
}



.voyant-no-planning {
  height: 415px;
}

@media (min-width: 768px) {
  .voyant-no-planning {
    height: 191px;
  }

  .voyant-no-planning .voyant-bio__desc {
    height: 91px;
  }
 
}

.voyant-no-presentation {
  height: fit-content;
}

@media (min-width: 768px) {
  .voyant-no-presentation.voyant-no-planning {
    height: 191px;
  }
/*.sell-900:after {*/
/*  !* content: none !important; *!*/
/*  content: '3€ / APP' !important;*/
/*}*/
}
/* medium-card__price-audio pl-AUDIO mp-sda */

.medium-card__price--old {
  display: flex;
  gap: 2px;
}

.medium-card__price-audio.pl-,
.medium-card__price-audio-mp.pl-,
.medium-card__price-prive.pl-,
.medium-card__price-prive-mp.pl- {
  display: none;
}

.voyant-phone__price.marketplace,
.medium-card__price.medium-card__price--old.marketplace {
  color: #CF5FF7;
}

.medium-card__price-audio.pl-AUDIO.mp-Auditel,
.medium-card__price-audio-mp.pl-AUDIO.mp- {
  display: none;
}

.medium-card__price-audio.pl-AUDIO.mp-,
.medium-card__price-audio-mp.pl-AUDIO.mp-Auditel {
  display: flex;
}


.medium-card__price-prive.pl-CB.mp-CB,
.medium-card__price-prive-mp.pl-CB.mp- {
  display: none;
}

.medium-card__price-prive.pl-CB.mp-,
.medium-card__price-prive-mp.pl-CB.mp-CB {
  display: flex;
}

.medium-card__price-audio.mp-.pl-CB,
.medium-card__price-prive.mp-.pl-AUDIO,
.medium-card__price-audio-mp.mp-Auditel.pl-CB,
.medium-card__price-audio.mp-Auditel.pl-CB,
.medium-card__price-prive.mp-Auditel.pl-AUDIO {
  display: none;
}

.medium-card__prices.pl-CB.mp-Auditel {
  display: none;
}


.voyant-phone--prepay.marketplace {
  display: none;
}

.voyant-phone-marketplace__text {
  display: flex;
  background: #CF5FF726;
  border-radius: 8px;
  padding: 10px 12px;
  gap: 12px;
  margin-bottom: 0px;
  color: #242434;
}

@media (min-width: 768px) {
  .voyant-phone-marketplace__text {
    padding: 8px 10px;
    gap: 7px;
  }
}

.voyant-phone-marketplace__text span {
  font: 400 14px/20px Arial;
}

@media (min-width: 768px) {
  .voyant-phone-marketplace__text span {
    font-size: 11px;
    line-height: 16px;
  }
}
@media (min-width: 1200px) {
  .voyant-phone-marketplace__text span {
    font-size: 12px;
  }
}

.voyant-phone-marketplace__text svg {
  display: flex;
  width: 20px;
  min-width: 20px;
  height: 20px;
}


.medium-card--disabled.medium-card-randevu .medium-card__permalink {
  display: block;
}

.medium-card--disabled.medium-card-randevu .medium-card__offline {
  display: none;
}

.hide_block {
  display: none !important;
}

@media (min-width: 768px) {
  .voyant-phone--audiotel.voyant-phone--online.voyant-phone--promo {
    min-height: 193px;
  }
}

.header-bats {
  width: 95px;
  height: 31px;

}

.header-bats-mobile {
  display: none;
}

body[promocode="true"] .header-bats:nth-of-type(1) {
  display: none;
}

@media (max-width: 1200px) {

  .header-bats {
    display: none;
  }

  .header-bats-mobile {
    display: block;
    width: 91px;
    height: 29px;
    margin-top: 9px;
    margin-left: auto;
    margin-right: 10px;
  }
}

.haloween-bats-card {

  position: absolute;
  top: 0;
  left: 0;
}

.haloween-bats-card > img {
  object-fit: contain;
  width: 92px;
  height: auto;
}

@media (max-width: 680px) {
  body[promocode="true"] .header-bats-mobile {
    display: none;
  }
}


.haloween-footer-spider,
.haloween-footer-hand {
  display: none;
}

@keyframes haloween-hand-move {
  from {
    left: -100px;
  }
  to {
    left: calc(100% + 100px);
  }
}

@media (max-width: 1200px) {
  .haloween-footer-spider {
    position: fixed;
    bottom: 56px;
    z-index: 1102;
    width: 116px;
    height: 95px;
    pointer-events: none;
    display: flex;
  }

  .haloween-footer-hand {
    position: fixed;
    bottom: 53px;
    left: -100px;
    z-index: 1102;
    width: 47px;
    height: 41px;
    pointer-events: none;
    display: flex;
  }
}

.embedded-app {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: #000; */
  z-index: 1000;
  /* color: white; */
}


/*Valentines day*/
.hearts{
    position: absolute;
    left: var(--x);
    /*bottom: calc(-1 * var(--size)); !* старт ниже шапки *!*/
    bottom: -10px; /* старт ниже шапки */
    width: var(--size);
    height: var(--size);

    pointer-events: none;
    background: var(--heart-svg) no-repeat center / contain;

    opacity: 0;
    will-change: transform, opacity;

    animation: heartUp var(--dur) linear infinite;
    animation-delay: var(--delay);
}
/* 4) Плавная анимация вверх + мягкое изменение размера/прозрачности */
@keyframes heartUp{
    0%   { transform: translateY(0) rotate(var(--rot)) scale(0.92); opacity: 0; }
    15%  { opacity: var(--alpha); }
    60%  { transform: translateY(calc(-1 * var(--travel))) rotate(var(--rot)) scale(1.03); opacity: calc(var(--alpha) * 0.85); }
    100% { transform: translateY(calc(-1.35 * var(--travel))) rotate(var(--rot)) scale(0.98); opacity: 0; }
}

@keyframes heartUp-playful {
    0% {
        transform: translate3d(0, 0, 0) rotate(var(--rot)) scale(0.92);
        opacity: 0;
    }
    15% {
        opacity: var(--alpha);
    }

    35% {
        transform: translate3d(-6px, calc(-0.55 * var(--travel)), 0)
        rotate(var(--rot)) scale(1.02);
        opacity: calc(var(--alpha) * 0.95);
    }

    60% {
        transform: translate3d(6px, calc(-1 * var(--travel)), 0)
        rotate(var(--rot)) scale(1.06);
        opacity: calc(var(--alpha) * 0.85);
    }

    80% {
        transform: translate3d(-4px, calc(-1.18 * var(--travel)), 0)
        rotate(var(--rot)) scale(1.02);
        opacity: calc(var(--alpha) * 0.55);
    }

    100% {
        transform: translate3d(-2px, calc(-1.35 * var(--travel)), 0)
        rotate(var(--rot)) scale(0.98);
        opacity: 0;
    }
}

/* 5) Настройка "длины пролёта" (подгони под высоту шапки)
   - если шапка выше/ниже, меняй --travel на .header__body или глобально */
.header__body{ --travel: 48px; }

.hearts_1  { --x: -3%; --size: 20px; --alpha: .36; --dur: 6.8s; --delay: 0s; --rot: -8deg; --travel: 78px; display: none}
.hearts_2  { --x: -1.5%;  --size: 24px; --alpha: .7; --dur: 8.6s; --delay: 3.5s; --rot:  6deg;  --travel: 82px; display: none}
.hearts_3  { --x: 6.26%;  --size: 22px; --alpha: .26; --dur: 5.9s; --delay: 1s; --rot: -4deg;  --travel: 74px; display: none}
.hearts_4  { --x: 15.00%;  --size: 20px; --alpha: .58; --dur: 8.4s;--delay: 1.5s; --rot:  10deg; --travel: 86px; }
.hearts_5  { --x: 62.47%;  --size: 24px; --alpha: .32; --dur: 7.4s; --delay: 5s; --rot: -12deg; --travel: 80px; }
.hearts_6  { --x: 67.26%;  --size: 16px; --alpha: .24; --dur: 5.2s; --delay: 2.5s; --rot:  4deg;  --travel: 70px; }
.hearts_7  { --x: 76.32%;  --size: 24px; --alpha: .34; --dur: 8.2s; --delay: 3s; --rot: -7deg;  --travel: 84px; }
.hearts_8  { --x: 83.05%;  --size: 18px; --alpha: .42; --dur: 4.8s; --delay: 0.5s; --rot:  3deg;  --travel: 66px; }
.hearts_9  { --x: 87.05%;  --size: 24px; --alpha: .37; --dur: 6.1s; --delay: 4s; --rot: -2deg;  --travel: 76px; }
.hearts_10 { --x: 90.42%;  --size:  20px; --alpha: .20; --dur: 4.2s; --delay: 3.5s; --rot:  8deg; --travel: 64px; }
.hearts_11 { --x: 93.79%;  --size:  24px; --alpha: .39; --dur: 3.9s; --delay: 2s; --rot: -10deg; --travel: 62px; }
.hearts_12 { --x: 97.16%;  --size:  18px; --alpha: .28; --dur: 3.6s; --delay: 4.5s; --rot:  2deg;  --travel: 60px; }

@media (max-width: 1920px) {
    .hearts_1  { --x:     -3%; display: none}
    .hearts_2  { --x:   -1.5%; display: none}
    .hearts_3  { --x:  10.26%; display: none}
    .hearts_4  { --x:  15.00%;}
    .hearts_5  { --x:     18%;}
    .hearts_6  { --x:  19.47%;}
    .hearts_7  { --x:  67.26%;}
    .hearts_8  { --x:  72.32%;}
    .hearts_9  { --x:  74.32%;}
    .hearts_10 { --x:  76.32%;}
    .hearts_11 { --x:  90.92%;}
    .hearts_12 { --x: 101.16%;}
}

@media (max-width: 1366px) {
    .hearts_1  { --x:     -3%; display: none}
    .hearts_2  { --x:   -1.5%; display: none}
    .hearts_3  { --x:  12.26%;}
    .hearts_4  { --x:  15.00%;}
    .hearts_5  { --x:     18%;}
    .hearts_6  { --x:  19.47%;}
    .hearts_7  { --x:  67.26%;}
    .hearts_8  { --x:  72.32%;}
    .hearts_9  { --x:  74.32%;}
    .hearts_10 { --x:  76.32%;}
    .hearts_11 { --x:  90.92%;}
    .hearts_12 { --x: 101.16%;}
}

@media (max-width: 1024px) {
    .hearts_1  { --x:     -3%; display: none}
    .hearts_2  { --x:   -1.5%; display: none}
    .hearts_3  { --x:  17.26%; display: none}
    .hearts_4  { --x:  19.00%;}
    .hearts_5  { --x:     24%;}
    .hearts_6  { --x:     32%;}
    .hearts_7  { --x:  44.26%;}
    .hearts_8  { --x:  52.32%;}
    .hearts_9  { --x:  65.32%;}
    .hearts_10 { --x:  76.32%;}
    .hearts_11 { --x:  87.92%;}
    .hearts_12 { --x: 101.16%;}
}

@media (max-width: 390px) {
    .hearts_1  { --x:   -3.9%; display: none}
    .hearts_2  { --x:   -2.4%; display: none}
    .hearts_3  { --x:   33.5%; display: none}
    .hearts_4  { --x:   37.7%;}
    .hearts_5  { --x:   39.2%;}
    .hearts_6  { --x:   43.2%;}
    .hearts_7  { --x:  47.26%;}
    .hearts_8  { --x:  52.32%;}
    .hearts_9  { --x:  65.32%;}
    .hearts_10 { --x:  76.32%;}
    .hearts_11 { --x:  87.92%;}
    .hearts_12 { --x: 101.16%;}
}

@media (max-width: 360px) {
    .hearts_1  { --x:   -3.9%; display: none}
    .hearts_2  { --x:   -2.4%; display: none}
    .hearts_3  { --x:   37.5%; display: none}
    .hearts_4  { --x:   39.7%;}
    .hearts_5  { --x:   43.2%;}
    .hearts_6  { --x:   47.2%;}
    .hearts_7  { --x:  52.26%;}
    .hearts_8  { --x:  57.32%;}
    .hearts_9  { --x:  65.32%;}
    .hearts_10 { --x:  76.32%;}
    .hearts_11 { --x:  83.92%;}
    .hearts_12 { --x: 101.16%;}
}

@media (max-width: 320px) {
    .hearts_1  { --x:   -3.9%; display: none}
    .hearts_2  { --x:   -2.4%; display: none}
    .hearts_3  { --x:   39.5%; display: none}
    .hearts_4  { --x:   43.7%;}
    .hearts_5  { --x:   47.2%;}
    .hearts_6  { --x:   50.2%;}
    .hearts_7  { --x:  52.26%;}
    .hearts_8  { --x:  57.32%;}
    .hearts_9  { --x:  65.32%;}
    .hearts_10 { --x:  76.32%;}
    .hearts_11 { --x:  81.42%;}
    .hearts_12 { --x: 101.16%;}
}

.medium-card.medium-card_valentines-day.medium-card_valentines-day-amour {
    border: 1px solid #ffc2d1;
}

.medium-card.medium-card_valentines-day.medium-card_valentines-day-amour .medium-card__top::after {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 44px;
    height: 44px;

    pointer-events: none;

    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDEiIHZpZXdCb3g9IjAgMCA0OCA0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuOTM5NzcgMzEuMDQ4MkMxMC44MTI0IDMwLjMzMSAxMS43MDk1IDI5LjQ1ODMgMTEuODE3NSAyOC4yMjNDMTEuODg2NCAyNy40MzYyIDExLjYzOTggMjYuNjU0MyAxMS4xMzIxIDI2LjA0OTJDMTAuNjI0NCAyNS40NDQyIDkuODk3MiAyNS4wNjU2IDkuMTEwMzggMjQuOTk2OEM4LjE2MTAzIDI0LjkxMzcgNy40Njg1OCAyNS4xMjQ5IDYuNTg4NjkgMjUuODYzMkM1Ljg1MDM3IDI0Ljk4MzMgNS4yMDUxMSAyNC42NTUxIDQuMjU1NzcgMjQuNTcyMUMzLjQ2ODk1IDI0LjUwMzIgMi42ODcwMSAyNC43NDk4IDIuMDgxOTcgMjUuMjU3NEMxLjQ3NjkzIDI1Ljc2NTEgMS4wOTgzNSAyNi40OTI0IDEuMDI5NTEgMjcuMjc5MkMwLjkyMDk2OSAyOC41MTk4IDEuNjQ3NDkgMjkuNTM0NiAyLjM4ODE2IDMwLjM4NzVMNS44MzM2MyAzNC40OTM2TDkuOTM5NzcgMzEuMDQ4MloiIGZpbGw9IiNGRkMyRDEiLz4KPHBhdGggZD0iTTExLjQxMjggMjguMTg4OEMxMS40NzIzIDI3LjUwOTIgMTEuMjU5OCAyNi44MzMzIDEwLjgyMTMgMjYuMzEwN0MxMC4zODI5IDI1Ljc4ODMgOS43NTQ4NSAyNS40NjE3IDkuMDc1NSAyNS40MDIyQzguNjQxMzUgMjUuMzY0MiA4LjI4ODg0IDI1LjM5NTEgNy45NTI2NCAyNS41MDc4QzcuNjEzODIgMjUuNjIxNSA3LjI2NDk5IDI1LjgyNzEgNi44NTAyNiAyNi4xNzVDNi43Njc4NiAyNi4yNDQyIDYuNjYxMDEgMjYuMjc4IDYuNTUzODUgMjYuMjY4N0M2LjQ0NjY4IDI2LjI1OTMgNi4zNDc0NCAyNi4yMDczIDYuMjc4MjIgMjYuMTI1QzUuOTMwMTEgMjUuNzEwMSA1LjYyMTUgMjUuNDQ3MiA1LjMwNzQ3IDI1LjI3NjRDNC45OTYwNyAyNS4xMDcxIDQuNjU0OTEgMjUuMDE1NSA0LjIyMDk5IDI0Ljk3NzVDMy41NDE0NyAyNC45MTggMi44NjU0OSAyNS4xMzA1IDIuMzQyOTYgMjUuNTY5QzEuODIwNDIgMjYuMDA3NCAxLjQ5Mzc4IDI2LjYzNjIgMS40MzQzMyAyNy4zMTU3QzEuMzUzNiAyOC4yNDA2IDEuODEzNzQgMjkuMDQ0MSAyLjQyNDY5IDI5LjgwMDJMNS44ODMzIDMzLjkyMkw5LjY4MjM1IDMwLjczNTFMMTAuMDAzMiAzMC40NjIyQzEwLjczNjEgMjkuODE4MiAxMS4zMzIyIDI5LjEwODYgMTEuNDEyOCAyOC4xODg4Wk0xMi4yMjIyIDI4LjI1OTZDMTIuMDk4MSAyOS42NzY0IDExLjA3MTEgMzAuNjQyNyAxMC4yMDAzIDMxLjM1ODhMMTAuMjAxMiAzMS4zNTk5TDYuMDk1MjIgMzQuODA1MkM2LjAxMjgyIDM0Ljg3NDMgNS45MDU5NyAzNC45MDgxIDUuNzk4ODIgMzQuODk4OEM1LjY5MTU3IDM0Ljg4OTQgNS41OTI0MSAzNC44Mzc1IDUuNTIzMTggMzQuNzU1MUwyLjA4MTM2IDMwLjY1NDRDMS4zMzg3IDI5Ljc5OTIgMC41MDA1NzkgMjguNjY4NSAwLjYyNDkyIDI3LjI0NDlDMC43MDMxNDUgMjYuMzUwOCAxLjEzMzQyIDI1LjUyMzggMS44MjA5NyAyNC45NDY5QzIuNTA4NTIgMjQuMzcgMy4zOTc2OSAyNC4wODk4IDQuMjkxODEgMjQuMTY4QzQuODA2NzIgMjQuMjEzMSA1LjI2MjU3IDI0LjMyNzEgNS42OTU0IDI0LjU2MjRDNi4wMjkzNSAyNC43NDQgNi4zMzQzIDI0Ljk5MTEgNi42MzY4IDI1LjMwOTRDNi45OTAyMSAyNS4wNDgzIDcuMzMzOTYgMjQuODU4MiA3LjY5NDYgMjQuNzM3M0M4LjE2MTg5IDI0LjU4MDYgOC42MzExNiAyNC41NDc3IDkuMTQ2MzEgMjQuNTkyOEMxMC4wNDAzIDI0LjY3MTEgMTAuODY2NiAyNS4xMDEzIDExLjQ0MzQgMjUuNzg4N0MxMi4wMjAzIDI2LjQ3NjMgMTIuMzAwNCAyNy4zNjU1IDEyLjIyMjIgMjguMjU5NloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIG9wYWNpdHk9IjAuNCIgZD0iTTI5LjI0NSAxOC44NDY4QzMxLjExOTYgMTYuMjI2NyAzMi45NDY5IDEzLjE2MDIgMzIuMzMyOCA5LjY3NzI1QzMxLjk0MTYgNy40NTg3IDMwLjY4NTEgNS40ODY0MiAyOC44Mzk4IDQuMTk0MjhDMjYuOTk0NCAyLjkwMjE1IDI0LjcxMTMgMi4zOTYgMjIuNDkyOCAyLjc4NzE5QzE5LjgxNTkgMy4yNTkxOCAxOC4wNjQxIDQuMzUyMTggMTYuMTg1IDcuMDM1ODNDMTMuNTAxMyA1LjE1NjcyIDExLjQ4MTMgNC43Mjg4IDguODA0NSA1LjIwMDhDNi41ODU5NSA1LjU5MTk5IDQuNjEzNjcgNi44NDg0NyAzLjMyMTUzIDguNjkzODNDMi4wMjkzOSAxMC41MzkyIDEuNTIzMjUgMTIuODIyMyAxLjkxNDQ0IDE1LjA0MDhDMi41MzEyNSAxOC41Mzg5IDUuMjgxOTQgMjAuNzk4MyA3Ljk1MjE3IDIyLjYwMTNMMjAuNDc1OCAzMS4zNzA1TDI5LjI0NSAxOC44NDY4WiIgZmlsbD0iI0ZGRTVEOSIvPgo8cGF0aCBkPSJNMjQuNDExMSAxNy4yMzM2QzI1LjI3NyAxNS40MjUgMjYuMDY1NiAxMy4zNDc5IDI1LjMxMjcgMTEuMjc5NUMyNC44MzMyIDkuOTYxODkgMjMuODQ5OCA4Ljg4ODc5IDIyLjU3OTEgOC4yOTYyM0MyMS4zMDgzIDcuNzAzNjYgMTkuODU0MiA3LjY0MDE4IDE4LjUzNjYgOC4xMTk3M0MxNi45NDY5IDguNjk4MzQgMTUuOTkxMyA5LjU1NzYzIDE1LjEyOTUgMTEuNDA1NkMxMy4yODE1IDEwLjU0MzkgMTEuOTk3MSAxMC40OTk5IDEwLjQwNzQgMTEuMDc4NkM5LjA4OTc4IDExLjU1ODEgOC4wMTY2OCAxMi41NDE0IDcuNDI0MTIgMTMuODEyMkM2LjgzMTU1IDE1LjA4MjkgNi43NjgwNiAxNi41MzcgNy4yNDc2MiAxNy44NTQ2QzguMDAzNzYgMTkuOTMyMSA5LjkzMzk3IDIxLjAxOTcgMTEuNzY1NiAyMS44MzYyTDIwLjM4OTYgMjUuODU3N0wyNC40MTExIDE3LjIzMzZaIiBmaWxsPSIjRkY4RkEzIi8+CjxwYXRoIGQ9Ik0yNC42MzU2IDExLjUyNTRDMjQuMjIxNSAxMC4zODc1IDIzLjM3MTYgOS40NjA5MSAyMi4yNzQyIDguOTQ5MTRDMjEuMTc2NyA4LjQzNzM4IDE5LjkyMDcgOC4zODE5OSAxOC43ODI4IDguNzk2MTZDMTguMDU1OSA5LjA2MDc0IDE3LjUxMjMgOS4zNzQ1OCAxNy4wNTYgOS44MDgxM0MxNi41OTYxIDEwLjI0NTIgMTYuMTg5MyAxMC44Mzg1IDE1Ljc4MyAxMS43MDk4QzE1LjYxNDcgMTIuMDcwNCAxNS4xODU3IDEyLjIyNjUgMTQuODI1IDEyLjA1ODVDMTMuOTUzNiAxMS42NTIyIDEzLjI1OTggMTEuNDU5NSAxMi42MjY1IDExLjQyMDRDMTEuOTk4NSAxMS4zODE3IDExLjM4MDcgMTEuNDkwMyAxMC42NTQxIDExLjc1NDhDOS41MTYyMSAxMi4xNjg5IDguNTg5NjUgMTMuMDE4NyA4LjA3Nzg5IDE0LjExNjJDNy41NjYxMiAxNS4yMTM3IDcuNTEwNzMgMTYuNDY5NyA3LjkyNDkgMTcuNjA3NkM4LjQ4ODgyIDE5LjE1NjUgOS44MzI4MSAyMC4xMDQxIDExLjM4MzMgMjAuODYyMkwyMC4wNDA4IDI0Ljg5ODVMMjMuNzYwNSAxNi45MjE2QzI0LjYyNzMgMTUuMTExMSAyNS4yNzYzIDEzLjI4NjEgMjQuNjM1NiAxMS41MjU0Wk0yNS45OTAxIDExLjAzMjRDMjYuODU0NyAxMy40MDgzIDI1LjkyNjYgMTUuNzM3OSAyNS4wNjE4IDE3LjU0NDRMMjUuMDYwNSAxNy41NDM4TDIxLjA0MjkgMjYuMTYxMkMyMC44NzQ2IDI2LjUyMjEgMjAuNDQ1NyAyNi42NzgyIDIwLjA4NDggMjYuNTA5OUwxMS40NzIxIDIyLjQ5MzdMMTAuNzY5MyAyMi4xNjc1QzkuMTA2NTYgMjEuMzU4NiA3LjMyOTg1IDIwLjE4NjcgNi41NzA0MiAxOC4xMDA2QzYuMDI1NDcgMTYuNjAzMyA2LjA5Nzc3IDE0Ljk1MDkgNi43NzExNCAxMy41MDY4QzcuNDQ0NTEgMTIuMDYyOCA4LjY2Mzg4IDEwLjk0NTIgMTAuMTYxMSAxMC40MDAzQzExLjAyMzcgMTAuMDg2NCAxMS44NDI3IDkuOTI3NzUgMTIuNzE2IDkuOTgxN0MxMy4zODk2IDEwLjAyMzMgMTQuMDY1OCAxMC4xOTA0IDE0Ljc5MTMgMTAuNDc1NUMxNS4xNjM4IDkuNzkwNzcgMTUuNTc0NCA5LjIyODEgMTYuMDYzNiA4Ljc2MzI1QzE2LjY5NzkgOC4xNjA2MiAxNy40MjcyIDcuNzU1NjcgMTguMjg5OCA3LjQ0MTY4QzE5Ljc4NzEgNi44OTY3MyAyMS40Mzk1IDYuOTY5MDMgMjIuODgzNiA3LjY0MjRDMjQuMzI3NiA4LjMxNTc4IDI1LjQ0NTIgOS41MzUxOCAyNS45OTAxIDExLjAzMjRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzguNDYxNyAxNS4wNDQyQzM5Ljc1OTYgMTQuMzEyNCA0MS4xMjQ4IDEzLjM4NDIgNDEuNTQ4MiAxMS44MDQzQzQxLjgxNzggMTAuNzk3OSA0MS42NzY3IDkuNzI1NjQgNDEuMTU1NyA4LjgyMzM1QzQwLjYzNDggNy45MjEwNiAzOS43NzY4IDcuMjYyNjYgMzguNzcwNCA2Ljk5MzAxQzM3LjU1NjEgNi42Njc2NSAzNi42MDgyIDYuNzgzMzggMzUuMjk2IDcuNTQwOTZDMzQuNTM4NSA2LjIyODc5IDMzLjc3NTQgNS42NTQ2IDMyLjU2MTEgNS4zMjkyNEMzMS41NTQ4IDUuMDU5NTkgMzAuNDgyNSA1LjIwMDc1IDI5LjU4MDIgNS43MjE2OUMyOC42Nzc5IDYuMjQyNjMgMjguMDE5NSA3LjEwMDY3IDI3Ljc0OTkgOC4xMDcwNEMyNy4zMjQ3IDkuNjkzODUgMjguMDM2IDExLjE3ODUgMjguODAyOSAxMi40NTYyTDMyLjMzODIgMTguNTc5NkwzOC40NjE3IDE1LjA0NDJaIiBmaWxsPSIjRkRGMkY4Ii8+CjxwYXRoIGQ9Ik00MS4wMzA1IDExLjY2NjJDNDEuMjYzNCAxMC43OTcxIDQxLjE0MjEgOS44NzA3NiA0MC42OTIyIDkuMDkxNTJDNDAuMjQyMyA4LjMxMjI3IDM5LjUwMDcgNy43NDQwNyAzOC42MzE2IDcuNTExMTlDMzguMDc2NCA3LjM2MjQ1IDM3LjYxMTggNy4zMjE2MSAzNy4xNDkzIDcuMzkxMDJDMzYuNjgzMSA3LjQ2MTA0IDM2LjE4MjcgNy42NDg0OSAzNS41NjQxIDguMDA1NkMzNS40NDExIDguMDc2NTkgMzUuMjk0OSA4LjA5NTIxIDM1LjE1NzcgOC4wNTg0NkMzNS4wMjA1IDguMDIxNyAzNC45MDMyIDcuOTMyNDMgMzQuODMyMiA3LjgwOTQ3QzM0LjQ3NTEgNy4xOTA5NSAzNC4xMzU0IDYuNzc4MzkgMzMuNzY2NyA2LjQ4NDY1QzMzLjQwMDkgNi4xOTMzIDMyLjk3OCA1Ljk5NjM1IDMyLjQyMjkgNS44NDc1N0MzMS41NTM3IDUuNjE0NjggMzAuNjI3NCA1LjczNTk3IDI5Ljg0ODIgNi4xODU4N0MyOS4wNjg5IDYuNjM1NzggMjguNTAwNyA3LjM3NzM0IDI4LjI2NzggOC4yNDY0OEMyNy45NTEgOS40Mjk1NyAyOC4zNjQ1IDEwLjU3ODkgMjguOTg1IDExLjcwMTJMMjkuMjYxOSAxMi4xODA4TDI5LjI2NyAxMi4xODgyTDMyLjUzNDYgMTcuODQ3OUwzOC4xOTQzIDE0LjU4MDNMMzguMTk4OCAxNC41Nzg1QzM5LjQ5OCAxMy44NDU5IDQwLjY3IDEzLjAxMSA0MS4wMzA1IDExLjY2NjJaTTQyLjA2NTMgMTEuOTQzNUM0MS41Nzk2IDEzLjc1NTggNDAuMDI0OCAxNC43NzY0IDM4LjcyOTUgMTUuNTA3MkwzOC43MzAyIDE1LjUwODRMMzIuNjA2NCAxOS4wNDM5QzMyLjQ4MzQgMTkuMTE1IDMyLjMzNyAxOS4xMzQ1IDMyLjE5OTcgMTkuMDk3N0MzMi4wNjI1IDE5LjA2MSAzMS45NDU1IDE4Ljk3MDkgMzEuODc0NCAxOC44NDc4TDI4LjM0MzcgMTIuNzMyNUwyOC4wNTU1IDEyLjIzNDdDMjcuMzg4MSAxMS4wMzM1IDI2LjgwNTIgOS41NjI2MiAyNy4yMzIxIDcuOTY4OTZDMjcuNTM4NSA2LjgyNTM1IDI4LjI4NyA1Ljg0OTcyIDI5LjMxMjMgNS4yNTc3NUMzMC4zMzc3IDQuNjY1NzcgMzEuNTU2OCA0LjUwNTQxIDMyLjcwMDQgNC44MTE4NEMzMy4zNTkyIDQuOTg4NCAzMy45MjU2IDUuMjQxNCAzNC40MzQxIDUuNjQ2NDFDMzQuODI2MiA1Ljk1ODc2IDM1LjE2NjUgNi4zNDg2NSAzNS40ODY1IDYuODMxMjVDMzYuMDA1IDYuNTczMzEgMzYuNDk0NiA2LjQwNTggMzYuOTkwNCA2LjMzMTM3QzM3LjYzMzMgNi4yMzQ4OCAzOC4yNTAyIDYuMjk4OTMgMzguOTA5MSA2LjQ3NTQ2QzQwLjA1MjcgNi43ODE4OSA0MS4wMjg0IDcuNTMwMzQgNDEuNjIwMyA4LjU1NTY3QzQyLjIxMjMgOS41ODA5OSA0Mi4zNzE3IDEwLjc5OTkgNDIuMDY1MyAxMS45NDM1WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTM0LjQzMTcgMjYuNDcwMUMzNS4yOTExIDI2LjQ3ODkgMzYuMjQwOSAyNi40MDg5IDM2LjkwODEgMjUuNzQxOEMzNy4zMzMxIDI1LjMxNjggMzcuNTcxOCAyNC43NDA0IDM3LjU3MTggMjQuMTM5NEMzNy41NzE4IDIzLjUzODQgMzcuMzMzMSAyMi45NjIgMzYuOTA4MSAyMi41MzdDMzYuMzk1MyAyMi4wMjQyIDM1Ljg4ODQgMjEuODA4NiAzNS4wMTQzIDIxLjgwODZDMzUuMDE0MyAyMC45MzQ2IDM0Ljc5ODcgMjAuNDI3NyAzNC4yODYgMTkuOTE0OUMzMy44NjEgMTkuNDg5OSAzMy4yODQ2IDE5LjI1MTIgMzIuNjgzNiAxOS4yNTEyQzMyLjA4MjYgMTkuMjUxMiAzMS41MDYyIDE5LjQ4OTkgMzEuMDgxMiAxOS45MTQ5QzMwLjQxMTEgMjAuNTg1IDMwLjMzODMgMjEuNTMxOCAzMC4zNTI4IDIyLjM5MTNMMzAuMzUyOCAyNi40NzAxSDM0LjQzMTdaIiBmaWxsPSIjRkZDMkQxIi8+CjxwYXRoIGQ9Ik0zNi43NjE5IDI1LjU5NjZDMzcuMTQ4MiAyNS4yMTAzIDM3LjM2NTQgMjQuNjg2IDM3LjM2NTQgMjQuMTM5NkMzNy4zNjU0IDIzLjU5MzQgMzcuMTQ4OCAyMy4wNjk2IDM2Ljc2MjYgMjIuNjgzM0MzNi41MjA5IDIyLjQ0MTYgMzYuMjg4OSAyMi4yNzgxIDM2LjAyMTYgMjIuMTczQzM1Ljc1MjggMjIuMDY3MyAzNS40MzQ2IDIyLjAxNDggMzUuMDE0MSAyMi4wMTQ4QzM0Ljk1OTYgMjIuMDE0OCAzNC45MDcgMjEuOTkzNCAzNC44Njg0IDIxLjk1NDhDMzQuODI5OSAyMS45MTYyIDM0LjgwODQgMjEuODYzNiAzNC44MDg0IDIxLjgwOTFDMzQuODA4NCAyMS4zODg4IDM0Ljc1NjUgMjEuMDcxIDM0LjY1MDkgMjAuODAyM0MzNC41NDU4IDIwLjUzNSAzNC4zODIyIDIwLjMwMyAzNC4xNDA2IDIwLjA2MTNDMzMuNzU0MyAxOS42NzUgMzMuMjMgMTkuNDU3OCAzMi42ODM2IDE5LjQ1NzhDMzIuMTM3MiAxOS40NTc4IDMxLjYxMjkgMTkuNjc1IDMxLjIyNjYgMjAuMDYxM0MzMC42MjI5IDIwLjY2NTMgMzAuNTQ0MyAyMS41MzAyIDMwLjU1ODggMjIuMzg3N1YyNi4yNjQ0SDM0LjQzNDFDMzUuMjkzOSAyNi4yNzMxIDM2LjE2MDkgMjYuMTk3MyAzNi43NjE5IDI1LjU5NjZaTTM3LjA1MzMgMjUuODg4QzM2LjMyMDcgMjYuNjIwNCAzNS4yOTAyIDI2LjY4MzggMzQuNDMyIDI2LjY3NTNWMjYuNjc2NkgzMC4zNTI0QzMwLjI5NzkgMjYuNjc2NSAzMC4yNDU5IDI2LjY1NDQgMzAuMjA3MyAyNi42MTU5QzMwLjE2ODggMjYuNTc3MyAzMC4xNDY3IDI2LjUyNTMgMzAuMTQ2NiAyNi40NzA5TDMwLjE0NzMgMjIuMzk0NkMzMC4xMzI3IDIxLjUzMzggMzAuMTk5NSAyMC41MDU4IDMwLjkzNTIgMTkuNzY5OUMzMS4zOTg4IDE5LjMwNjMgMzIuMDI3OSAxOS4wNDQ5IDMyLjY4MzYgMTkuMDQ0OUMzMy4zMzkyIDE5LjA0NDkgMzMuOTY4NCAxOS4zMDYzIDM0LjQzMiAxOS43Njk5QzM0LjcwMjggMjAuMDQwNyAzNC45MDM0IDIwLjMxODUgMzUuMDM0MiAyMC42NTFDMzUuMTQ0OCAyMC45MzI1IDM1LjE5OTEgMjEuMjQ0MSAzNS4yMTM3IDIxLjYwOTVDMzUuNTc5MSAyMS42MjQxIDM1Ljg5MDcgMjEuNjc4MyAzNi4xNzIyIDIxLjc4OUMzNi41MDQ5IDIxLjkxOTkgMzYuNzgzIDIyLjEyMDkgMzcuMDU0IDIyLjM5MTlDMzcuNTE3NCAyMi44NTU0IDM3Ljc3ODMgMjMuNDg0MSAzNy43Nzg0IDI0LjEzOTZDMzcuNzc4NCAyNC43OTUzIDM3LjUxNjkgMjUuNDI0NCAzNy4wNTMzIDI1Ljg4OFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xNy40NzQ0IDMyLjY1MDNDMTcuODI1NSAzMi4xNTk3IDE4LjE2NzcgMzEuNTg1NCAxOC4wNTI3IDMwLjkzMzJDMTcuOTc5NCAzMC41MTc3IDE3Ljc0NDEgMzAuMTQ4NCAxNy4zOTg1IDI5LjkwNjRDMTcuMDUzIDI5LjY2NDQgMTYuNjI1NCAyOS41Njk2IDE2LjIwOTkgMjkuNjQyOUMxNS43MDg3IDI5LjczMTMgMTUuMzgwNiAyOS45MzYgMTUuMDI4NyAzMC40Mzg1QzE0LjUyNjEgMzAuMDg2NiAxNC4xNDc5IDMwLjAwNjUgMTMuNjQ2NiAzMC4wOTQ5QzEzLjIzMTEgMzAuMTY4MSAxMi44NjE4IDMwLjQwMzQgMTIuNjE5OCAzMC43NDlDMTIuMzc3OCAzMS4wOTQ2IDEyLjI4MyAzMS41MjIxIDEyLjM1NjMgMzEuOTM3NkMxMi40NzE4IDMyLjU5MjcgMTIuOTg2OSAzMy4wMTU4IDEzLjQ4NyAzMy4zNTM0TDE1LjgzMjIgMzQuOTk1NkwxNy40NzQ0IDMyLjY1MDNaIiBmaWxsPSIjRkRGMkY4Ii8+CjxwYXRoIGQ9Ik0xNy45MTA3IDMwLjk1ODVDMTcuODQ0MSAzMC41ODA4IDE3LjYzIDMwLjI0NTEgMTcuMzE1OCAzMC4wMjUyQzE3LjAwMTYgMjkuODA1MiAxNi42MTI5IDI5LjcxODcgMTYuMjM1MyAyOS43ODUzQzE1Ljk5OSAyOS44MjcgMTUuODExNSAyOS44OTQzIDE1LjY0MzUgMzAuMDA1N0MxNS40NzQ1IDMwLjExNzcgMTUuMzE2NiAzMC4yNzk4IDE1LjE0NzQgMzAuNTIxNUMxNS4xMDE2IDMwLjU4NjggMTUuMDExNyAzMC42MDI3IDE0Ljk0NjQgMzAuNTU3QzE0LjcwNDYgMzAuMzg3NyAxNC41MDA5IDMwLjI4OTQgMTQuMzAzOCAzMC4yNDE5QzE0LjEwNzcgMzAuMTk0NyAxMy45MDg1IDMwLjE5NTYgMTMuNjcyMyAzMC4yMzcyQzEzLjI5NDYgMzAuMzAzOCAxMi45NTg5IDMwLjUxOCAxMi43Mzg5IDMwLjgzMjJDMTIuNTE5IDMxLjE0NjMgMTIuNDMyNSAzMS41MzUgMTIuNDk5MSAzMS45MTI3QzEyLjU5MDMgMzIuNDI5NCAxMi45NTg1IDMyLjc5NTIgMTMuMzgzNSAzMy4xMDQ0TDE1Ljc5NjYgMzQuNzk0TDE3LjM1NzMgMzIuNTY2M0MxNy43MDg2IDMyLjA3NTMgMTguMDE0MyAzMS41NDYgMTcuOTEwNyAzMC45NTg1Wk0xOC4xOTU0IDMwLjkwODNDMTguMzIxNiAzMS42MjQ1IDE3Ljk0MjMgMzIuMjQyMSAxNy41OTE4IDMyLjczMjJMMTcuNTkzIDMyLjczM0wxNS45NTA4IDM1LjA3ODJDMTUuOTA1IDM1LjE0MzYgMTUuODE1MiAzNS4xNTk0IDE1Ljc0OTggMzUuMTEzNkwxMy40MDY5IDMzLjQ3MzFMMTMuMjE3IDMzLjM0MUMxMi43NzE2IDMzLjAxNzkgMTIuMzI1NSAzMi41OTI2IDEyLjIxNDQgMzEuOTYyOUMxMi4xMzQ1IDMxLjUwOTcgMTIuMjM3NCAzMS4wNDI4IDEyLjUwMTQgMzAuNjY1OEMxMi43NjUzIDMwLjI4ODggMTMuMTY4OCAzMC4wMzI1IDEzLjYyMjEgMjkuOTUyNkMxMy44ODY5IDI5LjkwNTkgMTQuMTI3NCAyOS45MDI2IDE0LjM3MTMgMjkuOTYxM0MxNC41Nzc3IDMwLjAxMSAxNC43Nzg0IDMwLjEwNTQgMTQuOTk0MyAzMC4yNDQxQzE1LjE1IDMwLjAzOTYgMTUuMzA2OSAyOS44ODI1IDE1LjQ4NCAyOS43NjUxQzE1LjY5MzEgMjkuNjI2NSAxNS45MjAzIDI5LjU0NzQgMTYuMTg1MSAyOS41MDA2QzE2LjYzODMgMjkuNDIwNyAxNy4xMDUyIDI5LjUyMzYgMTcuNDgyMSAyOS43ODc2QzE3Ljg1OTEgMzAuMDUxNiAxOC4xMTU1IDMwLjQ1NTEgMTguMTk1NCAzMC45MDgzWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTEyLjk3ODcgMi4yMzY3N0MxMi43MTg0IDEuNzg1OTIgMTIuMjg5NyAxLjQ1NjczIDExLjc4NjggMS4zMjE5OEMxMS4yODM5IDEuMTg3MjQgMTAuNzQ4MSAxLjI1Nzk2IDEwLjI5NzIgMS41MTgyNUMxMC4wMTUgMS42ODExOSA5LjgwNjgxIDEuODU0MTcgOS42NDQwNSAyLjA3NDQxQzkuNDgwNTIgMi4yOTU3MyA5LjM1NDMxIDIuNTc1NSA5LjI1MDYzIDIuOTYyMzlDOS4yMjI1NyAzLjA2NzEyIDkuMTE1MjIgMy4xMjkxIDkuMDEwNDggMy4xMDEwNEM4LjYyMzU4IDIuOTk3MzggOC4zMTgyMSAyLjk2Njc4IDguMDQ0NzYgMi45OTc3NkM3Ljc3MjY1IDMuMDI4NiA3LjUxODc2IDMuMTIyMzcgNy4yMzY1NiAzLjI4NTNDNi43ODU3IDMuNTQ1NjUgNi40NTY1MSAzLjk3NDMyIDYuMzIxNzcgNC40NzcyMUM2LjE4NzAyIDQuOTgwMSA2LjI1Nzc3IDUuNTE1OTQgNi41MTgwNCA1Ljk2NjgzQzYuODc0MiA2LjU4MzcxIDcuNTEzNjkgNi44Nzk4MiA4LjE5OTM2IDcuMDc2OTNMMTIuMDYzMyA4LjExMjI4TDEzLjAxOTIgNC41NDcyM0wxMy4wMTkxIDQuNTQ1MzVMMTMuMDE5OCA0LjU0NDkzQzEzLjI0IDMuNzU1NDUgMTMuMzgzNyAyLjkzODE4IDEyLjk3ODcgMi4yMzY3N1pNMTMuMzE4OSAyLjA0MDM4QzEzLjgxMyAyLjg5NjIzIDEzLjYxOCAzLjg2MjIzIDEzLjM5ODEgNC42NTA2MUwxMy4zOTcgNC42NTAzTDEyLjM5MiA4LjQwMzMzQzEyLjM2MzkgOC41MDc5OSAxMi4yNTY1IDguNTcwMDEgMTIuMTUxOCA4LjU0MTk4TDguNDAwNjcgNy41MzY4Nkw4LjA5NzEzIDcuNDU2MTVDNy4zNzg3NiA3LjI1MDc1IDYuNjEyMDIgNi45MTUxNCA2LjE3Nzg5IDYuMTYzMjJDNS44NjU1NSA1LjYyMjE0IDUuNzgxMjcgNC45NzkxOSA1Ljk0Mjk3IDQuMzc1NzFDNi4xMDQ2NyAzLjc3MjI0IDYuNDk5MTMgMy4yNTc1NyA3LjA0MDE3IDIuOTQ1MTVDNy4zNTY0NCAyLjc2MjU1IDcuNjYyMDMgMi42NDYwNiA4LjAwMDU4IDIuNjA3NjlDOC4yODY3NSAyLjU3NTI4IDguNTg2NjIgMi42MDIxNSA4LjkyNjIyIDIuNjc4NjRDOS4wMjk4MSAyLjM0NjAyIDkuMTU3MDkgMi4wNzI4NyA5LjMyODM0IDEuODQxMTJDOS41MzA4NCAxLjU2NzEgOS43ODQ1MiAxLjM2MDcgMTAuMTAwOCAxLjE3ODFDMTAuNjQxOSAwLjg2NTc0IDExLjI4NDggMC43ODE0OSAxMS44ODgzIDAuOTQzMTc5QzEyLjQ5MTggMS4xMDQ4OCAxMy4wMDY0IDEuNDk5MzQgMTMuMzE4OSAyLjA0MDM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTEzLjIwNzkgNC42MDAyM0MxMy40Mjc5IDMuODExMjUgMTMuNTk3OCAyLjkxOTcyIDEzLjE0ODIgMi4xNDEwMkMxMi44NjE5IDEuNjQ1IDEyLjM5MDIgMS4yODMwNiAxMS44MzY5IDEuMTM0ODJDMTEuMjgzNyAwLjk4NjU4IDEwLjY5NDIgMS4wNjQxOCAxMC4xOTgyIDEuMzUwNTZDOS41OTk3NCAxLjY5NjA5IDkuMjc2MjUgMi4xMDk1NiA5LjA2MDY3IDIuOTE0MTFDOC4yNTYxMSAyLjY5ODUzIDcuNzM2MyAyLjc3MTk1IDcuMTM3ODIgMy4xMTc0OEM2LjY0MTggMy40MDM4NiA2LjI3OTg2IDMuODc1NTUgNi4xMzE2MiA0LjQyODc5QzUuOTgzMzggNC45ODIwMiA2LjA2MDk5IDUuNTcxNDkgNi4zNDczNiA2LjA2NzUxQzYuNzk4OTEgNi44NDk2MSA3LjY1MjU0IDcuMTUwMiA4LjQ0NzI4IDcuMzQ4NzhMMTIuMjAxOSA4LjM1NDgxTDEzLjIwNzkgNC42MDAyM1oiIGZpbGw9IiNGRjhGQTMiLz4KPC9zdmc+Cg==)
}

.voyant-card_valentines-day-amour{
    border: 1px solid #ffc2d1;
}

.voyant-card_valentines-day-amour::after{
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 44px;
    height: 44px;

    pointer-events: none;

    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDEiIHZpZXdCb3g9IjAgMCA0OCA0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuOTM5NzcgMzEuMDQ4MkMxMC44MTI0IDMwLjMzMSAxMS43MDk1IDI5LjQ1ODMgMTEuODE3NSAyOC4yMjNDMTEuODg2NCAyNy40MzYyIDExLjYzOTggMjYuNjU0MyAxMS4xMzIxIDI2LjA0OTJDMTAuNjI0NCAyNS40NDQyIDkuODk3MiAyNS4wNjU2IDkuMTEwMzggMjQuOTk2OEM4LjE2MTAzIDI0LjkxMzcgNy40Njg1OCAyNS4xMjQ5IDYuNTg4NjkgMjUuODYzMkM1Ljg1MDM3IDI0Ljk4MzMgNS4yMDUxMSAyNC42NTUxIDQuMjU1NzcgMjQuNTcyMUMzLjQ2ODk1IDI0LjUwMzIgMi42ODcwMSAyNC43NDk4IDIuMDgxOTcgMjUuMjU3NEMxLjQ3NjkzIDI1Ljc2NTEgMS4wOTgzNSAyNi40OTI0IDEuMDI5NTEgMjcuMjc5MkMwLjkyMDk2OSAyOC41MTk4IDEuNjQ3NDkgMjkuNTM0NiAyLjM4ODE2IDMwLjM4NzVMNS44MzM2MyAzNC40OTM2TDkuOTM5NzcgMzEuMDQ4MloiIGZpbGw9IiNGRkMyRDEiLz4KPHBhdGggZD0iTTExLjQxMjggMjguMTg4OEMxMS40NzIzIDI3LjUwOTIgMTEuMjU5OCAyNi44MzMzIDEwLjgyMTMgMjYuMzEwN0MxMC4zODI5IDI1Ljc4ODMgOS43NTQ4NSAyNS40NjE3IDkuMDc1NSAyNS40MDIyQzguNjQxMzUgMjUuMzY0MiA4LjI4ODg0IDI1LjM5NTEgNy45NTI2NCAyNS41MDc4QzcuNjEzODIgMjUuNjIxNSA3LjI2NDk5IDI1LjgyNzEgNi44NTAyNiAyNi4xNzVDNi43Njc4NiAyNi4yNDQyIDYuNjYxMDEgMjYuMjc4IDYuNTUzODUgMjYuMjY4N0M2LjQ0NjY4IDI2LjI1OTMgNi4zNDc0NCAyNi4yMDczIDYuMjc4MjIgMjYuMTI1QzUuOTMwMTEgMjUuNzEwMSA1LjYyMTUgMjUuNDQ3MiA1LjMwNzQ3IDI1LjI3NjRDNC45OTYwNyAyNS4xMDcxIDQuNjU0OTEgMjUuMDE1NSA0LjIyMDk5IDI0Ljk3NzVDMy41NDE0NyAyNC45MTggMi44NjU0OSAyNS4xMzA1IDIuMzQyOTYgMjUuNTY5QzEuODIwNDIgMjYuMDA3NCAxLjQ5Mzc4IDI2LjYzNjIgMS40MzQzMyAyNy4zMTU3QzEuMzUzNiAyOC4yNDA2IDEuODEzNzQgMjkuMDQ0MSAyLjQyNDY5IDI5LjgwMDJMNS44ODMzIDMzLjkyMkw5LjY4MjM1IDMwLjczNTFMMTAuMDAzMiAzMC40NjIyQzEwLjczNjEgMjkuODE4MiAxMS4zMzIyIDI5LjEwODYgMTEuNDEyOCAyOC4xODg4Wk0xMi4yMjIyIDI4LjI1OTZDMTIuMDk4MSAyOS42NzY0IDExLjA3MTEgMzAuNjQyNyAxMC4yMDAzIDMxLjM1ODhMMTAuMjAxMiAzMS4zNTk5TDYuMDk1MjIgMzQuODA1MkM2LjAxMjgyIDM0Ljg3NDMgNS45MDU5NyAzNC45MDgxIDUuNzk4ODIgMzQuODk4OEM1LjY5MTU3IDM0Ljg4OTQgNS41OTI0MSAzNC44Mzc1IDUuNTIzMTggMzQuNzU1MUwyLjA4MTM2IDMwLjY1NDRDMS4zMzg3IDI5Ljc5OTIgMC41MDA1NzkgMjguNjY4NSAwLjYyNDkyIDI3LjI0NDlDMC43MDMxNDUgMjYuMzUwOCAxLjEzMzQyIDI1LjUyMzggMS44MjA5NyAyNC45NDY5QzIuNTA4NTIgMjQuMzcgMy4zOTc2OSAyNC4wODk4IDQuMjkxODEgMjQuMTY4QzQuODA2NzIgMjQuMjEzMSA1LjI2MjU3IDI0LjMyNzEgNS42OTU0IDI0LjU2MjRDNi4wMjkzNSAyNC43NDQgNi4zMzQzIDI0Ljk5MTEgNi42MzY4IDI1LjMwOTRDNi45OTAyMSAyNS4wNDgzIDcuMzMzOTYgMjQuODU4MiA3LjY5NDYgMjQuNzM3M0M4LjE2MTg5IDI0LjU4MDYgOC42MzExNiAyNC41NDc3IDkuMTQ2MzEgMjQuNTkyOEMxMC4wNDAzIDI0LjY3MTEgMTAuODY2NiAyNS4xMDEzIDExLjQ0MzQgMjUuNzg4N0MxMi4wMjAzIDI2LjQ3NjMgMTIuMzAwNCAyNy4zNjU1IDEyLjIyMjIgMjguMjU5NloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIG9wYWNpdHk9IjAuNCIgZD0iTTI5LjI0NSAxOC44NDY4QzMxLjExOTYgMTYuMjI2NyAzMi45NDY5IDEzLjE2MDIgMzIuMzMyOCA5LjY3NzI1QzMxLjk0MTYgNy40NTg3IDMwLjY4NTEgNS40ODY0MiAyOC44Mzk4IDQuMTk0MjhDMjYuOTk0NCAyLjkwMjE1IDI0LjcxMTMgMi4zOTYgMjIuNDkyOCAyLjc4NzE5QzE5LjgxNTkgMy4yNTkxOCAxOC4wNjQxIDQuMzUyMTggMTYuMTg1IDcuMDM1ODNDMTMuNTAxMyA1LjE1NjcyIDExLjQ4MTMgNC43Mjg4IDguODA0NSA1LjIwMDhDNi41ODU5NSA1LjU5MTk5IDQuNjEzNjcgNi44NDg0NyAzLjMyMTUzIDguNjkzODNDMi4wMjkzOSAxMC41MzkyIDEuNTIzMjUgMTIuODIyMyAxLjkxNDQ0IDE1LjA0MDhDMi41MzEyNSAxOC41Mzg5IDUuMjgxOTQgMjAuNzk4MyA3Ljk1MjE3IDIyLjYwMTNMMjAuNDc1OCAzMS4zNzA1TDI5LjI0NSAxOC44NDY4WiIgZmlsbD0iI0ZGRTVEOSIvPgo8cGF0aCBkPSJNMjQuNDExMSAxNy4yMzM2QzI1LjI3NyAxNS40MjUgMjYuMDY1NiAxMy4zNDc5IDI1LjMxMjcgMTEuMjc5NUMyNC44MzMyIDkuOTYxODkgMjMuODQ5OCA4Ljg4ODc5IDIyLjU3OTEgOC4yOTYyM0MyMS4zMDgzIDcuNzAzNjYgMTkuODU0MiA3LjY0MDE4IDE4LjUzNjYgOC4xMTk3M0MxNi45NDY5IDguNjk4MzQgMTUuOTkxMyA5LjU1NzYzIDE1LjEyOTUgMTEuNDA1NkMxMy4yODE1IDEwLjU0MzkgMTEuOTk3MSAxMC40OTk5IDEwLjQwNzQgMTEuMDc4NkM5LjA4OTc4IDExLjU1ODEgOC4wMTY2OCAxMi41NDE0IDcuNDI0MTIgMTMuODEyMkM2LjgzMTU1IDE1LjA4MjkgNi43NjgwNiAxNi41MzcgNy4yNDc2MiAxNy44NTQ2QzguMDAzNzYgMTkuOTMyMSA5LjkzMzk3IDIxLjAxOTcgMTEuNzY1NiAyMS44MzYyTDIwLjM4OTYgMjUuODU3N0wyNC40MTExIDE3LjIzMzZaIiBmaWxsPSIjRkY4RkEzIi8+CjxwYXRoIGQ9Ik0yNC42MzU2IDExLjUyNTRDMjQuMjIxNSAxMC4zODc1IDIzLjM3MTYgOS40NjA5MSAyMi4yNzQyIDguOTQ5MTRDMjEuMTc2NyA4LjQzNzM4IDE5LjkyMDcgOC4zODE5OSAxOC43ODI4IDguNzk2MTZDMTguMDU1OSA5LjA2MDc0IDE3LjUxMjMgOS4zNzQ1OCAxNy4wNTYgOS44MDgxM0MxNi41OTYxIDEwLjI0NTIgMTYuMTg5MyAxMC44Mzg1IDE1Ljc4MyAxMS43MDk4QzE1LjYxNDcgMTIuMDcwNCAxNS4xODU3IDEyLjIyNjUgMTQuODI1IDEyLjA1ODVDMTMuOTUzNiAxMS42NTIyIDEzLjI1OTggMTEuNDU5NSAxMi42MjY1IDExLjQyMDRDMTEuOTk4NSAxMS4zODE3IDExLjM4MDcgMTEuNDkwMyAxMC42NTQxIDExLjc1NDhDOS41MTYyMSAxMi4xNjg5IDguNTg5NjUgMTMuMDE4NyA4LjA3Nzg5IDE0LjExNjJDNy41NjYxMiAxNS4yMTM3IDcuNTEwNzMgMTYuNDY5NyA3LjkyNDkgMTcuNjA3NkM4LjQ4ODgyIDE5LjE1NjUgOS44MzI4MSAyMC4xMDQxIDExLjM4MzMgMjAuODYyMkwyMC4wNDA4IDI0Ljg5ODVMMjMuNzYwNSAxNi45MjE2QzI0LjYyNzMgMTUuMTExMSAyNS4yNzYzIDEzLjI4NjEgMjQuNjM1NiAxMS41MjU0Wk0yNS45OTAxIDExLjAzMjRDMjYuODU0NyAxMy40MDgzIDI1LjkyNjYgMTUuNzM3OSAyNS4wNjE4IDE3LjU0NDRMMjUuMDYwNSAxNy41NDM4TDIxLjA0MjkgMjYuMTYxMkMyMC44NzQ2IDI2LjUyMjEgMjAuNDQ1NyAyNi42NzgyIDIwLjA4NDggMjYuNTA5OUwxMS40NzIxIDIyLjQ5MzdMMTAuNzY5MyAyMi4xNjc1QzkuMTA2NTYgMjEuMzU4NiA3LjMyOTg1IDIwLjE4NjcgNi41NzA0MiAxOC4xMDA2QzYuMDI1NDcgMTYuNjAzMyA2LjA5Nzc3IDE0Ljk1MDkgNi43NzExNCAxMy41MDY4QzcuNDQ0NTEgMTIuMDYyOCA4LjY2Mzg4IDEwLjk0NTIgMTAuMTYxMSAxMC40MDAzQzExLjAyMzcgMTAuMDg2NCAxMS44NDI3IDkuOTI3NzUgMTIuNzE2IDkuOTgxN0MxMy4zODk2IDEwLjAyMzMgMTQuMDY1OCAxMC4xOTA0IDE0Ljc5MTMgMTAuNDc1NUMxNS4xNjM4IDkuNzkwNzcgMTUuNTc0NCA5LjIyODEgMTYuMDYzNiA4Ljc2MzI1QzE2LjY5NzkgOC4xNjA2MiAxNy40MjcyIDcuNzU1NjcgMTguMjg5OCA3LjQ0MTY4QzE5Ljc4NzEgNi44OTY3MyAyMS40Mzk1IDYuOTY5MDMgMjIuODgzNiA3LjY0MjRDMjQuMzI3NiA4LjMxNTc4IDI1LjQ0NTIgOS41MzUxOCAyNS45OTAxIDExLjAzMjRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzguNDYxNyAxNS4wNDQyQzM5Ljc1OTYgMTQuMzEyNCA0MS4xMjQ4IDEzLjM4NDIgNDEuNTQ4MiAxMS44MDQzQzQxLjgxNzggMTAuNzk3OSA0MS42NzY3IDkuNzI1NjQgNDEuMTU1NyA4LjgyMzM1QzQwLjYzNDggNy45MjEwNiAzOS43NzY4IDcuMjYyNjYgMzguNzcwNCA2Ljk5MzAxQzM3LjU1NjEgNi42Njc2NSAzNi42MDgyIDYuNzgzMzggMzUuMjk2IDcuNTQwOTZDMzQuNTM4NSA2LjIyODc5IDMzLjc3NTQgNS42NTQ2IDMyLjU2MTEgNS4zMjkyNEMzMS41NTQ4IDUuMDU5NTkgMzAuNDgyNSA1LjIwMDc1IDI5LjU4MDIgNS43MjE2OUMyOC42Nzc5IDYuMjQyNjMgMjguMDE5NSA3LjEwMDY3IDI3Ljc0OTkgOC4xMDcwNEMyNy4zMjQ3IDkuNjkzODUgMjguMDM2IDExLjE3ODUgMjguODAyOSAxMi40NTYyTDMyLjMzODIgMTguNTc5NkwzOC40NjE3IDE1LjA0NDJaIiBmaWxsPSIjRkRGMkY4Ii8+CjxwYXRoIGQ9Ik00MS4wMzA1IDExLjY2NjJDNDEuMjYzNCAxMC43OTcxIDQxLjE0MjEgOS44NzA3NiA0MC42OTIyIDkuMDkxNTJDNDAuMjQyMyA4LjMxMjI3IDM5LjUwMDcgNy43NDQwNyAzOC42MzE2IDcuNTExMTlDMzguMDc2NCA3LjM2MjQ1IDM3LjYxMTggNy4zMjE2MSAzNy4xNDkzIDcuMzkxMDJDMzYuNjgzMSA3LjQ2MTA0IDM2LjE4MjcgNy42NDg0OSAzNS41NjQxIDguMDA1NkMzNS40NDExIDguMDc2NTkgMzUuMjk0OSA4LjA5NTIxIDM1LjE1NzcgOC4wNTg0NkMzNS4wMjA1IDguMDIxNyAzNC45MDMyIDcuOTMyNDMgMzQuODMyMiA3LjgwOTQ3QzM0LjQ3NTEgNy4xOTA5NSAzNC4xMzU0IDYuNzc4MzkgMzMuNzY2NyA2LjQ4NDY1QzMzLjQwMDkgNi4xOTMzIDMyLjk3OCA1Ljk5NjM1IDMyLjQyMjkgNS44NDc1N0MzMS41NTM3IDUuNjE0NjggMzAuNjI3NCA1LjczNTk3IDI5Ljg0ODIgNi4xODU4N0MyOS4wNjg5IDYuNjM1NzggMjguNTAwNyA3LjM3NzM0IDI4LjI2NzggOC4yNDY0OEMyNy45NTEgOS40Mjk1NyAyOC4zNjQ1IDEwLjU3ODkgMjguOTg1IDExLjcwMTJMMjkuMjYxOSAxMi4xODA4TDI5LjI2NyAxMi4xODgyTDMyLjUzNDYgMTcuODQ3OUwzOC4xOTQzIDE0LjU4MDNMMzguMTk4OCAxNC41Nzg1QzM5LjQ5OCAxMy44NDU5IDQwLjY3IDEzLjAxMSA0MS4wMzA1IDExLjY2NjJaTTQyLjA2NTMgMTEuOTQzNUM0MS41Nzk2IDEzLjc1NTggNDAuMDI0OCAxNC43NzY0IDM4LjcyOTUgMTUuNTA3MkwzOC43MzAyIDE1LjUwODRMMzIuNjA2NCAxOS4wNDM5QzMyLjQ4MzQgMTkuMTE1IDMyLjMzNyAxOS4xMzQ1IDMyLjE5OTcgMTkuMDk3N0MzMi4wNjI1IDE5LjA2MSAzMS45NDU1IDE4Ljk3MDkgMzEuODc0NCAxOC44NDc4TDI4LjM0MzcgMTIuNzMyNUwyOC4wNTU1IDEyLjIzNDdDMjcuMzg4MSAxMS4wMzM1IDI2LjgwNTIgOS41NjI2MiAyNy4yMzIxIDcuOTY4OTZDMjcuNTM4NSA2LjgyNTM1IDI4LjI4NyA1Ljg0OTcyIDI5LjMxMjMgNS4yNTc3NUMzMC4zMzc3IDQuNjY1NzcgMzEuNTU2OCA0LjUwNTQxIDMyLjcwMDQgNC44MTE4NEMzMy4zNTkyIDQuOTg4NCAzMy45MjU2IDUuMjQxNCAzNC40MzQxIDUuNjQ2NDFDMzQuODI2MiA1Ljk1ODc2IDM1LjE2NjUgNi4zNDg2NSAzNS40ODY1IDYuODMxMjVDMzYuMDA1IDYuNTczMzEgMzYuNDk0NiA2LjQwNTggMzYuOTkwNCA2LjMzMTM3QzM3LjYzMzMgNi4yMzQ4OCAzOC4yNTAyIDYuMjk4OTMgMzguOTA5MSA2LjQ3NTQ2QzQwLjA1MjcgNi43ODE4OSA0MS4wMjg0IDcuNTMwMzQgNDEuNjIwMyA4LjU1NTY3QzQyLjIxMjMgOS41ODA5OSA0Mi4zNzE3IDEwLjc5OTkgNDIuMDY1MyAxMS45NDM1WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTM0LjQzMTcgMjYuNDcwMUMzNS4yOTExIDI2LjQ3ODkgMzYuMjQwOSAyNi40MDg5IDM2LjkwODEgMjUuNzQxOEMzNy4zMzMxIDI1LjMxNjggMzcuNTcxOCAyNC43NDA0IDM3LjU3MTggMjQuMTM5NEMzNy41NzE4IDIzLjUzODQgMzcuMzMzMSAyMi45NjIgMzYuOTA4MSAyMi41MzdDMzYuMzk1MyAyMi4wMjQyIDM1Ljg4ODQgMjEuODA4NiAzNS4wMTQzIDIxLjgwODZDMzUuMDE0MyAyMC45MzQ2IDM0Ljc5ODcgMjAuNDI3NyAzNC4yODYgMTkuOTE0OUMzMy44NjEgMTkuNDg5OSAzMy4yODQ2IDE5LjI1MTIgMzIuNjgzNiAxOS4yNTEyQzMyLjA4MjYgMTkuMjUxMiAzMS41MDYyIDE5LjQ4OTkgMzEuMDgxMiAxOS45MTQ5QzMwLjQxMTEgMjAuNTg1IDMwLjMzODMgMjEuNTMxOCAzMC4zNTI4IDIyLjM5MTNMMzAuMzUyOCAyNi40NzAxSDM0LjQzMTdaIiBmaWxsPSIjRkZDMkQxIi8+CjxwYXRoIGQ9Ik0zNi43NjE5IDI1LjU5NjZDMzcuMTQ4MiAyNS4yMTAzIDM3LjM2NTQgMjQuNjg2IDM3LjM2NTQgMjQuMTM5NkMzNy4zNjU0IDIzLjU5MzQgMzcuMTQ4OCAyMy4wNjk2IDM2Ljc2MjYgMjIuNjgzM0MzNi41MjA5IDIyLjQ0MTYgMzYuMjg4OSAyMi4yNzgxIDM2LjAyMTYgMjIuMTczQzM1Ljc1MjggMjIuMDY3MyAzNS40MzQ2IDIyLjAxNDggMzUuMDE0MSAyMi4wMTQ4QzM0Ljk1OTYgMjIuMDE0OCAzNC45MDcgMjEuOTkzNCAzNC44Njg0IDIxLjk1NDhDMzQuODI5OSAyMS45MTYyIDM0LjgwODQgMjEuODYzNiAzNC44MDg0IDIxLjgwOTFDMzQuODA4NCAyMS4zODg4IDM0Ljc1NjUgMjEuMDcxIDM0LjY1MDkgMjAuODAyM0MzNC41NDU4IDIwLjUzNSAzNC4zODIyIDIwLjMwMyAzNC4xNDA2IDIwLjA2MTNDMzMuNzU0MyAxOS42NzUgMzMuMjMgMTkuNDU3OCAzMi42ODM2IDE5LjQ1NzhDMzIuMTM3MiAxOS40NTc4IDMxLjYxMjkgMTkuNjc1IDMxLjIyNjYgMjAuMDYxM0MzMC42MjI5IDIwLjY2NTMgMzAuNTQ0MyAyMS41MzAyIDMwLjU1ODggMjIuMzg3N1YyNi4yNjQ0SDM0LjQzNDFDMzUuMjkzOSAyNi4yNzMxIDM2LjE2MDkgMjYuMTk3MyAzNi43NjE5IDI1LjU5NjZaTTM3LjA1MzMgMjUuODg4QzM2LjMyMDcgMjYuNjIwNCAzNS4yOTAyIDI2LjY4MzggMzQuNDMyIDI2LjY3NTNWMjYuNjc2NkgzMC4zNTI0QzMwLjI5NzkgMjYuNjc2NSAzMC4yNDU5IDI2LjY1NDQgMzAuMjA3MyAyNi42MTU5QzMwLjE2ODggMjYuNTc3MyAzMC4xNDY3IDI2LjUyNTMgMzAuMTQ2NiAyNi40NzA5TDMwLjE0NzMgMjIuMzk0NkMzMC4xMzI3IDIxLjUzMzggMzAuMTk5NSAyMC41MDU4IDMwLjkzNTIgMTkuNzY5OUMzMS4zOTg4IDE5LjMwNjMgMzIuMDI3OSAxOS4wNDQ5IDMyLjY4MzYgMTkuMDQ0OUMzMy4zMzkyIDE5LjA0NDkgMzMuOTY4NCAxOS4zMDYzIDM0LjQzMiAxOS43Njk5QzM0LjcwMjggMjAuMDQwNyAzNC45MDM0IDIwLjMxODUgMzUuMDM0MiAyMC42NTFDMzUuMTQ0OCAyMC45MzI1IDM1LjE5OTEgMjEuMjQ0MSAzNS4yMTM3IDIxLjYwOTVDMzUuNTc5MSAyMS42MjQxIDM1Ljg5MDcgMjEuNjc4MyAzNi4xNzIyIDIxLjc4OUMzNi41MDQ5IDIxLjkxOTkgMzYuNzgzIDIyLjEyMDkgMzcuMDU0IDIyLjM5MTlDMzcuNTE3NCAyMi44NTU0IDM3Ljc3ODMgMjMuNDg0MSAzNy43Nzg0IDI0LjEzOTZDMzcuNzc4NCAyNC43OTUzIDM3LjUxNjkgMjUuNDI0NCAzNy4wNTMzIDI1Ljg4OFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xNy40NzQ0IDMyLjY1MDNDMTcuODI1NSAzMi4xNTk3IDE4LjE2NzcgMzEuNTg1NCAxOC4wNTI3IDMwLjkzMzJDMTcuOTc5NCAzMC41MTc3IDE3Ljc0NDEgMzAuMTQ4NCAxNy4zOTg1IDI5LjkwNjRDMTcuMDUzIDI5LjY2NDQgMTYuNjI1NCAyOS41Njk2IDE2LjIwOTkgMjkuNjQyOUMxNS43MDg3IDI5LjczMTMgMTUuMzgwNiAyOS45MzYgMTUuMDI4NyAzMC40Mzg1QzE0LjUyNjEgMzAuMDg2NiAxNC4xNDc5IDMwLjAwNjUgMTMuNjQ2NiAzMC4wOTQ5QzEzLjIzMTEgMzAuMTY4MSAxMi44NjE4IDMwLjQwMzQgMTIuNjE5OCAzMC43NDlDMTIuMzc3OCAzMS4wOTQ2IDEyLjI4MyAzMS41MjIxIDEyLjM1NjMgMzEuOTM3NkMxMi40NzE4IDMyLjU5MjcgMTIuOTg2OSAzMy4wMTU4IDEzLjQ4NyAzMy4zNTM0TDE1LjgzMjIgMzQuOTk1NkwxNy40NzQ0IDMyLjY1MDNaIiBmaWxsPSIjRkRGMkY4Ii8+CjxwYXRoIGQ9Ik0xNy45MTA3IDMwLjk1ODVDMTcuODQ0MSAzMC41ODA4IDE3LjYzIDMwLjI0NTEgMTcuMzE1OCAzMC4wMjUyQzE3LjAwMTYgMjkuODA1MiAxNi42MTI5IDI5LjcxODcgMTYuMjM1MyAyOS43ODUzQzE1Ljk5OSAyOS44MjcgMTUuODExNSAyOS44OTQzIDE1LjY0MzUgMzAuMDA1N0MxNS40NzQ1IDMwLjExNzcgMTUuMzE2NiAzMC4yNzk4IDE1LjE0NzQgMzAuNTIxNUMxNS4xMDE2IDMwLjU4NjggMTUuMDExNyAzMC42MDI3IDE0Ljk0NjQgMzAuNTU3QzE0LjcwNDYgMzAuMzg3NyAxNC41MDA5IDMwLjI4OTQgMTQuMzAzOCAzMC4yNDE5QzE0LjEwNzcgMzAuMTk0NyAxMy45MDg1IDMwLjE5NTYgMTMuNjcyMyAzMC4yMzcyQzEzLjI5NDYgMzAuMzAzOCAxMi45NTg5IDMwLjUxOCAxMi43Mzg5IDMwLjgzMjJDMTIuNTE5IDMxLjE0NjMgMTIuNDMyNSAzMS41MzUgMTIuNDk5MSAzMS45MTI3QzEyLjU5MDMgMzIuNDI5NCAxMi45NTg1IDMyLjc5NTIgMTMuMzgzNSAzMy4xMDQ0TDE1Ljc5NjYgMzQuNzk0TDE3LjM1NzMgMzIuNTY2M0MxNy43MDg2IDMyLjA3NTMgMTguMDE0MyAzMS41NDYgMTcuOTEwNyAzMC45NTg1Wk0xOC4xOTU0IDMwLjkwODNDMTguMzIxNiAzMS42MjQ1IDE3Ljk0MjMgMzIuMjQyMSAxNy41OTE4IDMyLjczMjJMMTcuNTkzIDMyLjczM0wxNS45NTA4IDM1LjA3ODJDMTUuOTA1IDM1LjE0MzYgMTUuODE1MiAzNS4xNTk0IDE1Ljc0OTggMzUuMTEzNkwxMy40MDY5IDMzLjQ3MzFMMTMuMjE3IDMzLjM0MUMxMi43NzE2IDMzLjAxNzkgMTIuMzI1NSAzMi41OTI2IDEyLjIxNDQgMzEuOTYyOUMxMi4xMzQ1IDMxLjUwOTcgMTIuMjM3NCAzMS4wNDI4IDEyLjUwMTQgMzAuNjY1OEMxMi43NjUzIDMwLjI4ODggMTMuMTY4OCAzMC4wMzI1IDEzLjYyMjEgMjkuOTUyNkMxMy44ODY5IDI5LjkwNTkgMTQuMTI3NCAyOS45MDI2IDE0LjM3MTMgMjkuOTYxM0MxNC41Nzc3IDMwLjAxMSAxNC43Nzg0IDMwLjEwNTQgMTQuOTk0MyAzMC4yNDQxQzE1LjE1IDMwLjAzOTYgMTUuMzA2OSAyOS44ODI1IDE1LjQ4NCAyOS43NjUxQzE1LjY5MzEgMjkuNjI2NSAxNS45MjAzIDI5LjU0NzQgMTYuMTg1MSAyOS41MDA2QzE2LjYzODMgMjkuNDIwNyAxNy4xMDUyIDI5LjUyMzYgMTcuNDgyMSAyOS43ODc2QzE3Ljg1OTEgMzAuMDUxNiAxOC4xMTU1IDMwLjQ1NTEgMTguMTk1NCAzMC45MDgzWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTEyLjk3ODcgMi4yMzY3N0MxMi43MTg0IDEuNzg1OTIgMTIuMjg5NyAxLjQ1NjczIDExLjc4NjggMS4zMjE5OEMxMS4yODM5IDEuMTg3MjQgMTAuNzQ4MSAxLjI1Nzk2IDEwLjI5NzIgMS41MTgyNUMxMC4wMTUgMS42ODExOSA5LjgwNjgxIDEuODU0MTcgOS42NDQwNSAyLjA3NDQxQzkuNDgwNTIgMi4yOTU3MyA5LjM1NDMxIDIuNTc1NSA5LjI1MDYzIDIuOTYyMzlDOS4yMjI1NyAzLjA2NzEyIDkuMTE1MjIgMy4xMjkxIDkuMDEwNDggMy4xMDEwNEM4LjYyMzU4IDIuOTk3MzggOC4zMTgyMSAyLjk2Njc4IDguMDQ0NzYgMi45OTc3NkM3Ljc3MjY1IDMuMDI4NiA3LjUxODc2IDMuMTIyMzcgNy4yMzY1NiAzLjI4NTNDNi43ODU3IDMuNTQ1NjUgNi40NTY1MSAzLjk3NDMyIDYuMzIxNzcgNC40NzcyMUM2LjE4NzAyIDQuOTgwMSA2LjI1Nzc3IDUuNTE1OTQgNi41MTgwNCA1Ljk2NjgzQzYuODc0MiA2LjU4MzcxIDcuNTEzNjkgNi44Nzk4MiA4LjE5OTM2IDcuMDc2OTNMMTIuMDYzMyA4LjExMjI4TDEzLjAxOTIgNC41NDcyM0wxMy4wMTkxIDQuNTQ1MzVMMTMuMDE5OCA0LjU0NDkzQzEzLjI0IDMuNzU1NDUgMTMuMzgzNyAyLjkzODE4IDEyLjk3ODcgMi4yMzY3N1pNMTMuMzE4OSAyLjA0MDM4QzEzLjgxMyAyLjg5NjIzIDEzLjYxOCAzLjg2MjIzIDEzLjM5ODEgNC42NTA2MUwxMy4zOTcgNC42NTAzTDEyLjM5MiA4LjQwMzMzQzEyLjM2MzkgOC41MDc5OSAxMi4yNTY1IDguNTcwMDEgMTIuMTUxOCA4LjU0MTk4TDguNDAwNjcgNy41MzY4Nkw4LjA5NzEzIDcuNDU2MTVDNy4zNzg3NiA3LjI1MDc1IDYuNjEyMDIgNi45MTUxNCA2LjE3Nzg5IDYuMTYzMjJDNS44NjU1NSA1LjYyMjE0IDUuNzgxMjcgNC45NzkxOSA1Ljk0Mjk3IDQuMzc1NzFDNi4xMDQ2NyAzLjc3MjI0IDYuNDk5MTMgMy4yNTc1NyA3LjA0MDE3IDIuOTQ1MTVDNy4zNTY0NCAyLjc2MjU1IDcuNjYyMDMgMi42NDYwNiA4LjAwMDU4IDIuNjA3NjlDOC4yODY3NSAyLjU3NTI4IDguNTg2NjIgMi42MDIxNSA4LjkyNjIyIDIuNjc4NjRDOS4wMjk4MSAyLjM0NjAyIDkuMTU3MDkgMi4wNzI4NyA5LjMyODM0IDEuODQxMTJDOS41MzA4NCAxLjU2NzEgOS43ODQ1MiAxLjM2MDcgMTAuMTAwOCAxLjE3ODFDMTAuNjQxOSAwLjg2NTc0IDExLjI4NDggMC43ODE0OSAxMS44ODgzIDAuOTQzMTc5QzEyLjQ5MTggMS4xMDQ4OCAxMy4wMDY0IDEuNDk5MzQgMTMuMzE4OSAyLjA0MDM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTEzLjIwNzkgNC42MDAyM0MxMy40Mjc5IDMuODExMjUgMTMuNTk3OCAyLjkxOTcyIDEzLjE0ODIgMi4xNDEwMkMxMi44NjE5IDEuNjQ1IDEyLjM5MDIgMS4yODMwNiAxMS44MzY5IDEuMTM0ODJDMTEuMjgzNyAwLjk4NjU4IDEwLjY5NDIgMS4wNjQxOCAxMC4xOTgyIDEuMzUwNTZDOS41OTk3NCAxLjY5NjA5IDkuMjc2MjUgMi4xMDk1NiA5LjA2MDY3IDIuOTE0MTFDOC4yNTYxMSAyLjY5ODUzIDcuNzM2MyAyLjc3MTk1IDcuMTM3ODIgMy4xMTc0OEM2LjY0MTggMy40MDM4NiA2LjI3OTg2IDMuODc1NTUgNi4xMzE2MiA0LjQyODc5QzUuOTgzMzggNC45ODIwMiA2LjA2MDk5IDUuNTcxNDkgNi4zNDczNiA2LjA2NzUxQzYuNzk4OTEgNi44NDk2MSA3LjY1MjU0IDcuMTUwMiA4LjQ0NzI4IDcuMzQ4NzhMMTIuMjAxOSA4LjM1NDgxTDEzLjIwNzkgNC42MDAyM1oiIGZpbGw9IiNGRjhGQTMiLz4KPC9zdmc+Cg==)

}

.medium-card__amour{
    color: #ff6b6b;
    font-weight: 700;
}

.header__logo.header__logo-valentines-day {
    position: relative;
}

.header__logo.header__logo-valentines-day .header__logo-img,
.header__logo.header__logo-valentines-day .header__logo-svg {
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transform-origin: center;
}

/* IMG */
.header__logo.header__logo-valentines-day .header__logo-img {
    animation-name: logoImgLoop;
}

/* SVG */
.header__logo.header__logo-valentines-day .header__logo-svg {
    position: absolute;
    left: 15px;
    opacity: 0;
    pointer-events: none;
    animation-name: logoSvgLoop;
}

/* ───── IMG: fade-in в конце цикла, чтобы не было скачка ───── */
@keyframes logoImgLoop {
    /* старт цикла — IMG уже виден */
    0%   { opacity: 1; transform: scale(1); }

    /* heartbeat */
    10%  { transform: scale(1.05); }
    20%  { transform: scale(1); }

    /* держим */
    30%  { opacity: 1; transform: scale(1); }

    /* fade-out */
    40%  { opacity: 0; transform: scale(0.95); }

    /* пауза пустоты */
    55%  { opacity: 0; transform: scale(0.95); }

    /* всё ещё скрыт, пока SVG виден */
    85%  { opacity: 0; transform: scale(0.95); }

    /* SVG уже начинает исчезать — готовим плавный возврат IMG */
    95%  { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); } /* <-- ключевой фикс */
}

/* ───── SVG: появляется после паузы, потом исчезает к концу ───── */
@keyframes logoSvgLoop {
    0%   { opacity: 0; transform: scale(0.95); }

    /* пауза пустоты (после исчезновения IMG) */
    40%  { opacity: 0; transform: scale(0.95); }
    55%  { opacity: 0; transform: scale(0.95); }

    /* fade-in */
    65%  { opacity: 1; transform: scale(1); }

    /* heartbeat */
    72%  { transform: scale(1.05); }
    78%  { transform: scale(1); }

    /* держим */
    85%  { opacity: 1; transform: scale(1); }

    /* fade-out, чтобы к концу SVG был 0 */
    95%  { opacity: 0; transform: scale(0.95); }
    100% { opacity: 0; transform: scale(0.95); }
}

@keyframes float-water {
    0%   { transform: translate3d( 0px,  0px, 0) rotate( 0deg); }
    12.5%{ transform: translate3d(-1px, -4px, 0) rotate( 2deg); }
    25%  { transform: translate3d(-2px, -7px, 0) rotate( 4deg); }
    37.5%{ transform: translate3d(-1px, -4px, 0) rotate( 2deg); }
    50%  { transform: translate3d( 0px,  0px, 0) rotate( 0deg); }
    62.5%{ transform: translate3d( 1px,  4px, 0) rotate(-2deg); }
    75%  { transform: translate3d( 2px,  7px, 0) rotate(-4deg); }
    87.5%{ transform: translate3d( 1px,  4px, 0) rotate(-2deg); }
    100% { transform: translate3d( 0px,  0px, 0) rotate( 0deg); }
}

@keyframes footer-heart-float {
    0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
    15%  { opacity: 1; }
    40%  { transform: translate(-6px, -40px) scale(1); }
    70%  { transform: translate(6px, -70px) scale(1.1); }
    100% { transform: translate(-4px, -90px) scale(1.2); opacity: 0; }
}

@keyframes fixed-heart-float {
    0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
    15%  { opacity: 1; }
    40%  { transform: translate(-6px, -30px) scale(1); }
    70%  { transform: translate(6px, -60px) scale(1.1); }
    100% { transform: translate(-4px, -100px) scale(1.2); opacity: 0; }
}

.valentines-day-image__cat{
    position: absolute;
    right: 0;
    top: -6px;
    transform: translateY(-50%);
    width: 124px;
}

@media (max-width: 1200px) {
    .valentines-day-image__cat{
        top: -30px;
    }
}

@media (max-width: 768px) {
    section.voyant{
        margin-bottom: 48px;
    }
}

.valentines-day-image__owl{
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    width: 92px;
}

.valentines-day-image__child{
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    top: -11px;
    width: 70px;
}

.valentines-day-image__cupid{
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    top: -11px;
    width: 65px;
}

@media (max-width: 1200px) {
    .valentines-day-image__cupid{
        top: -35px;
    }
}

.valentines-day-image__child-stars{
    position: absolute;
    right: calc((100vw - 1140px) / 2);
    transform: translateY(-50%);
    top: 50%;
    width: 77px;
}

@media (max-width: 1200px) {
    .valentines-day-image__child-stars{
        right: calc((100vw - 736px) / 2);
    }
}

@media (max-width: 768px) {
    .valentines-day-image__child-stars{
        right: 24px;
    }
}

@media (max-width: 375px) {
    .valentines-day-image__child-stars{
        right: 0;
    }
}

.valentines-day-image__cupid-heart{
    position: absolute;
    left: 0;
    width: 112px;
}

.block-features__item-valentines-day{
    position: absolute;
    stroke: #FF6B6B;
    left: 41px;
    top: 23px;
    width: 16px!important;
    height: 16px!important;
}

@media (max-width: 1199px) {
    .block-features__item-valentines-day{
        left: 26px;
        top: 8px;
    }
}

.valentines-day-image__arrow-heart{
    position: absolute;
    width: 60px;
    left: 30px;
    top: 30px;
    will-change: transform;
    transform-origin: 50% 60%;
    animation: float-water 4.2s linear infinite;
}

.valentines-day-image__cupid-bow{
    position: absolute;
    width: 110px;
    right: -10px;
    top: 10px;
    will-change: transform;
    transform-origin: 50% 60%;
    animation: float-water 4.2s linear infinite;
    animation-delay: .5s;
}

.valentines-day-image__couple{
    position: absolute;
    width: 90px;
    bottom: 0;
    left: 0;
    z-index: 50;
}

.footer-hearts {
    position: absolute;
    bottom: 97px;
    left: 30px;
    pointer-events: none;
    transform: translateX(-50%);
    z-index: 45;
}

.footer-heart {
    position: absolute;
    bottom: 0;
    fill: #E99294;
    width: 12px;
    animation: footer-heart-float linear infinite;
    will-change: transform, opacity;
}

.footer-heart:nth-child(1) {
    left: -12px;
    animation-duration: 4s;
    animation-delay: 0s;
}

.footer-heart:nth-child(2) {
    left: 0px;
    animation-duration: 5s;
    animation-delay: 1s;
}

.footer-heart:nth-child(3) {
    left: 12px;
    animation-duration: 4.5s;
    animation-delay: 2s;
}


.fixed-hearts {
    display: none;
    position: fixed;
    bottom: 115px;
    left: 0;
    pointer-events: none;
    width: 100%;
}

.fixed-hearts.fixed-hearts_top{
    bottom: 115px;
}

@media (max-width: 1199px) {
    .fixed-hearts {
        display: block;
        bottom: 0;
    }

    .fixed-hearts.fixed-hearts_top{
        bottom: 45px;
    }
}

@media (max-width: 767px) {
    .fixed-hearts {
        display: block;
        bottom: 5px;
    }

    .fixed-hearts.fixed-hearts_top{
        bottom: 115px;
    }
}

.fixed-heart {
    position: absolute;
    bottom: 0;
    opacity: .1;
    width: 18px;
    fill: rgba(255,182,193,0.9);
    animation: fixed-heart-float linear infinite;
    will-change: transform, opacity;
}

.fixed-heart:nth-child(1) {
    left: 8%;
    opacity: .2;
    animation-duration: 4s;
    animation-delay: 0.2s;
}

.fixed-heart:nth-child(2) {
    left: 16%;
    opacity: .3;
    width: 24px;
    animation-duration: 5s;
    animation-delay: 3.4s;
}

.fixed-heart:nth-child(3) {
    left: 24%;
    opacity: .4;
    width: 18px;
    animation-duration: 4.5s;
    animation-delay: 1.3s;
}

.fixed-heart:nth-child(4) {
    left: 32%;
    opacity: .5;
    animation-duration: 6s;
    animation-delay: 2.6s;
}

.fixed-heart:nth-child(5) {
    left: 40%;
    width: 22px;
    opacity: .6;
    animation-duration: 5.5s;
    animation-delay: 1.6s;
}

.fixed-heart:nth-child(6) {
    left: 48%;
    opacity: .7;
    animation-duration: 4s;
    animation-delay: 0.2s;
}

.fixed-heart:nth-child(7) {
    left: 56%;
    opacity: .8;
    width: 24px;
    animation-duration: 5s;
    animation-delay: 1s;
}

.fixed-heart:nth-child(8) {
    left: 64%;
    width: 18px;
    opacity: .9;
    animation-duration: 4.5s;
    animation-delay: 2.6s;
}

.fixed-heart:nth-child(9) {
    left: 72%;
    opacity: .2;
    animation-duration: 6s;
    animation-delay: 0.8s;
}

.fixed-heart:nth-child(10) {
    left: 80%;
    width: 22px;
    animation-duration: 5.5s;
    animation-delay: 1.6s;
}

.fixed-heart:nth-child(11) {
    left: 88%;
    animation-duration: 4s;
    animation-delay: 3.4s;
}

.fixed-heart:nth-child(12) {
    left: 92%;
    width: 24px;
    animation-duration: 5s;
    animation-delay: 1s;
}

/*PROMO MARKETPLACE - Shadow DOM container*/
#promo-marketplace-iframe{
    width: 100%;
    display: block;
    overflow: visible;
}