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

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

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

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/haloween_web.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.12);
  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.12);
  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 {
  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;
}
.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: 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 24px;
    width: 24px;
    height: 24px;
  }
}
.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: 0;
  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 {
  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;
}
@media (min-width: 1200px) {
  .header-nav--1 {
    position: static;
    top: 0;
    width: auto;
    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: 30px;
    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 {
  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 {
    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;
  }
}

.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 {
  background: #242434;
  padding: 48px 0;
}
@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;

}
.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);
}
@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;
}
@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 {
  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;
}

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

.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;
  }
}
@media (min-width: 1200px) {
  .planning__body {
    background: #fff;
    box-shadow: 0px 0px 6px 0px rgba(115, 115, 167, 0.2);
    border-radius: 8px;
    overflow: hidden;
  }
}
.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 {
  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__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: 48px;
}
@media (min-width: 768px) {
  .code-active {
    margin-bottom: 64px;
  }
}
@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: 36px 24px 24px;
  max-width: 402px;
}
@media (min-width: 375px) {
  .code-active__body {
    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: 15px;
  line-height: 1.1538461538;
}
.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;
}
@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__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 {
  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-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__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;
}
/*.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;
}

@media (min-width: 375px) {
  .comments-form {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .comments-form {
    padding: 24px;
  }
}
.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: #00000014;
  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: 24px;
  }
}

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