@charset "UTF-8";
/*=========================
=          Main           =
=========================*/
/*=========================
=          Core           =
=========================*/
/*=================================
=            Helpers              =
=================================*/
/*=================================
=        SASS map helpers         =
=================================*/
/*======================================
=                Math                  =
======================================*/
/**
 * Remove units from the given number
 * @param  {number} $number The number with units
 * @return {number}
 */
/**
 * Division helper
 * @param  {number} $den    Denominator
 * @param  {number} $num    Numerator
 * @return {number}
 */
/**
 * Calculate vh percentage from number
 * @param  {number} $number The percentage number
 * @return {number} in vh
 */
/*=================================
=           Shortcuts             =
=================================*/
/**
 * Shortcut to avoid having to type a css variable and its default with the same name everytime
 *
 * @param  {string} $var     The name of the css variable
 * @param  {string} $default The default value to use if the variable is not set
 * @return {string}          A css variable with a default var() of the same name
 *
 * @example 
 *     font-size: dvar(--heading-font-size); ↴
 *     font-size: var(--heading-font-size, var(--heading-font-size-default));
 *
 * @example 
 *     font-size: dvar(--button-color, red); ↴
 *     font-size: var(--button-color, var(--button-color-default, red));
 */
/**
 * Shortcut for multiplications based on a factor and a variable.
 * 
 * @param  {string} $factor Multiplier to adjust the value (default: 1)
 * @param  {string} $var    Customizable variable representing the base value (default: var(--spacer))
 * @return {string}         The multiplied value using the formula: calc($var * $factor)
 * 
 * @example
 *      margin: multiply(2); // Calculates 2 times the default value
 *      padding: multiply(0.5, var(--custom)); // Calculates half of a custom variable
 */
/**
 * A function helper to avoid having to type `map-get($directories, ...)` to output a given font-size
 * @param  {string} $dir The name of the directory
 * @return {string}      The corresponding directory path
 */
/*=====================================
=            Accessibility            =
=====================================*/
/**
 * A class to hide labels and stuff
 * for accessibility
 * @author Facebook Accessibility Team
 * @source https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
/*=======================================
=             Breakpoints               =
=======================================*/
/*=======================================
=          Custom breakpoints           =
=======================================*/
/*======================================
=             Containers               =
======================================*/
/**
 * Container(s) styles generator
 *
 * @param  {string} $variant     What size variant to generate.
 *                               Use 'all' to generate default base styles and all other keys as modifier classes
 * @return {void}
 */
/*=======================================
=                 Grid                  =
=======================================*/
/*=================================
=         Heading styles          =
=================================*/
/**
 * Print typographic styles of an element from a map
 * @param  {string}   $t            The name of the element
 * @param  {sass-map} $titles       The map to loop through
 * @return {void}
 *
 * @format {sass-map}
 *      $titles: (
 *          shared: (
 *              <property>: <value>,
 *              ...
 *          ),
 *          <element>: (
 *              font-size: (
 *                  <breakpoint>: <font-size-w/o-unit> <fluid-or-not>,
 *                  ...
 *              )
 *          ),
 *          <element>: (
 *              font-size: <size-w/o-unit>,
 *              <property>: <value>,
 *              ...
 *          )
 *      )
 */
/**
 * Responsive typography
 * @param  {sass-map} $sizes      The map containing the breakpoint, font-size and if fluid or not.
 *                                (For sass map format, view mixin h() documentation above)
 * @return {void}
 */
/**
 * Generate calculation for a responsive size based on viewport width
 * All sizes must be in pixels
 * @author Based on Mike Riethmuller http://codepen.io/MadeByMike/pen/YPJJYv
 * @param  {integer} $min-size        The minimum size for the element
 * @param  {integer} $max-size        The maximum size for the element
 * @param  {integer} $min-width       The breakpoint minimum to activate the responsive typography
 * @param  {integer} $max-width       The breakpoint maximum to activate th responsive typography
 * @return {string}  $ratio           The calculation
 */
/*=======================================
=              Reset list               =
=======================================*/
/*=================================
=           Shorthands            =
=================================*/
/*======================================
=            Viewport width            =
======================================*/
/*======================================
=              Overflow                =
======================================*/
/*======================================
=                Stack                 =
======================================*/
/**
 * Align and space elements in a container
 * @param  {string} $orientation     Orientation. Values: 'horizontal' or 'vertical'
 * @param  {string} $alignX          Alignment of each element on X axis. Values: 'left', 'right', 'center' or adaptative according to orientation.
 * @param  {string} $alignY          Alignment of each element on Y axis. Values: 'top', 'bottom', 'center' or adaptative according to orientation.
 * @param  {number} $gap             Width of the gap between elements.
 * @param  {boolean} $wrap           If element can go onto multiple lines. Values: true or false
 * @param  {string} $var-prefix      If needed, change prefix of all var(). Default: 'stack'
 * @return {void}
 */
/*=================================
=         Size variations         =
=================================*/
/**
 * Generate variants of a size in a root css variables format
 * @param  {string}  $name           The name of the variable
 * @param  {number}  $size           The size to decline
 * @param  {boolean} $advanced       If true, generate more precise variants
 * @param  {boolean} $minus          If true, generate negative variants
 * @return {void}
 */
/**
   * Minimum aspect-ratio hack
   * @param {number} $min
   */
/**
   * Add inner shadows on element to make overflow more obvious.
   * 
   * @param {string} $color         Color of shadow
   * @param {string} $orientation   Position of gradients in parent top/bottom or left/right. Values: vertical | horizontal
   * @param {string} $size          Size of the shadow. Applied on width or height according to orientation.
   * 
   */
/*=================================
=           Font-faces            =
=================================*/
/*=================================
=         Selected Text           =
=================================*/
/*=================================
=              Misc               =
=================================*/
/*=============================
=          Visuals            =
=============================*/
/**
   * Mixin printing a linear-gradient
   * as well as a plain color fallback
   * and the `-webkit-` prefixed declaration
   * @param {String | List | Angle} $direction - Linear gradient direction
   * @param {Arglist} $color-stops - List of color-stops composing the gradient
   */
/*=========================================
=            Outline debugger             =
=========================================*/
/*==============================
=            Easing            =
==============================*/
/*============================
=    Queso mixins' config     =
============================*/
/*=======================================
=         Document Typography           =
=======================================*/
/*=================================
=             Spacers             =
=================================*/
/*=================================
=         Border Radiuses         =
=================================*/
/*=================================
=            Z-indexes            =
=================================*/
/*=================================
=             Shadows             =
=================================*/
/*=================================
=           Font faces            =
=================================*/
/*=================================
=          Base values            =
=================================*/
/*=================================
=            Headings             =
=================================*/
/*=================================
=        Rich text editor         =
=================================*/
/*=================================
=         Typography- styles          =
=================================*/
/*=========================
=         Global          =
=========================*/
/*====================================
=               Colors               =
====================================*/
body .ck.ck-editor__main > .ck-editor__editable {
  --color-dark: #333347;
  --color-dark-30: rgba(51, 51, 71, 0.3019607843);
  --color-light: #ffffff;
  --color-blue-500: #84B0E8;
  --color-blue-400: #9DC0ED;
  --color-blue-300: #B5D0F1;
  --color-blue-200: #CEDFF6;
  --color-blue-100: #E6EFFA;
  --color-gray-500: #6B6A75;
  --color-gray-400: #A3A1A4;
  --color-gray-300: #DBD8D3;
  --color-gray-200: #F7F3EB;
  --color-gray-100: #FBF9F5;
  --color-text-faded: #526F9C;
  --color-warning: #fcc582;
  --color-error: #f7a6a6;
}

/*====================================
=               Layers               =
====================================*/
body .ck.ck-editor__main > .ck-editor__editable {
  --z-default: 1;
  --z-loader: 500;
  --z-modal: 300;
  --z-header: 200;
  --z-dropdown: 100;
  --z-limbo: -100;
}

/*=================================
=         Border Radiuses         =
=================================*/
body .ck.ck-editor__main > .ck-editor__editable {
  --radius: 4rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
}

/*==============================
=            Spacer            =
==============================*/
body .ck.ck-editor__main > .ck-editor__editable {
  --spacer: 4rem;
  --spacer-xs: 0.5rem;
  --spacer-sm: 1rem;
  --spacer-md: 2rem;
  --spacer-lg: 4rem;
  --spacer-xl: 8rem;
}

/*=================================
=           Typography            =
=================================*/
body .ck.ck-editor__main > .ck-editor__editable {
  --ff-heading: Aeonik, sans-serif;
  --ff-paragraph: Aeonik, sans-serif;
  --fs-sm: 1.4rem;
  --fs-reg: 1.6rem;
  --fs-md: 1.8rem;
  --fs-lg: 2.2rem;
  --fs-xl: 2.6rem;
  --fs-2xl: 3rem;
  --lh-3xs: 0.9;
  --lh-2xs: 1.05;
  --lh-xs: 1.1;
  --lh-sm: 1.2;
  --lh-md: 1.3;
  --lh-lg: 1.4;
}

@font-face {
  font-family: "Aeonik";
  src: url("/static/fonts/Aeonik-Regular.woff2") format("woff2"), url("/static/fonts/Aeonik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("/static/fonts/Aeonik-Regular.woff2") format("woff2"), url("/static/fonts/Aeonik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.t-h1-display {
  font-size: 5.2rem;
  line-height: 0.9;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  .t-h1-display {
    font-size: calc(52px + (104 - 52) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  .t-h1-display {
    font-size: 10.4rem;
  }
}

.t-h1 {
  font-size: 5.2rem;
  line-height: 1;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  .t-h1 {
    font-size: calc(52px + (74 - 52) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  .t-h1 {
    font-size: 7.4rem;
  }
}

.t-h2 {
  font-size: 3rem;
  line-height: 1;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  .t-h2 {
    font-size: calc(30px + (52 - 30) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  .t-h2 {
    font-size: 5.2rem;
  }
}

.t-h3 {
  font-size: 2.6rem;
  line-height: 1.1;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  .t-h3 {
    font-size: calc(26px + (37 - 26) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  .t-h3 {
    font-size: 3.7rem;
  }
}

.t-h4 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  .t-h4 {
    font-size: calc(18px + (26 - 18) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  .t-h4 {
    font-size: 2.6rem;
  }
}

.t-h5 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: var(--ff-heading);
  font-weight: normal;
}

.t-p1 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: var(--ff-paragraph);
  font-weight: normal;
}
@media (min-width: 1024px) {
  .t-p1 {
    font-size: 1.8rem;
  }
}

.t-c1 {
  font-size: 1.4rem;
  line-height: 1.2;
  font-family: var(--ff-paragraph);
  font-weight: normal;
}

.t-c2 {
  font-size: 1.2rem;
  line-height: 1;
  font-family: var(--ff-paragraph);
  font-weight: normal;
}

/*=================================
=        Rich text editor         =
=================================*/
body .ck.ck-editor__main > .ck-editor__editable {
  --rte-gap: calc(var(--lh-lg) * 1em);
  --rte-gap-half: calc(var(--rte-gap) / 2);
  --rte-gap-third: calc(var(--rte-gap) / 3);
  --rte-gap-2X: calc(var(--rte-gap) * 2);
  --rte-gap-4X: calc(var(--rte-gap) * 4);
}

body .ck.ck-editor__main > .ck-editor__editable {
  max-width: var(--rte-width, 91rem);
}
body .ck.ck-editor__main > .ck-editor__editable p + p {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable p + ul {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable p + ol {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable p + blockquote {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ul + p {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ul + ul {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ul + ol {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ul + blockquote {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ol + p {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ol + ul {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ol + ol {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable ol + blockquote {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable blockquote + p {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable blockquote + ul {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable blockquote + ol {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable blockquote + blockquote {
  margin-top: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable a:not(.c-button-base) {
  color: var(--color-dark);
  text-decoration: underline;
}
body .ck.ck-editor__main > .ck-editor__editable a:not(.c-button-base)[target=_blank]:after {
  content: " ↗";
  vertical-align: bottom;
}
body .ck.ck-editor__main > .ck-editor__editable a:not(.c-button-base):hover {
  color: var(--color-grey);
}
body .ck.ck-editor__main > .ck-editor__editable a.c-button-base {
  display: var(--btn-display, flex);
  align-items: var(--btn-align, center);
  justify-content: var(--btn-justify, center);
  flex-direction: var(--btn-direction, row);
  column-gap: var(--btn-col-gap, var(--btn-gap, var(--btn-gap, var(--btn-gap-default))));
  row-gap: var(--btn-row-gap, var(--btn-gap, var(--btn-gap, var(--btn-gap-default))));
  flex-wrap: var(--btn-wrap, wrap);
  font-size: 1.4rem;
  line-height: 1.2;
  font-family: var(--ff-paragraph);
  font-weight: normal;
  --btn-display: inline-flex;
  color: var(--color-dark);
  white-space: nowrap;
  padding: var(--spacer-md) 1.5605rem;
  background: var(--color-blue-500);
  border-radius: var(--radius-lg);
  border: 0.1rem solid transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
  margin-right: auto;
  line-height: 0.6;
}
body .ck.ck-editor__main > .ck-editor__editable a.c-button-base:hover {
  color: var(--color-light, var(--color-light-default));
  background: var(--color-dark, var(--color-dark-default));
}
body .ck.ck-editor__main > .ck-editor__editable blockquote {
  font-style: italic;
  padding-left: var(--rte-gap, 1em);
  border-left: var(--rte-gap-third, 0.5em) solid var(--color-grey, lightgrey);
}
body .ck.ck-editor__main > .ck-editor__editable hr {
  width: 100%;
  height: 1px;
  margin: var(--rte-gap-2X, 2em) auto;
  background-color: var(--color-grey, lightgrey);
  border: none;
}
body .ck.ck-editor__main > .ck-editor__editable h1,
body .ck.ck-editor__main > .ck-editor__editable h2,
body .ck.ck-editor__main > .ck-editor__editable h3,
body .ck.ck-editor__main > .ck-editor__editable h4,
body .ck.ck-editor__main > .ck-editor__editable h5,
body .ck.ck-editor__main > .ck-editor__editable h6 {
  margin-top: var(--rte-gap, 1em);
  margin-bottom: var(--rte-gap-half, 1rem);
}
body .ck.ck-editor__main > .ck-editor__editable h1-display {
  font-size: 5.2rem;
  line-height: 0.9;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  body .ck.ck-editor__main > .ck-editor__editable h1-display {
    font-size: calc(52px + (104 - 52) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  body .ck.ck-editor__main > .ck-editor__editable h1-display {
    font-size: 10.4rem;
  }
}
body .ck.ck-editor__main > .ck-editor__editable h1 {
  font-size: 5.2rem;
  line-height: 1;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  body .ck.ck-editor__main > .ck-editor__editable h1 {
    font-size: calc(52px + (74 - 52) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  body .ck.ck-editor__main > .ck-editor__editable h1 {
    font-size: 7.4rem;
  }
}
body .ck.ck-editor__main > .ck-editor__editable h2 {
  font-size: 3rem;
  line-height: 1;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  body .ck.ck-editor__main > .ck-editor__editable h2 {
    font-size: calc(30px + (52 - 30) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  body .ck.ck-editor__main > .ck-editor__editable h2 {
    font-size: 5.2rem;
  }
}
body .ck.ck-editor__main > .ck-editor__editable h3 {
  font-size: 2.6rem;
  line-height: 1.1;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  body .ck.ck-editor__main > .ck-editor__editable h3 {
    font-size: calc(26px + (37 - 26) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  body .ck.ck-editor__main > .ck-editor__editable h3 {
    font-size: 3.7rem;
  }
}
body .ck.ck-editor__main > .ck-editor__editable h4 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  body .ck.ck-editor__main > .ck-editor__editable h4 {
    font-size: calc(18px + (26 - 18) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  body .ck.ck-editor__main > .ck-editor__editable h4 {
    font-size: 2.6rem;
  }
}
body .ck.ck-editor__main > .ck-editor__editable h5 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: var(--ff-heading);
  font-weight: normal;
}
body .ck.ck-editor__main > .ck-editor__editable h6 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: normal;
}
body .ck.ck-editor__main > .ck-editor__editable p.large {
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: var(--ff-heading);
  font-weight: normal;
}
@media (min-width: 420px) {
  body .ck.ck-editor__main > .ck-editor__editable p.large {
    font-size: calc(18px + (26 - 18) * (100vw - 420px) / (1200 - 420));
  }
}
@media (min-width: 1200px) {
  body .ck.ck-editor__main > .ck-editor__editable p.large {
    font-size: 2.6rem;
  }
}
body .ck.ck-editor__main > .ck-editor__editable ul,
body .ck.ck-editor__main > .ck-editor__editable ol {
  list-style: none;
}
body .ck.ck-editor__main > .ck-editor__editable ul li,
body .ck.ck-editor__main > .ck-editor__editable ol li {
  padding-left: var(--rte-gap);
  position: relative;
}
body .ck.ck-editor__main > .ck-editor__editable ul li:not(:first-child),
body .ck.ck-editor__main > .ck-editor__editable ol li:not(:first-child) {
  margin-top: var(--rte-gap-half);
}
body .ck.ck-editor__main > .ck-editor__editable ul ul,
body .ck.ck-editor__main > .ck-editor__editable ul ol,
body .ck.ck-editor__main > .ck-editor__editable ol ul,
body .ck.ck-editor__main > .ck-editor__editable ol ol {
  margin-top: var(--rte-gap-half);
  margin-bottom: 0;
}
body .ck.ck-editor__main > .ck-editor__editable ul > li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
}
body .ck.ck-editor__main > .ck-editor__editable ul.list-icon > li {
  padding-left: 3rem;
}
body .ck.ck-editor__main > .ck-editor__editable ul.list-icon > li:before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolygon points='16.5 9.4 10.6 9.4 10.6 3.5 9.4 3.5 9.4 9.4 3.5 9.4 3.5 10.6 9.4 10.6 9.4 16.5 10.6 16.5 10.6 10.6 16.5 10.6 16.5 9.4'/%3E%3C/svg%3E");
  position: absolute;
  top: 0.1rem;
  left: 0;
}
body .ck.ck-editor__main > .ck-editor__editable ol {
  counter-reset: ol;
}
body .ck.ck-editor__main > .ck-editor__editable ol > li:before {
  counter-increment: ol;
  content: counter(ol) ".";
  position: absolute;
  top: 0;
  left: 0;
}
body .ck.ck-editor__main > .ck-editor__editable figure {
  margin-top: var(--rte-gap, 1em);
  margin-bottom: var(--rte-gap, 1em);
}
body .ck.ck-editor__main > .ck-editor__editable figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
body .ck.ck-editor__main > .ck-editor__editable figure iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
body .ck.ck-editor__main > .ck-editor__editable figure figcaption,
body .ck.ck-editor__main > .ck-editor__editable figure caption {
  display: block;
  font-size: var(--fs-sm);
  font-style: italic;
  margin-top: 0.5em;
}
body .ck.ck-editor__main > .ck-editor__editable > *:first-child {
  margin-top: 0;
}
body .ck.ck-editor__main > .ck-editor__editable > *:last-child {
  margin-bottom: 0;
}

body .ck.ck-editor__main > .ck-editor__editable {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing: antialiased;
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: var(--ff-paragraph);
  font-weight: normal;
  color: var(--color-dark);
  font-size: 16px !important;
  background-color: var(--color-gray-200);
}
@media (min-width: 1024px) {
  body .ck.ck-editor__main > .ck-editor__editable {
    font-size: 1.8rem;
  }
}
body .ck.ck-editor__main > .ck-editor__editable ul,
body .ck.ck-editor__main > .ck-editor__editable ol {
  padding: 0 !important;
}
body .ck.ck-editor__main > .ck-editor__editable ul li,
body .ck.ck-editor__main > .ck-editor__editable ol li {
  list-style-type: none;
}
body .ck.ck-editor__main > .ck-editor__editable blockquote {
  border: none !important;
}
body .ck.ck-editor__main > .ck-editor__editable hr {
  margin: 90px auto !important;
}
body .ck.ck-editor__main > .ck-editor__editable h2 {
  font-size: 52px;
}
body .ck.ck-editor__main > .ck-editor__editable h3 {
  font-size: 37px;
}
body .ck.ck-editor__main > .ck-editor__editable h4 {
  font-size: 26px;
}
body .ck.ck-editor__main > .ck-editor__editable h5 {
  font-size: 16px;
}
body .ck.ck-editor__main > .ck-editor__editable p,
body .ck.ck-editor__main > .ck-editor__editable ul {
  font-size: 18px;
}
body .ck.ck-editor__main > .ck-editor__editable p.large,
body .ck.ck-editor__main > .ck-editor__editable ul.large {
  font-size: 26px;
}
body .ck.ck-editor__main > .ck-editor__editable a.c-button-base {
  font-size: 14px;
  padding: 20px 15px;
  border-radius: 20px;
}
body .ck.ck-editor__main > .ck-editor__editable a:not(.c-button-base) {
  text-decoration: underline;
}
body .ck.ck-editor__main > .ck-editor__editable h1,
body .ck.ck-editor__main > .ck-editor__editable h2,
body .ck.ck-editor__main > .ck-editor__editable h3,
body .ck.ck-editor__main > .ck-editor__editable h4,
body .ck.ck-editor__main > .ck-editor__editable h5,
body .ck.ck-editor__main > .ck-editor__editable h6 {
  color: var(--color-dark);
  text-transform: none;
}
body .ck.ck-editor__main > .ck-editor__editable ul.list-icon li:before {
  width: 1rem;
  height: 1rem;
}
