@charset "UTF-8";
/*!
 * Bootstrap v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #3d79ee;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #fa5c5c;
  --orange: #fd7e14;
  --yellow: #f5d944;
  --green: #38cd8b;
  --teal: #20c997;
  --cyan: #77c8da;
  --white: #fff;
  --gray: #516365;
  --gray-dark: #333333;
  --primary: #fa5c5c;
  --secondary: #fd7e14;
  --success: #38cd8b;
  --info: #3d79ee;
  --warning: #f5d944;
  --danger: #fa5c5c;
  --light: #f5f7f8;
  --dark: #333333;
  --brand: #2a6770;
  --gray: #666666;
  --light-blue: #cfdefb;
  --white: #ffffff;
  --light-grey: #516365;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: var(--main-font), "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.close {
  float: right;
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  .close {
    font-size: calc(1.3rem + 0.2666666667vw);
  }
}
.close {
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
/* REQUIRED */
.pretty * {
  box-sizing: border-box;
}

.pretty input:not([type=checkbox]):not([type=radio]) {
  display: none;
}

.pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
}
.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: normal;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}
.pretty .state label:before, .pretty .state label:after {
  content: "";
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc(0% - (100% - 1em) - 8%);
  background-color: transparent;
}
.pretty .state label:before {
  border-color: #bdc3c7;
}
.pretty .state.p-is-hover, .pretty .state.p-is-indeterminate {
  display: none;
}

.pretty.p-switch input {
  min-width: 2em;
}
.pretty.p-switch .state {
  position: relative;
}
.pretty.p-switch .state:before {
  content: "";
  border: 1px solid #bdc3c7;
  border-radius: 60px;
  width: 2em;
  box-sizing: unset;
  height: calc(1em + 2px);
  position: absolute;
  top: 0;
  top: calc(0% - (100% - 1em) - 16%);
  z-index: 0;
  transition: all 0.5s ease;
}
.pretty.p-switch .state label {
  text-indent: 2.5em;
}
.pretty.p-switch .state label:before, .pretty.p-switch .state label:after {
  transition: all 0.5s ease;
  border-radius: 100%;
  left: 0;
  border-color: transparent;
  transform: scale(0.8);
}
.pretty.p-switch .state label:after {
  background-color: #bdc3c7 !important;
}
.pretty.p-switch input:checked ~ .state:before {
  border-color: #5a656b;
}
.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch input:checked ~ .state label:after {
  background-color: #5a656b !important;
  left: 1em;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}
.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch.p-fill input:checked ~ .state label:after {
  background-color: #fff !important;
  left: 1em;
}

.pretty input:checked ~ .state.p-primary label:after, .pretty.p-toggle .state.p-primary label:after {
  background-color: #428bca !important;
}
.pretty input:checked ~ .state.p-primary .icon,
.pretty input:checked ~ .state.p-primary .svg, .pretty.p-toggle .state.p-primary .icon,
.pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-primary-o label:before, .pretty.p-toggle .state.p-primary-o label:before {
  border-color: #428bca;
}
.pretty input:checked ~ .state.p-primary-o label:after, .pretty.p-toggle .state.p-primary-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-primary-o .icon,
.pretty input:checked ~ .state.p-primary-o .svg,
.pretty input:checked ~ .state.p-primary-o svg, .pretty.p-toggle .state.p-primary-o .icon,
.pretty.p-toggle .state.p-primary-o .svg,
.pretty.p-toggle .state.p-primary-o svg {
  color: #428bca;
  stroke: #428bca;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #428bca !important;
}
.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #428bca;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #428bca !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: rgb(36.3553719008, 86.4297520661, 129.6446280992);
  background-color: rgb(36.3553719008, 86.4297520661, 129.6446280992) !important;
}
.pretty input:checked ~ .state.p-info label:after, .pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}
.pretty input:checked ~ .state.p-info .icon,
.pretty input:checked ~ .state.p-info .svg, .pretty.p-toggle .state.p-info .icon,
.pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-info-o label:before, .pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}
.pretty input:checked ~ .state.p-info-o label:after, .pretty.p-toggle .state.p-info-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-info-o .icon,
.pretty input:checked ~ .state.p-info-o .svg,
.pretty input:checked ~ .state.p-info-o svg, .pretty.p-toggle .state.p-info-o .icon,
.pretty.p-toggle .state.p-info-o .svg,
.pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}
.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: rgb(35.345177665, 143.5228426396, 175.654822335);
  background-color: rgb(35.345177665, 143.5228426396, 175.654822335) !important;
}
.pretty input:checked ~ .state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
  background-color: #38cd8b !important;
}
.pretty input:checked ~ .state.p-success .icon,
.pretty input:checked ~ .state.p-success .svg, .pretty.p-toggle .state.p-success .icon,
.pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-success-o label:before, .pretty.p-toggle .state.p-success-o label:before {
  border-color: #38cd8b;
}
.pretty input:checked ~ .state.p-success-o label:after, .pretty.p-toggle .state.p-success-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-success-o .icon,
.pretty input:checked ~ .state.p-success-o .svg,
.pretty input:checked ~ .state.p-success-o svg, .pretty.p-toggle .state.p-success-o .icon,
.pretty.p-toggle .state.p-success-o .svg,
.pretty.p-toggle .state.p-success-o svg {
  color: #38cd8b;
  stroke: #38cd8b;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: #38cd8b !important;
}
.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: #38cd8b;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: #38cd8b !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: rgb(31.9277108434, 127.0722891566, 84.9277108434);
  background-color: rgb(31.9277108434, 127.0722891566, 84.9277108434) !important;
}
.pretty input:checked ~ .state.p-warning label:after, .pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}
.pretty input:checked ~ .state.p-warning .icon,
.pretty input:checked ~ .state.p-warning .svg, .pretty.p-toggle .state.p-warning .icon,
.pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-warning-o label:before, .pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}
.pretty input:checked ~ .state.p-warning-o label:after, .pretty.p-toggle .state.p-warning-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-warning-o .icon,
.pretty input:checked ~ .state.p-warning-o .svg,
.pretty input:checked ~ .state.p-warning-o svg, .pretty.p-toggle .state.p-warning-o .icon,
.pretty.p-toggle .state.p-warning-o .svg,
.pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}
.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: rgb(199.125, 123.75, 16.875);
  background-color: rgb(199.125, 123.75, 16.875) !important;
}
.pretty input:checked ~ .state.p-danger label:after, .pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}
.pretty input:checked ~ .state.p-danger .icon,
.pretty input:checked ~ .state.p-danger .svg, .pretty.p-toggle .state.p-danger .icon,
.pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-danger-o label:before, .pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}
.pretty input:checked ~ .state.p-danger-o label:after, .pretty.p-toggle .state.p-danger-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-danger-o .icon,
.pretty input:checked ~ .state.p-danger-o .svg,
.pretty input:checked ~ .state.p-danger-o svg, .pretty.p-toggle .state.p-danger-o .icon,
.pretty.p-toggle .state.p-danger-o .svg,
.pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}
.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: rgb(159.5514018692, 38.0747663551, 34.4485981308);
  background-color: rgb(159.5514018692, 38.0747663551, 34.4485981308) !important;
}

.draggable-source--hide {
  display: none !important;
}

#full-draggable-sentence:hover #placeholder {
  display: none;
}

.ProseMirror > * + * {
  margin-top: 0.75em;
}

/* Placeholder (at the top) */
.ProseMirror p.is-editor-empty:first-child::before {
  color: #adb5bd;
  content: attr(data-placeholder);
  float: left;
  height: 0;
  pointer-events: none;
}

/**
 * Tom Select Bootstrap 4
 */
/**
 * tom-select.css (v//@@version)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-control {
  border: 1px solid #ced4da;
  padding: 0.5rem 1rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 0.25rem;
  display: flex;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc(0.5rem - 1px - 0) 1rem calc(0.5rem - 1px - 3px - 0);
}
.full .ts-control {
  background-color: #ffffff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 1px 5px;
  background: #efefef;
  color: #182e33;
  border: 0 solid #dee2e6;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #3d79ee;
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: #727272;
  background: white;
  border: 0 solid white;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: calc(1rem + 5px);
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #e9ecef;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0.25rem 0.25rem;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(255, 237, 40, 0.4);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 3px 1rem;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #516365;
  background: #ffffff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #e9ecef;
  color: rgb(38.25, 38.25, 38.25);
}
.ts-dropdown .active.create {
  color: rgb(38.25, 38.25, 38.25);
}
.ts-dropdown .create {
  color: rgba(24, 46, 51, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 3px 1rem;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(1rem - 5px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 1rem);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 6px 1rem;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#ffffff, #d0d0d0, 85%);
  border-radius: 0.25rem 0.25rem 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  color: #182e33;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #ced4da;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 0.5rem 1rem;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input.focus .ts-dropdown .dropdown-input {
  border-color: rgb(178.2274881517, 201.971563981, 248.2725118483);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(61, 121, 238, 0.25);
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 5px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #dee2e6;
  margin-left: 5px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: rgba(0, 0, 0, 0);
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #dee2e6;
  margin-right: 5px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: rgba(0, 0, 0, 0);
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}

:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #182e33;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #ffffff;
  cursor: text;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.ts-wrapper.single .ts-control {
  --ts-pr-caret: 2rem;
}
.ts-wrapper.single .ts-control::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #182e33 transparent transparent transparent;
}
.ts-wrapper.single .ts-control:not(.rtl)::after {
  right: calc(1rem + 5px);
}
.ts-wrapper.single .ts-control.rtl::after {
  left: calc(1rem + 5px);
}
.ts-wrapper.single.dropdown-active .ts-control::after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #182e33 transparent;
}
.ts-wrapper.single.input-active .ts-control, .ts-wrapper.single.input-active .ts-control input {
  cursor: text;
}

.ts-wrapper.form-control,
.ts-wrapper.form-select {
  padding: 0 !important;
}

.ts-dropdown,
.ts-dropdown.form-control {
  height: auto;
  padding: 0;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.ts-dropdown .optgroup-header {
  font-size: 0.875rem;
  line-height: 1.5;
}
.ts-dropdown .optgroup:first-child::before {
  display: none;
}
.ts-dropdown .optgroup::before {
  content: " ";
  display: block;
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
  margin-left: -1rem;
  margin-right: -1rem;
}
.ts-dropdown .create {
  padding-left: 1rem;
}

.ts-dropdown-content {
  padding: 5px 0;
}

.ts-control {
  min-height: calc(1.5em + 1rem + 2px);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .ts-control {
    transition: none;
  }
}
.ts-control {
  display: flex;
  align-items: center;
}
.focus .ts-control {
  border-color: rgb(178.2274881517, 201.971563981, 248.2725118483);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(61, 121, 238, 0.25);
}

.is-invalid .ts-control,
.was-validated .invalid .ts-control {
  border-color: #fa5c5c;
}
.focus .is-invalid .ts-control,
.focus .was-validated .invalid .ts-control {
  border-color: rgb(248.4821428571, 42.5178571429, 42.5178571429);
  box-shadow: 0 0 0 0.2rem rgba(250, 92, 92, 0.25);
}

.is-valid .ts-control {
  border-color: #38cd8b;
}
.focus .is-valid .ts-control {
  border-color: #38cd8b;
  box-shadow: 0 0 0 0.2rem rgba(56, 205, 139, 0.25);
}

.input-group-sm > .ts-wrapper .ts-control, .ts-wrapper.form-control-sm .ts-control {
  min-height: calc(1.5em + 0.7rem + 2px);
  padding: 0 0.75rem;
  border-radius: 0.2rem;
  font-size: 0.875rem;
}
.input-group-sm > .ts-wrapper.has-items .ts-control, .ts-wrapper.form-control-sm.has-items .ts-control {
  min-height: calc(1.5em + 0.7rem + 2px) !important;
  font-size: 0.875rem;
  padding-bottom: 0;
}
.input-group-sm > .ts-wrapper.multi.has-items .ts-control, .ts-wrapper.form-control-sm.multi.has-items .ts-control {
  padding-top: calc((calc(1.5em + 0.7rem + 2px) - 1.5 * 0.875rem - 4px) / 2) !important;
}
.ts-wrapper.multi.has-items .ts-control {
  padding-left: calc(1rem - 5px);
  --ts-pr-min: calc(1rem - 5px);
}
.ts-wrapper.multi .ts-control > div {
  border-radius: calc(0.25rem - 1px);
}
.input-group-lg > .ts-wrapper > .ts-control, .ts-wrapper.form-control-lg .ts-control {
  min-height: calc(1.5em + 1.5rem + 2px);
  border-radius: 0.3rem;
  font-size: 1.25rem;
}

.form-control.ts-wrapper {
  padding: 0;
  height: auto;
  border: none;
  background: none;
  border-radius: 0;
}

.input-group > .ts-wrapper {
  flex-grow: 1;
}
.input-group > .ts-wrapper:not(:nth-child(2)) > .ts-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .ts-wrapper:not(:last-child) > .ts-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* custom style */
.ts-dropdown-content .option {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.ts-wrapper.plugin-remove_button .item {
  border-radius: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background-color: var(--color-gray-lightest);
}

.cta__secondary, .cta__secondary a {
  font-size: 1rem;
  color: #356771;
  font-weight: 500;
}
.cta__secondary:hover, .cta__secondary a:hover {
  text-decoration: underline;
}

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

small,
.small,
p.help-block {
  font-size: 80%;
  font-weight: 400;
}

p {
  margin-bottom: 0;
}

.title, .title__xxl, .title__xxl--tertiary, .title__xxl__secondary, .title__xl, .title__xl--tertiary, .title__xl__secondary, .title__lg, .title__lg--tertiary, .title__lg--secondary, .title__md, .title__sm, .title__sm--tertiary, .title__sm--secondary, .title__xs, .title__xs--tertiary, .title__xs--secondary {
  font-weight: 600;
  color: var(--color-dark);
  font-family: var(--main-font);
}
.title__xs, .title__xs--tertiary, .title__xs--secondary {
  font-size: 0.75rem;
}
.title__xs--secondary {
  font-weight: 500;
}
.title__xs--tertiary {
  font-weight: 400;
  color: #516365;
}
.title__sm, .title__sm--tertiary, .title__sm--secondary {
  font-size: 0.875rem;
}
.title__sm--secondary {
  font-weight: 400;
}
.title__sm--tertiary {
  font-weight: 400;
  color: #516365;
}
.title__md {
  font-size: 1rem;
}
.title__md--secondary {
  font-weight: 500;
}
.title__md--tertiary {
  font-weight: 400;
  color: #516365;
}
.title__lg, .title__lg--tertiary, .title__lg--secondary {
  font-size: 1.125rem;
}
.title__lg--secondary {
  font-weight: 500;
}
.title__lg--tertiary {
  font-weight: 400;
  color: #516365;
}
.title__xl, .title__xl--tertiary, .title__xl__secondary {
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  .title__xl, .title__xl--tertiary, .title__xl__secondary {
    font-size: calc(1.3rem + 0.2666666667vw);
  }
}
.title__xl__secondary {
  font-weight: 500;
}
.title__xl--tertiary {
  font-weight: 400;
  color: #516365;
}
.title__xxl, .title__xxl--tertiary, .title__xxl__secondary {
  font-size: 2.25rem;
}
@media (max-width: 1200px) {
  .title__xxl, .title__xxl--tertiary, .title__xxl__secondary {
    font-size: calc(1.45rem + 1.0666666667vw);
  }
}
.title__xxl__secondary {
  font-weight: 500;
}
.title__xxl--tertiary {
  font-weight: 400;
  color: #516365;
}

.paragraph, .paragraph__lg, .paragraph__lg--tertiary, .paragraph__lg--secondary, .paragraph__md, .paragraph__md--tertiary, .paragraph__md--secondary, .paragraph__sm, .paragraph__sm--tertiary, .paragraph__sm--secondary, .paragraph__xs, .paragraph__xs--tertiary, .paragraph__xs--secondary, .plan__card__price--monthly, .plan__card__description {
  font-weight: 400;
  font-family: var(--main-font);
  color: #516365;
}
.paragraph__xs, .paragraph__xs--tertiary, .paragraph__xs--secondary, .plan__card__price--monthly, .plan__card__description {
  font-size: 0.75rem;
}
.paragraph__xs--secondary, .plan__card__price--monthly, .plan__card__description {
  color: #adb5bd;
}
.paragraph__xs--tertiary {
  color: #ced4da;
}
.paragraph__sm, .paragraph__sm--tertiary, .paragraph__sm--secondary {
  font-size: 0.875rem;
}
.paragraph__sm--secondary {
  color: #adb5bd;
}
.paragraph__sm--tertiary {
  color: #ced4da;
}
.paragraph__md, .paragraph__md--tertiary, .paragraph__md--secondary {
  font-size: 1rem;
}
.paragraph__md--secondary {
  color: #adb5bd;
}
.paragraph__md--tertiary {
  color: #ced4da;
}
.paragraph__lg, .paragraph__lg--tertiary, .paragraph__lg--secondary {
  font-size: 1.125rem;
}
.paragraph__lg--secondary {
  color: #adb5bd;
}
.paragraph__lg--tertiary {
  color: #ced4da;
}

.title__secondary {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--main-font);
  color: #495057;
}

.title__tertiary {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--main-font);
  color: #495057;
}

.paragraph__secondary, .paragraph__secondary--center, .paragraph__secondary--left {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--main-font);
  color: #adb5bd;
}
.paragraph__secondary--left {
  text-align: left;
}
.paragraph__secondary--center {
  text-align: center;
}

.paragraph__tertiary, .paragraph__tertiary--center, .paragraph__tertiary--left {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--main-font);
  color: #adb5bd;
}
.paragraph__tertiary--left {
  text-align: left;
}
.paragraph__tertiary--center {
  text-align: center;
}

.banner-promotional {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  border: none;
  align-items: center;
}
.banner-promotional__body {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .banner-promotional__body {
    flex-direction: column;
  }
}
.banner-promotional__content {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .banner-promotional__content {
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
  }
}
.banner-promotional__illustration {
  height: 8rem;
}
@media (max-width: 991.98px) {
  .banner-promotional__illustration {
    display: none;
  }
}
.banner-promotional--dojo {
  background: url("/assets/dojo/dojo_background-d5213e32.svg") white !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 20%;
}
@media (max-width: 991.98px) {
  .banner-promotional--dojo {
    background-size: contain;
    background-position: bottom;
    margin: 2rem;
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translate(-7px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(-7px) rotate(-360deg);
  }
}
.marketing-banner {
  position: relative;
  height: 30vw;
  max-height: 330px;
}
.marketing-banner #blue-bird-eye {
  animation: orbit 3s linear infinite;
  transform-origin: left;
}
.marketing-banner__wrapper {
  position: relative;
}
.marketing-banner__wrapper .marketing-banner__content {
  transform: translate(-50%, -50%) scale(0.8);
  top: 45%;
}
.marketing-banner__gift-cards {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 991.98px) {
  .marketing-banner__gift-cards {
    transform: scale(0.8) translateX(-50%);
    transform-origin: bottom left;
    bottom: 4px;
  }
}
.marketing-banner__content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  min-width: 380px;
  text-align: center;
  color: #04272d;
}
@media (max-width: 767.98px) {
  .marketing-banner__content {
    transform: scale(0.84) translate(-50%, -50%);
    transform-origin: center;
  }
}
.marketing-banner__bottom-left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 991.98px) {
  .marketing-banner__bottom-left-shape {
    transform: scale(0.7);
    transform-origin: left bottom;
  }
}
@media (max-width: 767.98px) {
  .marketing-banner__bottom-left-shape {
    transform: scale(0.5);
    transform-origin: left bottom;
  }
}
.marketing-banner__bird {
  position: absolute;
  bottom: 0;
  left: 30px;
}
@media (max-width: 991.98px) {
  .marketing-banner__bird {
    transform: scale(0.7);
    transform-origin: left bottom;
  }
}
@media (max-width: 767.98px) {
  .marketing-banner__bird {
    transform: scale(0.5);
    transform-origin: left bottom;
  }
}
.marketing-banner__bottom-right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .marketing-banner__bottom-right-shape {
    transform: scale(0.7);
    transform-origin: right bottom;
  }
}
@media (max-width: 767.98px) {
  .marketing-banner__bottom-right-shape {
    transform: scale(0.5);
    transform-origin: right bottom;
  }
}
.marketing-banner__top-right-shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .marketing-banner__top-right-shape {
    transform: scale(0.7);
    transform-origin: right top;
  }
}
@media (max-width: 767.98px) {
  .marketing-banner__top-right-shape {
    transform: scale(0.5);
    transform-origin: right top;
  }
}
@media (max-width: 575.98px) {
  .marketing-banner {
    height: 45vh;
    overflow: hidden;
  }
  .marketing-banner .marketing-banner__bird {
    display: none;
  }
  .marketing-banner .marketing-banner__bottom-left-shape {
    bottom: -15%;
  }
  .marketing-banner .marketing-banner__content {
    transform: translate(-50%, -50%);
    width: 80%;
    min-width: unset;
    max-width: unset;
  }
}

.btn, .tag-selector + label, .grades .grade {
  font-size: 1rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 600;
}

.btn-sm {
  font-size: 0.875rem;
  font-weight: 400;
}

.btn.box-shadow-none:focus, .tag-selector + label.box-shadow-none:focus, .grades .box-shadow-none.grade:focus {
  box-shadow: none !important;
}

.btn-warning,
.btn-warning:hover {
  color: #4a4114;
}
.btn-warning svg,
.btn-warning:hover svg {
  stroke: #4a4114;
}

.btn-outline-warning:hover,
.btn-warning .text-white {
  color: #fefdf5;
}

.btn-outline-warning:disabled {
  color: #f5d944;
}

.btn-secondary, .button-absolute .todo,
.btn-secondary:hover,
.btn-secondary:disabled,
.btn-secondary.disabled,
.btn-outline-secondary:hover {
  color: white;
}
.btn-secondary svg, .button-absolute .todo svg,
.btn-secondary:hover svg,
.btn-secondary:disabled svg,
.btn-secondary.disabled svg,
.btn-outline-secondary:hover svg {
  stroke: white;
}

.btn-outline-secondary,
.btn-outline-secondary:disabled {
  color: #fd7e14;
}
.btn-outline-secondary svg,
.btn-outline-secondary:disabled svg {
  stroke: #fd7e14;
}

.btn-primary,
.btn-primary:hover {
  color: #fff7f7;
}
.btn-primary svg,
.btn-primary:hover svg {
  stroke: #fff7f7;
}

.btn-outline-white,
.btn-outline-white:hover {
  color: white;
  border-color: white;
  border-radius: 0.5rem;
}
.btn-outline-white svg,
.btn-outline-white:hover svg {
  stroke: white;
}

.btn-info,
.btn-info:hover {
  color: var(--color-blue-lightest);
}
.btn-info svg,
.btn-info:hover svg {
  stroke: var(--color-blue-lightest);
}

.btn-success, .button-absolute .saving, .button-absolute .done,
.btn-success:hover,
.btn-success:disabled {
  color: var(--color-green-lightest);
}
.btn-success svg, .button-absolute .saving svg, .button-absolute .done svg,
.btn-success:hover svg,
.btn-success:disabled svg {
  stroke: var(--color-green-lightest);
}

.btn-success:focus, .button-absolute .saving:focus, .button-absolute .done:focus {
  box-shadow: 0 0 0 0.1rem #6bddac;
}

.btn-light-blue,
.btn-light-blue:hover,
.btn-outline-light-blue:hover,
.btn-light-blue:disabled {
  color: #f9fcfd;
}
.btn-light-blue svg,
.btn-light-blue:hover svg,
.btn-outline-light-blue:hover svg,
.btn-light-blue:disabled svg {
  stroke: #f9fcfd;
}

.btn-outline-light-blue:disabled {
  color: #7ec9d2;
}

.btn-light-blue:hover,
.btn-light-blue:active,
.btn-light-blue:disabled {
  background-color: #71b5bd;
  border-color: #71b5bd;
}

.btn-light-blue:focus {
  box-shadow: 0 0 0 0.1rem #a5d9e0;
}

.btn-blue-medium {
  background-color: #7ec5d0;
  color: #ffffff;
  transition: transform 0.5s ease;
}
.btn-blue-medium:hover {
  opacity: 0.9;
  color: #ffffff;
  transform: scale(1.02);
}

.plume-green-bg {
  color: #fff;
  background-color: #1faf7f;
}

.plume-gray-bg {
  color: #182e33;
  background-color: #e9ecef;
}

.plume-blue-bg {
  color: #fff;
  background-color: #77c8da;
}

.btn-link-plume-green {
  color: #00c7c0;
}
.btn-link-plume-green:hover {
  color: #00c7c0;
}

.btn-link:hover {
  text-decoration: none;
}

.btn-round {
  border-radius: 1.5rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.btn-next {
  border-radius: 100px;
  background: #fa5c5c;
  height: 80px;
  width: 80px;
  border: none;
  margin-left: 20px;
  background-image: url("/assets/next-icon-cef2c658.svg");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-next:hover {
  background-color: #fa5c5c;
}
.btn-next:active {
  background-color: #fa5c5c;
}

.btn-ir {
  background-color: white;
  flex-grow: 0;
  border: none;
}
.btn-ir.inactive {
  cursor: not-allowed;
  opacity: 0.4;
}
.btn-ir img {
  height: 30px;
  width: 30px;
}
@media (max-width: 575.98px) {
  .btn-ir img {
    height: 25px;
    width: 25px;
  }
}

#HelpButton {
  display: none;
}

.btn-prev {
  border-radius: 100px;
  background: #fa5c5c;
  height: 80px;
  width: 80px;
  border: none;
  margin-left: 20px;
  background-image: url("/assets/back-icon-white-1faa51e3.svg");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-prev:hover {
  background-color: #fa5c5c;
}

.btn-continue, .btn-non {
  border-radius: 2rem;
  display: inline-block;
  border: 1px solid #96cbce;
  color: #04272d;
  background-color: #f3fcfb;
  font-weight: 500 !important;
  cursor: pointer;
}
.btn-continue:hover, .btn-non:hover {
  background-color: rgb(181.8, 236.7, 230.6);
}
.btn-continue a, .btn-non a {
  color: #04272d;
  text-decoration: none;
}

.btn-avatar-success {
  padding-left: 0.4rem;
  border-radius: 2rem;
  display: inline-block;
  border: 1px solid #1acf87;
  color: white;
  background-color: #1acf87;
  cursor: pointer;
}
.btn-avatar-success img {
  max-height: 30px;
  margin-right: 15px;
}
.btn-avatar-success:hover {
  background-color: rgb(17.4635193133, 139.0364806867, 90.6759656652);
}
.btn-avatar-success a {
  color: #1acf87;
  text-decoration: none;
}

.btn-non {
  background-color: #fdf6d8;
  border: 1px solid #fbce2e;
}
.btn-non:hover {
  background-color: rgb(249.2682926829, 229.2073170732, 143.2317073171);
}

.btn-red-plume {
  background-color: #fa5c5c;
  color: white;
  font-weight: 400 !important;
  padding: 0.9rem 1.5rem;
}

.btn-boxes {
  background-color: white;
  color: #2a6770;
}

.btn-boxes:hover {
  background-color: white;
  color: #f75d60;
}

.button_to {
  display: flex;
  align-items: center;
  font-size: 100%;
  height: inherit;
  width: inherit;
  font-family: inherit;
  border: 0;
  padding: 0;
  background-color: inherit;
}
.button_to button {
  font-size: 100%;
  font-family: inherit;
  border: 0;
  padding: 0;
  background-color: inherit;
}

#challenge-universes-container .cards {
  width: 80%;
}
#challenge-universes-container .cards__title {
  height: 40px;
}

.status-icon {
  background: #ffffff;
  border-radius: 50%;
  height: 3.5em;
  height: clamp(3.5em, 5vw, 4.5em);
  width: 3.5em;
  width: clamp(3.5em, 5vw, 4.5em);
  overflow: hidden;
  z-index: 20;
}
@media (max-width: 575.98px) {
  .status-icon {
    transform: scale(1.2);
    transform-origin: right bottom;
  }
}
.status-icon__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150%;
  max-height: 150%;
}
.status-icon__number-of-change {
  position: absolute;
  top: 45%;
  left: 56%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 600;
}

.square-hover-link {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: row-reverse !important;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none !important;
  position: absolute;
}

.square-card {
  height: 200px !important;
}

.square-progress-bar {
  bottom: 0;
  z-index: 999;
}

.square-image {
  height: 100%;
}

.welcome-space-card {
  background: #ffffff;
  box-shadow: 0px 2px 20px #ebf0f1 !important;
  min-height: 200px;
  display: grid;
  grid-template-rows: 55% ​1fr 1f;
  padding: 13% 0.5rem;
  position: relative;
  border-radius: 0.25rem;
  text-align: center;
  position: relative;
  font-weight: 400;
  transition: visibility 0s ease-in var(--showMoreTransition), box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1), min-height var(--showMoreTransition) ease-in-out;
}
.welcome-space-card > * {
  margin: 0;
  padding: 0;
}
.welcome-space-card__img {
  display: flex;
  margin: 0 auto;
  width: 5rem;
  flex-direction: column;
  justify-content: space-around;
  object-fit: contain;
}
.welcome-space-card__img .avatar {
  transition: none;
}
.welcome-space-card:hover {
  background: #ffffff;
  box-shadow: 0 6px 10px 0 #ebf0f1, 0 1px 18px 0 #cdd9dc, 0 3px 5px -1px #aec2c6 !important;
  cursor: pointer;
}
.welcome-space-card--hidden {
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s ease-in 0s, min-height var(--showMoreTransition) ease-in-out;
  min-height: 0;
  max-height: 0;
  padding: 0;
  position: absolute;
}
.welcome-space-card .dropdown-menu {
  border-radius: 0.25rem;
}
.welcome-space-card .dropdown-item {
  line-height: 1.8;
  font-size: 1rem;
  padding: 0 2rem;
}
.welcome-space-card__more {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
}
.welcome-space-card__more-button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  outline: none;
  border: none;
  background: none;
}
.welcome-space-card__more-button:focus {
  outline: none;
  border: none;
  background: none;
}
@keyframes dotsGrowing {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}
.welcome-space-card__more-button:hover {
  animation-name: dotsGrowing;
  animation-iteration-count: infinite;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
}
.welcome-space-card__more-button span {
  display: block;
  height: 4px;
  width: 4px;
  background-color: #495057;
  border-radius: 50%;
}
.welcome-space-card__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 4px;
  font-weight: 500;
  border-radius: 1rem;
  background: #f5d944;
  color: #495057;
}

label {
  margin-bottom: 0.5rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: none !important;
}

.icons--text-to-speech {
  fill: #adb5bd;
}
.icons--text-to-speech--on {
  fill: #fd7e14;
}

.img-flip-h {
  transform: scaleX(-1);
}

.img-md {
  height: 3rem;
  width: auto;
}

.img-lg {
  height: 6rem;
  width: auto;
}

.app-kid-sub-navbar {
  overflow: hidden;
}
.app-kid-sub-navbar .nav .nav-item .nav-link {
  color: #adb5bd;
}
.app-kid-sub-navbar .nav .nav-item .active {
  position: relative;
  background: transparent;
}
.app-kid-sub-navbar .nav .nav-item .active span.blue {
  color: #3d79ee;
}
.app-kid-sub-navbar .nav .nav-item .active span.orange {
  color: #fd7e14;
}
.app-kid-sub-navbar .nav .nav-item .active .blue::after {
  content: "";
  width: 40px;
  height: 20px;
  background-color: #3d79ee;
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  border: 10px solid #3d79ee;
  border-bottom: 0;
  position: absolute;
  overflow: hidden;
  bottom: -28px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
.app-kid-sub-navbar .nav .nav-item .active .orange::after {
  content: "";
  width: 40px;
  height: 20px;
  background-color: #fd7e14;
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  border: 10px solid #fd7e14;
  border-bottom: 0;
  position: absolute;
  overflow: hidden;
  bottom: -28px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.plan__card {
  display: inline-block;
  margin: 0 0.5rem;
  flex: 1;
}
@media (max-width: 991.98px) {
  .plan__card {
    margin: 0 0.25rem;
  }
}
.plan__card:first-child {
  margin-left: 0;
}
.plan__card:last-child {
  margin-right: 0;
}
.plan__card__header {
  width: 100%;
  min-height: 5.3rem;
  left: 0px;
  top: 2rem;
}
.plan__card__body {
  font-size: 1rem;
  position: relative;
  text-align: center;
  min-height: 200px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 3rem 1rem 1rem 1rem;
  color: #516365;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .plan__card__body {
    min-height: 100px;
    padding: 1rem 0;
  }
}
.plan__card__body:hover {
  background-color: #fffaf7;
}
.plan__card__trial {
  margin-top: 1rem;
}
.plan__card__radio {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 100%;
  border: 1px solid #fd7e14;
  background-color: #ffffff;
}
.plan__card__radio.active {
  background: radial-gradient(#fd7e14 50%, rgba(255, 0, 0, 0) 51%);
}
@media (max-width: 991.98px) {
  .plan__card__radio {
    height: 1rem;
    width: 1rem;
    display: none;
  }
}
.plan__card__headline {
  display: flex;
  justify-content: space-around;
  background-color: #fd7e14;
  color: white;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 991.98px) {
  .plan__card__headline {
    font-size: 0.75rem;
  }
}
.plan__card.active .plan__card__body {
  background-color: #fee5d7;
}
.plan__card.active .plan__card__radio {
  background: radial-gradient(#fd7e14 50%, rgba(255, 0, 0, 0) 51%);
}

.plan__card__label--deal {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.plan__card--focus-on {
  z-index: 1;
}

.pro-offers {
  display: flex;
  max-width: 950px;
  margin: 0 auto;
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .pro-offers {
    flex-direction: column;
  }
  .pro-offers > *:not(:first-child) {
    margin-top: 2rem;
  }
}
.pro-offers:hover .pro-offers__bird {
  transform: scale(1.15);
}
.pro-offers > * {
  flex: 1 0;
  justify-content: center;
}
.pro-offers__bird {
  position: absolute;
  top: -106px;
  left: -82px;
  z-index: 3;
  transition: transform 0.3s ease-in-out;
}
.pro-offers__column {
  background: #ffffff;
  border-radius: 5px 5px 0px 0px;
  filter: drop-shadow(0px 2px 20px rgba(130, 178, 255, 0.15));
  border: 1px solid #e6e6e6;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pro-offers__column:first-child {
  border-bottom-left-radius: 5px;
}
.pro-offers__column:last-child {
  border-bottom-right-radius: 5px;
}
.pro-offers__column.premium, .pro-offers__column.school {
  position: relative;
  min-height: max-content;
}
.pro-offers__column.premium::after, .pro-offers__column.school::after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 40px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
}
.pro-offers__column.school::after {
  background: #ffffff;
}
@media (max-width: 767.98px) {
  .pro-offers__column.school::after {
    content: none;
  }
}
.pro-offers__column.premium::after {
  background: #3d79ee;
}
@media (max-width: 767.98px) {
  .pro-offers__column.premium {
    margin-top: 5rem;
  }
}
.pro-offers__column.premium .pro-offers__header {
  background: #3d79ee;
  color: #ffffff;
}
.pro-offers__column.premium .pro-offers__title {
  color: #ffffff;
}
.pro-offers__column.premium .pro-offers__price {
  color: var(--color-white);
  margin-bottom: 0;
  font-size: 2rem;
}
.pro-offers__column.premium .pro-offers__price--discounted {
  font-size: 1rem;
}
.pro-offers__column.premium .pro-offers__short-description {
  font-size: 0.875rem;
  color: white;
}
.pro-offers__column.premium .pro-offers__features {
  border: 2px solid #3d79ee;
}
.pro-offers__column.free {
  height: fit-content !important;
  place-self: end;
}
@media (max-width: 767.98px) {
  .pro-offers__column.free, .pro-offers__column.school {
    border-radius: 5px;
    overflow: hidden;
  }
}
.pro-offers__column.free .pro-offers__title, .pro-offers__column.school .pro-offers__title {
  color: #516365;
}
.pro-offers__column.free .pro-offers__features, .pro-offers__column.school .pro-offers__features {
  border-top: 1px solid #e9ecef;
}
.pro-offers__tabs {
  position: absolute;
  overflow: hidden;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  z-index: 5;
  width: 95%;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.pro-offers__tabs .pro-offers__tab.active {
  background: #fd7e14;
  font-weight: 600;
}
.pro-offers__tabs p {
  padding: 4px;
  margin: 0;
  font-size: 11px;
  flex: 50%;
}
.pro-offers__tabs::after {
  content: "";
  height: 100%;
  background: #ffffff;
  width: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pro-offers__school_year {
  position: absolute;
  overflow: hidden;
  bottom: 100%;
  color: #ffffff;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  left: 0;
}
.pro-offers__header {
  padding: 1rem;
  align-items: center;
}
.pro-offers__header > * {
  margin: 0;
}
.pro-offers__column.free .pro-offers__header, .pro-offers__column.school .pro-offers__header {
  padding: 2rem;
  display: grid;
  grid-template-rows: 12px calc(11rem - 28px - 46px) 46px;
}
.pro-offers__column.free .pro-offers__header .btn, .pro-offers__column.free .pro-offers__header .tag-selector + label, .pro-offers__column.free .pro-offers__header .grades .grade, .grades .pro-offers__column.free .pro-offers__header .grade, .pro-offers__column.school .pro-offers__header .btn, .pro-offers__column.school .pro-offers__header .tag-selector + label, .pro-offers__column.school .pro-offers__header .grades .grade, .grades .pro-offers__column.school .pro-offers__header .grade {
  margin: 0 auto;
}
.pro-offers__description {
  font-size: 0.85rem;
  color: #ced4da;
}
.pro-offers__features {
  flex-grow: 1;
}
.pro-offers__feature {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 1rem;
  min-height: 4rem;
}
.pro-offers__feature svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.pro-offers__feature p {
  text-align: left;
  margin-bottom: 0;
  flex: 90%;
}
.pro-offers__feature:nth-child(odd) {
  background: var(--color-blue-lightest);
}

.reviews-banner .reviews-card-title {
  font-size: 2rem;
}

.reviews-card-description {
  font-size: 1.25rem;
}

.review-card-in-between {
  position: relative;
  top: 150px;
  margin-top: -100px;
}

.container-bottom-in-between {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.reviews-footer {
  background-color: #fa5c5c;
}

.reviews-footer-title {
  font-size: 1.25rem;
}

.icon-review {
  margin: 1rem;
}
.icon-review i {
  color: white;
  font-size: 3rem;
}

.subscription-plans {
  display: flex;
  justify-content: center;
}
.subscription-plans .subscription-plan-badge {
  color: #fff;
  display: flex;
  font-size: 1rem;
  font-weight: 300;
  height: 3rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.subscription-plans .card-focus {
  transform: scale(1.04);
}
.subscription-plans h4 {
  color: #305d66;
  font-size: 1.5rem;
}
.subscription-plans .subscription-plan-title {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.subscription-plans .subscription-plan-title img {
  max-height: 7rem;
  max-width: 7rem;
}
.subscription-plans .subscription-plan-bullets {
  font-size: 1rem;
}
.subscription-plans .subscription-plan-benefit {
  font-size: 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.subscription-plans .subscription-plan-benefit span {
  font-size: 1rem;
  color: #fa5c5c;
}
.subscription-plans .subscription-plan-info {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #516365;
  font-size: 1rem;
  font-weight: 300;
}
.subscription-plans .subscription-plan-price {
  color: #305d66;
  font-size: 2.3rem;
  text-align: center;
  font-weight: 500;
}
.subscription-plans .subscription-plan-price.ios {
  font-size: 1.8rem;
}
.subscription-plans .subscription-plan-price h5 {
  color: #7ec9d2;
  font-size: 2rem;
}
.subscription-plans .subscription-plan-price span {
  font-size: 1rem;
  margin-left: 0.5rem;
  font-weight: 300;
}
.subscription-plans .subscription-plan-price p {
  font-size: 1rem;
  font-weight: 300;
}

.rounded-cell-plan-top {
  border-top-right-radius: 8px;
}

.rounded-cell-plan-bottom {
  border-bottom-right-radius: 8px;
}

.icon-check-plan {
  width: 21px;
}

.bg-blue-dark-plume {
  background-color: #3d79ee;
}

.btn-plume-dark-blue {
  background-color: #3d79ee;
  color: white;
}
.btn-plume-dark-blue:hover {
  color: white;
}

.table-plans-professionnals th {
  font-size: 1.6rem;
}
.table-plans-professionnals td p {
  font-size: 1rem;
}
.table-plans-professionnals .table-bordered {
  border: 1px solid #979797;
}

.text-plans {
  color: #516365;
  font-size: 1rem;
}

.subscription-banner {
  background: linear-gradient(180deg, #c3f2fa 65%, #f8f8fa 35%);
  padding-top: 8rem;
  padding-bottom: 3rem;
}
@media (max-width: 575.98px) {
  .subscription-banner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.subscription-banner .subscription-banner-title {
  color: #253c3f;
}

@media (max-width: 767px) {
  .benefits-illustration {
    width: 100%;
    padding-bottom: 20px;
  }
}
.rounded-card .subscription-card-price {
  color: #ff675f;
  font-size: 55px;
}
.rounded-card .subscription-card-price .subscription-card-price-frequency {
  color: #253c3f;
  font-size: 31px;
}
.rounded-card .subcription-card-offer {
  color: #253c3f;
}
.rounded-card .subcription-card-title {
  text-align: center;
  color: #38cd8b;
}
.rounded-card .subcription-card-description {
  text-align: center;
  font-weight: 300;
}
.rounded-card .subscription-card-bullets .subscription-card-bullet {
  color: #253c3f;
  display: flex;
}

@media (max-width: 767px) {
  .subscription-footer-illustration {
    width: 100%;
  }
  .subscription-footer-inner-text-container {
    padding-bottom: 20px;
  }
}
.educational-ressources a:hover {
  text-decoration: none;
}
.educational-ressources .nav-link.active {
  background-color: #77a1f3;
}
.educational-ressources__ressource, .educational-ressources__ressource--disabled {
  background: #ffffff;
  box-shadow: 0px 2px 20px #ebf0f1 !important;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.educational-ressources__ressource:hover, .educational-ressources__ressource--disabled:hover {
  text-decoration: none;
  background: #ebf0f1;
}
.educational-ressources__ressource > *, .educational-ressources__ressource--disabled > * {
  margin: 0;
  padding: 0;
}
.educational-ressources__ressource--disabled {
  cursor: not-allowed;
}
.educational-ressources__ressource--disabled:hover {
  background-color: #ffffff;
}
.educational-ressources__title {
  margin: 0;
  padding: 0;
}
.educational-ressources__premium {
  font-size: 0.875rem;
  border-radius: 1rem;
  background: #cfdefb;
  color: #516365;
  font-weight: 400;
  padding: 0 0.75rem;
  text-align: center;
  display: inline-block;
}
.avatar {
  object-fit: content;
  flex-shrink: 0;
}
.avatar.avatar-xxl {
  height: 9rem;
  width: 9rem;
}
.avatar.avatar-xl {
  height: 6rem;
  width: 6rem;
}
.avatar.avatar-lg {
  height: 4.5rem;
  width: 4.5rem;
}
.avatar.avatar-md {
  height: 2.5rem;
  width: 2.5rem;
}
.avatar.avatar-sm {
  height: 2rem;
  width: 2rem;
}
.avatar.avatar-xs {
  height: 1.5rem;
  width: 1.5rem;
}
.avatar.avatar__selected {
  border-style: solid;
  border-color: var(--color-yellow);
  border-width: 2px;
  padding: 0.25rem;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.bg-light-white-shadow {
  background-color: white !important;
  box-shadow: 0 3px 6px 0 rgba(70, 73, 208, 0.16);
}

.no-component-banner {
  z-index: 0;
  position: relative;
  background-color: #c3f2fa;
}
.no-component-banner__pro {
  background-color: #fff7f2;
  height: 100%;
}
.no-component-banner {
  padding-top: 4.875rem !important;
}
.no-component-banner__image {
  position: relative;
}
.no-component-banner__image img {
  width: 100%;
}
.no-component-banner__image .typewriter {
  left: 0;
  margin: 0 auto;
  right: 0;
  position: absolute;
  bottom: -12px;
  padding: 0.5em 1em;
  border-radius: 4px;
  color: #253c3f;
  width: 18em;
  background-color: #ffffff;
  box-shadow: 0 2px 26px 0 rgba(0, 0, 0, 0.24);
}
.no-component-banner .row {
  flex-direction: row-reverse;
}
.no-component-banner .banner__image {
  visibility: hidden;
}
@media only screen and (max-width: 768px) {
  .no-component-banner .banner__image {
    display: none;
  }
}

.blinker {
  animation: blinker 1.2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.bullet {
  display: flex;
  align-items: top;
  text-align: left;
  margin: 0.75rem 0;
}
.bullet__icon {
  margin-right: 1rem;
}
.bullet__icon--light-blue svg {
  fill: #7ec9d2;
  stroke: #ffffff;
}
.bullet__icon--brand svg {
  fill: #356771;
  stroke: #ffffff;
}
.bullet__icon--blue svg {
  fill: #3d79ee;
  stroke: #ffffff;
}
.bullet__icon--orange svg {
  fill: #fd7e14;
  stroke: #ffffff;
}
.bullet__icon--green svg {
  fill: #38cd8b;
  stroke: #ffffff;
}
.bullet__icon--yellow svg {
  fill: #f9b233;
  stroke: #ffffff;
}
.bullet.bullet--lg svg {
  width: 1.5rem;
  height: 1.5rem;
}
.bullet.bullet--sm svg {
  width: 0.9rem;
  height: 0.9rem;
}
.btn, .tag-selector + label, .grades .grade {
  font-size: 1rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 600;
}

.btn-sm {
  font-size: 0.875rem;
  font-weight: 400;
}

.btn.box-shadow-none:focus, .tag-selector + label.box-shadow-none:focus, .grades .box-shadow-none.grade:focus {
  box-shadow: none !important;
}

.btn-warning,
.btn-warning:hover {
  color: #4a4114;
}
.btn-warning svg,
.btn-warning:hover svg {
  stroke: #4a4114;
}

.btn-outline-warning:hover,
.btn-warning .text-white {
  color: #fefdf5;
}

.btn-outline-warning:disabled {
  color: #f5d944;
}

.btn-secondary, .button-absolute .todo,
.btn-secondary:hover,
.btn-secondary:disabled,
.btn-secondary.disabled,
.btn-outline-secondary:hover {
  color: white;
}
.btn-secondary svg, .button-absolute .todo svg,
.btn-secondary:hover svg,
.btn-secondary:disabled svg,
.btn-secondary.disabled svg,
.btn-outline-secondary:hover svg {
  stroke: white;
}

.btn-outline-secondary,
.btn-outline-secondary:disabled {
  color: #fd7e14;
}
.btn-outline-secondary svg,
.btn-outline-secondary:disabled svg {
  stroke: #fd7e14;
}

.btn-primary,
.btn-primary:hover {
  color: #fff7f7;
}
.btn-primary svg,
.btn-primary:hover svg {
  stroke: #fff7f7;
}

.btn-outline-white,
.btn-outline-white:hover {
  color: white;
  border-color: white;
  border-radius: 0.5rem;
}
.btn-outline-white svg,
.btn-outline-white:hover svg {
  stroke: white;
}

.btn-info,
.btn-info:hover {
  color: var(--color-blue-lightest);
}
.btn-info svg,
.btn-info:hover svg {
  stroke: var(--color-blue-lightest);
}

.btn-success, .button-absolute .saving, .button-absolute .done,
.btn-success:hover,
.btn-success:disabled {
  color: var(--color-green-lightest);
}
.btn-success svg, .button-absolute .saving svg, .button-absolute .done svg,
.btn-success:hover svg,
.btn-success:disabled svg {
  stroke: var(--color-green-lightest);
}

.btn-success:focus, .button-absolute .saving:focus, .button-absolute .done:focus {
  box-shadow: 0 0 0 0.1rem #6bddac;
}

.btn-light-blue,
.btn-light-blue:hover,
.btn-outline-light-blue:hover,
.btn-light-blue:disabled {
  color: #f9fcfd;
}
.btn-light-blue svg,
.btn-light-blue:hover svg,
.btn-outline-light-blue:hover svg,
.btn-light-blue:disabled svg {
  stroke: #f9fcfd;
}

.btn-outline-light-blue:disabled {
  color: #7ec9d2;
}

.btn-light-blue:hover,
.btn-light-blue:active,
.btn-light-blue:disabled {
  background-color: #71b5bd;
  border-color: #71b5bd;
}

.btn-light-blue:focus {
  box-shadow: 0 0 0 0.1rem #a5d9e0;
}

.btn-blue-medium {
  background-color: #7ec5d0;
  color: #ffffff;
  transition: transform 0.5s ease;
}
.btn-blue-medium:hover {
  opacity: 0.9;
  color: #ffffff;
  transform: scale(1.02);
}

.plume-green-bg {
  color: #fff;
  background-color: #1faf7f;
}

.plume-gray-bg {
  color: #182e33;
  background-color: #e9ecef;
}

.plume-blue-bg {
  color: #fff;
  background-color: #77c8da;
}

.btn-link-plume-green {
  color: #00c7c0;
}
.btn-link-plume-green:hover {
  color: #00c7c0;
}

.btn-link:hover {
  text-decoration: none;
}

.btn-round {
  border-radius: 1.5rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.btn-next {
  border-radius: 100px;
  background: #fa5c5c;
  height: 80px;
  width: 80px;
  border: none;
  margin-left: 20px;
  background-image: url("/assets/next-icon-cef2c658.svg");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-next:hover {
  background-color: #fa5c5c;
}
.btn-next:active {
  background-color: #fa5c5c;
}

.btn-ir {
  background-color: white;
  flex-grow: 0;
  border: none;
}
.btn-ir.inactive {
  cursor: not-allowed;
  opacity: 0.4;
}
.btn-ir img {
  height: 30px;
  width: 30px;
}
@media (max-width: 575.98px) {
  .btn-ir img {
    height: 25px;
    width: 25px;
  }
}

#HelpButton {
  display: none;
}

.btn-prev {
  border-radius: 100px;
  background: #fa5c5c;
  height: 80px;
  width: 80px;
  border: none;
  margin-left: 20px;
  background-image: url("/assets/back-icon-white-1faa51e3.svg");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-prev:hover {
  background-color: #fa5c5c;
}

.btn-continue, .btn-non {
  border-radius: 2rem;
  display: inline-block;
  border: 1px solid #96cbce;
  color: #04272d;
  background-color: #f3fcfb;
  font-weight: 500 !important;
  cursor: pointer;
}
.btn-continue:hover, .btn-non:hover {
  background-color: rgb(181.8, 236.7, 230.6);
}
.btn-continue a, .btn-non a {
  color: #04272d;
  text-decoration: none;
}

.btn-avatar-success {
  padding-left: 0.4rem;
  border-radius: 2rem;
  display: inline-block;
  border: 1px solid #1acf87;
  color: white;
  background-color: #1acf87;
  cursor: pointer;
}
.btn-avatar-success img {
  max-height: 30px;
  margin-right: 15px;
}
.btn-avatar-success:hover {
  background-color: rgb(17.4635193133, 139.0364806867, 90.6759656652);
}
.btn-avatar-success a {
  color: #1acf87;
  text-decoration: none;
}

.btn-non {
  background-color: #fdf6d8;
  border: 1px solid #fbce2e;
}
.btn-non:hover {
  background-color: rgb(249.2682926829, 229.2073170732, 143.2317073171);
}

.btn-red-plume {
  background-color: #fa5c5c;
  color: white;
  font-weight: 400 !important;
  padding: 0.9rem 1.5rem;
}

.btn-boxes {
  background-color: white;
  color: #2a6770;
}

.btn-boxes:hover {
  background-color: white;
  color: #f75d60;
}

.button_to {
  display: flex;
  align-items: center;
  font-size: 100%;
  height: inherit;
  width: inherit;
  font-family: inherit;
  border: 0;
  padding: 0;
  background-color: inherit;
}
.button_to button {
  font-size: 100%;
  font-family: inherit;
  border: 0;
  padding: 0;
  background-color: inherit;
}

.card {
  background: #ffffff;
  box-shadow: 0px 2px 20px #ebf0f1 !important;
  border: none;
}
.card .card-img-overlay {
  bottom: unset;
  padding: 1rem;
  left: unset !important;
}
.card.card-smooth-appear {
  transform: translate3d(0, 0.5rem, 0);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.card.card-smooth-appear--loaded {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.card .highlighted-image::after {
  content: "";
  width: 20%;
  height: 100%;
  background-color: #ecf2fd;
  border-radius: 100% 0% 0% 18%/90% 0% 0% 11%;
  border-bottom: 0;
  position: absolute;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  right: 0;
}
@media (max-width: 991.98px) {
  .card .highlighted-image::after {
    content: "";
    width: 100%;
    height: 20%;
    background-color: #ecf2fd;
    border-radius: 100% 0% 0% 18%/90% 0% 0% 0%;
    border-bottom: 0;
    position: absolute;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
  }
}
.card .highlighted-title {
  color: #376dd6;
}

.cards {
  background: #ffffff;
  border-radius: 5px;
  position: relative;
  height: 100%;
}
.cards a {
  display: flex;
  flex-direction: column;
}
.cards a:focus {
  outline: 0 !important;
  box-shadow: 0;
}
.cards__label {
  border-radius: 0.25rem;
  background-color: #f5d944;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 0.25rem;
}
.cards__content {
  position: relative;
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cards__content.dojo_universe {
  padding: 1rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cards__content.dojo_universe .cards__title {
  text-align: center;
}
.cards__image {
  position: relative;
}
.cards__title {
  text-align: center;
}
.cards__short-description {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  height: 2.6rem;
  line-height: 1.3rem;
  -webkit-box-orient: vertical;
  display: block;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
.cards__dojos-universe {
  display: flex;
  flex-direction: column;
}
.cards__dojos-universe .status-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 4rem !important;
  height: 4rem !important;
}
.cards__kid-story {
  display: flex;
  flex-direction: column;
}
.cards__kid-story .status-icon {
  top: 1rem;
  height: 2.5em;
  height: clamp(2.5em, 4vw, 3.5em);
  width: 2.5em;
  width: clamp(2.5em, 4vw, 3.5em);
}
@media (max-width: 767.98px) {
  .cards__kid-story .status-icon {
    right: 0.25rem;
  }
}
.cards__story .cards__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2.5rem;
}
.cards__story .status-icon {
  bottom: 95%;
}
.cards__progress-bar {
  display: flex;
}
.cards__progress-bar-block {
  flex-grow: 1;
  background: #ced4da;
  height: 12px;
}
.cards__progress-bar-block--success {
  background: #38cd8b;
}
.cards__progress-bar-block--danger {
  background: #fa5c5c;
}
.cards__progress-bar-block:not(:last-child) {
  margin-right: 4px;
}

.hovering {
  transform: scale(0.98);
  transition: all 0.3s ease-in-out;
}
.hovering #story-infos {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
  -moz-transition: opacity 0.55s ease-in-out;
  -webkit-transition: opacity 0.55s ease-in-out;
}
.hovering .badges .badge {
  background-color: #f5d944;
}
.hovering .badges #badge-hovered {
  opacity: 0;
  position: absolute;
  background-color: transparent !important;
}
.hovering .badges:hover #badge-hover {
  opacity: 0;
  position: absolute;
  background-color: transparent !important;
}
.hovering .badges:hover #badge-hovered {
  position: static;
  opacity: 1;
  background-color: #f5d944 !important;
  transition: background-color 0.5s ease;
}

.hovering:hover {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 15px -3px var(--box-shadow-main-color);
}
.hovering:hover.rotate {
  transform: rotate(2deg);
}
.hovering:hover #story-infos {
  opacity: 1;
  transition: opacity 0.55s ease-in-out;
  -moz-transition: opacity 0.55s ease-in-out;
  -webkit-transition: opacity 0.55s ease-in-out;
}

.hovering-img img {
  transform: scale(1);
  transition: all 0.3s ease;
}

.hovering-img:hover img {
  transform: scale(1.15);
}

.card-correction {
  border: none;
}

.card-correction-corrected {
  border: 2px solid #38cd8b;
}
.card-correction-corrected .highlight-green {
  color: #38cd8b;
}
.card-correction-corrected .highlight-grey {
  color: #516365;
}
.card-correction-corrected .highlight-red {
  color: #fa5c5c;
}

.card-correction-writing {
  border: 2px solid #38cd8b;
}
.card-correction-writing .highlight-green {
  color: #38cd8b;
}
.card-correction-writing .highlight-grey {
  color: #516365;
}
.card-correction-writing .highlight-red {
  color: #fa5c5c;
}

.card-correction-review {
  border: 2px solid #3d79ee;
}
.card-correction-review .highlight-green {
  color: #38cd8b;
}
.card-correction-review .highlight-grey {
  color: #516365;
}
.card-correction-review .highlight-red {
  color: #fa5c5c;
}

.card-kid a {
  text-decoration: none;
}
.card-kid span {
  color: #04272d;
}

.card-left-classroom {
  max-width: 400px;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}

.card-right-classroom {
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}

.form-check {
  padding: 0;
  margin-left: 1.2rem;
}
.form-check input {
  margin-right: 1rem;
}
.form-check-input, .form-check input {
  position: relative;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(241, 242, 244, 0.31);
  border: 1px solid #ced4da;
  cursor: pointer;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s ease-out;
  flex-shrink: 0;
}
.form-check-input:checked, .form-check input:checked {
  border: 1px solid #182e33;
  background-image: url("/assets/icons/ic_check_green-7233af79.svg");
}
.form-check-input:indeterminate, .form-check input:indeterminate {
  border: 1px solid #182e33;
  background-image: url("/assets/icons/ic_intermediate_green-214e0228.svg");
}

.form-check-label, .form-check label {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.radios-as-buttons {
  display: flex;
  justify-content: space-between;
}

.radio-as-button input[type=radio] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.radio-as-button {
  width: 100%;
  text-align: center;
}

.radio-as-button label {
  display: block;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 4px;
  border-color: #1faf7f;
  color: #1faf7f;
}

.radio-as-button.yes input[type=radio]:checked + label {
  border-color: #1faf7f;
  background-color: #1faf7f;
  color: white;
}

.radio-as-button.no input[type=radio]:checked + label {
  border-color: #fa5c5c;
  background-color: #fa5c5c;
  color: white;
}

.blue-dot {
  height: 8px;
  width: 8px;
  border-radius: 8px;
  background-color: #3d79ee;
  right: 10px;
}

.transparent-dot {
  height: 8px;
  width: 8px;
  border-radius: 8px;
  background-color: transparent;
  right: 10px;
}

@media (max-width: 575.98px) {
  .dropdown.dropdown--fullwidth {
    position: unset;
  }
  .dropdown.dropdown--fullwidth .dropdown-menu {
    width: 100vw;
    min-width: unset;
  }
}

.dropdown-navbar .dropdown-menu {
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.dropdown-burger {
  height: 100%;
  display: flex;
}
.dropdown-burger .dropdown-toggle::after {
  display: none;
}
.dropdown-burger .fas {
  font-size: 1.7rem;
}
.dropdown-burger.show .dropdown-toggle .badge {
  display: none;
}
.dropdown-burger .dropdown-toggle {
  width: 3.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown-burger .dropdown-toggle .badge {
  position: absolute;
  top: 0.5rem;
  right: 0.25rem;
}
.dropdown-burger .dropdown-menu {
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .dropdown-burger {
    position: unset;
  }
  .dropdown-burger .dropdown-menu {
    width: 100vw;
    min-width: unset;
  }
}

.dropdown-item {
  line-height: 2.5;
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-gray-dark);
}
@media screen and (max-height: 700px) {
  .dropdown-item {
    line-height: 1.8;
    font-size: 1rem;
  }
}
.dropdown-item.dropdown-item--sm {
  font-size: 0.875rem;
  color: var(--color-gray);
}

.dropdown-classroom {
  position: absolute;
  right: 10px;
  top: 10px;
}
.dropdown-classroom a {
  padding: 0.15rem 0.25rem;
}
.dropdown-classroom .fas {
  font-size: 1.7rem;
}
.dropdown-classroom a::after {
  display: none;
}
.dropdown-classroom .dropdown-menu {
  padding: 1.5rem;
}

.dropdown-kid a::after,
.dropdown-kid div::after {
  display: none;
}

.editor {
  position: relative;
}
.editor .character-wrapper {
  position: absolute;
  height: 180px;
  width: 360px;
  right: 0;
  top: -180px;
}
@media only screen and (max-width: 760px) {
  .editor .character-wrapper {
    width: 320px;
  }
}
@media only screen and (max-width: 576px) {
  .editor .character-wrapper {
    display: none !important;
  }
}
.editor img.editor-character {
  position: absolute;
  right: 2vw;
  bottom: 0;
  width: 40px;
  height: 55px;
}
.editor .button-hidden {
  visibility: hidden;
}

.feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.feature__image {
  vertical-align: top;
  border-style: none;
  object-fit: scale-down;
  height: 130px;
  object-position: bottom;
}

.form-wizard .steps {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.form-wizard .steps .step {
  display: none;
}
.form-wizard .steps .step.step--current {
  display: block;
}

.grades {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
}
.grades .grade {
  border-color: var(--color-brand);
  font-size: 1rem;
  color: var(--color-brand);
  min-width: 8rem;
  width: 100%;
}
.grades .grade:hover {
  box-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--color-brand);
  color: var(--color-brand);
}
@media (max-width: 767.98px) {
  .grades .grade {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    min-width: 7rem;
  }
}
.grades .active {
  background-color: var(--color-brand);
  color: #ffffff;
}
.grades .active:hover {
  opacity: 0.85;
  color: #ffffff;
}
.grades.fr {
  grid-template-columns: 1fr 1fr 1fr;
}
.grades.us {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.horizontal-scroll {
  display: flex;
  max-width: 100vw;
  overflow-x: scroll;
  padding: 2rem 0;
  -webkit-overflow-scrolling: touch;
}
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}
.horizontal-scroll .card {
  flex: 0 0 auto;
  margin: 0 1rem;
  max-width: 800px;
}
.horizontal-scroll .card:first-child {
  margin-left: 10rem;
}
@media (max-width: 991.98px) {
  .horizontal-scroll .card:first-child {
    margin-left: 5rem;
  }
}

.image-badge-container {
  position: relative;
}

.badge-bnf {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  z-index: 1;
}

.img-flip-h {
  transform: scaleX(-1);
}

.img-md {
  height: 3rem;
  width: auto;
}

.img-lg {
  height: 6rem;
  width: auto;
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  will-change: transform;
  transform: translateZ(0);
  height: 80px;
  box-shadow: 0 -2px 5px -2px #333;
  background-color: #fff;
}
.mobile-bottom-nav__item {
  flex-grow: 1;
  text-align: center;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-bottom-nav__item--active {
  color: red;
}
.mobile-bottom-nav__item-content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .modal h5.modal-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .modal .mobile-bottom {
    align-items: flex-end;
  }
}
.modal .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 9999;
  height: 2rem;
  width: 2rem;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.85;
  color: #fa5c5c;
}

.modal-dialog.modal-auto {
  max-width: fit-content !important;
  padding-left: 1rem;
  padding-right: 1rem;
}
.modal-dialog.modal-auto .modal-content {
  border: none;
  width: auto;
}

.modal.slide-up .modal-dialog {
  bottom: -500px;
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.slide-up.show .modal-dialog {
  transform: translate3d(0, -500px, 0);
  opacity: 1;
}

.animate-bottom {
  position: relative;
  animation: animatebottom 0.4s;
}

@keyframes animatebottom {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.modal .modal-trial-image {
  width: 7rem;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen- {
    padding: 2rem !important;
  }
  .modal-fullscreen- .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen- .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen- .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen--sm {
    padding: 2rem !important;
  }
  .modal-fullscreen--sm .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen--sm .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen--sm .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen--md {
    padding: 2rem !important;
  }
  .modal-fullscreen--md .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen--md .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen--md .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen--lg {
    padding: 2rem !important;
  }
  .modal-fullscreen--lg .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen--lg .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen--lg .modal-body {
    overflow-y: auto;
  }
}
.modal-fullscreen--xl {
  padding: 2rem !important;
}
.modal-fullscreen--xl .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen--xl .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen--xl .modal-body {
  overflow-y: auto;
}

@media only screen and (max-width: 991px) {
  .navbar[data-navbar-open=true] {
    background-color: #c3f2fa !important;
  }
}

.fixed-top-with-banner {
  margin-bottom: -5rem;
  z-index: 100;
}

@media (min-width: 991px) {
  .fixed-top-with-banner {
    margin-bottom: -6rem;
  }
}
@media (min-width: 1141px) {
  .fixed-top-with-banner {
    margin-bottom: -5rem;
  }
}
.nav-link {
  color: #182e33;
  font-weight: 500;
  margin: 0 1rem;
}
.nav-link:hover, .nav-link:focus {
  color: rgb(48.48, 92.92, 103.02);
}

.nav-center {
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.navbar-toggler {
  border: none;
}

@media (max-width: 767.98px) {
  .dropdown-toggle::after {
    content: none;
  }
}

.navbar-collapse {
  transition: none;
}

.navbar-collapse.collapse.show {
  height: calc(100vh - 5rem);
}
.navbar-collapse.collapse.show .navbar-nav {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-size: larger;
}

.navbar.navbar-front {
  height: 4.15rem;
}
@media (max-width: 991.98px) {
  .navbar.navbar-front {
    height: 4rem;
  }
}

.navbar.navbar-app {
  height: 4rem;
}
.navbar.navbar-app .navbar-right-menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navbar.navbar-app .navbar-right-menu a:hover {
  text-decoration: none;
}
.navbar.navbar-app .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .navbar.navbar-app .adaptative-width {
    width: 8rem;
  }
}
.navbar.navbar-app .navbar-left-menu {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar-plumes {
  position: relative;
}
.navbar-plumes .notify-badge {
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
  background: rgb(62.8636363636, 154.1655844156, 167.6363636364);
  text-align: center;
  border-radius: 50%;
  color: white;
  padding: 3px 4px;
  font-size: 0.6rem;
  border: 3px solid white;
  z-index: 1;
  width: 25px;
  height: 25px;
}

.navbar-back {
  position: absolute;
  left: 0;
  cursor: pointer;
}

.navbar-nav {
  background: transparent;
}
.navbar-nav .btn, .navbar-nav .tag-selector + label, .navbar-nav .grades .grade, .grades .navbar-nav .grade {
  font-size: 14px;
}

.navbar__center {
  flex: 1 1 auto;
}

.navbar__left,
.navbar__right {
  width: 8em;
}
@media (max-width: 575.98px) {
  .navbar__left,
  .navbar__right {
    width: 3em;
  }
}

@media (max-width: 575.98px) {
  .navbar__logo {
    height: 20px;
  }
}

.rating-component-logo {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  margin: 12px 6px;
}
.rating-component-logo:focus {
  outline: none;
}
.rating-component-logo.button-1 {
  background-image: url("/assets/review-icon-horrible-9f6401fc.png");
}
.rating-component-logo.button-2 {
  background-image: url("/assets/review-icon-bad-9e1aaa7b.png");
}
.rating-component-logo.button-3 {
  background-image: url("/assets/review-icon-average-4ca99175.png");
}
.rating-component-logo.button-4 {
  background-image: url("/assets/review-icon-good-01e36f48.png");
}
.rating-component-logo.button-5 {
  background-image: url("/assets/review-icon-very-good-86610328.png");
}

.rating-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: inherit;
  font-weight: 600;
}

.rating-progress-steps .rating-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  color: #fff;
  line-height: 2em;
  text-align: center;
  background: #c3f2fa;
}
.rating-progress-steps .rating-progress-step__current {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  color: #fff;
  line-height: 2em;
  text-align: center;
  background: #3d79ee;
}

.rating-progress-steps .rating-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #c3f2fa;
}
.rating-progress-steps .rating-progress-step-line__current {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #3d79ee;
}

.rating-progress-steps li {
  display: inline-block;
  position: relative;
}

.rating-textarea {
  box-sizing: border-box;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: inherit;
  color: inherit;
  font-size: 1.125em;
}

.pagination {
  text-align: center;
  padding: 1rem;
  cursor: default;
}

.pagination a,
.pagination span {
  padding: 0.2em 0.3em;
}

.pagination .disabled {
  color: #aaaaaa;
}

.pagination .current {
  font-style: inherit;
  font-weight: 600;
  background-color: #cfdefb;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.5;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  text-shadow: rgba(255, 255, 255, 0.8) 1px 1px 1px;
}

.pagination a {
  text-decoration: none;
  color: #495057;
}

.pagination a:hover,
.pagination a:focus {
  text-decoration: underline;
}

.parents-help {
  position: absolute;
  top: 0px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  padding: 5px 15px;
}

.potato1 {
  border-radius: 32% 68% 51% 49%/41% 33% 67% 59% !important;
  transition: border-radius 1s;
}

.potato1:hover {
  border-radius: 0px !important;
}

.potato0 {
  border-radius: 73% 27% 51% 49%/41% 50% 50% 59% !important;
  transition: border-radius 1s;
}

.potato0:hover {
  border-radius: 0px !important;
}

.potato2:hover {
  border-radius: 0px !important;
}

.potato2 {
  border-radius: 32% 68% 22% 78%/61% 38% 62% 39% !important;
  transition: border-radius 1s;
}

.progress {
  width: 100%;
}
.progress.progress-sm {
  height: 0.25rem;
  border-radius: 0.125rem;
}
.progress.progress-md {
  height: 0.4rem;
  border-radius: 0.2rem;
}
.progress.progress-lg {
  height: 0.7rem;
  border-radius: 0.35rem;
}
.progress.progress-xl {
  height: 1rem;
  border-radius: 0.5rem;
}

.review {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  min-height: 275px;
  width: 458px;
  background-color: #ffffff;
  box-shadow: 0 2px 14px 0 rgba(37, 60, 63, 0.15);
}
.review__icon {
  display: block;
  margin: 1rem auto 1rem 1rem;
}
.review__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.review__original span {
  padding: 0.1rem 0.2rem;
  background: #edfdf5;
}
.review__corrected {
  font-family: "BradleyHand";
  color: #adb5bd;
  letter-spacing: 0.05rem;
  font-size: larger;
}
.review__corrected span {
  color: #38cd8b;
  font-family: "BradleyHand", cursive;
}
.review__name {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 981px) and (max-width: 1330px) {
  .reviews h2,
  .reviews h3,
  .reviews .rounded-card .subcription-card-title,
  .rounded-card .reviews .subcription-card-title {
    margin-left: 15rem;
  }
}
.reviews {
  background-color: #edfdf5;
  position: relative;
}
.reviews .review__image {
  position: absolute;
  margin-left: 6rem;
}
@media only screen and (max-width: 980px) {
  .reviews .review__image {
    display: none;
  }
}
.reviews .review__name {
  position: relative;
}
.reviews .review__name:before, .reviews .review__name:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: #38cd8b;
  border-radius: 50%;
  left: -18px;
  top: 10px;
}
.reviews .review__name:after {
  left: auto;
  right: -18px;
}

.shake {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;
  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
span.help-block {
  color: #fa5c5c;
  font-weight: 300;
}

p.help-block {
  color: #516365;
  font-weight: 300;
}

.spinner--busy {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
  height: 100vh;
  width: 100vw;
  opacity: 0.5;
  background-color: black;
}

.swiper-container .swiper-wrapper {
  min-height: 280px;
}

.swiper-container-initialized .swiper-wrapper {
  min-height: unset;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 2rem !important;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: background-color 0.5s ease-in-out;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  color: #fa5c5c;
  font-size: 25px !important;
  padding-left: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: rgb(255, 255, 255);
    transition: background-color 0.5s ease-in-out;
  }
}
.swiper-slide {
  transform: translate3d(0, 0, 0);
}

.tabs__tab {
  margin: 2rem 0;
}
@media (min-width: 992px) {
  .tabs__tab {
    display: grid;
    grid-template-columns: 5px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    grid-template-areas: "cursor title" "cursor description";
    margin: 0.5rem 0;
    opacity: 0.5;
    cursor: pointer;
  }
  .tabs__tab h5 {
    font-size: 21px;
    font-weight: bold;
  }
  .tabs__tab p {
    font-size: 18px;
    line-height: 28px;
  }
  .tabs__tab.active {
    opacity: 1;
  }
  .tabs__tab.active .tabs__cursor {
    background: #fe974f;
    box-shadow: 0 2px 26px 0 rgba(0, 0, 0, 0.08);
  }
  .tabs__cursor {
    grid-area: cursor;
    grid-column: 1;
    grid-row: 1/-1;
    margin-right: 3rem;
    width: 100%;
    border-radius: 2.5px;
    background-color: #f5f5f5;
  }
}

.tag-item {
  display: inline-block;
}

.tag-selector {
  position: absolute;
  transform: scale(0);
}

.tag-selector + label {
  cursor: pointer;
  display: inline-block;
  width: 100%;
}
.tag-selector + label:hover {
  background-color: #ebf0f1;
  color: #356771;
  border-color: #72959c;
}

.tag-selector:checked + label {
  background-color: #356771;
  color: #f5f7f8 !important;
}

.tag-selector.error + label {
  background-color: #fed6d6;
  border-color: #ffefef;
  color: #101f22;
}

.tag-selector.error.describe + label {
  background-color: #fed6d6;
  border-color: #ffefef;
  color: var(--white);
}

.tag-selector.success + label {
  background-color: #caf3e2;
  border-color: #eafaf3;
  color: #101f22;
}

.telex {
  position: relative;
  width: 100%;
  height: 3rem;
  overflow: hidden;
  color: #333333;
  font-weight: 300;
  white-space: nowrap;
  border-top: 0.1rem solid #e9ecef;
  border-bottom: 0.1rem solid #e9ecef;
}
.telex__title {
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background-color: #fff7f2;
  border-right: 0.1rem solid #e9ecef;
}
.telex__title img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (max-width: 767.98px) {
  .telex__title {
    visibility: hidden;
  }
}
.telex__container {
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  display: flex;
}
.telex__container.first {
  animation: marquee 70s linear infinite;
  animation-delay: -35s;
}
.telex__container.first:hover {
  animation-play-state: paused;
}
.telex__container.second {
  animation: marquee2 70s linear infinite;
}
.telex__container.second:hover {
  animation-play-state: paused;
}
.telex__element {
  flex-shrink: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 3rem;
  border-right: none;
  white-space: nowrap;
  background-color: #fff7f2;
}
.telex__element:first-child {
  border-left: 0.1rem solid #e9ecef;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.text_input__newsletter {
  width: 20rem !important;
  background-color: transparent;
  color: var(--color-gray-dark);
  border-bottom: 2px solid #356771;
  border-right: none;
  border-left: none;
  border-top: none;
  border-radius: unset;
}
.text_input__newsletter:focus {
  background-color: transparent;
}
[tooltip] {
  position: relative;
}

[tooltip]::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: var(--color-green);
  z-index: 100;
  opacity: 0;
}

[tooltip]::after {
  content: attr(tooltip);
  transition: all 0.7s ease;
  max-width: 25rem;
  min-width: 15rem;
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%) translateY(-100%);
  background: var(--color-green);
  text-align: center;
  color: #fff;
  padding: 1rem 1rem;
  font-size: 1.2rem;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
}

[tooltip]:hover::after,
[tooltip]:hover::before {
  opacity: 1;
}

.tippy-box[data-theme~=plume] {
  background-color: var(--color-brand);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}
.tippy-box[data-theme~=plume] .tippy-content {
  font-size: rfs(0.875rem);
  font-family: var(--main-font), "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.tippy-box[data-theme~=plume] .tippy-backdrop {
  background-color: var(--color-brand);
}
.tippy-box[data-theme~=plume][data-placement^=top] > .tippy-arrow::before {
  border-top-color: var(--color-brand);
}
.tippy-box[data-theme~=plume][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: var(--color-brand);
}
.tippy-box[data-theme~=plume][data-placement^=left] > .tippy-arrow::before {
  border-left-color: var(--color-brand);
}
.tippy-box[data-theme~=plume][data-placement^=right] > .tippy-arrow::before {
  border-right-color: var(--color-brand);
}
.tippy-box[data-theme~=plume] .tippy-svg-arrow {
  fill: var(--color-brand);
}

.tippy-box[data-theme~=plume][data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.plume-theme[data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.plume-theme .tippy-backdrop {
  background-color: var(--color-brand);
}

.tippy-tooltip.plume-theme .tippy-roundarrow {
  fill: var(--color-brand);
}

.tippy-box[data-theme~=plume-sm] {
  background-color: var(--color-brand);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}
.tippy-box[data-theme~=plume-sm] .tippy-content {
  font-size: 0.875rem;
}
.tippy-box[data-theme~=plume-sm] .tippy-svg-arrow {
  fill: var(--color-brand);
}

.tippy-box[data-theme~=primary] {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}
.tippy-box[data-theme~=primary] .tippy-content {
  font-size: 0.875rem;
  font-family: var(--main-font), "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
}
.tippy-box[data-theme~=primary] .tippy-backdrop {
  background-color: var(--color-primary);
}
.tippy-box[data-theme~=primary][data-placement^=top] > .tippy-arrow::before {
  border-top-color: var(--color-primary);
}
.tippy-box[data-theme~=primary][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: var(--color-primary);
}
.tippy-box[data-theme~=primary][data-placement^=left] > .tippy-arrow::before {
  border-left-color: var(--color-primary);
}
.tippy-box[data-theme~=primary][data-placement^=right] > .tippy-arrow::before {
  border-right-color: var(--color-primary);
}
.tippy-box[data-theme~=primary] .tippy-svg-arrow {
  fill: var(--color-primary);
}

.tippy-box[data-theme~=primary][data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.primary-theme[data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.primary-theme .tippy-backdrop {
  background-color: var(--color-primary);
}

.tippy-tooltip.primary-theme .tippy-roundarrow {
  fill: var(--color-primary);
}

.tippy-box[data-theme~=primary-sm] {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}
.tippy-box[data-theme~=primary-sm] .tippy-content {
  font-size: 1rem;
}
.tippy-box[data-theme~=primary-sm] .tippy-svg-arrow {
  fill: var(--color-primary);
}

.tippy-box[data-theme~=blue] {
  background-color: var(--color-blue);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}
.tippy-box[data-theme~=blue] .tippy-content {
  font-size: 0.875rem;
  font-family: var(--main-font), "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
}
.tippy-box[data-theme~=blue] .tippy-backdrop {
  background-color: var(--color-blue);
}
.tippy-box[data-theme~=blue][data-placement^=top] > .tippy-arrow::before {
  border-top-color: var(--color-blue);
}
.tippy-box[data-theme~=blue][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: var(--color-blue);
}
.tippy-box[data-theme~=blue][data-placement^=left] > .tippy-arrow::before {
  border-left-color: var(--color-blue);
}
.tippy-box[data-theme~=blue][data-placement^=right] > .tippy-arrow::before {
  border-right-color: var(--color-blue);
}
.tippy-box[data-theme~=blue] .tippy-svg-arrow {
  fill: var(--color-blue);
}

.tippy-box[data-theme~=blue][data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.blue-theme[data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.blue-theme .tippy-backdrop {
  background-color: var(--color-blue);
}

.tippy-tooltip.blue-theme .tippy-roundarrow {
  fill: var(--color-blue);
}

.tippy-box[data-theme~=blue-sm] {
  background-color: var(--color-blue);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}
.tippy-box[data-theme~=blue-sm] .tippy-content {
  font-size: 1rem;
}
.tippy-box[data-theme~=blue-sm] .tippy-svg-arrow {
  fill: var(--color-blue);
}

.tippy-box[data-theme~=red] {
  background-color: var(--color-red);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}

.tippy-box[data-theme~=red] .tippy-content {
  font-size: 0.875rem;
  font-family: var(--main-font), "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
}

.tippy-box[data-theme~=red] .tippy-backdrop {
  background-color: var(--color-red);
}

.tippy-box[data-theme~=red][data-placement^=top] > .tippy-arrow::before {
  border-top-color: var(--color-red);
}

.tippy-box[data-theme~=red][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: var(--color-red);
}

.tippy-box[data-theme~=red][data-placement^=left] > .tippy-arrow::before {
  border-left-color: var(--color-red);
}

.tippy-box[data-theme~=red][data-placement^=right] > .tippy-arrow::before {
  border-right-color: var(--color-red);
}

.tippy-box[data-theme~=red] .tippy-svg-arrow {
  fill: var(--color-red);
}

.tippy-box[data-theme~=red][data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.red-theme[data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.red-theme .tippy-backdrop {
  background-color: var(--color-red);
}

.tippy-tooltip.red-theme .tippy-roundarrow {
  fill: var(--color-red);
}

.tippy-box[data-theme~=red-sm] {
  background-color: var(--color-red);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}

.tippy-box[data-theme~=red-sm] .tippy-content {
  font-size: 1rem;
}

.tippy-box[data-theme~=red-sm] .tippy-svg-arrow {
  fill: var(--color-red);
}

.transitions {
  transition: all 0.3s ease-in;
}

.transition-1 {
  transition: all 0.15s ease-in;
}

.transition-2 {
  transition: all 0.3s ease-in;
}

.transition-3 {
  transition: all 0.5s ease-in;
}

.transition-4 {
  transition: all 0.7s ease-in;
}

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

.hide-fade-out {
  opacity: 0 !important;
  transition: opacity 1000ms !important;
}

.show-fade-in {
  transition: opacity 2400ms !important;
}

.hide-fade-in {
  opacity: 0 !important;
}

.char {
  animation: an 1s ease 1 both;
}

@keyframes an {
  from {
    opacity: 0;
    transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
  }
  to {
    opacity: 1;
    transform: perspective(500px) translate3d(0, 0, 0);
  }
}
html {
  font-size: 0.9rem;
}

@media (min-width: 576px) {
  html {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 1rem;
  }
}
.dyslexic {
  font-family: "Open Dyslexic" !important;
}

.text-small {
  font-size: 0.9rem !important;
}

.text-smaller {
  font-size: 0.9em !important;
}

.text-larger {
  font-size: 1.1em !important;
}

.text-dark-green {
  color: #253c3f;
}

.text-blue-plume {
  color: #3d79ee;
}

.text-cyan {
  color: #77c8da;
}

.text-decoration-none {
  text-decoration: none;
  color: unset;
}
.text-decoration-none:hover {
  text-decoration: none;
  color: unset;
}

.line-heigh-0 {
  line-height: 1;
}

.line-heigh-1 {
  line-height: 1.5;
}

.line-heigh-2 {
  line-height: calc(1.5 * 1.25);
}

.line-heigh-3 {
  line-height: calc(1.5 * 1.5);
}

.uppercase {
  text-transform: uppercase;
}

.navbar-padding {
  padding-top: 4.875rem;
}

.bg-light-amber {
  background-color: #ffeed7;
}

.bg-light-red-banner {
  background-color: #ffefef !important;
}

.bg-light-orange-banner {
  background-color: #fff5ef !important;
}

.h-100vh {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.min-h-100vh {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

.dimmed {
  opacity: 0.5;
}

.b-0-r-0 {
  bottom: 0px !important;
  right: 0px !important;
}

.vh-100-minus-navbar {
  height: calc(100vh - 65px);
  height: -o-calc(100vh - 65px); /* opera */
  height: -webkit-calc(100vh - 65px); /* google, safari */
  height: -moz-calc(100vh - 65px); /* firefox */
}

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

.w-100-sb {
  width: calc(100vw - (100vw - 100%));
}

.h-screen {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.v-screen {
  width: 100vw;
}

.max-h-40h {
  max-height: 40vh;
  max-height: calc(var(--vh, 1vh) * 40);
}

.border-secret {
  border: 2px solid #fbce2e !important;
}

@font-face {
  font-family: "Pere castor";
  src: url("https://s3-eu-west-1.amazonaws.com/lifebot/public/Pere-Castor.ttf");
}
.wish-card {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 0.5mm 2mm rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  width: 160mm;
  height: 109mm;
  background: rgb(27, 117, 188);
  font-family: "Pere castor", cursive;
}

.wish-card__recto {
  background-image: url(https://res.cloudinary.com/drqftqpay/image/upload/c_scale,q_auto,w_600/v1669391882/Wish%20cards/christmas_2022/Carte_postale_LPP_verso.jpg);
  background-size: cover;
}

.wish-card__verso {
  background: url(https://res.cloudinary.com/drqftqpay/image/upload/c_scale,q_auto,w_600/v1669391882/Wish%20cards/christmas_2022/Carte_postale_LPP_recto.jpg) no-repeat 50% 50%;
  background-size: cover;
}

/* Helper Classes */
#address {
  position: absolute;
  top: 165px;
  left: 320px;
  height: 65mm;
  width: 250px;
  line-height: 22px;
}

#address p {
  font-size: 1.1rem;
  margin-left: 30px;
  margin-bottom: 0px;
  margin-top: 14px;
}

#address p:first-child {
  margin-top: 50px;
}

#logo {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 30px;
}

#logo img {
  width: 85px;
}

.content {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 250px;
}

.content p {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  color: #262428;
}

.content .signature {
  float: right;
  margin-top: 10px;
}

.student-form {
  margin-bottom: calc(1rem * 1.5);
  display: grid;
  grid-template-columns: 1fr minmax(2rem, auto);
  margin-left: 1rem;
}
.student-form__inputs {
  display: grid;
  grid-template-columns: minmax(12rem, 25%) 1fr;
  align-items: center;
  justify-items: center;
  grid-column-gap: calc(1rem * 1.5);
}
.student-form__inputs .form-group {
  margin: 0;
}
.student-form__controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.student-form__header {
  display: grid;
  grid-template-columns: minmax(12rem, 25%) 1fr;
  grid-column-gap: calc(1rem * 1.5);
  margin-left: 4rem;
  text-align: left;
  justify-items: start;
  align-items: center;
  margin-bottom: 0.5rem;
}
.student-form--vertical {
  display: flex;
}
.student-form--vertical .student-form__inputs {
  display: flex;
  margin-bottom: 2rem;
}

.chapter-section {
  opacity: 0;
  transition: opacity 0.5s ease-in;
  font-size: 1.7rem;
  line-height: 2;
  position: relative;
}
.chapter-section--active {
  opacity: 1;
}
.chapter-section--read .btn, .chapter-section--read .grades .grade, .grades .chapter-section--read .grade, .chapter-section--read .tag-selector + label,
.chapter-section--read .question {
  display: none;
}

.writing-section {
  opacity: 0;
  transition: opacity 0.5s ease-in;
  font-size: 1.7rem;
  line-height: 2;
}
.writing-section .writing {
  background-color: #cdf0ee;
  border: solid 1px #217a79;
  border-radius: 15px;
  color: #373737;
  padding: 0.5rem 1rem;
}
.writing-section--active {
  opacity: 1;
}
.writing-section--read .btn, .writing-section--read .grades .grade, .grades .writing-section--read .grade, .writing-section--read .tag-selector + label,
.writing-section--read .question {
  display: none;
}

.chapter-image {
  width: 50%;
  max-width: 400px;
  float: left;
  margin-right: 1rem;
}

.chapter-content {
  width: 100%;
}
@media (max-width: 991.98px) {
  .chapter-content {
    margin-left: 0;
  }
}
.chapter-content-mobile {
  padding-bottom: 20vh !important;
}
.chapter-content.annotate-image {
  overflow: hidden;
  padding: 0;
  display: flex;
  height: calc(100vh - 9rem);
  min-height: unset;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.chapter-content.annotate-image nav {
  height: 5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100vw - 12rem);
}
.chapter-content.annotate-image .annotate-canvas-container {
  overflow: hidden;
  max-height: calc(100vh - 9rem);
}

.chapter-dialog-message {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.page-wrapper {
  display: flex;
  width: 100%;
}

.form-wrapper-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-wrapper-group img {
  width: 200px;
  height: 250px;
}
.form-wrapper-group input[type=file] {
  display: none;
}

.chapter-section-kid-story {
  font-size: 1.7rem;
  line-height: 2;
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}
.kid-story-pdf {
  page-break-before: always;
  background-color: white;
  min-height: 100vh;
  width: 100vw;
  position: relative;
}
.kid-story-pdf__holes {
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  padding: 15mm 0;
}
.kid-story-pdf__title, .kid-story-pdf__title--white {
  font-size: 23px;
}
.kid-story-pdf__title--white {
  color: #ffffff;
}
.kid-story-pdf__cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #ffffff;
}
.kid-story-pdf__cover__comment {
  font-weight: 400;
  color: #ffffff;
  margin-top: 2rem;
  width: 60%;
  text-align: center;
}
.kid-story-pdf__cover__illustration {
  max-height: 50%;
  width: auto;
}
.kid-story-pdf__cover--top {
  height: 45vh;
  width: 100%;
}
.kid-story-pdf__cover--bottom {
  height: 55vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.kid-story-pdf__cover__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #356771;
  width: 100%;
  padding: 4rem 0;
  color: white;
  flex-grow: 1;
}
.kid-story-pdf__page {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  width: 70%;
  margin: 0 auto;
  page-break-inside: auto;
  background-color: #ffffff;
}
.kid-story-pdf__page__illustration {
  margin: 2rem 0;
  max-height: 60mm;
  width: auto;
}
.kid-story-pdf__page__bird {
  height: 20mm;
  position: absolute;
  right: 0;
  top: 0;
}
.kid-story-pdf__page__title {
  font-size: 46px;
  color: #356771;
  font-weight: 600;
}
.kid-story-pdf__page__chapter {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  color: #356771;
}
.kid-story-pdf__page__contribution {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  color: #356771;
  width: 100%;
}
.kid-story-pdf__footer {
  position: absolute;
  bottom: 10mm;
  right: 10mm;
}
.kid-story-pdf__dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #356771;
}

.pdf__full-page {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}
.pdf__page-break--after {
  page-break-after: always;
  height: 0;
  line-height: 0;
}

.navbar-top-spacer {
  overflow-y: auto;
  padding-top: 4rem;
}

.height-full {
  min-height: calc(var(--vh, 1vh) * 100 - 4rem);
}

.max-height-full-with-navbar {
  height: calc(var(--vh, 1vh) * 100 - 4rem);
  max-height: calc(var(--vh, 1vh) * 100 - 4rem);
}

.max-height-full {
  height: calc(var(--vh, 1vh) * 100);
  max-height: calc(var(--vh, 1vh) * 100);
}

body {
  min-height: 100vh;
}

/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    min-height: -webkit-fill-available;
  }
}
.cards-row {
  position: relative;
}
.cards-row__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  align-items: center;
  height: 4rem;
}
.cards-row__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  overflow: hidden;
  grid-column-gap: 16px;
  max-height: 300px;
  transition: max-height var(--showMoreTransition) ease-in-out;
}
@media (min-width: 992px) {
  .cards-row__cards {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}
.cards-row__cards--expanded {
  max-height: unset;
  transition: max-height var(--showMoreTransition) ease-in-out;
  grid-row-gap: 16px;
}
.cards-row__see-more {
  text-align: center;
  height: 1.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #516365;
  margin: 1rem 0;
}
.cards-row__see-more:hover {
  text-decoration: underline;
}

.footer-seo .footer-seo-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fd7e14;
}
.footer-seo .nav-link {
  margin: 0;
  font-size: 1rem;
  padding: 0.5rem 0rem;
}

.referral-link {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  position: relative;
}
@media (max-width: 767.98px) {
  .referral-link {
    padding: 0.5rem 0;
  }
}

.referral-link--copied {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  background-color: #fa5c5c;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 300ms all ease;
}

.cart-bottom-bar {
  min-height: 10%;
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: white;
  text-align: center;
  border-top: 5px solid #fa5c5c;
  border-bottom: 5px solid #fff;
}

.select-checkbox {
  opacity: 0;
}

.speach_player {
  position: fixed;
  z-index: 10;
  box-shadow: 0px -3px 20px 0px rgba(124, 124, 124, 0.2588235294);
  background: #ecf2fd;
  bottom: 0;
  right: 2rem;
  padding: 1rem;
  transform-origin: bottom right;
  transition: max-width 0.3s ease-in-out;
  width: 1000px;
  max-width: 440px;
}
@media (max-width: 767.98px) {
  .speach_player {
    bottom: 0;
    left: 0;
    right: unset;
    height: 200px;
    max-height: 110px;
    width: 100vw;
    max-width: unset;
  }
}
.speach_player__content {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.speach_player__content > *:not(:last-child) {
  margin-right: 1.5rem;
}
@media (max-width: 767.98px) {
  .speach_player__content > *:not(:last-child) {
    margin-right: unset;
  }
}
@media (max-width: 767.98px) {
  .speach_player__content {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    grid-template-rows: 1fr 1rem;
    justify-items: center;
    grid-gap: 1rem;
  }
}
.speach_player__chapter {
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 400;
  color: #495057;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .speach_player__chapter {
    grid-row: 2;
    grid-column: 1/span 3;
    text-align: center;
  }
}
.speach_player__play_icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #fd7e14;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: sticky;
  right: 5rem;
}
.speach_player__play_icon:hover {
  background: #e28956;
  cursor: pointer;
}
.speach_player__time_icons {
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .speach_player__time_icons--right {
    grid-column: 3;
  }
}
.speach_player__time_icons--arrow {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out;
}
.speach_player__time_icons p {
  margin: 0;
  font-size: 13px;
  padding-bottom: 3px;
  font-weight: 200;
  padding-right: 2px;
}
.speach_player__time_icons:active .speach_player__time_icons--arrow.back-rotation {
  transform: rotate(-45deg);
}
.speach_player__time_icons:active .speach_player__time_icons--arrow.forward-rotation {
  transform: rotate(45deg);
}
.speach_player__time_icons, .speach_player__chapter {
  transition: transform 0.3s ease-in-out 0.3s;
}
.speach_player__extendIcon {
  cursor: pointer;
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease-in;
}
@media (max-width: 767.98px) {
  .speach_player__extendIcon {
    background: #cfdefb;
    bottom: 1rem;
    right: 1rem;
    max-width: unset;
    padding: 0;
    filter: drop-shadow(0px 3px 20px rgba(124, 124, 124, 0.26));
    border-radius: 50%;
    height: 48px;
    width: 48px;
    padding: 12px;
    transform: translateY(-110px) rotate(90deg);
  }
}
.speach_player.short {
  max-width: 120px;
  transition: max-width 0.3s ease-in-out 0.3s;
}
@media (max-width: 767.98px) {
  .speach_player.short {
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    max-width: unset;
    padding: 0;
  }
}
.speach_player.short .speach_player__time_icons, .speach_player.short .speach_player__chapter {
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  .speach_player.short .speach_player__play_icon {
    position: absolute;
    bottom: 1rem;
    right: 5rem;
  }
}
.speach_player.short .speach_player__extendIcon {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in;
}
@media (max-width: 767.98px) {
  .speach_player.short .speach_player__extendIcon {
    transform: translateY(0) rotate(-90deg);
  }
}

.text_to_speach {
  display: inline-block;
  margin-right: 1rem;
  fill: #999999;
}
.text_to_speach--on {
  fill: #fd7e14;
}
.text_to_speach + * {
  display: inline;
}

.bg-writing {
  background-color: #eff1f5;
}

.writing-border {
  border-radius: 26px;
  border: 1px solid #cccccc;
}

.send-writing-icon {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  position: absolute;
  bottom: 5px;
  right: 10px;
  background-color: #ff737b;
}

p.hint-story {
  font-size: 1.2rem;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1080px) {
  p.hint-story {
    width: calc(100% - 320px);
  }
}
@media only screen and (max-width: 760px) {
  p.hint-story {
    width: calc(100% - 230px);
  }
}
@media only screen and (max-width: 576px) {
  p.hint-story {
    width: 100%;
  }
}

.text-highlighted {
  color: #6bbdc8;
}

.card-story-overview {
  border: none;
  background-color: #fff8f2;
}

.correction_textarea {
  padding: 1rem;
}

.container-relative {
  position: relative;
}

.button-absolute .btn, .button-absolute .grades .grade, .grades .button-absolute .grade, .button-absolute .tag-selector + label {
  height: 2.5rem;
  width: 5rem;
  justify-content: center;
  display: flex;
  padding: 0 1rem;
}
.button-absolute img,
.button-absolute .spinner {
  height: 2rem;
}
.button-absolute .todo .send {
  display: block;
}
.button-absolute .done .check {
  display: block;
}
.button-absolute .saving .spinner {
  display: flex;
  align-items: center;
}
.button-absolute .check,
.button-absolute .spinner,
.button-absolute .send {
  display: none;
}

.gift-card-title {
  font-weight: 400;
  color: #253c3f;
}

.card-form-gift {
  max-height: 24rem;
}

.image-card-gift {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 8rem;
}

#top-nav {
  height: 70px;
}

#btn-back {
  bottom: -25px;
  left: 0px;
  z-index: 1050;
}

#tatamis-secrets-green-band {
  bottom: 0;
  z-index: -1;
}

#tatamis-secrets-center-container {
  min-height: 100vh;
}

#sign-up-text {
  color: #2a6770;
}

@media screen and (max-width: 992px) {
  #tatamis-secrets-green-character {
    left: 40px;
    bottom: 5px;
    z-index: 1051;
    height: 70px;
  }
}
@media screen and (min-width: 993px) {
  #tatamis-secrets-green-character {
    right: 80px;
    bottom: 30px;
    z-index: 1051;
  }
}
.books-container {
  color: #253c3f;
}

.salmon-container {
  background-color: #fff7f2;
  z-index: 0;
}

.light-yellow-container {
  background-color: #fffadf;
  position: relative;
  z-index: 0;
}

.btn-books-absolute {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%);
  max-width: 300px;
}

.container-light-gray {
  background-color: #f8f9fa;
}

.badge-pill-books {
  position: absolute;
  z-index: 1000;
  top: 10px;
  left: 10px;
}

#pricing p {
  font-size: 2rem;
}

#title-card-gift h3, #title-card-gift .rounded-card .subcription-card-title, .rounded-card #title-card-gift .subcription-card-title {
  font-size: 1.5rem;
}

.faq-column img {
  max-width: 100%;
}

.seo-page h1 {
  font-size: 2rem;
  color: var(--color-orange);
  text-align: center;
}
.seo-page h2 {
  font-size: 1.5rem;
  color: var(--color-dark);
  text-align: center;
}

.card-sign-in-choice {
  max-width: 28rem;
  border: none;
}
.card-sign-in-choice p {
  font-weight: 500;
}

.sign-in-choice-item {
  display: flex;
  align-items: center;
  border: 2px solid #ced4da;
  border-radius: 5px;
  color: #333333;
  text-decoration: none;
}
.sign-in-choice-item:hover {
  color: #516365;
  text-decoration: none;
}

.connexion-link a {
  color: #7ec5d0;
}
.connexion-link a:hover {
  color: rgb(69.9289772727, 171.7897727273, 187.5710227273);
  text-decoration: none;
}

.stories--all .swiper-slide {
  height: unset;
}
.stories--finished.tab-pane {
  min-height: calc(100vh - 4rem * 2);
}

.team-text h5 {
  font-size: 25px;
  font-weight: bold;
}
.team-text p {
  font-size: 16px;
  line-height: 33px;
}

.img-team {
  max-width: 50%;
}

.welcome-space {
  --max-width: 1300px;
  --welcome-banner-height: 130px;
  --showMoreTransition: 0.4s;
  padding: 3vh 1rem 5vh 1rem;
}
.welcome-space__pageTitle {
  max-width: var(--max-width);
  margin: 0 auto 3vh;
}
.welcome-space__layout {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .welcome-space__layout {
    display: block;
  }
}
.welcome-space__left-panel {
  width: 70%;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .welcome-space__left-panel {
    width: 100%;
  }
}
.welcome-space__left-panel > *:not(:first-child) {
  margin-top: 2rem;
}
.welcome-space__banner {
  grid-column: 1;
  grid-row: 1;
  display: flex;
}
@media (max-width: 575.98px) {
  .welcome-space__banner {
    flex-direction: column;
  }
}
.welcome-space__banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  flex-grow: 1;
  padding: 1rem;
}
@media (max-width: 575.98px) {
  .welcome-space__banner__content {
    flex-direction: column;
  }
}
.welcome-space__banner__text {
  margin-bottom: 0.5rem;
}
.welcome-space__banner__cta {
  white-space: nowrap;
  word-wrap: break-word;
}
.welcome-space__classes {
  grid-row: 2;
  grid-column: 1;
}
.welcome-space__ressources {
  grid-row: 3;
  grid-column: 1;
}
.welcome-space__sideBar {
  width: 30%;
  margin-left: 3%;
  position: sticky;
  top: 5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.25rem;
  height: fit-content;
  min-height: 100%;
}
@media (max-width: 991.98px) {
  .welcome-space__sideBar {
    width: 100%;
    flex-direction: initial;
    height: fit-content;
    min-height: unset;
    margin-left: 0;
    margin-top: 2rem;
    justify-content: space-around;
  }
}
@media (max-width: 575.98px) {
  .welcome-space__sideBar {
    flex-direction: column;
  }
}
.welcome-space__aside:not(:last-child) {
  margin-bottom: 3vh;
}
@media (max-width: 991.98px) {
  .welcome-space__aside:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .welcome-space__aside:not(:last-child) {
    margin-bottom: 3vh;
  }
}
@media (max-width: 991.98px) {
  .welcome-space__aside {
    flex: 0 0 30%;
  }
}
.welcome-space__aside__title {
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  hyphens: auto;
}
.welcome-space__aside__title span {
  padding-left: 1rem;
}
@media (max-width: 991.98px) {
  .welcome-space__aside__title span {
    padding-left: 0.5rem;
  }
}
.welcome-space__aside__title img {
  width: 40px;
}
.welcome-space__aside__description {
  padding-bottom: 2vh;
  margin: 0;
}
.welcome-space__aside button {
  width: 100%;
}
@media (max-width: 575.98px) {
  .welcome-space__aside button {
    width: unset;
  }
}

.writer-box__background {
  background: #ffffff;
  box-shadow: 0px 2px 20px #ebf0f1 !important;
  max-width: 1023px;
  margin: 2rem auto;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767.98px) {
  .writer-box__background {
    width: 96%;
  }
}
.writer-box__robinson {
  position: absolute;
  top: -1rem;
  left: -5rem;
}
@media (max-width: 991.98px) {
  .writer-box__robinson {
    left: 1rem;
  }
}
@media (max-width: 767.98px) {
  .writer-box__robinson {
    display: none;
  }
}
.writer-box__box {
  display: flex;
  padding: 3rem 4rem;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .writer-box__box {
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 1rem;
  }
}
.writer-box__box-img {
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .writer-box__box-img {
    max-width: 300px;
  }
}
.writer-box__cta {
  padding-bottom: 2rem;
}
.writer-box__meta {
  text-align: left;
  max-width: 60%;
}
@media (max-width: 991.98px) {
  .writer-box__meta {
    max-width: unset;
  }
  .writer-box__meta .shopify-buy-frame--product {
    margin: 0 auto;
  }
}
.writer-box__meta--title {
  font-size: 1.7rem;
}
@media (max-width: 1200px) {
  .writer-box__meta--title {
    font-size: calc(1.34rem + 0.48vw);
  }
}
.writer-box__meta--title {
  font-weight: 600;
  line-height: 36px;
  color: #356771;
}
@media (max-width: 991.98px) {
  .writer-box__meta--title {
    text-align: center;
  }
}
.writer-box__meta--price {
  font-size: 2.4rem;
}
@media (max-width: 1200px) {
  .writer-box__meta--price {
    font-size: calc(1.48rem + 1.2266666667vw);
  }
}
.writer-box__meta--price {
  font-weight: 600;
  line-height: 54px;
  color: #356771;
  padding-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .writer-box__meta--price {
    text-align: center;
  }
}
.writer-box__meta--description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 27px;
  color: #495057;
}
@media (max-width: 991.98px) {
  .writer-box__meta--description {
    padding: 0 2rem;
  }
}
@media (max-width: 767.98px) {
  .writer-box__meta--description {
    padding: 0;
  }
}
.writer-box__meta--description b {
  font-weight: 600;
}
.writer-box__meta--description br {
  padding-top: 4px;
}
.writer-box__features {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .writer-box__features {
    flex-direction: column-reverse;
    align-items: center;
    padding: 1rem;
  }
}
.writer-box__bullets {
  max-width: 60%;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .writer-box__bullets {
    max-width: unset;
    padding-left: 0;
  }
}
.writer-box__bullets .bullet__text {
  font-size: 1.2rem;
}
.writer-box__bullets .bullet__text::first-letter {
  text-transform: capitalize;
}
.writer-box__more {
  display: block;
  margin: 0 auto;
  padding-bottom: 2rem;
  object-fit: cover;
  max-width: 95%;
}

.tatamis-secret .sticker-1 {
  position: absolute;
  bottom: 5rem;
  height: 7vh;
}
@screen md {
  .tatamis-secret .sticker-1 {
    bottom: 5rem;
    height: 15vh;
  }
}
.tatamis-secret .sticker-2 {
  position: absolute;
  bottom: 0;
  height: 8vh;
  right: 40%;
}
@screen md {
  .tatamis-secret .sticker-2 {
    height: 20vh;
    right: 50%;
  }
}
.tatamis-secret .sticker-3 {
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  height: 13vh;
}
@screen md {
  .tatamis-secret .sticker-3 {
    right: 2rem;
    bottom: 2rem;
    height: 20vh;
  }
}

#secret-tatami-top-banner {
  min-height: 45vh;
}
@screen md {
  #secret-tatami-top-banner {
    min-height: 50vh;
  }
}

#tatami-details-background {
  min-height: 55vh;
}
@screen md {
  #tatami-details-background {
    min-height: 50vh;
  }
}

.dojos-universe-bg-main__blue {
  background-color: #77a1f3;
  fill: #77a1f3;
}
.dojos-universe-bg-main__green {
  background-color: #6bddac;
  fill: #6bddac;
}
.dojos-universe-bg-main__orange {
  background-color: #fcb78f;
  fill: #fcb78f;
}
.dojos-universe-bg-main__purple {
  background-color: #e7d1f9;
  fill: #e7d1f9;
}
.dojos-universe-bg-main__red {
  background-color: #fc8d8d;
  fill: #fc8d8d;
}
.dojos-universe-bg-main__yellow {
  background-color: #f8e47c;
  fill: #f8e47c;
}

.dojos-universe-bg-light__blue {
  background-color: #ecf2fd;
  fill: #ecf2fd;
}
.dojos-universe-bg-light__green {
  background-color: #eafaf3;
  fill: #eafaf3;
}
.dojos-universe-bg-light__orange {
  background-color: #fff5ef;
  fill: #fff5ef;
}
.dojos-universe-bg-light__purple {
  background-color: #f6e7fe;
  fill: #f6e7fe;
}
.dojos-universe-bg-light__red {
  background-color: #ffefef;
  fill: #ffefef;
}
.dojos-universe-bg-light__yellow {
  background-color: #fefbec;
  fill: #fefbec;
}
