@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap);
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
          animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #eee, -1px 0 0 #eee, 0 1px 0 #eee, 0 -1px 0 #eee, 0 3px 13px rgba(0,0,0,0.08);
          box-shadow: 1px 0 0 #eee, -1px 0 0 #eee, 0 1px 0 #eee, 0 -1px 0 #eee, 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #eee;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #eee;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #eee;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: #3c3f40;
  fill: #3c3f40;
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: #3c3f40;
  fill: #3c3f40;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  left: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  right: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #f64747;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(64,72,72,0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(64,72,72,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(64,72,72,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(60,63,64,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #3c3f40;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #3c3f40;
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(60,63,64,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #eee;
          box-shadow: -1px 0 0 #eee;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #404848;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
      -ms-flex-preferred-size: 14.2857143%;
          flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e9e9e9;
  border-color: #e9e9e9;
}
.flatpickr-day.today {
  border-color: #f64747;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #f64747;
  background: #f64747;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #4f99ff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  border-color: #4f99ff;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #4f99ff;
          box-shadow: -10px 0 0 #4f99ff;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e9e9e9, 5px 0 0 #e9e9e9;
          box-shadow: -5px 0 0 #e9e9e9, 5px 0 0 #e9e9e9;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(64,72,72,0.3);
  background: transparent;
  border-color: #e9e9e9;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(64,72,72,0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #4f99ff, 5px 0 0 #4f99ff;
          box-shadow: -5px 0 0 #4f99ff, 5px 0 0 #4f99ff;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #eee;
          box-shadow: 1px 0 0 #eee;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(64,72,72,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #404848;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #404848;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #404848;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #404848;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f1f1f1;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.flatpickr-calendar {
  width: 307.875px;
}
.dayContainer {
  padding: 0;
  border-right: 0;
}
span.flatpickr-day,
span.flatpickr-day.prevMonthDay,
span.flatpickr-day.nextMonthDay {
  border-radius: 0 !important;
  border: 1px solid #e9e9e9;
  max-width: none;
  border-right-color: transparent;
}
span.flatpickr-day:nth-child(n+8),
span.flatpickr-day.prevMonthDay:nth-child(n+8),
span.flatpickr-day.nextMonthDay:nth-child(n+8) {
  border-top-color: transparent;
}
span.flatpickr-day:nth-child(7n-6),
span.flatpickr-day.prevMonthDay:nth-child(7n-6),
span.flatpickr-day.nextMonthDay:nth-child(7n-6) {
  border-left: 0;
}
span.flatpickr-day:nth-child(n+36),
span.flatpickr-day.prevMonthDay:nth-child(n+36),
span.flatpickr-day.nextMonthDay:nth-child(n+36) {
  border-bottom: 0;
}
span.flatpickr-day:nth-child(-n+7),
span.flatpickr-day.prevMonthDay:nth-child(-n+7),
span.flatpickr-day.nextMonthDay:nth-child(-n+7) {
  margin-top: 0;
}
span.flatpickr-day.today:not(.selected),
span.flatpickr-day.prevMonthDay.today:not(.selected),
span.flatpickr-day.nextMonthDay.today:not(.selected) {
  border-color: #e9e9e9;
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: #f64747;
}
span.flatpickr-day.today:not(.selected):hover,
span.flatpickr-day.prevMonthDay.today:not(.selected):hover,
span.flatpickr-day.nextMonthDay.today:not(.selected):hover {
  border: 1px solid #f64747;
}
span.flatpickr-day.startRange,
span.flatpickr-day.prevMonthDay.startRange,
span.flatpickr-day.nextMonthDay.startRange,
span.flatpickr-day.endRange,
span.flatpickr-day.prevMonthDay.endRange,
span.flatpickr-day.nextMonthDay.endRange {
  border-color: #4f99ff;
}
span.flatpickr-day.today,
span.flatpickr-day.prevMonthDay.today,
span.flatpickr-day.nextMonthDay.today,
span.flatpickr-day.selected,
span.flatpickr-day.prevMonthDay.selected,
span.flatpickr-day.nextMonthDay.selected {
  z-index: 2;
}
.rangeMode .flatpickr-day {
  margin-top: -1px;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.flatpickr-weekwrapper span.flatpickr-day {
  border: 0;
  margin: -1px 0 0 -1px;
}
.hasWeeks .flatpickr-days {
  border-right: 0;
}

	@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
		span.flatpickr-day {
			display: block;
			-webkit-box-flex: 1;
			-webkit-flex: 1 0 auto;
			    -ms-flex: 1 0 auto;
			        flex: 1 0 auto;
		}
	}

* {
  box-sizing: border-box; }

@font-face{font-family:'Quicksand';src:url("/static/fonts/quicksand/Quicksand_Light.otf") format("opentype"),url("/static/fonts/quicksand/Quicksand_Light.otf") format("opentype");font-weight:normal;font-style:normal}@font-face{font-family:'SkipLegDay';src:url("/static/fonts/skipLegDay/SkipLegDay.ttf") format("TrueType"),url("/static/fonts/skipLegDay/SkipLegDay.ttf") format("TrueType");font-weight:normal;font-style:normal}@font-face{font-family:'Sacramento';src:url("/static/fonts/sacramento/Sacramento-Regular.ttf") format("TrueType"),url("/static/fonts/sacramento/Sacramento-Regular.ttf") format("TrueType");font-weight:normal;font-style:normal}@font-face{font-family:'Searocks';src:url("/static/fonts/searocks/Searocks.otf") format("opentype"),url("/static/fonts/searocks/Searocks.otf") format("opentype");font-weight:normal;font-style:normal}@font-face{font-family:'Allegro';src:url("/static/fonts/allegro/allegro.ttf") format("truetype"),url("/static/fonts/allegro/allegro.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Dolce Vita';src:url("/static/fonts/dolceVita/Dolce Vita.ttf") format("truetype"),url("/static/fonts/dolceVita/Dolce Vita.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Elle Gabor';src:url("/static/fonts/elleGabor/ElleGaborBlack.otf") format("opentype"),url("/static/fonts/elleGabor/ElleGaborBlack.otf") format("opentype");font-weight:normal;font-style:normal}@font-face{font-family:'Handlee';src:url("/static/fonts/handlee/Handlee-Regular.ttf") format("truetype"),url("/static/fonts/handlee/Handlee-Regular.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Hanshand';src:url("/static/fonts/hanshand/hanshand.TTF") format("truetype"),url("/static/fonts/hanshand/hanshand.TTF") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Karine Aime Les Chocolats';src:url("/static/fonts/karineAimeLesChocolats/Karine aime les Chocolats.ttf") format("truetype"),url("/static/fonts/karineAimeLesChocolats/Karine aime les Chocolats.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Lato';src:url("/static/fonts/lato/Lato regular.ttf") format("truetype"),url("/static/fonts/lato/Lato regular.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Lato';src:url("/static/fonts/lato/Lato 300.ttf") format("truetype"),url("/static/fonts/lato/Lato 300.ttf") format("truetype");font-weight:300;font-style:normal}@font-face{font-family:'Lato';src:url("/static/fonts/lato/Lato 700.ttf") format("truetype"),url("/static/fonts/lato/Lato 700.ttf") format("truetype");font-weight:700;font-style:normal}@font-face{font-family:'Mak Dah';src:url("/static/fonts/makDah/Mak Dah.ttf") format("truetype"),url("/static/fonts/makDah/Mak Dah.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Oxygen';src:url("/static/fonts/oxygen/Oxygen-Light_0.ttf") format("truetype"),url("/static/fonts/oxygen/Oxygen-Bold_0.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Pacifico';src:url("/static/fonts/pacifico/Pacifico.ttf") format("truetype"),url("/static/fonts/pacifico/Pacifico.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Roboto';src:url("/static/fonts/roboto/Roboto-Regular.ttf") format("truetype"),url("/static/fonts/roboto/Roboto-Regular.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'Vogue';src:url("/static/fonts/vogue/Vogue.ttf") format("truetype"),url("/static/fonts/vogue/Vogue.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:'canter';src:url("/static/fonts/canter/Canter_Bold.otf") format("otf"),url("/static/fonts/canter/canter_bold-webfont.ttf") format("ttf"),url("/static/fonts/canter/canter_bold-webfont.woff") format("woff"),url("/static/fonts/canter/canter_bold-webfont.woff2") format("woff2")}@font-face{font-family:'LemonMilkBold';src:url("/static/fonts/lemonMilkBold/lemonmilkbold-webfont.ttf") format("ttf"),url("/static/fonts/lemonMilkBold/lemonmilkbold-webfont.woff") format("woff"),url("/static/fonts/lemonMilkBold/lemonmilkbold-webfont.woff2") format("woff2")}*{box-sizing:border-box}.m-0{margin:0}body{margin:0;min-height:100vh}body .flex{display:flex}body .justify-between{justify-content:space-between}body .items-center{align-items:center}body .rdw-colorpicker-modal{width:300px;height:300px}body .content .intro p{display:block}body .content .intro .helper-trigger,body .content .intro .helper-show{display:none}body .content .intro .helper-trigger:checked ~ .helper-show{display:block}body .ambiance-picture{margin:0 auto}body .ui-dialog{box-shadow:0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);border-radius:5px;overflow:hidden;top:25%;left:30%}body .ui-dialog .ui-dialog-content{max-height:calc(100% - 115px);min-height:300px}body .ui-dialog .ui-dialog-content .rdw-editor-main{background-color:#f1f1f1;padding:0 10px}body .ui-dialog .ui-dialog-titlebar{display:flex;align-items:center;justify-content:space-between;border-bottom:none;background-image:linear-gradient(to right, #ff8787, #ff8fb0, #f19ed5);color:white;border-radius:0}body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button:first-of-type{background-image:linear-gradient(to right, #ff8787, #ff8fb0, #f19ed5, #dbb0f0, #c1c1ff);box-shadow:0px 3px 8px #d4d4d4;color:white;border:none}body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button:nth-of-type(2){background:none;color:grey}body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button:hover{opacity:0.8}body .ui-dialog .uncontrolled-input{padding-bottom:10px;border-bottom:1px solid black;cursor:pointer;margin-right:15px}body .toolbar-interface-wrapper{position:sticky;top:0;z-index:1000;background-color:#f5f5f5;box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)}body .toolbar-interface-wrapper .toolbar{display:flex;margin:auto;justify-content:space-between;align-items:center;flex-wrap:wrap;padding:10px 24px}body .toolbar-interface-wrapper .toolbar .logo-wrapper{display:flex;justify-content:center;align-items:center}body .toolbar-interface-wrapper .toolbar .logo-wrapper img{width:115px}body .toolbar-interface-wrapper .toolbar .logo-wrapper h2{position:absolute;left:50px;font-size:1em;width:90px;margin:0;color:#7d7d7d}body .toolbar-interface-wrapper .toolbar .toolbar-fieldsets-wrapper{display:flex;flex-wrap:wrap;justify-content:center;flex:1 1;margin:0 2%}body .toolbar-interface-wrapper .toolbar .toolbar-fieldsets-wrapper fieldset{margin:10px 20px;max-width:500px}body .toolbar-interface-wrapper .toolbar .toolbar-fieldsets-wrapper .toolbar-select-wrapper{display:flex;flex-direction:column;flex:1 1;border:none;border-radius:5px}body .toolbar-interface-wrapper .toolbar .toolbar-fieldsets-wrapper .toolbar-select-wrapper .field-group{display:flex}body .toolbar-interface-wrapper .toolbar .toolbar-fieldsets-wrapper .toolbar-select-wrapper .field-group .ant-select{flex:1 1}body .toolbar-interface-wrapper .toolbar .toolbar-fieldsets-wrapper .toolbar-select-wrapper legend{font-variant:small-caps;font-size:0.9em}body .toolbar-interface-wrapper .toolbar #close-toolbar-btn{position:absolute;bottom:-30px;right:10px;cursor:pointer;text-align:center;padding:5px;width:30px;height:30px;background-color:#c5c5c5;border-radius:0px 0px 10px 10px;z-index:-1}body .toolbar-interface-wrapper .toolbar .error-message{display:block;padding:4px 0;color:#ff8787}body .toolbar-interface-wrapper .toolbar .power-wrapper{display:flex;justify-content:center;align-items:center;padding:10px;border-radius:50%;background-image:linear-gradient(to top, #ff8787, #ff8fb0, #f19ed5, #dbb0f0, #c1c1ff);box-shadow:0px 3px 8px #d4d4d4;cursor:pointer}body .toolbar-interface-wrapper .toolbar .power-wrapper img{width:20px}body .toolbar-interface-wrapper .toolbar .power-wrapper:active{box-shadow:inset 0 3px 6px rgba(0,0,0,0.16),inset 0 3px 6px rgba(0,0,0,0.23)}body .toolbar-interface-wrapper .toolbar .power-wrapper:hover{opacity:0.8}body .toolbar-interface-wrapper .toolbar .reconnect-btn{color:white;border:none;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 1px 2px rgba(0,0,0,0.24);border-radius:8px;background-image:linear-gradient(to top, #ff8787, #ff8fb0, #f19ed5, #dbb0f0, #c1c1ff)}body .toolbar-interface-wrapper .toolbar-strip{box-shadow:0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);cursor:pointer;z-index:200;position:absolute;right:10px;border-radius:0 0 10px 10px;background-color:#f5f5f5;text-align:center;padding:0 10px;top:-10px;transition:top 100ms;width:34px;height:40px}body .toolbar-interface-wrapper .toolbar-strip img{position:absolute;top:15px;right:6px;width:20px;height:20px}body .toolbar-interface-wrapper .toolbar-strip:active{box-shadow:inset 0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23)}body .toolbar-interface-wrapper .hr{margin:2em 0;border-color:white}body .toolbar-interface-wrapper .colorpicker-wrapper>button:first-of-type{margin-left:10px}body .toolbar-interface-wrapper .colorpicker-wrapper .switch-label{margin-left:10px}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper{position:relative;width:100%}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper h1{margin-top:0}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .direction-wrapper label{margin-right:6px}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper legend{margin:0;font-size:14px}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .gradient-and-percent-wrapper{width:100%}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .gradient-and-percent-wrapper .gradient-elt-wrapper{border:none;margin-top:15px}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .gradient-and-percent-wrapper .gradient-elt-wrapper .gradient-elt-content{display:flex;align-items:center}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .gradient-and-percent-wrapper .gradient-elt-wrapper .gradient-elt-content .input-picker-component-wrapper{width:50%}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .gradient-and-percent-wrapper .gradient-elt-wrapper .gradient-elt-content .slider-wrapper{width:50%;padding:0 15px;overflow-x:hidden}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .gradient-and-percent-wrapper .gradient-elt-wrapper .gradient-percent{margin:0 5px}body .toolbar-interface-wrapper .colorpicker-wrapper .gradient-big-wrapper .trash-color{cursor:pointer;position:absolute;width:30px;bottom:75px;right:-20px}body .toolbar-interface-wrapper .edit-image-wrapper{padding:10px}body .toolbar-interface-wrapper .toolbar-buttons{font-family:canter;font-size:1.1em;font-weight:bold;line-height:1;border:none;border-radius:5px;color:white;letter-spacing:1px;padding:5px;width:100px;background-image:linear-gradient(to right, #ff8787, #ff8fb0, #f19ed5, #dbb0f0, #c1c1ff);box-shadow:0px 3px 8px #d4d4d4;cursor:pointer}body .toolbar-interface-wrapper .toolbar-buttons:hover{opacity:0.8}body .toolbar-interface-wrapper .toolbar-buttons:active{box-shadow:inset 0px 3px 8px #8d8d8d}body .toolbar-interface-wrapper .plus-button-wrapper{display:flex;justify-content:flex-start;align-items:center;height:auto;padding:10px 0 10px 10px;width:100%;border-radius:5px;margin:15px 0;color:#91d5ff;cursor:pointer}body .toolbar-interface-wrapper .plus-button-wrapper:active{cursor:pointer;box-shadow:inset 1px 3px 5px #d5d5d5}body .toolbar-interface-wrapper .plus-button-wrapper:hover{background-color:#dcf2ff}body .toolbar-interface-wrapper .plus-button-wrapper svg{margin-right:10px;font-size:16px}body .toolbar-interface-wrapper .Toastify__toast--default{border:1px solid #dcf2ff}body .fade-enter{opacity:0;transform:translateY(-100%)}body .fade-enter.fade-enter-active{opacity:1;transform:translateY(0);transition:opacity 1s linear, transform 2s ease-in-out}.react-draggable{box-shadow:0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23)}.react-draggable .react-resizable .modal-content{display:flex;height:100%;flex-direction:column}.react-draggable .react-resizable .modal-content header{padding:10px 20px;background-image:linear-gradient(to right, #ff8787, #ff8fb0, #f19ed5);color:white;font-size:20px;cursor:move}.react-draggable .react-resizable .modal-content form{overflow:auto;flex:1 1;padding:20px}.react-draggable .react-resizable .modal-content form .layout-name{font-size:24px}.react-draggable .react-resizable .modal-content form .ant-card{margin-bottom:20px}.react-draggable .react-resizable .modal-content form .ant-card .ant-card-head-title{font-weight:500}.react-draggable .react-resizable .modal-content form .rdw-editor-wrapper{background-color:#e8e8e8;padding:16px}.react-draggable .react-resizable .modal-content form .rdw-editor-wrapper .rdw-editor-main{margin-top:10px;padding:0 20px;background-color:white}.react-draggable .react-resizable .modal-content form input{max-width:360px}.react-draggable .react-resizable .modal-content footer{display:flex;justify-content:flex-end;padding:10px 20px;border-top:1px solid #f6f6f6}.react-draggable .react-resizable .modal-content footer .save-layout{margin-right:10px;border:none;box-shadow:0px 3px 8px #d4d4d4;background-image:linear-gradient(to right, #ff8787, #ff8fb0, #f19ed5, #dbb0f0, #c1c1ff);color:white}.ant-popover-inner-content{padding:0}.callback-form .rgpd-optins-wrapper .rgpd-text{text-align:center}.callback-form .rgpd-optins-wrapper .rappel-offer{text-align:center}.callback-form .rgpd-optins-wrapper .rappel-offer p:first-child small{color:#1890ff;font-size:10px}.callback-form .rgpd-optins-wrapper .rappel-offer p:first-child small a{text-decoration:underline}.callback-form .rgpd-optins-wrapper .rappel-offer h4{font-weight:bold}

.mb-2{margin-bottom:0.5rem}.flex{display:flex}.flex-direction-column{flex-direction:column}.flex-items-center{align-items:center}.w-full{width:100%}b,strong{font-weight:bold}.card.cards-game.drawn{height:100%}.card.cards-game.drawn img{height:100%;object-fit:cover}.contact-form .contact-form-content .tlmq-consents .tlmq-checkbox .checkbox label::before{border:1px solid #616161}.content .tlmq-input.invalid .validation-message{opacity:1 !important}.content .cards-game-container.drawn-cards .card img.back{height:185px;height:fit-content;object-fit:cover}.content .contact-form .fields .gender .tlmq-radio-group .tlmq-radio{opacity:1;color:#acacac !important;border-color:#cccccc}.content .contact-form .fields .gender .tlmq-radio-group .tlmq-radio .tlmq-radio-circle{border-color:#acacac}.content .contact-form .fields .gender .tlmq-radio-group .tlmq-radio.selected{color:black !important;border-color:black}.content .contact-form .fields .gender .tlmq-radio-group .tlmq-radio.selected .tlmq-radio-circle{border-color:black}

.cards-button .circle{position:relative;width:160px;height:160px;margin-top:30px;background-color:#e72d2e;border-radius:50%;box-shadow:2px 3px 3px rgba(0,0,0,0.19),0 1px 2px rgba(0,0,0,0.24)}.cards-button .card{position:absolute;width:35%;height:48%;left:50%;border:2px solid;border-color:#e96f72;border-radius:4px;background-color:#5078b7}.cards-button .card-1{transform:translate(-30%, -50%) rotate(10deg)}.cards-button .card-2{transform:translate(-70%, -30%) rotate(-10deg)}.cards-button .moon-wrapper{position:absolute;width:41.5%;height:31.25%;top:50%;left:50%;transform:translate(-60%, -50%) rotate(-45deg);border-right:5px solid;border-bottom:5px solid;border-color:#e96f72;border-radius:50%}.cards-button .moon{position:absolute;width:100%;height:100%;left:4px;top:4px;transform:rotate(45deg);border-right:3px solid;border-color:red;border-radius:50%}.cards-button .icons-wrapper{position:relative;height:100%;top:50%;left:50%;transform:translate(-50%, -50%)}.cards-button .star.star-1 svg{top:15%;left:50%}.cards-button .star.star-2 svg{top:50%;left:20%}.cards-button .star.star-3 svg{top:65%;left:75%}.cards-button .star svg{position:absolute;color:#e96f72;font-size:6px}.cards-button .text-content{position:absolute;top:50%;transform:translateY(-30%);color:white;font-size:18px}

@keyframes grow{0%{width:50px}50%{width:35px}100%{width:50px}}.loader-with-cards-wrapper{display:flex;flex:1 1;flex-direction:column;justify-content:center;align-items:center;margin:80px 0;padding-bottom:100px}.loader-with-cards-wrapper>label{margin-bottom:10px;font-size:1.2em}.loader-with-cards-wrapper>div{display:flex;justify-content:center;align-items:center;min-height:100px}.loader-with-cards-wrapper div>img{width:50px;animation-duration:3s;animation-iteration-count:infinite;animation-name:grow}.loader-with-cards-wrapper #card-wrapper-2>img{margin:0 10px}.loader-with-cards-wrapper #card-wrapper-2>img{animation-delay:0.5s}.loader-with-cards-wrapper #card-wrapper-3>img{animation-delay:1s}

@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.spinning-image-wrapper{height:calc(100vh - 260px);display:flex;flex-direction:column;justify-content:center;align-items:center}.spinning-image-wrapper>label{margin-bottom:10px;font-size:1.2em}.spinning-image-wrapper>div{display:flex;justify-content:center;align-items:center;min-height:100px}.spinning-image-wrapper>#spinning-image-container>img{width:60px;animation-duration:3s;animation-iteration-count:infinite;animation-name:spin}

.prefooter-banner-wrapper{display:flex;justify-content:center;padding:35px}.prefooter-banner-wrapper .item-prefooter-banner{display:flex;justify-content:space-between;padding:0 15px;font-size:14px}.prefooter-banner-wrapper .item-prefooter-banner::before,.prefooter-banner-wrapper .item-prefooter-banner::after{content:'';display:block;width:14px;height:14px;background-image:url("/static/images/avenir-sentimental/star.png");background-size:cover}.prefooter-banner-wrapper .item-prefooter-banner::before{margin-right:5px}.prefooter-banner-wrapper .item-prefooter-banner::after{margin-left:5px}.prefooter-banner-wrapper .item-prefooter-banner.with-separator{border-right:1px solid white}@media (max-width: 768px){.prefooter-banner-wrapper{display:none}}

.callback-form{width:100%}.callback-form .grecaptcha-badge{visibility:hidden}.callback-form .rgpd-optins-wrapper{text-align:left}.callback-form .rgpd-optins-wrapper .rgpd-text{font-size:12px;margin-bottom:0}.callback-form .rgpd-optins-wrapper .tlmq-checkbox .checkbox label{font-size:12px}.callback-form .tlmq-consents{margin-top:16px}.callback-form .tlmq-consents .tlmq-checkbox{text-align:left}.callback-form .ant-btn.callbackBtn{height:auto;margin-top:15px;padding:5px;line-height:1.3;white-space:initial}.callback-form .checkbox-callback-wrapper{text-align:left}.callback-form .phoneNumberContainer{flex:1}

@keyframes phone-ring{0%{transform:rotate(90deg) scale(1) skew(1deg)}5%{transform:rotate(80deg) scale(1) skew(1deg)}10%{transform:rotate(115deg) scale(1) skew(1deg)}15%{transform:rotate(80deg) scale(1) skew(1deg)}20%{transform:rotate(115deg) scale(1) skew(1deg)}25%{transform:rotate(90deg) scale(1) skew(1deg)}100%{transform:rotate(90deg) scale(1) skew(1deg)}}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -10px, 0)}70%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -5px, 0)}90%{transform:translate3d(0, -2px, 0)}}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.05)}100%{transform:scale(1)}}.new-phone-number-wrapper{margin-top:10px;margin-bottom:20px}.new-phone-number-wrapper .link-new-phone-number{display:inline-block;position:relative;outline:none;text-shadow:none;text-decoration:underline #949595;font-size:13px;font-weight:400}.new-phone-number-wrapper .link-new-phone-number:hover{cursor:pointer}.new-phone-number-wrapper .link-new-phone-number:before,.new-phone-number-wrapper .link-new-phone-number:after{display:inline-block;opacity:0;transition:transform 0.3s, opacity 0.2s}.new-phone-number-wrapper .link-new-phone-number:before{margin-right:5px;content:'[';transform:translateX(20px)}.new-phone-number-wrapper .link-new-phone-number:after{margin-left:5px;content:']';transform:translateX(-20px)}.new-phone-number-wrapper .link-new-phone-number:hover::before,.new-phone-number-wrapper .link-new-phone-number:hover::after,.new-phone-number-wrapper .link-new-phone-number:focus::before,.new-phone-number-wrapper .link-new-phone-number:focus::after{opacity:1;transform:translateX(0px)}.new-phone-number-wrapper .link-new-phone-number .link-blue{color:#4972b4;text-decoration:underline #4972b4}@media (max-width: 425px){.modal-new-phone-number .ant-modal-content .ant-modal-header{padding-left:15px}}.modal-new-phone-number .ant-modal-content .ant-modal-header .ant-modal-title{font-size:20px}@media (max-width: 425px){.modal-new-phone-number .ant-modal-content .ant-modal-body{padding-left:15px}}.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .content-modal-new-phone-number{margin-bottom:15px}@media (min-width: 425px){.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .content-modal-new-phone-number{font-size:15px}}.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .new-phone-number-input-wrapper{display:flex;justify-content:center;width:100%}.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .new-phone-number-input-wrapper .icon-phone{display:flex;width:40px;height:40px;justify-content:center;align-content:center;margin-right:20px;padding:10px;border-radius:50%;background-color:var(--color);margin-top:10px}@media (max-width: 425px){.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .new-phone-number-input-wrapper .icon-phone{display:none}}.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .new-phone-number-input-wrapper .icon-phone .fa-phone{transform:rotate(90deg);color:#fff;font-size:22px;animation:phone-ring 3.5s infinite ease-in-out}.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .new-phone-number-input-wrapper .phone-number-component-wrapper{width:100%}.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .new-phone-number-input-wrapper .phone-number-component-wrapper .react-phone-number-input__phone{padding:10px 10px}.modal-new-phone-number .ant-modal-content .ant-modal-body .wrapper-content-modal-new-phone-number .new-phone-number-input-wrapper .phone-number-component-wrapper .react-phone-number-input__phone::placeholder{font-size:14px}.modal-new-phone-number .ant-modal-content .ant-modal-footer .footer-modal-new-phone-number{display:flex;justify-content:flex-end}.modal-new-phone-number .ant-modal-content .ant-modal-footer .footer-modal-new-phone-number .btn-close-modal{display:block;height:initial;margin-right:10px}.modal-new-phone-number .ant-modal-content .ant-modal-footer .footer-modal-new-phone-number .tlmq-button-callback{display:inline-block}.modal-new-phone-number .ant-modal-content .ant-modal-footer .footer-modal-new-phone-number .tlmq-button-callback .tlmq-button{margin:0;padding:6px 15px;background-color:var(--color);color:#fff;transition:background-color .2s ease-in-out}.modal-new-phone-number .ant-modal-content .ant-modal-footer .footer-modal-new-phone-number .tlmq-button-callback .tlmq-button:hover{background-color:var(--color)}

.cards-game-container{clear:both}.cards-game-container.drawn-cards{display:block}.cards-game-container.drawn-cards .cards-game-wrapper{padding:0 10px}.cards-game-wrapper{position:relative;max-width:960px;margin:0 auto 20px;padding:0 10px}.cards-game-wrapper .disabled-block{position:absolute;width:calc(100% - 20px);height:100%;z-index:5;background-color:rgba(255,255,255,0.65);cursor:not-allowed}.cards-game-wrapper .drawn-card-wrapper{flex:1 1}.cards-game-wrapper .drawn-card-wrapper .card.drawn-cards .front{left:initial}html{scroll-behavior:smooth}@media (max-width: 960px){.cards-game-wrapper{margin:0 auto 20px}}

.contact-form .fields .field{margin:20px 0}.contact-form .fields .field label{display:block;font-size:0.8rem}.contact-form .fields .field label .front-component-label{display:block;margin-bottom:4px;font-size:0.8rem;color:black}.contact-form .fields .field .front-component-email-validation-message{line-height:0.9}.contact-form .fields input{font-family:Helvetica, sans-serif;font-size:14px;color:#555555;border:1px solid #ccc;border-radius:4px;padding:6px 12px;height:45px}.contact-form .fields strong{font-weight:600}.contact-form .required-fields{margin:30px 0 20px 0;font-size:12px}.contact-form .react-phone-number-input__icon{border:none}.contact-form .react-phone-number-input__icon img{position:relative;top:-2px}.contact-form .gender{margin:-6px 0 0}.contact-form .gender label{display:block;margin-bottom:4px;font-size:0.8rem}.contact-form .gender .radio-choices{display:flex;align-items:center}.contact-form .gender .radio-choices .radio-choice{display:flex;align-items:center;margin-right:10px;cursor:pointer}.contact-form .gender .radio-choices .radio-choice label{cursor:pointer}.contact-form .tlmq-optins .checkbox label{font-size:11px}.contact-form .tlmq-optins .checkbox label::before{top:2px}.contact-form .tlmq-optins .checkbox label::after{top:3px}.contact-form .contact-form-content{position:relative}.contact-form .contact-form-content .disabled-block{position:absolute;width:100%;height:100%;z-index:5;background-color:rgba(255,255,255,0.65);cursor:not-allowed}.contact-form .contact-form-content .spinner-wrapper-contact-form{position:relative;height:35px}.contact-form .contact-form-content .rgpd-text{font-size:12px}

.conversational-form{background-color:white}.conversational-form .optin-cf-container{display:flex;align-self:center;max-width:80%}.conversational-form .optin-cf-container .grecaptcha-badge{visibility:hidden}.conversational-form .optin-cf-container .dgccrf-text{font-size:14px}.conversational-form .card-interpretation{display:flex;padding:20px}.conversational-form .card-interpretation .picture-wrapper{min-width:120px;margin-right:16px}.conversational-form .card-interpretation .card-title{margin:0;font-size:30px}.conversational-form .card-interpretation+div>:first-child{opacity:1}.conversational-form .card-interpretation+div>:nth-child(2){border-radius:0 18px 18px}.conversational-form textarea{width:100%;padding:4px 6px;border:1px solid #ccc;border-radius:4px;resize:none;font-family:'Roboto', sans-serif}.conversational-form .conversation-content form>div>div:has(.phone-number-component-wrapper){width:100%}@media (max-width: 428px){.conversational-form .card-interpretation{padding:20px 10px 0}.conversational-form .card-interpretation .picture-wrapper{min-width:60px;margin-top:6px}.conversational-form .card-interpretation .card-title{font-size:24px}.conversational-form .card-interpretation .interpretation{margin-top:6px;font-size:14px;line-height:1.4}}

@keyframes phone-ring{0%{transform:rotate(90deg) scale(1) skew(1deg)}5%{transform:rotate(80deg) scale(1) skew(1deg)}10%{transform:rotate(115deg) scale(1) skew(1deg)}15%{transform:rotate(80deg) scale(1) skew(1deg)}20%{transform:rotate(115deg) scale(1) skew(1deg)}25%{transform:rotate(90deg) scale(1) skew(1deg)}100%{transform:rotate(90deg) scale(1) skew(1deg)}}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -10px, 0)}70%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -5px, 0)}90%{transform:translate3d(0, -2px, 0)}}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.05)}100%{transform:scale(1)}}.double-optin-container{display:flex;align-items:center;justify-content:center;flex-direction:column;max-width:80%;margin:auto;text-align:center;border:1px solid #dcdcdc;border-radius:18px;background-color:#eee;padding:10px 22px;line-height:1.5;font-size:14px;margin-bottom:10px}.double-optin-container .verify-phone-component span{text-decoration:none;font-weight:normal}.double-optin-container .verify-phone-wrapper{width:100%}.double-optin-container .validate-code-button span{text-decoration:none;margin-bottom:0}.double-optin-container .change-phone-number:before,.double-optin-container .change-phone-number:after{display:inline-block;opacity:0;transition:transform 0.3s, opacity 0.2s}.double-optin-container .change-phone-number:before{margin-right:5px;content:'[';transform:translateX(20px)}.double-optin-container .change-phone-number:after{margin-left:5px;content:']';transform:translateX(-20px)}.double-optin-container .change-phone-number:hover::before,.double-optin-container .change-phone-number:hover::after,.double-optin-container .change-phone-number:focus::before,.double-optin-container .change-phone-number:focus::after{opacity:1;transform:translateX(0px)}.double-optin-container span{font-size:13px;font-weight:bold;text-decoration:underline;margin-bottom:10px}.double-optin-container span:hover{cursor:pointer}

.free-question-container .free-question-wrapper{position:relative;max-width:960px;margin:auto}.free-question-container .free-question-wrapper .disabled-block{position:absolute;width:100%;height:100%;z-index:5;background-color:rgba(255,255,255,0.65);cursor:not-allowed}.free-question-container .free-question-wrapper .tlmq-input .field-wrapper .icon-feedback{right:20px}

.body{display:flex;min-height:100vh;flex-direction:column;font-family:'Oxygen', sans-serif;font-size:16px;line-height:initial}.body .content-body{width:100%;flex:1 0 auto}.react-phone-number-input__icon{border:none !important}

.fr .media-banner .small-mention{display:none}

.processing-question{padding:20px}

.thanks .content-body{padding:40px 20px}.thanks .content-body .LDE-thanks{text-align:center}.thanks .content-body .LDE-thanks .thanks-title{margin-top:0;font-size:24px;text-transform:uppercase}.thanks .content-body .LDE-thanks .bloc-promo{max-width:240px;margin:20px auto;padding:20px;background-color:#4972b4;border:2px solid #e9292a;box-shadow:0 0 5px 0 rgba(51,51,51,0.53);color:white;font-size:24px}.thanks .content-body .LDE-thanks .bloc-promo a{color:white;text-decoration:none}.thanks .content-body .LDE-thanks .callback-success{max-width:600px;margin:auto}

@keyframes phone-ring{0%{transform:rotate(90deg) scale(1) skew(1deg)}5%{transform:rotate(80deg) scale(1) skew(1deg)}10%{transform:rotate(115deg) scale(1) skew(1deg)}15%{transform:rotate(80deg) scale(1) skew(1deg)}20%{transform:rotate(115deg) scale(1) skew(1deg)}25%{transform:rotate(90deg) scale(1) skew(1deg)}100%{transform:rotate(90deg) scale(1) skew(1deg)}}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -10px, 0)}70%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -5px, 0)}90%{transform:translate3d(0, -2px, 0)}}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.05)}100%{transform:scale(1)}}@media (min-width: 768px){.verify-phone-wrapper{width:70%;margin:auto}}.verify-phone-wrapper .form-wrapper{display:flex;margin:15px 0}.verify-phone-wrapper .form-wrapper .input-wrapper{width:100%}.verify-phone-wrapper .form-wrapper .input-wrapper .custom-input-wrapper{margin:0;width:100%}.verify-phone-wrapper .form-wrapper .input-wrapper .custom-input-wrapper .tlmq-input label{font-size:14px}.verify-phone-wrapper .form-wrapper .input-wrapper .custom-input-wrapper .tlmq-input .field-wrapper input{padding:10px}.verify-phone-wrapper .form-wrapper .input-wrapper .custom-input-wrapper .tlmq-input .field-wrapper input::placeholder{font-size:14px}.verify-phone-wrapper .form-wrapper .tlmq-button{margin:0;height:40px;margin-left:10px;background-color:var(--color);color:#fff}.verify-phone-wrapper .code-expired{margin-bottom:15px;font-size:13px;text-align:center;color:red}.verify-phone-wrapper .code-expired .strong-code-expired{font-weight:bold}.verify-phone-wrapper .get-new-sms-code-wrapper{text-align:center;margin-bottom:20px}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code{font-size:13px;font-weight:bold;text-decoration:underline}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:hover{cursor:pointer}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:before,.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:after{display:inline-block;opacity:0;transition:transform 0.3s, opacity 0.2s}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:before{margin-right:5px;content:'[';transform:translateX(20px)}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:after{margin-left:5px;content:']';transform:translateX(-20px)}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:hover::before,.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:hover::after,.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:focus::before,.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code:focus::after{opacity:1;transform:translateX(0px)}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code.disabled{cursor:not-allowed;opacity:0.5}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code .tlmq-spinner{display:inline;position:relative;margin-right:15px}.verify-phone-wrapper .get-new-sms-code-wrapper .get-new-sms-code .tlmq-spinner .loader{display:inline}.btn-sms-code-wrapper{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-top:5px}.btn-sms-code-wrapper .label-info{display:block;font-size:13px}.btn-sms-code-wrapper .btn-sms-code{display:inline-block;padding:0 10px}.btn-sms-code-wrapper .btn-sms-code .tlmq-button{background-color:#72cc22;color:#fff;box-shadow:none;transition:background-color .1s ease-in-out}.btn-sms-code-wrapper .btn-sms-code .tlmq-button:hover{background-color:#83e42d}.tooltip-new-sms-code .ant-tooltip-inner{text-align:center}

.styles-edition-wrapper label{margin-top:10px}.styles-edition-wrapper .container-background-fixed .label{margin-right:10px}.styles-edition-wrapper .color-pickers{margin-top:10px}

.themes-editor-component-wrapper .content-wrapper{display:flex;justify-content:flex-start;flex-wrap:wrap;margin-top:20px}.themes-editor-component-wrapper .content-wrapper .adding-zone{min-width:80px;height:160px;border:1px dashed darkgrey;border-radius:5px;display:flex;justify-content:center;align-items:center;cursor:pointer}.themes-editor-component-wrapper .content-wrapper .adding-zone span{font-size:2.5em;font-weight:bolder;color:#6b6b6b}.themes-editor-component-wrapper .content-wrapper .item-wrapper{margin:10px;display:flex;flex-direction:column;justify-content:center;align-items:center;font-size:0.8em}.themes-editor-component-wrapper .content-wrapper .item-wrapper p{margin-top:1px}.themes-editor-component-wrapper .content-wrapper .item-wrapper span{margin-bottom:4px}.themes-editor-component-wrapper .content-wrapper .item-wrapper .img-theme{width:70px;border-radius:50%;border:1px solid darkgrey}.themes-editor-component-wrapper .next-step-content-wrapper{display:flex;flex-direction:column;max-width:430px;margin-top:20px}.themes-editor-component-wrapper .next-step-content-wrapper .box{display:flex;justify-content:space-between;align-items:center;border:1px solid #cacaca;padding:10px;border-radius:5px}.themes-editor-component-wrapper .next-step-content-wrapper .box .toolbar-buttons{margin-left:20px}

.edit-modal-wrapper{position:absolute}.edit-modal-wrapper .modal-content .edit-modal-form{background-color:#fff}.edit-modal-wrapper .modal-content .spinner{position:absolute;right:30px;top:16px}.edit-modal-wrapper .modal-content .save-layout.loading{padding-right:40px}

.styles-edition-wrapper .container-background-size{margin:10px 0}.styles-edition-wrapper .container-background-fixed .label{margin-right:10px}

.edit-theme-image-wrapper{display:flex;flex-direction:column}.edit-theme-image-wrapper .filepond--root{width:100px}.edit-theme-image-wrapper .circle{border-radius:40px;border:1px solid}.edit-theme-image-wrapper .input-file-label{font-size:0.8em;cursor:pointer}.edit-theme-image-wrapper .preview{width:100px}.edit-image-wrapper{position:relative}.edit-image-wrapper .preview{width:100px}.edit-image-wrapper .input-file-wrapper .trash-wrapper{position:absolute;bottom:50px;left:100px}

@font-face{font-family:'canter';src:url("/static/fonts/canter/Canter_Bold.otf") format("otf"),url("/static/fonts/canter/canter_bold-webfont.ttf") format("ttf"),url("/static/fonts/canter/canter_bold-webfont.woff") format("woff"),url("/static/fonts/canter/canter_bold-webfont.woff2") format("woff2")}@font-face{font-family:'LemonMilkBold';src:url("/static/fonts/lemonMilkBold/lemonmilkbold-webfont.ttf") format("ttf"),url("/static/fonts/lemonMilkBold/lemonmilkbold-webfont.woff") format("woff"),url("/static/fonts/lemonMilkBold/lemonmilkbold-webfont.woff2") format("woff2")}.login-page-wrapper{min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center}.login-page-wrapper .login-content{font-family:canter;font-size:1.5em;font-weight:bold;color:#707070;text-align:center;border:1px solid #eaeaea;border-radius:15px;padding:90px 15px 15px 15px;position:relative;width:300px}.login-page-wrapper .login-content .logo-wrapper{position:absolute;top:-113px;left:0;right:0;margin:auto;text-align:center}.login-page-wrapper .login-content .logo-wrapper>img{width:150px}.login-page-wrapper .login-content .logo-wrapper>.text-wrapper{display:flex;flex-direction:column;justify-content:center;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.login-page-wrapper .login-content .logo-wrapper>.text-wrapper>h1{font-family:LemonMilkBold;color:#5f5f5f;font-size:50px;margin:0;line-height:0.8;font-weight:600}.login-page-wrapper .login-content form input{width:100%;border:1px solid #eaeaea;padding:10px;margin-top:10px;font-family:"Arial", sans-serif;line-height:1}.login-page-wrapper .login-content form .form-input-wrapper{margin-bottom:0}.login-page-wrapper .login-content form>.form-input-wrapper:first-of-type input{margin-top:35px}.login-page-wrapper .login-content .form-submit-btn-wrapper>button{height:auto;font-size:24px;font-weight:bold;line-height:1;border:none;border-radius:5px;color:white;padding:10px;margin-top:20px;width:100%;background-image:linear-gradient(to right, #ff8787, #ff8fb0, #f19ed5, #dbb0f0, #c1c1ff);box-shadow:0px 3px 8px #d4d4d4;cursor:pointer}.login-page-wrapper .login-content .form-submit-btn-wrapper>button:active{box-shadow:inset 0px 3px 8px #8d8d8d}.login-page-wrapper .login-content .error-message{color:#ff8787;font-size:24px}.login-page-wrapper .loader{position:static}

/**
  * --- COLORS ---
  * http://chir.ag/projects/name-that-color/#6195ED
  * Format : $colorNameColor: color (in hexadecimal preferably)
  * Ex : $yellowGoldenFizz: #F9F12F
*/
/* --- RESPONSIVE --- */
/* --- AMBIANCE --- */
.r82E77NlRNSXqPuFrwRfB {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 0; }
  .r82E77NlRNSXqPuFrwRfB ._2S9oAkypFNMS5a9lqKUNas {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; }
    .r82E77NlRNSXqPuFrwRfB ._2S9oAkypFNMS5a9lqKUNas ._2p-QSSKfBmUHabi12YUFXq {
      display: flex;
      justify-content: center;
      margin: 7px 0; }
  .r82E77NlRNSXqPuFrwRfB ._1597JZRoeHgSxEo_O0o9g3 {
    background: var(--color);
    color: #ffffff;
    border-color: var(--color);
    font-size: 1rem;
    margin: 20px; }
  .r82E77NlRNSXqPuFrwRfB ._324RNiQfGV_IWthHVk6eoE {
    margin: 20px; }
  .r82E77NlRNSXqPuFrwRfB .ant-radio-checked .ant-radio-inner {
    border-color: var(--color) !important; }
  .r82E77NlRNSXqPuFrwRfB .ant-radio-checked .ant-radio-inner:after {
    background-color: var(--color); }
  .r82E77NlRNSXqPuFrwRfB .ant-radio:hover .ant-radio-inner {
    border-color: var(--color); }
  .r82E77NlRNSXqPuFrwRfB .ant-radio-checked .ant-radio-inner:focus {
    border-color: var(--color); }
  .r82E77NlRNSXqPuFrwRfB .ant-radio-checked::after {
    border-color: var(--color); }

._1Ld1fbEui4Vc7BkMshi4hh {
  margin-top: 20px; }

.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
.rdw-option-wrapper {
  border: 1px solid #F1F1F1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-option-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-option-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white;
}
.rdw-dropdown-wrapper:focus {
  outline: none;
}
.rdw-dropdown-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}
.rdw-dropdown-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-selectedtext {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #F1F1F1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll;
}
.rdw-dropdown-optionwrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}

.rdw-dropdownoption-default {
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdownoption-highlighted {
  background: #F1F1F1;
}
.rdw-dropdownoption-active {
  background: #f5f5f5;
}
.rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-inline-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-inline-dropdown {
  width: 50px;
}
.rdw-inline-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-block-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-block-dropdown {
  width: 110px;
}

.rdw-fontsize-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontsize-dropdown {
  min-width: 40px;
}
.rdw-fontsize-option {
  display: flex;
  justify-content: center;
}

.rdw-fontfamily-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontfamily-dropdown {
  width: 115px;
}
.rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdw-fontfamily-optionwrapper {
  width: 140px;
}

.rdw-list-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-list-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-list-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-text-align-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-text-align-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-text-align-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-right-aligned-block {
  text-align: right;
}
.rdw-left-aligned-block {
  text-align: left !important;
}
.rdw-center-aligned-block {
  text-align: center !important;
}
.rdw-justify-aligned-block {
  text-align: justify !important;
}
.rdw-right-aligned-block > div {
  display: inline-block;
}
.rdw-left-aligned-block > div {
  display: inline-block;
}
.rdw-center-aligned-block > div {
  display: inline-block;
}
.rdw-justify-aligned-block > div {
  display: inline-block;
}

.rdw-colorpicker-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-colorpicker-modal-header {
  display: flex;
  padding-bottom: 5px;
}
.rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px;
}
.rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7;
}
.rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  overflow: scroll;
}
.rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #F1F1F1;
}
.rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  box-shadow: 1px 2px 1px #BFBDBD inset;
}
.rdw-colorpicker-option:hover {
  box-shadow: 1px 2px 1px #BFBDBD;
}
.rdw-colorpicker-option:active {
  box-shadow: -1px -2px 1px #BFBDBD;
}
.rdw-colorpicker-option-active {
  box-shadow: 0px 0px 2px 2px #BFBDBD;
}

.rdw-link-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-link-dropdown {
  width: 50px;
}
.rdw-link-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-link-dropdownPlaceholder {
  margin-left: 8px;
}
.rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 205px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-link-modal-label {
  font-size: 15px;
}
.rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px;
}
.rdw-link-modal-input:focus {
  outline: none;
}
.rdw-link-modal-buttonsection {
  margin: 0 auto;
}
.rdw-link-modal-target-option {
  margin-bottom: 20px;
}
.rdw-link-modal-target-option > span {
  margin-left: 5px;
}
.rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-link-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-link-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-link-modal-btn:focus {
  outline: none !important;
}
.rdw-link-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-link-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-embedded-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  justify-content: space-between;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-embedded-modal-header {
  font-size: 15px;
  display: flex;
}
.rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-embedded-modal-link-section {
  display: flex;
  flex-direction: column;
}
.rdw-embedded-modal-link-input {
  width: 88%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-embedded-modal-link-input-wrapper {
  display: flex;
  align-items: center;
}
.rdw-embedded-modal-link-input:focus {
  outline: none;
}
.rdw-embedded-modal-btn-section {
  display: flex;
  justify-content: center;
}
.rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-embedded-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-embedded-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-embedded-modal-btn:focus {
  outline: none !important;
}
.rdw-embedded-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-embedded-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-embedded-modal-size-input {
  width: 80%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-embedded-modal-size-input:focus {
  outline: none;
}

.rdw-emoji-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdw-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.rdw-spinner .rdw-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.rdw-spinner .rdw-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.rdw-image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
}
.rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}
.rdw-image-modal-header-label-highlighted {
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-image-modal-upload-option {
  width: 100%;
  color: gray;
  cursor: pointer;
  display: flex;
  border: none;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0;
  padding: 9px 0;
}
.rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7;
}
.rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.rdw-image-modal-upload-option-label span{
  padding: 0 20px;
}
.rdw-image-modal-upload-option-image-preview {
  max-width: 100%;
  max-height: 200px;
}
.rdw-image-modal-upload-option-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.rdw-image-modal-url-section {
  display: flex;
  align-items: center;
}
.rdw-image-modal-url-input {
  width: 90%;
  height: 35px;
  margin: 15px 0 12px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-image-modal-btn-section {
  margin: 10px auto 0;
}
.rdw-image-modal-url-input:focus {
  outline: none;
}
.rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-image-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-image-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-image-modal-btn:focus {
  outline: none !important;
}
.rdw-image-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.rdw-image-modal-alt-input {
  width: 70%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
  margin-left: 5px;
}
.rdw-image-modal-alt-input:focus {
  outline: none;
}
.rdw-image-modal-alt-lbl {
  font-size: 12px;
}
.rdw-image-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-image-modal-size-input {
  width: 40%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-image-modal-size-input:focus {
  outline: none;
}
.rdw-image-mandatory-sign {
  color: red;
  margin-left: 3px;
  margin-right: 3px;
}

.rdw-remove-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}

.rdw-history-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-history-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-link-decorator-wrapper {
  position: relative;
}
.rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white;
}

.rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-suggestion-wrapper {
  position: relative;
}
.rdw-suggestion-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid #F1F1F1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100;
}
.rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1;
}
.rdw-suggestion-option-active {
  background-color: #F1F1F1;
}

.rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  width: 105px;
  cursor: pointer;
  z-index: 100;
}
.rdw-alignment-option-left {
  justify-content: flex-start;
}
.rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px;
}
.rdw-image-alignment {
  position: relative;
}
.rdw-image-imagewrapper {
  position: relative;
}
.rdw-image-center {
  display: flex;
  justify-content: center;
}
.rdw-image-left {
  display: flex;
}
.rdw-image-right {
  display: flex;
  justify-content: flex-end;
}
.rdw-image-alignment-options-popup-right {
  right: 0;
}

.rdw-editor-main {
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}
.rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  display: flex;
  justify-content: flex-start;
  background: white;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  user-select: none;
}
.public-DraftStyleDefault-block {
  margin: 1em 0;
}
.rdw-editor-wrapper:focus {
  outline: none;
}
.rdw-editor-wrapper {
  box-sizing: content-box;
}
.rdw-editor-main blockquote {
  border-left: 5px solid #f1f1f1;
  padding-left: 5px;
}
.rdw-editor-main pre {
  background: #f1f1f1;
  border-radius: 3px;
  padding: 1px 10px;
}
/**
 * Draft v0.9.1
 *
 * Copyright (c) 2013-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
.tlmq-spinner .loader,
.tlmq-spinner .loader:after {
  border-radius: 50%;
  width: 15px;
  height: 15px; }

.tlmq-spinner .loader {
  margin: auto;
  font-size: 10px;
  position: absolute;
  border-top: 3px solid rgba(0, 0, 0, 0.2);
  border-right: 3px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  border-left: 3px solid rgba(0, 0, 0, 0.7);
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .tlmq-spinner .loader.light {
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.95); }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

._3qPjCD48AqoS4HxxnG5NMj ._1uE5BNjc6stHSKP8ltlvAF,
._3qPjCD48AqoS4HxxnG5NMj ._1uE5BNjc6stHSKP8ltlvAF:after {
  border-radius: 50%;
  width: 15px;
  height: 15px; }

._3qPjCD48AqoS4HxxnG5NMj ._1uE5BNjc6stHSKP8ltlvAF {
  margin: auto;
  font-size: 10px;
  position: absolute;
  border-top: 3px solid rgba(0, 0, 0, 0.2);
  border-right: 3px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  border-left: 3px solid rgba(0, 0, 0, 0.7);
  transform: translateZ(0);
  animation: _2GSGsQ2j0Qo7fU1u5mqc2o 1.1s infinite linear;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  ._3qPjCD48AqoS4HxxnG5NMj ._1uE5BNjc6stHSKP8ltlvAF._65NgiuKuocXtLawrBVU_i {
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.95); }

@-webkit-keyframes _2GSGsQ2j0Qo7fU1u5mqc2o {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes _2GSGsQ2j0Qo7fU1u5mqc2o {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.P3PR1DiKe4zmASbAupGcn {
  padding: 16px 6px 0;
  max-width: 230px;
  margin: auto; }
  .P3PR1DiKe4zmASbAupGcn .tlmq-spinner .loader {
    width: 13px;
    height: 13px;
    border-left-color: #671575;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 2px; }
  .P3PR1DiKe4zmASbAupGcn ._3ZvIgJSttyeGrCu_I0IFDv {
    margin: auto;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2; }
  .P3PR1DiKe4zmASbAupGcn ._3GtgNcLl2FYyzEes83LOPm {
    padding: 0 20px;
    color: #484848;
    font-size: 14px;
    text-align: center;
    line-height: 1.3; }
  .P3PR1DiKe4zmASbAupGcn .RwZXiYQ5eQVS3ne8B1uDy {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 6px;
    border: solid #eee;
    border-width: 1px 0 1px 0; }
  .P3PR1DiKe4zmASbAupGcn ._1hnBMN20AdYwzbMyv5LIUG {
    margin-top: 10px; }
    .P3PR1DiKe4zmASbAupGcn ._1hnBMN20AdYwzbMyv5LIUG a {
      text-decoration: none; }
  .P3PR1DiKe4zmASbAupGcn ._3hBKpmSeo5zA_sBMf5xEQ4 {
    display: flex;
    margin-bottom: 20px;
    padding: 0 20px; }
    .P3PR1DiKe4zmASbAupGcn ._3hBKpmSeo5zA_sBMf5xEQ4 input {
      width: 100%;
      flex: 1 1;
      margin: 0 5px;
      border-width: 0 0 2px 0;
      border-color: #ddd;
      text-align: center;
      font-size: 20px;
      outline: none;
      appearance: none; }
      .P3PR1DiKe4zmASbAupGcn ._3hBKpmSeo5zA_sBMf5xEQ4 input:not(:placeholder-shown), .P3PR1DiKe4zmASbAupGcn ._3hBKpmSeo5zA_sBMf5xEQ4 input:focus {
        border-color: #555; }
  .P3PR1DiKe4zmASbAupGcn ._3f-_j2xuBrkw7mQUA2MIJU {
    margin-bottom: 10px;
    color: #D3B04F;
    font-size: 14px;
    font-weight: 700;
    text-align: center; }
  .P3PR1DiKe4zmASbAupGcn .aSmQG4wgcoTfPZkIHPlub {
    padding: 10px;
    border-left: 5px solid #d9534f;
    background-color: rgba(217, 83, 79, 0.1);
    line-height: 1.2; }

._2SoqsHW7W2DzVz7mWyW-N1 .tlmq-spinner .loader {
  width: 13px;
  height: 13px;
  border-left-color: #671575;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 2px; }

._2KPohqKSVmfle9i06cNh5W {
  margin: 10px 0; }
  ._2KPohqKSVmfle9i06cNh5W .YKdss5VIzN_Q6cyuerNiE {
    display: block;
    margin-top: 3px;
    color: #ffae1a;
    font-size: 13px; }
  ._2KPohqKSVmfle9i06cNh5W ._2wGRDAmQac9ldzgy13IPbS {
    position: relative;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 0;
    vertical-align: baseline;
    font-style: normal;
    min-height: 17px;
    font-size: 1rem;
    line-height: 17px;
    min-width: 17px; }
    ._2KPohqKSVmfle9i06cNh5W ._2wGRDAmQac9ldzgy13IPbS.-r8g7zcalGR-E83L2-3fk label::after {
      content: '';
      position: absolute;
      font-size: 14px;
      top: 1px;
      left: 5px;
      width: 6px;
      height: 10px;
      border: solid black;
      border-width: 0 3px 3px 0;
      transform: rotate(45deg); }
    ._2KPohqKSVmfle9i06cNh5W ._2wGRDAmQac9ldzgy13IPbS label {
      padding-left: 30px;
      cursor: pointer;
      font-size: 14px;
      display: block; }
      ._2KPohqKSVmfle9i06cNh5W ._2wGRDAmQac9ldzgy13IPbS label::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        width: 17px;
        height: 17px;
        background: #fff;
        border-radius: .21428571rem;
        -webkit-transition: border .1s ease,opacity .1s ease,-webkit-transform .1s ease,-webkit-box-shadow .1s ease;
        transition: border .1s ease,opacity .1s ease,-webkit-transform .1s ease,-webkit-box-shadow .1s ease;
        transition: border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;
        transition: border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease,-webkit-transform .1s ease,-webkit-box-shadow .1s ease;
        border: 1px solid #d4d4d5; }
  ._2KPohqKSVmfle9i06cNh5W ._1Sy5nevEdPboTs3ipvc236 {
    display: none; }

._2Zx9daL9EOKoZ9TUZG4YII {
  font-size: 12px; }
  ._2Zx9daL9EOKoZ9TUZG4YII ._3QyYipoed936GFFXAS44st ._1r1y0_rq_nVBwY_TB3zpU_ {
    font-size: 1em; }
    ._2Zx9daL9EOKoZ9TUZG4YII ._3QyYipoed936GFFXAS44st ._1r1y0_rq_nVBwY_TB3zpU_ label {
      font-size: 1em; }

.tlmq-input {
  width: 100%; }
  .tlmq-input .label {
    margin-bottom: 4px; }
  .tlmq-input .field-wrapper {
    position: relative; }
    .tlmq-input .field-wrapper .icon-feedback {
      position: absolute;
      top: 0;
      right: 10px;
      bottom: 0;
      margin: auto; }
    .tlmq-input .field-wrapper textarea, .tlmq-input .field-wrapper input {
      width: 100%;
      height: auto;
      padding: 10px 20px;
      border: 1px solid #b7b7b7;
      border-radius: 4px;
      outline: none;
      transition: 1s ease box-shadow;
      font-family: Helvetica, sans-serif;
      font-size: 16px;
      box-sizing: border-box; }
    .tlmq-input .field-wrapper textarea {
      min-height: 100px; }
  .tlmq-input .validation-message {
    font-size: 13px; }
  .tlmq-input.valid .icon-feedback, .tlmq-input.valid .validation-message {
    color: #0fce0f; }
  .tlmq-input.invalid .icon-feedback, .tlmq-input.invalid .validation-message {
    color: #ffae1a; }
  .tlmq-input .inputWithIcon {
    position: relative; }
    .tlmq-input .inputWithIcon input {
      padding-left: 30px; }
    .tlmq-input .inputWithIcon .icon {
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%); }

.free-question-component-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0; }
  .free-question-component-wrapper .input-wrapper {
    width: 100%; }
  .free-question-component-wrapper .icon {
    margin-right: 10px; }

@media (max-width: 768px) {
  .free-question-component-wrapper > svg {
    display: none; } }

.tlmq-button {
  position: relative;
  margin: 10px 0;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
  background-color: white;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer; }
  .tlmq-button:disabled {
    opacity: .45;
    cursor: not-allowed; }
  .tlmq-button.loading span {
    opacity: 0; }


.drawn-cards {
  display: flex;
  justify-content: center; }
  .drawn-cards .drawn-cards-wrapper {
    flex: 1 1; }

.card picture {
  height: 100%; }

.card.cards-game {
  position: absolute;
  top: 0; }
  .card.cards-game:hover {
    top: -30px;
    cursor: pointer;
    transition: top 0.3s ease; }
  .card.cards-game.selected {
    opacity: 0;
    visibility: hidden;
    margin-top: 100px;
    transition: all 1s ease; }
    .card.cards-game.selected:hover {
      cursor: initial; }
  .card.cards-game.frozen:hover {
    top: 0;
    cursor: initial; }
  .card.cards-game .front, .card.cards-game .back {
    position: relative;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; }
  .card.cards-game > .front {
    display: none;
    transform: rotateY(-90deg); }
  .card.cards-game > .back {
    transform: rotateY(0deg); }

.card.drawn-cards {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s;
  transform: rotateY(0deg); }
  .card.drawn-cards.drawn {
    transform: rotateY(-180deg); }
    .card.drawn-cards.drawn .front {
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      opacity: 1;
      transition: opacity 0.3s step-end; }
  .card.drawn-cards .front, .card.drawn-cards .back {
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    max-height: 185px; }
  .card.drawn-cards .back {
    position: relative;
    height: calc(100% / 1.90); }
  .card.drawn-cards .front {
    position: absolute;
    left: 0;
    transform: rotateY(180deg);
    opacity: 0; }

.card img {
  max-width: 100%;
  height: auto;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(68, 68, 68, 0.22); }

.card .name-drawn-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 36px;
  bottom: -2rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  margin-top: 10px;
  text-align: center;
  transform: rotateY(180deg); }
  .card .name-drawn-card.hide {
    display: none; }

.drawn-card-wrapper {
  text-align: center;
  margin: 0 20px;
  z-index: 1; }
  .drawn-card-wrapper .name-drawn-card {
    margin-top: 5px; }

@media (max-width: 640px) {
  .card .name-drawn-card {
    bottom: 1rem; }
  .drawn-card-wrapper {
    margin: 0 5px; }
    .drawn-card-wrapper .name-drawn-card {
      font-size: 0.8em; } }

.hand-cards {
  margin-bottom: 30px; }
  .hand-cards .card-game-wrapper {
    display: flex;
    position: relative;
    min-height: 230px;
    z-index: 1; }
    .hand-cards .card-game-wrapper > div {
      transition: left 1s ease; }

@media screen and (max-width: 640px) {
  .hand-cards {
    margin-bottom: 0; } }

.custom-input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0; }

._1m8xV_G37PCLGosm4o9Fbv {
  max-width: 600px;
  padding: 0;
  border-radius: 3px; }
  ._1m8xV_G37PCLGosm4o9Fbv svg {
    fill: white;
    cursor: pointer; }

._3ez4-SfyQnKy_KiQbpMUsQ {
  position: relative;
  margin: 10px 0;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
  background-color: white;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer; }
  ._3ez4-SfyQnKy_KiQbpMUsQ:disabled {
    opacity: .45;
    cursor: not-allowed; }
  ._3ez4-SfyQnKy_KiQbpMUsQ._3U8dlddEndINa9mBSnd1uI span {
    opacity: 0; }

._6wTHJATtI7W_CtD1fffDS ._1uQk5XOmoP4RiH16sFKOYZ {
  padding: 16px 40px;
  border-radius: 3px 3px 0 0;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase; }

._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi {
  padding: 30px;
  background-color: #f0f1f2;
  text-align: center; }
  ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._1TM-MAWXVafg76OBKHdGqY ._1apiCOiCtPmJjKo_IR9joT {
    text-align: left; }
  ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._1TM-MAWXVafg76OBKHdGqY button {
    width: 100%;
    padding: 14px 0;
    font-size: 20px;
    text-transform: uppercase; }
  ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._17XGmD5kjgMmJOmmAPUdQu {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase; }
  ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._2XBE6m3xOLlgPL1S0sWcxj {
    text-align: left; }
  ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._2G_yKFiEp6oY4JhbEDC8ON {
    color: #777; }
  ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._3FjjstV1dFKEOpYkMcY10l {
    padding: 10px;
    text-align: left; }
    ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._3FjjstV1dFKEOpYkMcY10l label {
      display: block;
      margin-bottom: 5px; }
      ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._3FjjstV1dFKEOpYkMcY10l label + div {
        position: relative; }
    ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._3FjjstV1dFKEOpYkMcY10l .GgI3LFNtZi5VxY-cg4OaE {
      margin-bottom: 20px; }
  ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._2aeN3Aryx1n4BRhxvdzSo2 {
    text-align: left;
    font-size: 12px; }
    ._6wTHJATtI7W_CtD1fffDS ._2XNnUYSqPly3iQza6O4uKi ._2aeN3Aryx1n4BRhxvdzSo2 label {
      font-size: 12px; }

.tlmq-checkbox {
  margin: 10px 0; }
  .tlmq-checkbox .error-message {
    display: block;
    margin-top: 3px;
    color: #ffae1a;
    font-size: 13px; }
  .tlmq-checkbox .checkbox {
    position: relative;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 0;
    vertical-align: baseline;
    font-style: normal;
    min-height: 17px;
    font-size: 1rem;
    line-height: 17px;
    min-width: 17px; }
    .tlmq-checkbox .checkbox.checked label::after {
      content: '';
      position: absolute;
      font-size: 14px;
      top: 1px;
      left: 5px;
      width: 6px;
      height: 10px;
      border: solid black;
      border-width: 0 3px 3px 0;
      transform: rotate(45deg); }
    .tlmq-checkbox .checkbox label {
      padding-left: 30px;
      cursor: pointer;
      font-size: 14px;
      display: block; }
      .tlmq-checkbox .checkbox label::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        width: 17px;
        height: 17px;
        background: #fff;
        border-radius: .21428571rem;
        -webkit-transition: border .1s ease,opacity .1s ease,-webkit-transform .1s ease,-webkit-box-shadow .1s ease;
        transition: border .1s ease,opacity .1s ease,-webkit-transform .1s ease,-webkit-box-shadow .1s ease;
        transition: border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;
        transition: border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease,-webkit-transform .1s ease,-webkit-box-shadow .1s ease;
        border: 1px solid #d4d4d5; }
  .tlmq-checkbox .hidden {
    display: none; }

.tlmq-optin-cgv span {
  text-decoration: underline; }

.tlmq-custom-modal {
  min-width: 50%;
  max-height: 90%;
  min-height: 90%;
  overflow: auto; }

.tlmq-radio-group {
  display: flex;
  flex-wrap: wrap; }

.tlmq-radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1;
  opacity: .4;
  background: #fff;
  margin: 8px;
  padding: 10px 20px;
  border: 1px solid #aaa;
  cursor: pointer;
  transition: 200ms opacity ease; }
  .tlmq-radio:hover .tlmq-radio-circle::before {
    opacity: 1; }
  .tlmq-radio.selected {
    opacity: 1; }
    .tlmq-radio.selected .tlmq-radio-circle::before {
      display: block;
      animation-name: bounceIn;
      animation-duration: 450ms;
      animation-timing-function: linear;
      animation-fill-mode: forwards; }
  .tlmq-radio .tlmq-radio-circle {
    display: flex;
    position: relative;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    margin-left: 14px;
    border: 1px solid #333;
    border-radius: 50%; }
    .tlmq-radio .tlmq-radio-circle::before {
      content: '';
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: scale(0.4);
      border-radius: 50%;
      background-color: #333; }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0); }
  50% {
    opacity: 0.9;
    transform: scale(0.7); }
  80% {
    opacity: 1;
    transform: scale(0.49); }
  100% {
    opacity: 1;
    transform: scale(0.6) translate3d(0, 0, 0); } }

._1FnPYQJ4FlXm6eaumKsTrn {
  width: 2em;
  margin: auto;
  text-align: center; }
  ._1FnPYQJ4FlXm6eaumKsTrn .k7JURAL4c2mbObZin_ikL {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-right: 1px;
    border-radius: 100%;
    background-color: #aaa;
    animation: _1FnPYQJ4FlXm6eaumKsTrn 1.4s ease-in-out 0s infinite both; }
    ._1FnPYQJ4FlXm6eaumKsTrn .k7JURAL4c2mbObZin_ikL.n6aBrcv3tZAwpusnMG4DF {
      animation-delay: -0.32s; }
    ._1FnPYQJ4FlXm6eaumKsTrn .k7JURAL4c2mbObZin_ikL._7lUEAma9zX9DISMLH6xwX {
      animation-delay: -0.16s; }

@-webkit-keyframes _1FnPYQJ4FlXm6eaumKsTrn {
  0%, 80%, 100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

@keyframes _1FnPYQJ4FlXm6eaumKsTrn {
  0%, 80%, 100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

._3lc1KfAwo_hLhJFm3s_LBZ {
  opacity: 1;
  max-width: 36px;
  min-width: 36px;
  margin-left: 10px; }
  ._3lc1KfAwo_hLhJFm3s_LBZ img {
    width: 100%;
    border-radius: 50%; }
  ._3lc1KfAwo_hLhJFm3s_LBZ._35R-PyyC7yhJnKZJCO26j5 {
    margin-right: 10px; }

._2HbdZm8jr5q4CA2So4yijE {
  display: flex;
  max-width: 80%;
  flex-shrink: 0; }
  ._2HbdZm8jr5q4CA2So4yijE ._3FZ5J_wa7enPiiyZmU4Y2g {
    opacity: 0; }
  ._2HbdZm8jr5q4CA2So4yijE:first-child ._3FZ5J_wa7enPiiyZmU4Y2g {
    opacity: 1; }
  ._2HbdZm8jr5q4CA2So4yijE:first-child ._2Hr8HE5lbnrct9GYKHJuAF {
    border-radius: 0 18px 18px 18px; }
  ._2HbdZm8jr5q4CA2So4yijE ._2Hr8HE5lbnrct9GYKHJuAF {
    margin: 2px 0;
    padding: 6px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 18px;
    background-color: #eee;
    font-size: 14px; }
    ._2HbdZm8jr5q4CA2So4yijE ._2Hr8HE5lbnrct9GYKHJuAF.QujEgE_3-PRmy2mzA45bm {
      opacity: 0;
      animation-name: W1dG3eDnN1T947rlrVNHe;
      animation-duration: 450ms;
      animation-timing-function: linear;
      animation-fill-mode: forwards; }
  ._2HbdZm8jr5q4CA2So4yijE ._3Pwyd518xvoVBohAKaWTXB {
    align-self: flex-end;
    margin-left: 5px;
    padding-bottom: 4px;
    color: #555;
    font-size: 10px; }

@keyframes W1dG3eDnN1T947rlrVNHe {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0); }
  50% {
    opacity: 0.9;
    transform: scale(1.1); }
  80% {
    opacity: 1;
    transform: scale(0.89); }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0); } }

._2eZpAnnoCLgoWQ2dlUDBHk {
  display: flex;
  flex-shrink: 0;
  align-self: flex-end; }
  ._2eZpAnnoCLgoWQ2dlUDBHk ._5S6vRBfx6SUj3werC49RJ {
    align-self: flex-end;
    margin-right: 5px;
    padding-bottom: 4px;
    color: #555;
    font-size: 10px; }
  ._2eZpAnnoCLgoWQ2dlUDBHk ._2aCoE_iHHtQO3qD2ErpQ9F {
    margin: 2px 0;
    padding: 6px 14px;
    border: 1px solid #d6c073;
    border-radius: 18px 0 18px 18px;
    background-color: #ffecaa;
    font-size: 14px; }
    ._2eZpAnnoCLgoWQ2dlUDBHk ._2aCoE_iHHtQO3qD2ErpQ9F.sTXyguPNKf_SOXIlcTe2F {
      opacity: 0;
      animation-name: _2XVvY9pU6at8JCkkGl68Pm;
      animation-duration: 450ms;
      animation-timing-function: linear;
      animation-fill-mode: forwards; }
  ._2eZpAnnoCLgoWQ2dlUDBHk + div > :first-child {
    opacity: 1; }
  ._2eZpAnnoCLgoWQ2dlUDBHk + div > :nth-child(2) {
    border-radius: 0 18px 18px; }
  ._2eZpAnnoCLgoWQ2dlUDBHk svg {
    align-self: flex-end;
    margin-left: 4px;
    color: #aaa;
    font-size: 14px; }
    ._2eZpAnnoCLgoWQ2dlUDBHk svg[data-icon="check-circle"] {
      animation-name: _2XVvY9pU6at8JCkkGl68Pm;
      animation-duration: 450ms;
      animation-timing-function: linear;
      animation-fill-mode: forwards;
      color: #0ead31; }

@keyframes _2XVvY9pU6at8JCkkGl68Pm {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0); }
  50% {
    opacity: 0.9;
    transform: scale(1.1); }
  80% {
    opacity: 1;
    transform: scale(0.89); }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0); } }

.tlmq-consents {
  font-size: 12px; }
  .tlmq-consents .tlmq-checkbox .checkbox {
    font-size: 1em; }
    .tlmq-consents .tlmq-checkbox .checkbox label {
      font-size: 1em; }

.tlmq-arrow {
  display: flex;
  opacity: 0.5;
  transition: 200ms opacity ease, 200ms transform ease;
  outline: none;
  cursor: pointer; }
  .tlmq-arrow:hover {
    opacity: 1; }
  .tlmq-arrow:active {
    transform: scale(0.9); }
  .tlmq-arrow .arrow {
    width: 20px;
    height: 20px;
    margin: auto;
    transform: rotate(45deg);
    border: solid #000;
    border-width: 1px 1px 0 0;
    transition: 400ms transform ease; }
    .tlmq-arrow .arrow.left {
      transform: rotate(-135deg); }
    .tlmq-arrow .arrow.bottom {
      transform: rotate(135deg); }
    .tlmq-arrow .arrow.top {
      transform: rotate(-45deg); }

/* --- RESPONSIVE --- */
.domain-swiper-component-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; }
  .domain-swiper-component-wrapper .swiper-button-disabled {
    opacity: 0.2;
    cursor: not-allowed; }
    .domain-swiper-component-wrapper .swiper-button-disabled.arrow-left:active, .domain-swiper-component-wrapper .swiper-button-disabled.arrow-right:active {
      transform: scale(1); }
  .domain-swiper-component-wrapper .swipes {
    width: 100%;
    max-width: 800px; }
  .domain-swiper-component-wrapper .swiper-container {
    width: 100%;
    margin: 20px auto; }
    .domain-swiper-component-wrapper .swiper-container .domain {
      cursor: pointer;
      text-align: center; }
      .domain-swiper-component-wrapper .swiper-container .domain.selected .picture-wrapper img {
        border: 3px solid; }
      .domain-swiper-component-wrapper .swiper-container .domain .picture-wrapper {
        margin-bottom: 5px; }
        .domain-swiper-component-wrapper .swiper-container .domain .picture-wrapper img {
          width: 100%;
          max-width: 200px;
          box-sizing: border-box;
          margin: auto;
          border: 1px solid #555;
          border-radius: 50%; }
          .domain-swiper-component-wrapper .swiper-container .domain .picture-wrapper img:hover {
            border: 3px solid; }
    .domain-swiper-component-wrapper .swiper-container .swiper-button-next, .domain-swiper-component-wrapper .swiper-container .swiper-button-prev {
      display: none; }

@media (max-width: 768px) {
  .arrow-left, .arrow-right {
    display: none; } }

._17I_xThQ_WdFRT0p9mmqur {
  display: flex;
  height: 100%;
  flex-direction: column; }
  ._17I_xThQ_WdFRT0p9mmqur .e-FoNd-wL6LR5Rc9xCwUy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex: 1 1;
    padding: 10px;
    overflow: auto;
    scroll-behavior: smooth; }
    ._17I_xThQ_WdFRT0p9mmqur .e-FoNd-wL6LR5Rc9xCwUy > :first-child {
      margin-top: auto; }
  ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh {
    padding: 0 10px 10px; }
    ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._3uxlTYcFvoxdlcGP_poBMs {
      display: flex;
      margin: 5px 0;
      overflow: auto;
      align-items: flex-end; }
      ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._3uxlTYcFvoxdlcGP_poBMs ._2-wGtwysSfo0suzflZx98F {
        margin: 0 2px;
        padding: 4px 10px;
        border: 1px solid #d6c073;
        border-radius: 18px;
        background-color: #ffecaa;
        font-size: 14px;
        cursor: pointer; }
        ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._3uxlTYcFvoxdlcGP_poBMs ._2-wGtwysSfo0suzflZx98F:active {
          background-color: #d6c073; }
    ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._2iYxtz6VgXpC3sIVYGuBR_ {
      display: flex;
      align-items: center; }
      ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._2iYxtz6VgXpC3sIVYGuBR_ input {
        flex: 1 1;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px; }
        ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._2iYxtz6VgXpC3sIVYGuBR_ input._2qtshkd259Ye_HBMjTeNNM {
          animation: kV2T_mje3aFE_MxgISJ03 5.6s linear infinite; }
        ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._2iYxtz6VgXpC3sIVYGuBR_ input:disabled {
          animation: none; }
      ._17I_xThQ_WdFRT0p9mmqur ._32lNLJJUiy4mh__y-zp7lh ._2iYxtz6VgXpC3sIVYGuBR_ button {
        border: none;
        background: none;
        color: #d6c073;
        font-size: 20px;
        outline: none; }

@keyframes kV2T_mje3aFE_MxgISJ03 {
  2.5% {
    transform: rotate(2deg); }
  5% {
    transform: rotate(-2deg); }
  7.5% {
    transform: rotate(1deg); }
  10% {
    transform: rotate(-1deg); }
  12.5% {
    transform: rotate(0deg); } }

@keyframes iKitvYuIqLD_aRSJIfEDP {
  20% {
    transform: rotate(2deg); }
  40% {
    transform: rotate(-2deg); }
  60% {
    transform: rotate(1deg); }
  80% {
    transform: rotate(-1deg); }
  to {
    transform: rotate(0deg); } }

.tugrW9jY7yLe3xZDoO6Hl {
  display: flex; }
  .tugrW9jY7yLe3xZDoO6Hl ._1LrLW7rAzBGyVXiYh8QHmp {
    display: flex;
    padding: 10px 22px;
    border: 1px solid #dcdcdc;
    border-radius: 0 18px 18px;
    background-color: #eee; }
  .tugrW9jY7yLe3xZDoO6Hl img {
    width: 100%; }

.cf-optins-wrapper {
  align-self: center;
  max-width: 400px;
  margin: 10px 0;
  padding: 20px 10px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  font-size: 14px;
  background: white; }
  .cf-optins-wrapper .flex-col-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
  .cf-optins-wrapper .flex-V-center {
    display: flex;
    align-items: flex-start;
    width: 100%; }
    .cf-optins-wrapper .flex-V-center svg {
      color: #80be3f; }
  .cf-optins-wrapper .intro-message {
    margin-bottom: 20px; }
  .cf-optins-wrapper .fake-lines-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 10px 10px 10px; }
    .cf-optins-wrapper .fake-lines-wrapper .fake-line {
      padding: 6px;
      width: 90%;
      background-color: #dcdcdc;
      margin: 3px 0; }
    .cf-optins-wrapper .fake-lines-wrapper .fake-line:last-of-type {
      width: 55%; }
  .cf-optins-wrapper .error-message {
    text-align: center;
    color: #ca0000;
    font-size: 13px;
    padding: 5px;
    border: 1px solid;
    border-radius: 1px;
    background-color: #ffdede; }

._1cCl7xUeZtf3bJFF9DVN2L {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: white;
  padding: 6px 14px 15px; }
  ._1cCl7xUeZtf3bJFF9DVN2L .Ifrvl9qi_ql_n4rCaRreS {
    margin: 15px 0; }
  ._1cCl7xUeZtf3bJFF9DVN2L ._2ug5cRMBGqwVh9EeG9ODZ {
    margin: 0; }

