:root {
  --item-space: 16px;
  --collapse-h2: 24px;
  --header-height: 138px;
  --wrapper-basket-margin: 121px;
}
@media only screen and (max-width: 1349px) {
  :root {
    --wrapper-basket-margin: 20px;
  }
}
@media only screen and (max-width: 1099px) {
  :root {
    --item-space: 8px;
    --header-height: 80px;
  }
}
@media only screen and (max-width: 650px) {
  :root {
    --collapse-h2: 18px;
  }
}
@media only screen and (max-width: 650px) {
  .guide span {
    display: block;
  }
}

@font-face {
  font-family: "LuckyFellas";
  src: url(/design-system/src/assets/fonts/LuckyFellas.woff2) format("woff2");
  src: url(/design-system/src/assets/fonts/LuckyFellas.woff) format("woff"), url(/design-system/src/assets/fonts/LuckyFellas.eot);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CentraNo1-Black";
  src: url(/design-system/src/assets/fonts/CentraNo1-Black.woff2) format("woff2");
  src: url(/design-system/src/assets/fonts/CentraNo1-Black.woff) format("woff"), url(/design-system/src/assets/fonts/CentraNo1-Black.eot);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CentraNo1-Book";
  src: url(/design-system/src/assets/fonts/CentraNo1-Book.woff2) format("woff2");
  src: url(/design-system/src/assets/fonts/CentraNo1-Book.woff) format("woff"), url(/design-system/src/assets/fonts/CentraNo1-Book.eot);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CentraNo1-Extrabold";
  src: url(/design-system/src/assets/fonts/CentraNo1-Extrabold.woff2) format("woff2");
  src: url(/design-system/src/assets/fonts/CentraNo1-Extrabold.woff) format("woff"), url(/design-system/src/assets/fonts/CentraNo1-Extrabold.eot);
  font-weight: 400;
  font-style: normal;
}
@keyframes remiseAppear {
  0% {
    height: 5%;
    opacity: 0;
    transform: translateY(150px) scaleY(0);
  }
}
@keyframes optionAppear {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes midOptionAppear {
  0% {
    opacity: 0;
    transform: translateY(-150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  border: 0;
  padding: 0;
}

html {
  height: 100%;
  padding: 0;
}

body {
  overflow: scroll;
  overflow-x: hidden;
  line-height: 18px;
  height: 100%;
  padding: 0;
  max-height: 999999px;
  font-size: 14px;
  color: #707070;
  background-color: #ffffff;
  font-family: "CentraNo1-Book";
}
body.overlay-is-open {
  overflow: hidden;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  body.overlay-is-open {
    overflow-y: unset;
    height: unset;
  }
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  transition: unset;
}
@media only screen and (max-width: 849px) {
  .bg-overlay.overlay-opened {
    background: rgba(112, 112, 112, 0.6);
    visibility: visible;
    opacity: 1;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    height: auto;
    transition: unset;
    width: 100%;
    height: 100vh;
    z-index: 998;
  }
}

.container__custom {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: var(--header-height) 0 0;
}
@media only screen and (min-width: 991px) and (max-width: 1299px) {
  .container__custom {
    width: inherit;
    max-width: inherit;
  }
}
@media only screen and (max-width: 991px) {
  .container__custom {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 650px) {
  .container__custom {
    padding-top: var(--header-height);
  }
}
@media only screen and (max-width: 480px) {
  .container__custom {
    padding-top: 70px;
  }
}

.max-width {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1299px) {
  .max-width {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 1099px) {
  .max-width {
    padding-left: 13%;
    padding-right: 13%;
  }
}
@media only screen and (max-width: 650px) {
  .max-width {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.wrapper {
  position: relative;
  max-width: 835px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .wrapper {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

a {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  color: #707070;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #707070;
}

ul,
li {
  margin: 0;
  list-style-type: none;
}

img,
svg {
  border: 0;
  display: block;
}

label {
  margin: 0;
}

p,
figure {
  margin: 0;
  padding: 0;
}

strong {
  font-family: "CentraNo1-Extrabold";
}

form {
  width: 100%;
  height: 100%;
}

input:not([type]) {
  border-bottom: none;
  height: inherit;
  font-size: inherit;
  margin: 0;
  box-sizing: inherit;
}
input:not([type]):focus:not([readonly]) {
  border-bottom: none;
  box-shadow: none;
}
input::-ms-clear {
  width: 0;
  height: 0;
}

label:focus,
input:focus {
  outline: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea.materialize-textarea {
  height: inherit;
  font-size: inherit;
  margin: 0;
  box-sizing: inherit;
}
input[type="text"]:focus:not([readonly]),
input[type="password"]:focus:not([readonly]),
input[type="email"]:focus:not([readonly]),
input[type="tel"]:focus:not([readonly]),
input[type="number"]:focus:not([readonly]),
input[type="search"]:focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5 {
  display: block;
  margin: 0;
}

input:focus,
textarea:focus {
  outline: none;
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bdbdbd !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #bdbdbd !important;
}
input:placeholder,
textarea:placeholder {
  color: #bdbdbd !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.h1-responsive {
  display: none;
}
@media only screen and (max-width: 650px) {
  .h1-responsive {
    display: block;
    font-size: 27px;
    line-height: 35px;
    text-align: center;
    font-family: "CentraNo1-Black";
    color: #0953FB;
    margin-bottom: 20px;
  }
}
.h1-responsive span {
  display: block;
  font-size: 17px;
  line-height: 22px;
  font-family: "CentraNo1-Book";
}

.overlay {
  position: relative;
  display: inline-block;
}
.overlay i.overlay-content {
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  font-family: "CentraNo1-Book";
  display: block;
  position: absolute;
  position: absolute;
  top: calc(50% - 35px);
  top: -moz-calc(50% - 35px);
  top: -webkit-calc(50% - 35px);
  top: calc(50% - 35px);
  top: -moz-calc(50% - 35px);
  top: -webkit-calc(50% - 35px);
  right: -315px;
  background-color: #707070;
  color: #ffffff;
  font-size: 13px;
  line-height: 16px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 11px 5px;
  text-align: center !important;
  width: 293px;
  height: 70px;
  font-style: normal;
  color: white !important;
  z-index: 889;
}
@media only screen and (max-width: 849px) {
  .overlay i.overlay-content {
    height: 55px;
    color: #707070;
    right: inherit;
    left: 0;
    position: fixed;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    z-index: 999;
    background-color: #f7f7f7;
    color: #707070 !important;
  }
}
.overlay i.overlay-content strong,
.overlay i.overlay-content span {
  color: white !important;
}
@media only screen and (max-width: 849px) {
  .overlay i.overlay-content strong,
  .overlay i.overlay-content span {
    color: #707070 !important;
  }
}
.overlay i.overlay-content:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(112, 112, 112, 0);
  border-right-color: #707070;
  border-width: 13px;
  margin-top: -13px;
}
@media only screen and (max-width: 849px) {
  .overlay i.overlay-content:after {
    display: none;
  }
}
.overlay:hover,
.overlay:active {
  z-index: 10000;
}
.overlay:hover i.overlay-content,
.overlay:active i.overlay-content {
  visibility: visible;
  opacity: 1;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: auto;
}
@media only screen and (max-width: 849px) {
  .overlay:hover i.overlay-content,
  .overlay:active i.overlay-content {
    visibility: hidden;
    opacity: 0;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 0;
  }
}
@media only screen and (max-width: 849px) {
  .overlay.active i.overlay-content {
    visibility: visible;
    opacity: 1;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.flex {
  display: flex;
}
.flex--fdc {
  flex-direction: column;
}
.flex--frr {
  flex-direction: row-reverse;
}
.flex--aic {
  align-items: center;
}
.flex--ais {
  align-items: flex-start;
}
.flex--aie {
  align-items: flex-end;
}
.flex--jcc {
  justify-content: center;
}
.flex--jcs {
  justify-content: flex-start;
}
.flex--jsb {
  justify-content: space-between;
}
.flex--jse {
  justify-content: space-evenly;
}
.flex--jsa {
  justify-content: space-around;
}
.flex--w {
  flex-wrap: wrap;
}
.fs-18 {
  font-size: 18px;
  line-height: 26px;
}

.fs-20 {
  font-size: 20px;
  line-height: 26px;
}
@media only screen and (max-width: 650px) {
  .fs-20--small,
  .fs-18--small {
    font-size: 15px;
    line-height: 19.5px;
  }
}
@media only screen and (max-width: 650px) {
  .fs-20--normal,
  .fs-18--normal {
    font-size: 18px;
    line-height: 23.5px;
  }
}

.w100 {
  width: 100%;
}

.text-orange {
  color: #ff6c4d !important;
}
.text-blue {
  color: #0953FB !important;
}
.text-pink {
  color: #ffad9f !important;
}
.text-main-grey {
  color: #707070 !important;
}
.text-primary {
  color: #0953fb !important;
}
@media only screen and (max-width: 650px) {
  .condition {
    font-size: 12px;
    line-height: 16px;
  }
}

.alert-banner {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
}
.alert-banner--error {
  background: #ffefec;
  color: #7e311f;
}
.alert-banner.show {
  display: flex;
}

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

.bold {
  font-family: "CentraNo1-Extrabold";
}

.anchor {
  position: absolute;
  top: -150px;
}

.instant-collapse {
  transition: 0s;
}

.main-title {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .main-title {
    margin-top: 40px;
  }
}
.main-title h1 {
  position: relative;
  font-family: "CentraNo1-Black";
  font-size: 33px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-title h1 {
    font-size: 23px;
  }
}
.main-title h1::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
}

.underline {
  padding-bottom: 10px;
  border-bottom: 1px solid #bdbdbd;
}
.underline--orange {
  border-bottom-color: #ff6c4d;
}
.underline--thick {
  border-bottom-width: 2px;
}

input::placeholder {
  color: #bdbdbd;
}

.hidden {
  display: none;
}

.header-banner {
  position: fixed;
  width: 100%;
  height: var(--header-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/front-v2/images/header/bg-blue.svg);
  background-position: center -25px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 997;
}
@media only screen and (max-width: 1500px) {
  .header-banner {
    background-position: center;
  }
}
@media only screen and (max-width: 480px) {
  .header-banner {
    background-image: url(/front-v2/images/header/bg-650-blue.svg);
    background-position: center -11px;
  }
}
.header-banner .header .max-width .header-top {
  display: flex;
  justify-content: space-between;
  height: 80px;
  padding-top: 34px;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top {
    align-items: inherit;
    flex-wrap: wrap;
    padding-top: 24px;
  }
}
.header-banner .header .max-width .header-top .logo {
  width: 121px;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .logo {
    width: 73px;
  }
}
.header-banner .header .max-width .header-top .logo img {
  width: 100%;
  height: auto;
}
.header-banner .header .max-width .header-top .header-top-center {
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-center {
    display: none;
  }
}
.header-banner .header .max-width .header-top .header-top-center h1 {
  font-size: 37px;
  line-height: 48px;
  font-family: "CentraNo1-Black";
}
.header-banner .header .max-width .header-top .header-top-center h1 span {
  font-family: "CentraNo1-Book";
  font-size: 18px;
  line-height: 23px;
}
.header-banner .header .max-width .header-top .header-top-center span {
  display: block;
  font-size: 18px;
  line-height: 23px;
}
.header-banner .header .max-width .header-top .header-top-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 121px;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-right {
    width: 73px;
    height: 0;
  }
}
.header-banner .header .max-width .header-top .header-top-right .burger-menu {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
}
.header-banner .header .max-width .header-top .header-top-right .burger-menu ul {
  padding: 45px 21px 19px 21px;
}
.header-banner .header .max-width .header-top .header-top-right .burger-menu ul li {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}
.header-banner .header .max-width .header-top .header-top-right .burger-menu ul li a {
  height: 41px;
  display: flex;
  align-items: center;
  color: #ff6c4d;
}
.header-banner .header .max-width .header-top .header-top-right .burger-menu ul li a img {
  margin-right: 14px;
}
.header-banner .header .max-width .header-top .header-top-right .toggle {
  position: absolute;
  top: 11px;
  right: 12px;
  width: 33px;
  height: 58px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 998;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-right .toggle {
    top: 6px;
  }
}
.header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar {
  display: block;
  width: 33px;
  height: 5px;
  position: absolute;
  left: 0;
  opacity: 1;
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
@media only screen and (max-width: 1299px) {
  .header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar {
    left: inherit;
    right: 12px;
  }
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar {
    width: 22px;
    height: 3px;
  }
}
.header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:first-child {
  top: 20px;
}
.header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:nth-child(2),
.header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:nth-child(3) {
  top: 32px;
  right: -5px;
}
@media only screen and (max-width: 1299px) {
  .header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:nth-child(2),
  .header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:nth-child(3) {
    right: 12px;
  }
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:nth-child(2),
  .header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:nth-child(3) {
    top: 27px;
  }
}
.header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:last-child {
  top: 44px;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-right .toggle span.icon-bar:last-child {
    top: 34px;
  }
}
.header-banner .header .max-width .header-top .header-top-right .toggle.open span.icon-bar:first-child,
.header-banner .header .max-width .header-top .header-top-right .toggle.open span.icon-bar:last-child {
  display: none;
}
.header-banner .header .max-width .header-top .header-top-right .toggle.open span.icon-bar:nth-child(2),
.header-banner .header .max-width .header-top .header-top-right .toggle.open span.icon-bar:nth-child(3) {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-banner .header .max-width .header-top .header-top-right .toggle.open span.icon-bar:nth-child(3) {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-banner .header .max-width .header-top .header-top-right .sidebar {
  width: 209px;
  height: 385px;
  background-color: #ffffff;
  position: absolute;
  top: 24px;
  right: -1300px;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  z-index: 0;
  left: inherit;
  bottom: 0px;
  z-index: 995;
  padding: 0;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  border-radius: 13px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-right .sidebar {
    top: 15px;
  }
}
.header-banner .header .max-width .header-top .header-top-right #sidebartoggler {
  display: none;
}
.header-banner .header .max-width .header-top .header-top-right #sidebartoggler:checked + .page-wrap .sidebar {
  right: 0;
}
@media only screen and (max-width: 1299px) {
  .header-banner .header .max-width .header-top .header-top-right #sidebartoggler:checked + .page-wrap .sidebar {
    right: 15px;
  }
}
.header-banner .header .max-width .header-top .header-top-right #sidebartoggler:checked + .page-wrap .toggle {
  height: 55px;
  padding-top: 0;
  z-index: 996;
}
.header-banner .header .max-width .header-top .header-top-right #sidebartoggler:checked + .page-wrap .toggle span {
  background-color: #ff6c4d;
}

.cheese {
  width: 122px;
  height: 96px;
  position: absolute;
  top: 140px;
  left: -225px;
  transform: rotate(-20deg);
}

.heart-tiny {
  position: absolute;
  top: 309px;
  right: -124px;
}

.heart-huge {
  position: absolute;
  top: 350px;
  right: -210px;
}

button,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 36px;
  border: none;
  font-weight: normal;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 12px;
  padding: 0 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: none;
  text-shadow: none;
  overflow: hidden;
  font-family: "CentraNo1-Extrabold";
  color: #0953FB;
  background-color: transparent;
}
@media only screen and (max-width: 650px) {
  button,
  .button {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 320px) {
  button,
  .button {
    padding-left: 15px;
    padding-right: 15px;
  }
}
button p,
.button p {
  transform: translateY(2px);
}
button:focus,
button.active,
button:hover,
.button:focus,
.button.active,
.button:hover {
  cursor: pointer;
  outline: none;
  color: #0953FB;
  background-color: transparent;
}
button span,
.button span {
  padding: 0 !important;
  margin: 3px 0 0 0 !important;
}
button.btn,
.button.btn {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
button.btn:hover,
.button.btn:hover {
  color: unset;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
button.btn-blue,
.button.btn-blue {
  background-color: #0953FB;
  color: #ffffff;
}
button.btn-blue:hover,
.button.btn-blue:hover {
  color: #ffffff;
}
button.btn-orange,
.button.btn-orange {
  background-color: #ff6c4d;
  color: #ffffff;
}
button.btn-orange:hover,
.button.btn-orange:hover {
  color: #ffffff;
}
button.btn-pink,
.button.btn-pink {
  background-color: #ffad9f;
  color: #ffffff;
}
button.btn-pink:hover,
.button.btn-pink:hover {
  color: #ffffff;
}
button.btn-red,
.button.btn-red {
  background-color: #ff6c4d;
  color: #ffffff;
}
button.btn-red:hover,
.button.btn-red:hover {
  color: #ffffff;
}
button.btn-main,
.button.btn-main {
  height: unset;
  padding: 12px 60px;
  font-size: 20px;
  border-radius: 99px !important;
  -webkit-border-radius: 99px !important;
  -moz-border-radius: 99px !important;
}
@media only screen and (max-width: 650px) {
  button.btn-main,
  .button.btn-main {
    padding: 8px 40px;
  }
}
button.btn-normal,
.button.btn-normal {
  height: unset;
  padding: 16px 14px;
  font-size: 15px;
  font-family: "CentraNo1-Book";
  border-radius: 99px !important;
  -webkit-border-radius: 99px !important;
  -moz-border-radius: 99px !important;
}
@media only screen and (max-width: 650px) {
  button.btn-normal,
  .button.btn-normal {
    padding: 8px 40px;
  }
}
button.locked,
.button.locked {
  opacity: 0.4;
}
button.locked:hover,
.button.locked:hover {
  cursor: inherit;
  box-shadow: none;
  transform: unset;
}
button.btn-rounded,
.button.btn-rounded {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  background-color: #ffffff;
}
button.btn-blue-border,
.button.btn-blue-border {
  border-width: 1px;
  border-style: solid;
  border-color: #0953FB;
  color: #0953FB;
}
button.btn-blue-border:hover,
.button.btn-blue-border:hover {
  color: #0953FB;
}
button.btn-orange-border,
.button.btn-orange-border {
  border-width: 1px;
  border-style: solid;
  border-color: #ff6c4d;
  color: #ff6c4d;
}
button.btn-orange-border:hover,
.button.btn-orange-border:hover {
  color: #ff6c4d;
}
button.btn-pink-border,
.button.btn-pink-border {
  border-width: 1px;
  border-style: solid;
  border-color: #ffad9f;
  color: #ffad9f;
}
button.btn-pink-border:hover,
.button.btn-pink-border:hover {
  color: #ffad9f;
}
button.btn-grey-dark-border,
.button.btn-grey-dark-border {
  border-width: 1px;
  border-style: solid;
  border-color: #707070;
  color: #707070;
}
button.btn-grey-dark-border:hover,
.button.btn-grey-dark-border:hover {
  color: #707070;
}
button.btn-blue-light-border,
.button.btn-blue-light-border {
  border-width: 1px;
  border-style: solid;
  border-color: #90dade;
  color: #90dade;
}
button.btn-blue-light-border:hover,
.button.btn-blue-light-border:hover {
  color: #90dade;
}
button.btn-red-border,
.button.btn-red-border {
  border-width: 1px;
  border-style: solid;
  border-color: #ff6c4d;
  color: #ff6c4d;
}
button.btn-red-border:hover,
.button.btn-red-border:hover {
  color: #ff6c4d;
}
button.btn-picto,
button.btn-blue-border,
.button.btn-picto,
.button.btn-blue-border {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
button.btn-picto img,
button.btn-picto svg,
button.btn-blue-border img,
button.btn-blue-border svg,
.button.btn-picto img,
.button.btn-picto svg,
.button.btn-blue-border img,
.button.btn-blue-border svg {
  margin-right: 9.5px;
}
button.btn-transparent,
.button.btn-transparent {
  padding: 0;
  text-align: right;
  display: block;
  text-decoration: underline;
  color: #707070;
  font-size: 15px;
}
button.btn-transparent:focus,
button.btn-transparent:hover,
.button.btn-transparent:focus,
.button.btn-transparent:hover {
  box-shadow: inherit !important;
}
button.question-fixed,
.button.question-fixed {
  position: absolute;
  bottom: 20px;
  right: 120px;
  position: fixed;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
  color: #0953FB;
  font-size: 35px;
  font-family: "CentraNo1-Extrabold";
  background-color: white;
  z-index: 999;
  overflow: visible;
}
@media only screen and (max-width: 1199px) {
  button.question-fixed,
  .button.question-fixed {
    right: 20px;
  }
}
@media only screen and (max-width: 650px) {
  button.question-fixed,
  .button.question-fixed {
    width: 33px;
    height: 33px;
    bottom: inherit;
    top: 20px;
    right: 70px;
    font-size: 25px;
    z-index: 666;
  }
}
button.question-fixed .popover,
.button.question-fixed .popover {
  border: none !important;
}
@media only screen and (max-width: 650px) {
  button.question-fixed.desktop,
  .button.question-fixed.desktop {
    display: none;
  }
}
button.question-fixed.desktop .popover,
.button.question-fixed.desktop .popover {
  position: absolute;
  top: -50px;
  left: calc(50% - 82.5px);
  left: -moz-calc(50% - 82.5px);
  left: -webkit-calc(50% - 82.5px);
  left: calc(50% - 82.5px);
  left: -moz-calc(50% - 82.5px);
  left: -webkit-calc(50% - 82.5px);
  width: 165px;
  height: 36px;
  line-height: 36px;
  background-color: #707070;
  color: #ffffff;
  font-size: 16px;
  font-family: "CentraNo1-Black";
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
}
@media only screen and (max-width: 1199px) {
  button.question-fixed.desktop .popover,
  .button.question-fixed.desktop .popover {
    position: absolute;
    top: -50px;
    left: calc(50% - 135px);
    left: -moz-calc(50% - 135px);
    left: -webkit-calc(50% - 135px);
    left: calc(50% - 135px);
    left: -moz-calc(50% - 135px);
    left: -webkit-calc(50% - 135px);
  }
}
button.question-fixed.desktop .popover:after,
.button.question-fixed.desktop .popover:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(112, 112, 112, 0);
  border-top-color: #707070;
  border-width: 13px;
  margin-left: -13px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1199px) {
  button.question-fixed.desktop .popover:after,
  .button.question-fixed.desktop .popover:after {
    left: 82%;
  }
}
button.question-fixed.responsive,
.button.question-fixed.responsive {
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 650px) {
  button.question-fixed.responsive,
  .button.question-fixed.responsive {
    display: flex;
  }
}
button.question-fixed.responsive img,
.button.question-fixed.responsive img {
  display: inline-block;
}
button.question-fixed.responsive .popover,
.button.question-fixed.responsive .popover {
  border: none;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
}
button.question-fixed.responsive .popover a,
.button.question-fixed.responsive .popover a {
  color: #0953FB;
  font-size: 16px;
  font-family: "CentraNo1-Black";
  padding-top: 6px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  position: relative;
  left: 21px;
}
button.question-fixed.responsive:hover,
button.question-fixed.responsive:focus,
.button.question-fixed.responsive:hover,
.button.question-fixed.responsive:focus {
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  width: 168px;
}
button.question-fixed.responsive:hover .popover,
button.question-fixed.responsive:focus .popover,
.button.question-fixed.responsive:hover .popover,
.button.question-fixed.responsive:focus .popover {
  width: auto;
  visibility: visible;
  opacity: 1;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: auto;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
}
button.question-fixed.responsive:hover span,
button.question-fixed.responsive:focus span,
.button.question-fixed.responsive:hover span,
.button.question-fixed.responsive:focus span {
  display: none;
}
button.question-fixed span,
.button.question-fixed span {
  margin-top: 10px !important;
}
@media only screen and (max-width: 650px) {
  button.question-fixed span,
  .button.question-fixed span {
    margin-top: 7px !important;
  }
}
button.question-fixed:hover .popover,
button.question-fixed:focus .popover,
.button.question-fixed:hover .popover,
.button.question-fixed:focus .popover {
  visibility: visible;
  opacity: 1;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: auto;
}

.btn-fixed {
  width: 208px;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 104px);
  left: -moz-calc(50% - 104px);
  left: -webkit-calc(50% - 104px);
  left: calc(50% - 104px);
  left: -moz-calc(50% - 104px);
  left: -webkit-calc(50% - 104px);
  position: fixed;
  z-index: 998;
  box-shadow: 0px 3px 5px rgba(112, 112, 112, 0.22);
  -webkit-box-shadow: 0px 3px 5px rgba(112, 112, 112, 0.22);
  -moz-box-shadow: 0px 3px 5px rgba(112, 112, 112, 0.22);
}
@media only screen and (max-width: 650px) {
  .btn-fixed.btn-main {
    height: 60px;
  }
}

.valid-check {
  position: relative;
  margin-bottom: 36px;
}
@media only screen and (max-width: 650px) {
  .valid-check {
    margin-bottom: 18px;
  }
}
.valid-check .form {
  display: flex;
  justify-content: center;
  height: 20px;
  margin: 0 0 15px 0;
}
.valid-check .form [type="checkbox"]:not(:checked),
.valid-check .form [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.valid-check .form [type="checkbox"]:not(:checked) + label,
.valid-check .form [type="checkbox"]:checked + label {
  position: relative;
  font-size: 15px;
  text-align: center;
  line-height: 17px;
  padding-left: 35px;
  cursor: pointer;
}
@media only screen and (max-width: 320px) {
  .valid-check .form [type="checkbox"]:not(:checked) + label,
  .valid-check .form [type="checkbox"]:checked + label {
    padding-left: 25px;
  }
}
.valid-check .form [type="checkbox"]:not(:checked) + label span,
.valid-check .form [type="checkbox"]:checked + label span {
  margin-left: 3px;
}
.valid-check .form [type="checkbox"]:not(:checked) + label:after,
.valid-check .form [type="checkbox"]:checked + label:after,
.valid-check .form [type="checkbox"]:not(:checked) + label:before,
.valid-check .form [type="checkbox"]:checked + label:before {
  position: absolute;
  top: -3px;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.valid-check .form [type="checkbox"]:not(:checked) + label:before,
.valid-check .form [type="checkbox"]:checked + label:before {
  border-width: 1px;
  border-style: solid;
  border-color: #707070;
  background: #ffffff;
}
.valid-check .form [type="checkbox"]:not(:checked) + label:hover::before,
.valid-check .form [type="checkbox"]:checked + label:hover::before {
  border: 2px solid #ff6c4d;
}
.valid-check .form [type="checkbox"]:not(:checked) + label:after,
.valid-check .form [type="checkbox"]:checked + label:after {
  padding-top: 0;
  background: url(/front-v2/images/pictos/tick-red.svg) center no-repeat;
  background-color: #ffffff;
  border: 1px solid #ff6c4d;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.valid-check .form [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.valid-check .form [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.datepicker {
  margin-bottom: 62px;
}
@media only screen and (max-width: 650px) {
  .datepicker {
    margin-bottom: 30px;
  }
}
.datepicker .pickers {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 650px) {
  .datepicker .pickers {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .datepicker .pickers {
    position: relative;
  }
}
.datepicker label {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 650px) {
  .datepicker label {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
  }
}
.datepicker .date-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 24px;
  margin-right: 24px;
  height: auto;
  max-height: 67px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
  /*  
  @media only screen and (max-width:480px) {
    position: initial;
  }
  */
}
@media only screen and (max-width: 650px) {
  .datepicker .date-picker {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.datepicker .date-picker.open {
  overflow: visible;
}
.datepicker .date-picker.open .date-picker__input {
  border: 2px solid #ff6c4d;
}
.datepicker .date-picker.open .calendar {
  width: 318px;
}
@media only screen and (max-width: 480px) {
  .datepicker .date-picker.open .calendar {
    display: block;
  }
}
.datepicker .date-picker label {
  display: block;
  text-align: left;
  font-size: 15px;
  line-height: 17px;
  margin-bottom: 3px;
}
@media only screen and (max-width: 650px) {
  .datepicker .date-picker label {
    text-align: center;
  }
}
.datepicker .date-picker__input {
  width: 220px;
  height: 47px;
  background: white;
  font-size: 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #707070;
  cursor: pointer;
  transition: 0.1s;
}
.datepicker .date-picker__input .result,
.datepicker .date-picker__input button {
  display: inline-block;
  vertical-align: top;
}
.datepicker .date-picker__input .result {
  position: relative;
  width: 100%;
  height: 47px;
  line-height: 47px;
  font-size: 15px;
  padding: 0 13px 0 17px;
  color: #bdbdbd;
  box-sizing: border-box;
}
.datepicker .date-picker__input .result:before {
  width: 26px;
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
  top: -moz-calc(50% - 13px);
  top: -webkit-calc(50% - 13px);
  top: calc(50% - 13px);
  top: -moz-calc(50% - 13px);
  top: -webkit-calc(50% - 13px);
  right: 13px;
  content: "";
  background: url(/front-v2/images/pictos/calendar.svg) center no-repeat;
}
.datepicker .date-picker__input .result span {
  color: #707070;
}
@media only screen and (max-width: 480px) {
  .datepicker .date-picker__input .result span {
    color: #707070;
    position: absolute;
    left: 10px;
    background: #fff;
    height: 42px;
  }
}
.datepicker .date-picker__input .result .placeholder {
  color: #bdbdbd;
}
.datepicker .date-picker__input button {
  width: 50px;
  height: 50px;
  background-color: #8392a7;
  color: white;
  line-height: 50px;
  border: 0;
  font-size: 18px;
  padding: 0;
}
.datepicker .date-picker__input button:hover {
  background-color: #68768a;
}
.datepicker .date-picker__input button:focus {
  outline: 0;
}
.datepicker .date-picker .calendar {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  margin-top: 17px;
  box-shadow: 0px 3px 5px rgba(112, 112, 112, 0.22);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  z-index: 888;
  top: 50px;
}
@media only screen and (max-width: 480px) {
  .datepicker .date-picker .calendar {
    display: none;
  }
}
.datepicker .date-picker .ui-datepicker-inline {
  position: relative;
  width: 100%;
}
.datepicker .date-picker .ui-datepicker-header {
  height: 100%;
  line-height: 50px;
  background: white;
  color: #ff6c4d;
  margin-bottom: 10px;
}
.datepicker .date-picker .ui-datepicker-prev,
.datepicker .date-picker .ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
  color: #ff6c4d;
}
.datepicker .date-picker .ui-datepicker-prev:after,
.datepicker .date-picker .ui-datepicker-next:after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid #ff6c4d;
  border-bottom: 2px solid #ff6c4d;
}
.datepicker .date-picker .ui-datepicker-prev {
  float: left;
  margin-left: 12px;
}
.datepicker .date-picker .ui-datepicker-prev:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -43px 0px 0px 8px;
}
.datepicker .date-picker .ui-datepicker-prev:hover {
  border-color: #68768a;
}
.datepicker .date-picker .ui-datepicker-prev:hover:after {
  border-color: #68768a;
}
.datepicker .date-picker .ui-datepicker-next {
  float: right;
  margin-right: 12px;
}
.datepicker .date-picker .ui-datepicker-next:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin: -43px 0px 0px 6px;
}
.datepicker .date-picker .ui-datepicker-title {
  text-align: center;
}
.datepicker .date-picker .ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}
.datepicker .date-picker .ui-datepicker-calendar thead tr th span {
  display: block;
  width: 100%;
  color: #707070;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "CentraNo1-Extrabold";
}
.datepicker .date-picker .ui-state-default {
  display: block;
  text-decoration: none;
  color: #707070;
  width: 35px;
  height: 35px;
  line-height: 41px;
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.datepicker .date-picker .ui-state-default:hover {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ff6c4d;
  color: #ffffff;
  font-family: "CentraNo1-Extrabold";
}
.datepicker .date-picker .ui-state-active {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #ff6c4d;
  color: #ffffff;
  font-family: "CentraNo1-Extrabold";
}
.datepicker .date-picker.open {
  max-height: 400px;
}

.factures,
.events {
  width: 773px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .factures,
  .events {
    width: 100%;
  }
}
@media only screen and (max-width: 650px) {
  .factures .facture-info,
  .factures .event-info,
  .events .facture-info,
  .events .event-info {
    width: calc(100% - 95px);
    width: -moz-calc(100% - 95px);
    width: -webkit-calc(100% - 95px);
    width: calc(100% - 95px);
    width: -moz-calc(100% - 95px);
    width: -webkit-calc(100% - 95px);
  }
}
.factures .facture-info strong,
.factures .event-info strong,
.events .facture-info strong,
.events .event-info strong {
  display: block;
  font-size: 20px;
  line-height: 29px;
  font-family: "CentraNo1-Extrabold";
  margin-bottom: 10px;
}
@media only screen and (max-width: 650px) {
  .factures .facture-info strong,
  .factures .event-info strong,
  .events .facture-info strong,
  .events .event-info strong {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 5px;
  }
}
.factures .facture-info > div,
.factures .event-info > div,
.events .facture-info > div,
.events .event-info > div {
  display: flex;
  flex-wrap: wrap;
  width: 250px;
  margin-bottom: 3px;
}
.factures .facture-info > div span,
.factures .event-info > div span,
.events .facture-info > div span,
.events .event-info > div span {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 7px;
  margin-right: 30px;
}
@media only screen and (max-width: 650px) {
  .factures .facture-info > div span,
  .factures .event-info > div span,
  .events .facture-info > div span,
  .events .event-info > div span {
    font-size: 13px;
    line-height: 19px;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.factures .facture-info > div span:first-child:before,
.factures .event-info > div span:first-child:before,
.events .facture-info > div span:first-child:before,
.events .event-info > div span:first-child:before {
  position: absolute;
  top: 0;
  right: -16px;
  content: "|";
}
@media only screen and (max-width: 650px) {
  .factures .facture-info > div span:first-child:before,
  .factures .event-info > div span:first-child:before,
  .events .facture-info > div span:first-child:before,
  .events .event-info > div span:first-child:before {
    right: -10px;
  }
}
.factures .facture-info > div span:nth-child(3),
.factures .event-info > div span:nth-child(3),
.events .facture-info > div span:nth-child(3),
.events .event-info > div span:nth-child(3) {
  width: 100%;
}
.factures .tag,
.events .tag {
  width: 73px;
  font-size: 13px;
  text-align: center;
  font-family: "CentraNo1-Extrabold";
  color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 4px 0;
}
@media only screen and (max-width: 650px) {
  .factures .tag,
  .events .tag {
    position: absolute;
    top: 9px;
    right: 125px;
    font-size: 11px;
    padding: 2px 6px;
  }
}
@media only screen and (max-width: 380px) {
  .factures .tag,
  .events .tag {
    right: 85px;
  }
}
@media only screen and (max-width: 320px) {
  .factures .tag,
  .events .tag {
    width: 55px;
  }
}
.factures .tag.paid,
.events .tag.paid {
  background-color: #0953FB;
}
.factures .tag.devis,
.events .tag.devis {
  background-color: #707070;
}
.factures .tag.en-cours,
.events .tag.en-cours {
  background-color: #ff6c4d;
}
.factures .tag.soon,
.events .tag.soon {
  background-color: #ffad9f;
}
.factures .tag.over,
.events .tag.over {
  background-color: #90dade;
}
.factures .tag.not-paid,
.events .tag.not-paid {
  background-color: #ff6c4d;
}
.factures button.see-less,
.factures button.see-more,
.events button.see-less,
.events button.see-more {
  display: flex;
  margin-right: 10px;
  text-decoration: inherit;
  font-size: 13px;
  font-family: "CentraNo1-Extrabold";
  line-height: normal;
}
@media only screen and (max-width: 650px) {
  .factures button.see-less,
  .factures button.see-more,
  .events button.see-less,
  .events button.see-more {
    min-width: 85px;
    font-size: 11px;
    line-height: 16px;
    margin-right: 0;
  }
}
.factures button.see-less:hover,
.factures button.see-less:focus,
.factures button.see-more:hover,
.factures button.see-more:focus,
.events button.see-less:hover,
.events button.see-less:focus,
.events button.see-more:hover,
.events button.see-more:focus {
  box-shadow: inherit;
}
.factures button.see-less img,
.factures button.see-more img,
.events button.see-less img,
.events button.see-more img {
  margin-right: 5px;
}
.factures button.see-less,
.events button.see-less {
  display: none;
  color: #707070;
}
.factures button.see-more,
.events button.see-more {
  color: #0953FB;
}
.factures .file-collapsable .intit-up,
.events .file-collapsable .intit-up {
  cursor: pointer;
}
.factures .file-collapsable .intit-up > div,
.events .file-collapsable .intit-up > div {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 13px 15px;
}
@media only screen and (max-width: 480px) {
  .factures .file-collapsable .intit-up > div,
  .events .file-collapsable .intit-up > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.factures .file-collapsable .intit-up[aria-expanded="true"] > div,
.events .file-collapsable .intit-up[aria-expanded="true"] > div {
  border: none;
}
.factures .file-collapsable .intit-up[aria-expanded="true"] > div button.see-less,
.events .file-collapsable .intit-up[aria-expanded="true"] > div button.see-less {
  display: flex;
}
.factures .file-collapsable .intit-up[aria-expanded="true"] > div button.see-more,
.events .file-collapsable .intit-up[aria-expanded="true"] > div button.see-more {
  display: none;
}
.factures .file-collapsable .intit-up[aria-expanded="false"] > div .button.see-less,
.events .file-collapsable .intit-up[aria-expanded="false"] > div .button.see-less {
  display: none;
}
.factures .file-collapsable .intit-up[aria-expanded="false"] > div .button.see-more,
.events .file-collapsable .intit-up[aria-expanded="false"] > div .button.see-more {
  display: flex;
}

.input {
  margin-bottom: 6px;
}
.input label {
  font-size: 12px;
  line-height: 14px;
}
.input textarea {
  display: block;
}
.input textarea,
.input input,
.input .add-question {
  font-size: 15px;
  color: #707070;
  border-width: 1px;
  border-style: solid;
  border-color: white;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: white;
}
@media only screen and (max-width: 380px) {
  .input textarea,
  .input input,
  .input .add-question {
    font-size: 14px;
  }
}
.input textarea:hover,
.input textarea:focus,
.input input:hover,
.input input:focus,
.input .add-question:hover,
.input .add-question:focus {
  border: 1px solid #0953FB !important;
}
.input textarea.error,
.input input.error,
.input .add-question.error {
  border: 1px solid #ff6c4d !important;
}
.input textarea.error:hover,
.input textarea.error:focus,
.input input.error:hover,
.input input.error:focus,
.input .add-question.error:hover,
.input .add-question.error:focus {
  border: 1px solid #0953FB !important;
}
.input--border input,
.input--border textarea {
  border: 1px solid #707070;
}
.input input {
  width: 100%;
  height: 47px;
  padding-left: 8px;
  padding-right: 8px;
}
@media only screen and (max-width: 650px) {
  .input input {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.double-input {
  display: flex;
}
@media only screen and (max-width: 380px) {
  .double-input {
    display: block;
  }
}
.double-input .input {
  width: calc(100% - 4.5px);
  width: -moz-calc(100% - 4.5px);
  width: -webkit-calc(100% - 4.5px);
  width: calc(100% - 4.5px);
  width: -moz-calc(100% - 4.5px);
  width: -webkit-calc(100% - 4.5px);
}
@media only screen and (max-width: 650px) {
  .double-input .input {
    width: calc(100% - 2px);
    width: -moz-calc(100% - 2px);
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
    width: -moz-calc(100% - 2px);
    width: -webkit-calc(100% - 2px);
  }
}
@media only screen and (max-width: 380px) {
  .double-input .input {
    width: 100%;
  }
}
.double-input .input:first-child {
  margin-right: 9px;
}
@media only screen and (max-width: 650px) {
  .double-input .input:first-child {
    margin-right: 4px;
  }
}
@media only screen and (max-width: 380px) {
  .double-input .input:first-child {
    margin-right: 0;
  }
}

.modal {
  padding: 0;
}
.modal .modal-dialog {
  max-width: 202px;
  height: 100vh;
}
@media only screen and (max-width: 650px) {
  .modal .modal-dialog {
    margin: 0 auto;
  }
}
.modal .modal-content {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  height: 222px;
  top: calc(50% - 111px);
  top: -moz-calc(50% - 111px);
  top: -webkit-calc(50% - 111px);
  top: calc(50% - 111px);
  top: -moz-calc(50% - 111px);
  top: -webkit-calc(50% - 111px);
  border: none !important;
}
.modal .modal-content .modal-header {
  display: none;
}
.modal .modal-content .modal-body {
  text-align: center;
  padding: 34px 23px;
}
.modal .modal-content .modal-body img {
  margin: 0 auto 10px auto;
}
.modal .modal-content .modal-body p {
  font-family: "LuckyFellas";
  color: #ff6c4d;
  font-size: 50px;
  line-height: 43px;
  margin-bottom: 10px;
}
.modal .modal-content .modal-body span {
  display: block;
  font-size: 20px;
  line-height: 29px;
  color: #90dade;
  font-family: "CentraNo1-Black";
}

.select-design {
  width: 165px;
  position: relative;
  margin-right: 30px;
}
@media only screen and (max-width: 991px) {
  .select-design {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .select-design {
    width: calc(50% - 7.5px);
    width: -moz-calc(50% - 7.5px);
    width: -webkit-calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    width: -moz-calc(50% - 7.5px);
    width: -webkit-calc(50% - 7.5px);
    margin-right: 15px;
  }
}
.select-design:last-child {
  margin-right: 0;
}
.select-design label {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 5px;
}
.select-design .form-group {
  margin-bottom: 0;
}
.select-design form .select-hidden,
.select-design .form .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
.select-design form .select,
.select-design .form .select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  display: block;
  position: relative;
  text-align: left;
  background-color: #ffffff;
}
.select-design form .select-options,
.select-design .form .select-options {
  position: relative;
  background-color: #ffffff;
  display: none;
  width: 100%;
  z-index: 999;
  border: 2px solid #ff6c4d;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 73, 103, 0.2);
}
.select-design form .select-options li,
.select-design .form .select-options li {
  height: 39px;
  line-height: 39px;
  padding-left: 24px;
  padding-right: 24px;
  color: #707070;
  background-color: #ffffff;
  z-index: 999;
}
.select-design form .select-options li:hover,
.select-design .form .select-options li:hover {
  background-color: #ff6c4d;
  color: #ffffff;
}
.select-design form .select-options li[rel~="hide"],
.select-design .form .select-options li[rel~="hide"] {
  display: none;
}
.select-design form .form-control,
.select-design form .select-styled,
.select-design .form .form-control,
.select-design .form .select-styled {
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (max-width: 991px) {
  .select-design form .form-control,
  .select-design form .select-styled,
  .select-design .form .form-control,
  .select-design .form .select-styled {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.select-design form .select-styled,
.select-design .form .select-styled {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.875em;
  background-clip: padding-box;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #707070;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.select-design form .select-styled:after,
.select-design form .select-styled:before,
.select-design .form .select-styled:after,
.select-design .form .select-styled:before {
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.select-design form .select-styled:after,
.select-design .form .select-styled:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 9px;
  top: 24px;
  right: 17px;
}
.select-design form .select-styled:before,
.select-design .form .select-styled:before {
  background: url(/front-v2/images/pictos/dropdown.svg) center no-repeat;
  border-color: rgba(0, 40, 57, 0);
  border-top-color: #000000;
  border-width: 10px;
  width: 36px;
  height: 36px;
  position: absolute;
  top: calc(50% - 20px);
  top: -moz-calc(50% - 20px);
  top: -webkit-calc(50% - 20px);
  top: calc(50% - 20px);
  top: -moz-calc(50% - 20px);
  top: -webkit-calc(50% - 20px);
  right: 0;
}
.select-design form .select-styled.active,
.select-design .form .select-styled.active {
  z-index: 999;
  border: none;
}
.select-design form .select-styled.active:after,
.select-design form .select-styled.active:before,
.select-design .form .select-styled.active:after,
.select-design .form .select-styled.active:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.select-design form .select-styled.active:after,
.select-design .form .select-styled.active:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 7px;
  top: 20px;
  right: 19px;
}
.select-design form .select-styled.active:before,
.select-design .form .select-styled.active:before {
  border-color: rgba(0, 40, 57, 0);
  border-bottom-color: #000000;
  border-width: 10px;
  top: 14px;
}

.title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title h3 {
  color: #0953FB;
  font-size: 24px;
  line-height: 27px;
  font-family: "CentraNo1-Extrabold";
}
@media only screen and (max-width: 650px) {
  .title h3 {
    font-size: 18px;
    line-height: 23px;
  }
}

.days-range {
  width: 100%;
  margin-top: 30px;
}
.days-range label {
  width: inherit;
}
.days-range label #days {
  color: #ff6c4d;
  font-family: "CentraNo1-Extrabold";
}
.days-range .slider-container {
  width: inherit;
  margin-top: 16px;
}
.days-range .slider {
  width: inherit;
  appearance: none;
  -webkit-appearance: none;
  height: 8px;
  outline: none;
  background: #ff6c4d;
  border-radius: 20px;
}
.days-range .slider::-webkit-slider-thumb,
.days-range .slider::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 32px;
  width: 32px;
  background: #ff6c4d;
  border-radius: 100%;
  cursor: pointer;
  border: none;
}

.header-banner.booking {
  background-image: url(/front-v2/images/header/bg-orange.svg);
}
@media only screen and (max-width: 480px) {
  .header-banner.booking {
    background-image: url(/front-v2/images/header/bg-650-orange.svg);
  }
}
.header-banner .header .max-width .header-top .header-top-right {
  width: unset;
  height: unset;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header .max-width .header-top .header-top-right {
    align-items: flex-start;
  }
}
.header-banner .header-top-right__total {
  text-transform: uppercase;
  font-family: "CentraNo1-Black";
  font-size: 24px;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header-top-right__total {
    font-size: 15px;
  }
}
.header-banner .header-top-right__total .value {
  font-size: 44px;
  margin-left: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 1099px) {
  .header-banner .header-top-right__total .value {
    font-size: 29px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 1099px) {
  .header-banner .header-top-right__desktop {
    display: none;
  }
}

.cheese-circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 105px;
}
@media only screen and (max-width: 650px) {
  .cheese-circle {
    display: none;
  }
}
.cheese-circle-main {
  display: none;
  width: 105px;
}
@media only screen and (max-width: 650px) {
  .cheese-circle-main {
    display: initial;
    margin-top: 30px;
  }
}

main .container__custom {
  padding-top: calc(var(--header-height) + 52.5px);
  padding-bottom: 50px;
}
@media only screen and (max-width: 650px) {
  main .container__custom {
    padding-top: var(--header-height);
  }
}
main .wrapper {
  max-width: 680px;
}
@media only screen and (max-width: 650px) {
  main .wrapper {
    width: 90%;
    padding: 0;
  }
}
main .welcome {
  position: relative;
  font-family: "LuckyFellas";
  color: #ff6c4d;
  font-size: 70px;
}
@media only screen and (max-width: 650px) {
  main .welcome {
    margin-top: 20px;
  }
}
main .welcome::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  background: no-repeat center center url(/front-v2/images/pictos/trace-welcome.svg);
  height: 20px;
  width: 64px;
}
main .guide {
  position: relative;
  margin-top: 24px;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}
main .guide .arrow-south {
  position: absolute;
  right: -45px;
  top: 50%;
  transition: 0.2s;
}
@media only screen and (max-width: 650px) {
  main .guide .arrow-south {
    right: -35px;
  }
}
@media only screen and (max-width: 380px) {
  main .guide .arrow-south {
    opacity: 0;
  }
}
main .sec {
  margin-top: 50px;
}
@media only screen and (max-width: 650px) {
  main .sec {
    align-items: center;
    margin-top: 25px;
  }
}
main .sec h4 {
  margin-bottom: 16px;
  font-family: "CentraNo1-Extrabold";
}
@media only screen and (max-width: 650px) {
  main .sec h4 {
    margin-bottom: 8px;
  }
}

.choose-product {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.choose-product button {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: #fafafa;
  padding: 8px 8px 0;
  font-family: "CentraNo1-Book";
  height: unset;
  justify-content: initial;
  align-items: center;
  color: #707070;
  max-width: 332px;
  width: 100%;
  border: 1px solid transparent;
}

@media only screen and (min-width: 650px) {
  .choose-product button {
    padding: 26px 29px 0;
  }
}

.choose-product button.selected {
  background: #ffefec;
  border: 2px solid #ff6c4d;
}

.choose-product-title {
  color: #ff6c4d;
  font-size: 16px;
}

@media only screen and (min-width: 650px) {
  .choose-product-title {
    font-size: 20px;
  }
}

.choose-product-text,
.choose-product-price {
  margin-top: 8px;
  font-size: 14px;
}

@media only screen and (min-width: 650px) {
  .choose-product-text {
    font-size: 16px;
    font-family: "CentraNo1-Extrabold";
    margin-top: 16px;
  }
  .choose-product-price {
    font-size: 18px;
  }
}

.choose-product-price {
  color: #ff6c4d;
}

.select-photokube .choose-product-img {
  margin-bottom: 40px;
  margin-top: 20px;
}

.select-photobooth .choose-product-img {
  margin-top: auto;
}

@media only screen and (min-width: 650px) {
  .select-photobooth .choose-product-img {
    margin-top: 11px;
    margin-bottom: 24px;
  }
}

.choose-product-img img {
  width: 100%;
}

.choose-product-img img:last-child {
  display: none;
}

@media only screen and (min-width: 650px) {
  .choose-product-img img:first-child {
    display: none;
  }
  .choose-product-img img:last-child {
    display: initial;
  }
}

main .you-are .choose-user {
  display: flex;
  width: inherit;
}
main .you-are .choose-user button {
  border-radius: 0 12px 12px 0;
  color: #ff6c4d;
  font-family: "CentraNo1-Book";
  font-size: 21px;
  line-height: 27px;
  width: 50%;
  height: 55px;
  padding: 0;
  border: 2px solid #ff6c4d;
}
@media only screen and (max-width: 650px) {
  main .you-are .choose-user button {
    border-width: 1px;
  }
}
main .you-are .choose-user button:first-child {
  border-radius: 12px 0 0 12px;
}
main .you-are .choose-user button.selected {
  background: #ff6c4d;
  color: #ffffff;
}
main .select-design {
  width: 100%;
}
main .select-design form .select,
main .select-design .form .select {
  width: 100%;
  height: 55px;
  line-height: 55px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
main .select-design form .select-options,
main .select-design .form .select-options {
  top: -55px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
main .select-design form .select-options li,
main .select-design .form .select-options li {
  height: 55px;
  line-height: 55px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 21px;
}
@media only screen and (max-width: 650px) {
  main .select-design form .select-options li,
  main .select-design .form .select-options li {
    font-size: 15px;
    padding-left: 17px;
    padding-right: 17px;
  }
}
main .select-design form .select-options li:nth-child(2),
main .select-design .form .select-options li:nth-child(2) {
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  border-radius: 12px 12px 0 0;
}
main .select-design form .select-options li:nth-child(2):hover,
main .select-design form .select-options li:nth-child(2):focus,
main .select-design .form .select-options li:nth-child(2):hover,
main .select-design .form .select-options li:nth-child(2):focus {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
main .select-design form .select-options li:last-child,
main .select-design .form .select-options li:last-child {
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  border-radius: 0 0 12px 12px;
}
main .select-design form .select-options li:last-child:hover,
main .select-design form .select-options li:last-child:focus,
main .select-design .form .select-options li:last-child:hover,
main .select-design .form .select-options li:last-child:focus {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
main .select-design form .form-control,
main .select-design form .select-styled,
main .select-design .form .form-control,
main .select-design .form .select-styled {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 650px) {
  main .select-design form .form-control,
  main .select-design form .select-styled,
  main .select-design .form .form-control,
  main .select-design .form .select-styled {
    padding-left: 17px;
    padding-right: 17px;
  }
}
main .select-design form .select-styled,
main .select-design .form .select-styled {
  font-size: 21px;
}
@media only screen and (max-width: 650px) {
  main .select-design form .select-styled,
  main .select-design .form .select-styled {
    font-size: 15px;
  }
}
main .select-design form .select-styled.empty,
main .select-design .form .select-styled.empty {
  border-color: #ff6c4d;
  border-width: 2px;
}
main .select-design form .select-styled:before,
main .select-design .form .select-styled:before {
  margin-right: 17px;
}
main .select-design form.small .select-options,
main .select-design .form.small .select-options {
  top: -55px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
main .select-design form.small .select-options li,
main .select-design .form.small .select-options li {
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (max-width: 650px) {
  main .select-design form.small .select-options li,
  main .select-design .form.small .select-options li {
    padding-left: 17px;
    padding-right: 17px;
  }
}
main .select-design form.small .form-control,
main .select-design form.small .select-styled,
main .select-design .form.small .form-control,
main .select-design .form.small .select-styled {
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (max-width: 650px) {
  main .select-design form.small .form-control,
  main .select-design form.small .select-styled,
  main .select-design .form.small .form-control,
  main .select-design .form.small .select-styled {
    padding-left: 17px;
    padding-right: 17px;
  }
}
main .select-design form.small .select-styled:before,
main .select-design .form.small .select-styled:before {
  margin-right: 0;
}
main .btn {
  margin-top: 58px;
}

main .pro-section {
  margin-top: 0;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  transition-delay: 0s;
}
@media only screen and (max-width: 650px) {
  main .pro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
main .pro-section__select {
  margin-top: 0;
  width: 43%;
}
@media only screen and (max-width: 650px) {
  main .pro-section__select {
    width: 100%;
  }
}
main .pro-section.show .pro-section-container,
main .pro-section.collapsing .pro-section-container {
  margin-top: 30px;
}

.overlay-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  overflow: auto;
}
.overlay-container--fixed {
  position: fixed;
}
@media only screen and (max-width: 767px) {
  .overlay-container {
    z-index: 996;
    background: unset;
  }
}
.overlay-container.overlay-devis .main {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-devis .main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.overlay-container.overlay-devis .main .form-contact {
  display: grid;
  gap: 8px;
}
.overlay-container.overlay-devis .main .form-contact button {
  margin-top: 40px;
}
.overlay-container.overlay-devis .main input {
  padding-left: 2%;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-devis {
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
  }
  .overlay-container.overlay-devis .main {
    top: calc(var(--header-height) / 2);
    left: 50%;
    transform: translateX(-50%);
    width: unset;
    min-width: 310px;
    width: 75%;
    padding-top: 50px;
  }
  .overlay-container.overlay-devis .main .close-overlay--right {
    display: flex;
    top: 19px;
    right: 0px;
  }
}
.overlay-container.overlay-lets-talk .form-contact {
  display: grid;
  grid-template-rows: repeat(3, 65px) 1fr 100px;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-lets-talk .form-contact {
    grid-template-rows: repeat(6, 65px) 1fr 70px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 4px;
  }
}
.overlay-container.overlay-lets-talk .form-contact__firstname {
  grid-column: 1 / span 2;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-lets-talk .form-contact__firstname {
    grid-column: 1/1;
  }
}
.overlay-container.overlay-lets-talk .form-contact__name {
  grid-column: 3 / span 2;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-lets-talk .form-contact__name {
    grid-column: 2/2;
  }
}
.overlay-container.overlay-lets-talk .form-contact__tel {
  grid-column: 5 / span 2;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-lets-talk .form-contact__tel {
    grid-column: 1/-1;
  }
}
.overlay-container.overlay-lets-talk .form-contact__email {
  grid-column: 1 / span 3;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-lets-talk .form-contact__email {
    grid-column: 1/-1;
  }
}
.overlay-container.overlay-lets-talk .form-contact__company {
  grid-column: 4 / span 3;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-lets-talk .form-contact__company {
    grid-column: 1/-1;
  }
}
.overlay-container.overlay-lets-talk .form-contact__object {
  grid-column: 1 / span 4;
}
@media only screen and (max-width: 767px) {
  .overlay-container.overlay-lets-talk .form-contact__object {
    grid-column: 1/-1;
  }
}
.overlay-container.overlay-lets-talk .form-contact__details {
  grid-column: 1/-1;
}
.overlay-container.overlay-lets-talk .form-contact__details textarea {
  height: 116px;
  padding: 10px;
}
.overlay-container.overlay-lets-talk .form-contact .btn {
  grid-column: 1/-1;
  justify-self: center;
  font-size: 22px;
}
.overlay-container.overlay-success .main {
  min-width: unset;
  max-width: 90%;
  width: unset;
  padding: 50px 70px 30px;
  gap: 20px;
}
.overlay-container.overlay-success .main .content {
  font-size: 16px;
  color: #ff6c4d;
  font-family: "CentraNo1-Extrabold";
  text-align: center;
}
.overlay-container .main {
  position: absolute;
  top: calc(var(--header-height) / 2);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  min-width: 733px;
  width: 51%;
  padding: 70px 42px 34px;
}
@media only screen and (max-width: 1024px) {
  .overlay-container .main {
    padding: 50px 20px 24px;
  }
}
@media only screen and (max-width: 767px) {
  .overlay-container .main {
    top: var(--header-height);
    left: 0;
    transform: none;
    width: 100%;
    min-width: unset;
    padding: 100px 10% 41px;
    overflow: hidden;
  }
}
.overlay-container .main .close-overlay {
  position: absolute;
  transition: 0.5s;
}
.overlay-container .main .close-overlay--right {
  top: 45px;
  right: 45px;
}
.overlay-container .main .close-overlay--right:hover {
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .overlay-container .main .close-overlay--right {
    display: none;
  }
}
.overlay-container .main .close-overlay--left {
  display: none;
  top: 20px;
  left: 35px;
  font-family: "CentraNo1-Extrabold";
  font-size: 18px;
  color: #bdbdbd;
}
@media only screen and (max-width: 767px) {
  .overlay-container .main .close-overlay--left {
    display: flex;
    align-items: center;
  }
}
.overlay-container .main .close-overlay--left:hover img {
  margin-right: 7px;
}
.overlay-container .main .close-overlay--left img {
  margin-right: 10px;
  transition: 0.2s;
}
.overlay-container .main .close-overlay--left p {
  transform: translateY(2px);
}
.overlay-container .main .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "CentraNo1-Extrabold";
  color: #ff6c4d;
  font-size: 23px;
  line-height: 25px;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .overlay-container .main .title {
    margin-bottom: 11px;
    font-size: 20px;
  }
}
.overlay-container .main .title span {
  font-size: 33px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .overlay-container .main .title span {
    margin-bottom: 10px;
    font-size: 27px;
  }
}
.overlay-container .main .text {
  width: 82%;
}
.overlay-container .main .text p {
  font-size: 18px;
  line-height: 27px;
  text-align: center;
}
@media only screen and (max-width: 380px) {
  .overlay-container .main .text p {
    font-size: 15px;
    line-height: 22px;
  }
}
.overlay-container .main .text p:first-child {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .overlay-container .main .text p:first-child {
    margin-bottom: 10px;
  }
}
.overlay-container .main .text p:only-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .overlay-container .main .text p:only-child {
    margin-bottom: 0;
  }
}
.overlay-container .main .form-contact {
  margin-top: 43px;
}
@media only screen and (max-width: 1024px) {
  .overlay-container .main .form-contact {
    margin-top: 20px;
  }
}
.overlay-container .main .form-contact label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  width: 100%;
}
.overlay-container .main .form-contact input,
.overlay-container .main .form-contact textarea {
  border-radius: 8px;
  width: 100%;
  font-size: 15px;
}
.overlay-container .main .form-contact .input {
  margin-bottom: 0;
}
.overlay-container.opened {
  display: flex;
}

.trustpilot-wrapper {
  width: 150px;
  top: 150px;
  position: fixed;
  right: 50px;
}

@media only screen and (max-width: 1024px) {
  .trustpilot-wrapper {
    top: unset;
    right: unset;
    position: relative;
    margin: auto;
    padding-bottom:150px;
  }
}

.formule-wrapper {
  background: #f2f2f2;
  border-radius: 20px;
  padding: 20px;
}
.formule-wrapper.formule-selected {
  background: #FFEFEC;
  border:2px solid #FC623D;
  color: #FC623D;
}

.btn-outline {
  border-radius: 99px !important;
  -webkit-border-radius: 99px !important;
  -moz-border-radius: 99px !important;
  line-height: normal;
  padding: 15px;
  font-family: "CentraNo1-Extrabold";
  text-decoration: none;
  font-size: 16px;
}

button.btn-outline-orange,
.button.btn-outline-orange {
  background-color: white;
  color: #ff6c4d;
  border: 2px solid #ff6c4d;
}

.select-pack {
  background: #F2F2F2;
  border: none;
  font-size:16px;
  box-shadow: 6px 16px 20px rgba(190, 190, 190, 0.4), 0px 2px 4px rgba(0, 0, 0, 0.1);
  min-height:365px;
}
.container__custom {
    padding-top:130px;
}
@media only screen and (max-width: 767px) {
    .select-pack {
        padding-bottom:48px;
    }

.container__custom {
    padding-top:90px;
}
}
.select-pack:hover {
  
  background:#FFEFEC;
  cursor:pointer;
}
.select-pack.selected {
  border:3px solid #FF6C4D;
  background:#FFEFEC;
}
#overlay-digital-pack.modal .modal-content .modal-body p {
    font-family: "LuckyFellas";
    color: #ff6c4d;
    font-size: 18px;
    line-height: 1.5;
}
/*# sourceMappingURL=home.css.map */
