@charset "UTF-8";
/* ----------------------------- */
/* ==Reset (base)                */
/* ----------------------------- */
/*
 * 1. Switch to border-box model for all elements
 * 2. Avoid min-width: auto on flex and grid items
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  /* 1 */
  min-width: 0;
  /* 2 */
}

/*
 * 1. Remove the grey highlight on links in iOS 
 * 2. Prevent orientation font changes in iOS
 * 3. Breaks words to prevent overflow in all browsers
 */
html {
  font-size: 100%;
  -webkit-tap-highlight-color: transparent;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  overflow-wrap: break-word;
  /* 3 */
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  line-height: 1.5;
  background-color: #FFFFFF;
  color: #212529;
}

/*
 * Headings
 */
h1,
.h1-like,
h2,
.h2-like,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like {
  color: #212529;
}

/*
 * Links
 */
a {
  color: #6c757d;
  text-decoration: underline;
}

a:focus,
a:hover,
a:active {
  color: #212529;
  text-decoration: underline;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/*
 * Vertical rythm
 */
h1,
.h1-like,
h2,
.h2-like {
  margin-top: 0;
  margin-bottom: 1rem;
}

p,
address,
ol,
ul,
dl,
blockquote,
pre,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like,
dt,
dd {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/*
 * Nested elements
 */
ol ol,
ol ul,
ul ol,
ul ul,
li ul,
li ol,
nav ul,
nav ol,
li p,
li .p-like {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Lists
 */
ul,
ol {
  padding-left: 1rem;
}

nav ul,
nav ol {
  list-style: none;
  padding: 0;
}

/*
 * Embed content
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img,
table,
td,
blockquote,
pre,
code,
input,
textarea,
select,
video,
svg,
iframe {
  max-width: 100%;
}

iframe,
img,
input,
select,
textarea {
  height: auto;
}

img {
  border-style: none;
}

/**
 * Remove the border on iframes in all browsers
 */
iframe {
  border-style: none;
}

/*
 * Fill color matching to text color
 */
svg:not([fill]) {
  fill: currentColor;
}

/*
 * Hide the overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}

/*
 * Tables
 */
table {
  border-collapse: collapse;
}

/*
 * Rulers
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 1rem 0;
  clear: both;
  color: inherit;
}

/*
 * table styles
 */
table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  vertical-align: top;
  margin-bottom: 1rem;
}

/* 
 * Hidden but not for an assistive technology like a screen reader, Yahoo! method 
 */
.visually-hidden,
.sr-only {
  position: absolute !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

/*
 * Disable animations styles when reduced motion is enabled
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/*
 * Change the cursor on busy elements in all browsers.
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers.
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers.
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers.
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* ----------------------------- */
/* ==Reset (forms)               */
/* ----------------------------- */
/*
 * Remove the tapping delay on clickable elements in all browsers .
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*
 * 1. Change the inconsistent appearance in all browsers.
 * 2. Add typography inheritance in all browsers.
 */
button,
input,
select,
textarea {
  margin: 0;
  background-color: transparent;
  /* 1 */
  color: inherit;
  /* 1 */
  font-family: inherit;
  /* 2 */
  font-size: inherit;
  /* 2 */
  line-height: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  vertical-align: middle;
}

/*
 * Basic User Interface reset
 */
button,
input:not([type=radio]):not([type=checkbox]),
select,
textarea {
  border: 0;
}

/*
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

pre {
  tab-size: 2;
  white-space: pre-wrap;
  line-height: normal;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/*
 * Show overflow in IE/Edge
 */
button,
input {
  overflow: visible;
}

/* 
 * Remove the inheritance of text transform in Firefox
 */
button,
select {
  text-transform: none;
}

/*
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

form,
fieldset {
  border: none;
}

fieldset {
  margin: 0;
  padding: 1rem;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0 0.25rem;
  border: 0;
  color: inherit;
  white-space: normal;
}

label {
  display: inline-block;
  cursor: pointer;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
  white-space: pre-wrap;
}

progress {
  display: inline-block;
  width: 100%;
  vertical-align: baseline;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

/* ----------------------------- */
/* Form oddities                 */
/* ----------------------------- */
/*
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/*
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/*
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/*
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* ----------------------------- */
/* ==Print (quick print reset)   */
/* ----------------------------- */
@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    width: auto;
    margin: auto;
    font-family: serif;
    font-size: 12pt;
  }

  p,
.p-like,
h1,
.h1-like,
h2,
.h2-like,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like,
blockquote,
label,
ul,
ol {
    color: #000;
    margin: auto;
  }

  .print {
    display: block;
  }

  .no-print {
    display: none;
  }

  /* no orphans, no widows */
  p,
.p-like,
blockquote {
    orphans: 3;
    widows: 3;
  }

  /* no breaks inside these elements */
  blockquote,
ul,
ol {
    page-break-inside: avoid;
  }

  /* page break before main headers
  h1,
  .h1-like {
    page-break-before: always;
  }
  */
  /* no breaks after these elements */
  h1,
.h1-like,
h2,
.h2-like,
h3,
.h3-like,
caption {
    page-break-after: avoid;
  }

  a {
    color: #000;
  }

  /* displaying URLs
  a[href]::after {
    content: " (" attr(href) ")";
  }
  */
  a[href^="javascript:"]::after,
a[href^="#"]::after {
    content: "";
  }
}
/* ----------------------------  */
/* ==Layout classes              */
/* ----------------------------- */
/* Global container */
.layout-maxed {
  display: grid;
}
@media (min-width: 360px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 360px) minmax(0.75rem, 1fr);
  }
}
@media (min-width: 576px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 576px) minmax(0.75rem, 1fr);
  }
}
@media (min-width: 768px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 768px) minmax(0.75rem, 1fr);
  }
}
@media (min-width: 1024px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 1024px) minmax(0.75rem, 1fr);
  }
}
@media (min-width: 1280px) {
  .layout-maxed {
    grid-template-columns: minmax(0.75rem, 1fr) minmax(auto, 1280px) minmax(0.75rem, 1fr);
  }
}

/* Center all children */
.layout-maxed > * {
  grid-column: 2;
}

/* Hero box  */
.layout-hero {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: inherit;
}

.layout-hero > * {
  grid-column: 2;
}

/* Hero image */
.layout-hero-img {
  grid-column: 1/-1;
  justify-self: center;
  max-width: 100%;
}

/* 
 * Global utility classes 
 */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-no-shrink {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-no-grow {
  flex-grow: 0;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-smaller {
  font-size: smaller;
}

.text-bigger {
  font-size: bigger;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-wrap {
  overflow-wrap: break-word;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.align-start {
  align-content: start;
}

.align-end {
  align-content: end;
}

.align-center {
  align-content: center;
}

.align-between {
  align-content: space-between;
}

.align-around {
  align-content: space-around;
}

.align-evenly {
  align-content: space-evenly;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.place-center {
  place-content: center;
}

.justify-self-auto {
  justify-self: auto;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-end {
  justify-self: end;
}

.justify-self-center {
  justify-self: center;
}

.justify-self-stretch {
  justify-self: stretch;
}

.align-self-auto {
  align-self: auto;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-stretch {
  align-self: stretch;
}

.align-top {
  vertical-align: top;
}

.align-bottom {
  vertical-align: bottom;
}

.align-middle {
  vertical-align: middle;
}

.item-first {
  order: -100;
}

.item-last {
  order: 100;
}

@media (min-width: 360px) {
  .xs\:hidden {
    display: none;
  }
}
@media (min-width: 576px) {
  .sm\:hidden {
    display: none;
  }
}
@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}
@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
}
@media (min-width: 1280px) {
  .xl\:hidden {
    display: none;
  }
}
@media (min-width: 360px) {
  .xs\:block {
    display: block;
  }
}
@media (min-width: 576px) {
  .sm\:block {
    display: block;
  }
}
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
}
@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
}
@media (min-width: 1280px) {
  .xl\:block {
    display: block;
  }
}
@media (min-width: 360px) {
  .xs\:inline {
    display: inline;
  }
}
@media (min-width: 576px) {
  .sm\:inline {
    display: inline;
  }
}
@media (min-width: 768px) {
  .md\:inline {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .lg\:inline {
    display: inline;
  }
}
@media (min-width: 1280px) {
  .xl\:inline {
    display: inline;
  }
}
@media (min-width: 360px) {
  .xs\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 576px) {
  .sm\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .md\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .lg\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 1280px) {
  .xl\:inline-block {
    display: inline-block;
  }
}
@media (min-width: 360px) {
  .xs\:flex {
    display: flex;
  }
}
@media (min-width: 576px) {
  .sm\:flex {
    display: flex;
  }
}
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .xl\:flex {
    display: flex;
  }
}
@media (min-width: 360px) {
  .xs\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 576px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 360px) {
  .xs\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 576px) {
  .sm\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .md\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-col {
    flex-direction: column;
  }
}
@media (min-width: 360px) {
  .xs\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 576px) {
  .sm\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .md\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-wrap {
    flex-wrap: wrap;
  }
}
@media (min-width: 360px) {
  .xs\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 576px) {
  .sm\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .md\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-no-wrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 360px) {
  .xs\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 576px) {
  .sm\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 768px) {
  .md\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-shrink {
    flex-shrink: 1;
  }
}
@media (min-width: 360px) {
  .xs\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 576px) {
  .sm\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .md\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-no-shrink {
    flex-shrink: 0;
  }
}
@media (min-width: 360px) {
  .xs\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 576px) {
  .sm\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .md\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-grow {
    flex-grow: 1;
  }
}
@media (min-width: 360px) {
  .xs\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 576px) {
  .sm\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 768px) {
  .md\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 1024px) {
  .lg\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 1280px) {
  .xl\:flex-no-grow {
    flex-grow: 0;
  }
}
@media (min-width: 360px) {
  .xs\:float-left {
    float: left;
  }
}
@media (min-width: 576px) {
  .sm\:float-left {
    float: left;
  }
}
@media (min-width: 768px) {
  .md\:float-left {
    float: left;
  }
}
@media (min-width: 1024px) {
  .lg\:float-left {
    float: left;
  }
}
@media (min-width: 1280px) {
  .xl\:float-left {
    float: left;
  }
}
@media (min-width: 360px) {
  .xs\:float-right {
    float: right;
  }
}
@media (min-width: 576px) {
  .sm\:float-right {
    float: right;
  }
}
@media (min-width: 768px) {
  .md\:float-right {
    float: right;
  }
}
@media (min-width: 1024px) {
  .lg\:float-right {
    float: right;
  }
}
@media (min-width: 1280px) {
  .xl\:float-right {
    float: right;
  }
}
@media (min-width: 360px) {
  .xs\:float-none {
    float: none;
  }
}
@media (min-width: 576px) {
  .sm\:float-none {
    float: none;
  }
}
@media (min-width: 768px) {
  .md\:float-none {
    float: none;
  }
}
@media (min-width: 1024px) {
  .lg\:float-none {
    float: none;
  }
}
@media (min-width: 1280px) {
  .xl\:float-none {
    float: none;
  }
}
@media (min-width: 360px) {
  .xs\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 576px) {
  .sm\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 768px) {
  .md\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1024px) {
  .lg\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 1280px) {
  .xl\:text-bold {
    font-weight: bold;
  }
}
@media (min-width: 360px) {
  .xs\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 576px) {
  .sm\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 768px) {
  .md\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1024px) {
  .lg\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 1280px) {
  .xl\:text-italic {
    font-style: italic;
  }
}
@media (min-width: 360px) {
  .xs\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 768px) {
  .md\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1024px) {
  .lg\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 1280px) {
  .xl\:text-uppercase {
    text-transform: uppercase;
  }
}
@media (min-width: 360px) {
  .xs\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 576px) {
  .sm\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 768px) {
  .md\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1024px) {
  .lg\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 1280px) {
  .xl\:text-lowercase {
    text-transform: lowercase;
  }
}
@media (min-width: 360px) {
  .xs\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 576px) {
  .sm\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 768px) {
  .md\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1024px) {
  .lg\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 1280px) {
  .xl\:text-smaller {
    font-size: smaller;
  }
}
@media (min-width: 360px) {
  .xs\:text-bigger {
    font-size: bigger;
  }
}
@media (min-width: 576px) {
  .sm\:text-bigger {
    font-size: bigger;
  }
}
@media (min-width: 768px) {
  .md\:text-bigger {
    font-size: bigger;
  }
}
@media (min-width: 1024px) {
  .lg\:text-bigger {
    font-size: bigger;
  }
}
@media (min-width: 1280px) {
  .xl\:text-bigger {
    font-size: bigger;
  }
}
@media (min-width: 360px) {
  .xs\:text-left {
    text-align: left;
  }
}
@media (min-width: 576px) {
  .sm\:text-left {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .md\:text-left {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .lg\:text-left {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .xl\:text-left {
    text-align: left;
  }
}
@media (min-width: 360px) {
  .xs\:text-center {
    text-align: center;
  }
}
@media (min-width: 576px) {
  .sm\:text-center {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .md\:text-center {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .lg\:text-center {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .xl\:text-center {
    text-align: center;
  }
}
@media (min-width: 360px) {
  .xs\:text-right {
    text-align: right;
  }
}
@media (min-width: 576px) {
  .sm\:text-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .md\:text-right {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .lg\:text-right {
    text-align: right;
  }
}
@media (min-width: 1280px) {
  .xl\:text-right {
    text-align: right;
  }
}
@media (min-width: 360px) {
  .xs\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 576px) {
  .sm\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 768px) {
  .md\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1024px) {
  .lg\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 1280px) {
  .xl\:text-justify {
    text-align: justify;
  }
}
@media (min-width: 360px) {
  .xs\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 576px) {
  .sm\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 768px) {
  .md\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 1024px) {
  .lg\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 1280px) {
  .xl\:text-wrap {
    overflow-wrap: break-word;
  }
}
@media (min-width: 360px) {
  .xs\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .md\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-start {
    justify-content: flex-start;
  }
}
@media (min-width: 360px) {
  .xs\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .md\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-end {
    justify-content: flex-end;
  }
}
@media (min-width: 360px) {
  .xs\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 576px) {
  .sm\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .md\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-center {
    justify-content: center;
  }
}
@media (min-width: 360px) {
  .xs\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 576px) {
  .sm\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .md\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-between {
    justify-content: space-between;
  }
}
@media (min-width: 360px) {
  .xs\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 576px) {
  .sm\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 768px) {
  .md\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-around {
    justify-content: space-around;
  }
}
@media (min-width: 360px) {
  .xs\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 576px) {
  .sm\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 768px) {
  .md\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 360px) {
  .xs\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 768px) {
  .md\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-items-start {
    justify-items: start;
  }
}
@media (min-width: 360px) {
  .xs\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 768px) {
  .md\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-items-end {
    justify-items: end;
  }
}
@media (min-width: 360px) {
  .xs\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 576px) {
  .sm\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 768px) {
  .md\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-items-center {
    justify-items: center;
  }
}
@media (min-width: 360px) {
  .xs\:align-start {
    align-content: start;
  }
}
@media (min-width: 576px) {
  .sm\:align-start {
    align-content: start;
  }
}
@media (min-width: 768px) {
  .md\:align-start {
    align-content: start;
  }
}
@media (min-width: 1024px) {
  .lg\:align-start {
    align-content: start;
  }
}
@media (min-width: 1280px) {
  .xl\:align-start {
    align-content: start;
  }
}
@media (min-width: 360px) {
  .xs\:align-end {
    align-content: end;
  }
}
@media (min-width: 576px) {
  .sm\:align-end {
    align-content: end;
  }
}
@media (min-width: 768px) {
  .md\:align-end {
    align-content: end;
  }
}
@media (min-width: 1024px) {
  .lg\:align-end {
    align-content: end;
  }
}
@media (min-width: 1280px) {
  .xl\:align-end {
    align-content: end;
  }
}
@media (min-width: 360px) {
  .xs\:align-center {
    align-content: center;
  }
}
@media (min-width: 576px) {
  .sm\:align-center {
    align-content: center;
  }
}
@media (min-width: 768px) {
  .md\:align-center {
    align-content: center;
  }
}
@media (min-width: 1024px) {
  .lg\:align-center {
    align-content: center;
  }
}
@media (min-width: 1280px) {
  .xl\:align-center {
    align-content: center;
  }
}
@media (min-width: 360px) {
  .xs\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 576px) {
  .sm\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 768px) {
  .md\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 1024px) {
  .lg\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 1280px) {
  .xl\:align-between {
    align-content: space-between;
  }
}
@media (min-width: 360px) {
  .xs\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 576px) {
  .sm\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 768px) {
  .md\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 1024px) {
  .lg\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 1280px) {
  .xl\:align-around {
    align-content: space-around;
  }
}
@media (min-width: 360px) {
  .xs\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 576px) {
  .sm\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 768px) {
  .md\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 1024px) {
  .lg\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 1280px) {
  .xl\:align-evenly {
    align-content: space-evenly;
  }
}
@media (min-width: 360px) {
  .xs\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 576px) {
  .sm\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .md\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .lg\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  .xl\:align-items-start {
    align-items: flex-start;
  }
}
@media (min-width: 360px) {
  .xs\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 576px) {
  .sm\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .md\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 1024px) {
  .lg\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 1280px) {
  .xl\:align-items-end {
    align-items: flex-end;
  }
}
@media (min-width: 360px) {
  .xs\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 576px) {
  .sm\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .md\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .lg\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .xl\:align-items-center {
    align-items: center;
  }
}
@media (min-width: 360px) {
  .xs\:place-center {
    place-content: center;
  }
}
@media (min-width: 576px) {
  .sm\:place-center {
    place-content: center;
  }
}
@media (min-width: 768px) {
  .md\:place-center {
    place-content: center;
  }
}
@media (min-width: 1024px) {
  .lg\:place-center {
    place-content: center;
  }
}
@media (min-width: 1280px) {
  .xl\:place-center {
    place-content: center;
  }
}
@media (min-width: 360px) {
  .xs\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 768px) {
  .md\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-self-auto {
    justify-self: auto;
  }
}
@media (min-width: 360px) {
  .xs\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 768px) {
  .md\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-self-start {
    justify-self: start;
  }
}
@media (min-width: 360px) {
  .xs\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 768px) {
  .md\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-self-end {
    justify-self: end;
  }
}
@media (min-width: 360px) {
  .xs\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 768px) {
  .md\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-self-center {
    justify-self: center;
  }
}
@media (min-width: 360px) {
  .xs\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 576px) {
  .sm\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 768px) {
  .md\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 1024px) {
  .lg\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 1280px) {
  .xl\:justify-self-stretch {
    justify-self: stretch;
  }
}
@media (min-width: 360px) {
  .xs\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 768px) {
  .md\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 1024px) {
  .lg\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 1280px) {
  .xl\:align-self-auto {
    align-self: auto;
  }
}
@media (min-width: 360px) {
  .xs\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 768px) {
  .md\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 1024px) {
  .lg\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 1280px) {
  .xl\:align-self-start {
    align-self: flex-start;
  }
}
@media (min-width: 360px) {
  .xs\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 768px) {
  .md\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 1024px) {
  .lg\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 1280px) {
  .xl\:align-self-end {
    align-self: flex-end;
  }
}
@media (min-width: 360px) {
  .xs\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 768px) {
  .md\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 1024px) {
  .lg\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 1280px) {
  .xl\:align-self-center {
    align-self: center;
  }
}
@media (min-width: 360px) {
  .xs\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 576px) {
  .sm\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .md\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 1024px) {
  .lg\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 1280px) {
  .xl\:align-self-stretch {
    align-self: stretch;
  }
}
@media (min-width: 360px) {
  .xs\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 576px) {
  .sm\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 768px) {
  .md\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 1024px) {
  .lg\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 1280px) {
  .xl\:align-top {
    vertical-align: top;
  }
}
@media (min-width: 360px) {
  .xs\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 576px) {
  .sm\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 768px) {
  .md\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1024px) {
  .lg\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 1280px) {
  .xl\:align-bottom {
    vertical-align: bottom;
  }
}
@media (min-width: 360px) {
  .xs\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 576px) {
  .sm\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 768px) {
  .md\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1024px) {
  .lg\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 1280px) {
  .xl\:align-middle {
    vertical-align: middle;
  }
}
@media (min-width: 360px) {
  .xs\:item-first {
    order: -100;
  }
}
@media (min-width: 576px) {
  .sm\:item-first {
    order: -100;
  }
}
@media (min-width: 768px) {
  .md\:item-first {
    order: -100;
  }
}
@media (min-width: 1024px) {
  .lg\:item-first {
    order: -100;
  }
}
@media (min-width: 1280px) {
  .xl\:item-first {
    order: -100;
  }
}
@media (min-width: 360px) {
  .xs\:item-last {
    order: 100;
  }
}
@media (min-width: 576px) {
  .sm\:item-last {
    order: 100;
  }
}
@media (min-width: 768px) {
  .md\:item-last {
    order: 100;
  }
}
@media (min-width: 1024px) {
  .lg\:item-last {
    order: 100;
  }
}
@media (min-width: 1280px) {
  .xl\:item-last {
    order: 100;
  }
}
.is-unstyled {
  list-style: none;
  padding-left: 0;
}

.is-disabled,
[disabled] {
  opacity: 0.6;
  cursor: not-allowed !important;
  filter: grayscale(1);
}

.text-normal {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
}

@media (min-width: 360px) {
  .xs\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }

  .xs\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }

  .xs\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }

  .xs\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 576px) {
  .sm\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }

  .sm\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }

  .sm\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }

  .sm\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 768px) {
  .md\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }

  .md\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }

  .md\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }

  .md\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1024px) {
  .lg\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }

  .lg\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }

  .lg\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }

  .lg\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
@media (min-width: 1280px) {
  .xl\:visually-hidden {
    position: absolute !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }

  .xl\:is-unstyled {
    list-style: none;
    padding-left: 0;
  }

  .xl\:is-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    filter: grayscale(1);
  }

  .xl\:text-normal {
    font-weight: normal;
    font-style: normal;
    text-transform: none;
  }
}
/* Font sizes utility classes */
.text-10 {
  font-size: 0.625rem;
}

.text-11 {
  font-size: 0.6875rem;
}

.text-12 {
  font-size: 0.75rem;
}

.text-14 {
  font-size: 0.875rem;
}

.text-16 {
  font-size: 1rem;
}

.text-18 {
  font-size: 1.125rem;
}

.text-20 {
  font-size: 1.25rem;
}

.text-24 {
  font-size: 1.5rem;
}

.text-30 {
  font-size: 1.875rem;
}

.text-36 {
  font-size: 2.25rem;
}

.text-base {
  font-size: 1rem;
}

.text-inherit {
  font-size: inherit;
}

@media (min-width: 360px) {
  .xs\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 768px) {
  .md\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 768px) {
  .md\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) {
  .md\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .md\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .md\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .md\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .md\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .md\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .md\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .md\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .xl\:text-base {
    font-size: 1rem;
  }
}
@media (min-width: 360px) {
  .xs\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 576px) {
  .sm\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 768px) {
  .md\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1024px) {
  .lg\:text-inherit {
    font-size: inherit;
  }
}
@media (min-width: 1280px) {
  .xl\:text-inherit {
    font-size: inherit;
  }
}
/* Spacers utility classes */
.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 360px) {
  .xs\:p-0 {
    padding: 0;
  }

  .xs\:pt-0 {
    padding-top: 0;
  }

  .xs\:pr-0 {
    padding-right: 0;
  }

  .xs\:pb-0 {
    padding-bottom: 0;
  }

  .xs\:pl-0 {
    padding-left: 0;
  }

  .xs\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xs\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xs\:m-0 {
    margin: 0;
  }

  .xs\:mt-0 {
    margin-top: 0;
  }

  .xs\:mr-0 {
    margin-right: 0;
  }

  .xs\:mb-0 {
    margin-bottom: 0;
  }

  .xs\:ml-0 {
    margin-left: 0;
  }

  .xs\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xs\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .sm\:p-0 {
    padding: 0;
  }

  .sm\:pt-0 {
    padding-top: 0;
  }

  .sm\:pr-0 {
    padding-right: 0;
  }

  .sm\:pb-0 {
    padding-bottom: 0;
  }

  .sm\:pl-0 {
    padding-left: 0;
  }

  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:m-0 {
    margin: 0;
  }

  .sm\:mt-0 {
    margin-top: 0;
  }

  .sm\:mr-0 {
    margin-right: 0;
  }

  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:ml-0 {
    margin-left: 0;
  }

  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .md\:p-0 {
    padding: 0;
  }

  .md\:pt-0 {
    padding-top: 0;
  }

  .md\:pr-0 {
    padding-right: 0;
  }

  .md\:pb-0 {
    padding-bottom: 0;
  }

  .md\:pl-0 {
    padding-left: 0;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:m-0 {
    margin: 0;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:mr-0 {
    margin-right: 0;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:ml-0 {
    margin-left: 0;
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .lg\:p-0 {
    padding: 0;
  }

  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:pr-0 {
    padding-right: 0;
  }

  .lg\:pb-0 {
    padding-bottom: 0;
  }

  .lg\:pl-0 {
    padding-left: 0;
  }

  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:m-0 {
    margin: 0;
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mr-0 {
    margin-right: 0;
  }

  .lg\:mb-0 {
    margin-bottom: 0;
  }

  .lg\:ml-0 {
    margin-left: 0;
  }

  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .xl\:p-0 {
    padding: 0;
  }

  .xl\:pt-0 {
    padding-top: 0;
  }

  .xl\:pr-0 {
    padding-right: 0;
  }

  .xl\:pb-0 {
    padding-bottom: 0;
  }

  .xl\:pl-0 {
    padding-left: 0;
  }

  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xl\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xl\:m-0 {
    margin: 0;
  }

  .xl\:mt-0 {
    margin-top: 0;
  }

  .xl\:mr-0 {
    margin-right: 0;
  }

  .xl\:mb-0 {
    margin-bottom: 0;
  }

  .xl\:ml-0 {
    margin-left: 0;
  }

  .xl\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xl\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p-1 {
  padding: 1px;
}

.pt-1 {
  padding-top: 1px;
}

.pr-1 {
  padding-right: 1px;
}

.pb-1 {
  padding-bottom: 1px;
}

.pl-1 {
  padding-left: 1px;
}

.px-1 {
  padding-left: 1px;
  padding-right: 1px;
}

.py-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.m-1 {
  margin: 1px;
}

.mt-1 {
  margin-top: 1px;
}

.mr-1 {
  margin-right: 1px;
}

.mb-1 {
  margin-bottom: 1px;
}

.ml-1 {
  margin-left: 1px;
}

.mx-1 {
  margin-left: 1px;
  margin-right: 1px;
}

.my-1 {
  margin-top: 1px;
  margin-bottom: 1px;
}

@media (min-width: 360px) {
  .xs\:p-1 {
    padding: 1px;
  }

  .xs\:pt-1 {
    padding-top: 1px;
  }

  .xs\:pr-1 {
    padding-right: 1px;
  }

  .xs\:pb-1 {
    padding-bottom: 1px;
  }

  .xs\:pl-1 {
    padding-left: 1px;
  }

  .xs\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xs\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xs\:m-1 {
    margin: 1px;
  }

  .xs\:mt-1 {
    margin-top: 1px;
  }

  .xs\:mr-1 {
    margin-right: 1px;
  }

  .xs\:mb-1 {
    margin-bottom: 1px;
  }

  .xs\:ml-1 {
    margin-left: 1px;
  }

  .xs\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }

  .xs\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
@media (min-width: 576px) {
  .sm\:p-1 {
    padding: 1px;
  }

  .sm\:pt-1 {
    padding-top: 1px;
  }

  .sm\:pr-1 {
    padding-right: 1px;
  }

  .sm\:pb-1 {
    padding-bottom: 1px;
  }

  .sm\:pl-1 {
    padding-left: 1px;
  }

  .sm\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:m-1 {
    margin: 1px;
  }

  .sm\:mt-1 {
    margin-top: 1px;
  }

  .sm\:mr-1 {
    margin-right: 1px;
  }

  .sm\:mb-1 {
    margin-bottom: 1px;
  }

  .sm\:ml-1 {
    margin-left: 1px;
  }

  .sm\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
@media (min-width: 768px) {
  .md\:p-1 {
    padding: 1px;
  }

  .md\:pt-1 {
    padding-top: 1px;
  }

  .md\:pr-1 {
    padding-right: 1px;
  }

  .md\:pb-1 {
    padding-bottom: 1px;
  }

  .md\:pl-1 {
    padding-left: 1px;
  }

  .md\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }

  .md\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .md\:m-1 {
    margin: 1px;
  }

  .md\:mt-1 {
    margin-top: 1px;
  }

  .md\:mr-1 {
    margin-right: 1px;
  }

  .md\:mb-1 {
    margin-bottom: 1px;
  }

  .md\:ml-1 {
    margin-left: 1px;
  }

  .md\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }

  .md\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
@media (min-width: 1024px) {
  .lg\:p-1 {
    padding: 1px;
  }

  .lg\:pt-1 {
    padding-top: 1px;
  }

  .lg\:pr-1 {
    padding-right: 1px;
  }

  .lg\:pb-1 {
    padding-bottom: 1px;
  }

  .lg\:pl-1 {
    padding-left: 1px;
  }

  .lg\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }

  .lg\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .lg\:m-1 {
    margin: 1px;
  }

  .lg\:mt-1 {
    margin-top: 1px;
  }

  .lg\:mr-1 {
    margin-right: 1px;
  }

  .lg\:mb-1 {
    margin-bottom: 1px;
  }

  .lg\:ml-1 {
    margin-left: 1px;
  }

  .lg\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }

  .lg\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
@media (min-width: 1280px) {
  .xl\:p-1 {
    padding: 1px;
  }

  .xl\:pt-1 {
    padding-top: 1px;
  }

  .xl\:pr-1 {
    padding-right: 1px;
  }

  .xl\:pb-1 {
    padding-bottom: 1px;
  }

  .xl\:pl-1 {
    padding-left: 1px;
  }

  .xl\:px-1 {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xl\:py-1 {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xl\:m-1 {
    margin: 1px;
  }

  .xl\:mt-1 {
    margin-top: 1px;
  }

  .xl\:mr-1 {
    margin-right: 1px;
  }

  .xl\:mb-1 {
    margin-bottom: 1px;
  }

  .xl\:ml-1 {
    margin-left: 1px;
  }

  .xl\:mx-1 {
    margin-left: 1px;
    margin-right: 1px;
  }

  .xl\:my-1 {
    margin-top: 1px;
    margin-bottom: 1px;
  }
}
.p-2 {
  padding: 0.125rem;
}

.pt-2 {
  padding-top: 0.125rem;
}

.pr-2 {
  padding-right: 0.125rem;
}

.pb-2 {
  padding-bottom: 0.125rem;
}

.pl-2 {
  padding-left: 0.125rem;
}

.px-2 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.py-2 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.m-2 {
  margin: 0.125rem;
}

.mt-2 {
  margin-top: 0.125rem;
}

.mr-2 {
  margin-right: 0.125rem;
}

.mb-2 {
  margin-bottom: 0.125rem;
}

.ml-2 {
  margin-left: 0.125rem;
}

.mx-2 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.my-2 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

@media (min-width: 360px) {
  .xs\:p-2 {
    padding: 0.125rem;
  }

  .xs\:pt-2 {
    padding-top: 0.125rem;
  }

  .xs\:pr-2 {
    padding-right: 0.125rem;
  }

  .xs\:pb-2 {
    padding-bottom: 0.125rem;
  }

  .xs\:pl-2 {
    padding-left: 0.125rem;
  }

  .xs\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .xs\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .xs\:m-2 {
    margin: 0.125rem;
  }

  .xs\:mt-2 {
    margin-top: 0.125rem;
  }

  .xs\:mr-2 {
    margin-right: 0.125rem;
  }

  .xs\:mb-2 {
    margin-bottom: 0.125rem;
  }

  .xs\:ml-2 {
    margin-left: 0.125rem;
  }

  .xs\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .xs\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-2 {
    padding: 0.125rem;
  }

  .sm\:pt-2 {
    padding-top: 0.125rem;
  }

  .sm\:pr-2 {
    padding-right: 0.125rem;
  }

  .sm\:pb-2 {
    padding-bottom: 0.125rem;
  }

  .sm\:pl-2 {
    padding-left: 0.125rem;
  }

  .sm\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .sm\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .sm\:m-2 {
    margin: 0.125rem;
  }

  .sm\:mt-2 {
    margin-top: 0.125rem;
  }

  .sm\:mr-2 {
    margin-right: 0.125rem;
  }

  .sm\:mb-2 {
    margin-bottom: 0.125rem;
  }

  .sm\:ml-2 {
    margin-left: 0.125rem;
  }

  .sm\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .sm\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 768px) {
  .md\:p-2 {
    padding: 0.125rem;
  }

  .md\:pt-2 {
    padding-top: 0.125rem;
  }

  .md\:pr-2 {
    padding-right: 0.125rem;
  }

  .md\:pb-2 {
    padding-bottom: 0.125rem;
  }

  .md\:pl-2 {
    padding-left: 0.125rem;
  }

  .md\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .md\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .md\:m-2 {
    margin: 0.125rem;
  }

  .md\:mt-2 {
    margin-top: 0.125rem;
  }

  .md\:mr-2 {
    margin-right: 0.125rem;
  }

  .md\:mb-2 {
    margin-bottom: 0.125rem;
  }

  .md\:ml-2 {
    margin-left: 0.125rem;
  }

  .md\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .md\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-2 {
    padding: 0.125rem;
  }

  .lg\:pt-2 {
    padding-top: 0.125rem;
  }

  .lg\:pr-2 {
    padding-right: 0.125rem;
  }

  .lg\:pb-2 {
    padding-bottom: 0.125rem;
  }

  .lg\:pl-2 {
    padding-left: 0.125rem;
  }

  .lg\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .lg\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .lg\:m-2 {
    margin: 0.125rem;
  }

  .lg\:mt-2 {
    margin-top: 0.125rem;
  }

  .lg\:mr-2 {
    margin-right: 0.125rem;
  }

  .lg\:mb-2 {
    margin-bottom: 0.125rem;
  }

  .lg\:ml-2 {
    margin-left: 0.125rem;
  }

  .lg\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .lg\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-2 {
    padding: 0.125rem;
  }

  .xl\:pt-2 {
    padding-top: 0.125rem;
  }

  .xl\:pr-2 {
    padding-right: 0.125rem;
  }

  .xl\:pb-2 {
    padding-bottom: 0.125rem;
  }

  .xl\:pl-2 {
    padding-left: 0.125rem;
  }

  .xl\:px-2 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .xl\:py-2 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .xl\:m-2 {
    margin: 0.125rem;
  }

  .xl\:mt-2 {
    margin-top: 0.125rem;
  }

  .xl\:mr-2 {
    margin-right: 0.125rem;
  }

  .xl\:mb-2 {
    margin-bottom: 0.125rem;
  }

  .xl\:ml-2 {
    margin-left: 0.125rem;
  }

  .xl\:mx-2 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .xl\:my-2 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }
}
.p-4 {
  padding: 0.25rem;
}

.pt-4 {
  padding-top: 0.25rem;
}

.pr-4 {
  padding-right: 0.25rem;
}

.pb-4 {
  padding-bottom: 0.25rem;
}

.pl-4 {
  padding-left: 0.25rem;
}

.px-4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-4 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.m-4 {
  margin: 0.25rem;
}

.mt-4 {
  margin-top: 0.25rem;
}

.mr-4 {
  margin-right: 0.25rem;
}

.mb-4 {
  margin-bottom: 0.25rem;
}

.ml-4 {
  margin-left: 0.25rem;
}

.mx-4 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-4 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 360px) {
  .xs\:p-4 {
    padding: 0.25rem;
  }

  .xs\:pt-4 {
    padding-top: 0.25rem;
  }

  .xs\:pr-4 {
    padding-right: 0.25rem;
  }

  .xs\:pb-4 {
    padding-bottom: 0.25rem;
  }

  .xs\:pl-4 {
    padding-left: 0.25rem;
  }

  .xs\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .xs\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .xs\:m-4 {
    margin: 0.25rem;
  }

  .xs\:mt-4 {
    margin-top: 0.25rem;
  }

  .xs\:mr-4 {
    margin-right: 0.25rem;
  }

  .xs\:mb-4 {
    margin-bottom: 0.25rem;
  }

  .xs\:ml-4 {
    margin-left: 0.25rem;
  }

  .xs\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .xs\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-4 {
    padding: 0.25rem;
  }

  .sm\:pt-4 {
    padding-top: 0.25rem;
  }

  .sm\:pr-4 {
    padding-right: 0.25rem;
  }

  .sm\:pb-4 {
    padding-bottom: 0.25rem;
  }

  .sm\:pl-4 {
    padding-left: 0.25rem;
  }

  .sm\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sm\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .sm\:m-4 {
    margin: 0.25rem;
  }

  .sm\:mt-4 {
    margin-top: 0.25rem;
  }

  .sm\:mr-4 {
    margin-right: 0.25rem;
  }

  .sm\:mb-4 {
    margin-bottom: 0.25rem;
  }

  .sm\:ml-4 {
    margin-left: 0.25rem;
  }

  .sm\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .sm\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 768px) {
  .md\:p-4 {
    padding: 0.25rem;
  }

  .md\:pt-4 {
    padding-top: 0.25rem;
  }

  .md\:pr-4 {
    padding-right: 0.25rem;
  }

  .md\:pb-4 {
    padding-bottom: 0.25rem;
  }

  .md\:pl-4 {
    padding-left: 0.25rem;
  }

  .md\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .md\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .md\:m-4 {
    margin: 0.25rem;
  }

  .md\:mt-4 {
    margin-top: 0.25rem;
  }

  .md\:mr-4 {
    margin-right: 0.25rem;
  }

  .md\:mb-4 {
    margin-bottom: 0.25rem;
  }

  .md\:ml-4 {
    margin-left: 0.25rem;
  }

  .md\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .md\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-4 {
    padding: 0.25rem;
  }

  .lg\:pt-4 {
    padding-top: 0.25rem;
  }

  .lg\:pr-4 {
    padding-right: 0.25rem;
  }

  .lg\:pb-4 {
    padding-bottom: 0.25rem;
  }

  .lg\:pl-4 {
    padding-left: 0.25rem;
  }

  .lg\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .lg\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .lg\:m-4 {
    margin: 0.25rem;
  }

  .lg\:mt-4 {
    margin-top: 0.25rem;
  }

  .lg\:mr-4 {
    margin-right: 0.25rem;
  }

  .lg\:mb-4 {
    margin-bottom: 0.25rem;
  }

  .lg\:ml-4 {
    margin-left: 0.25rem;
  }

  .lg\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .lg\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-4 {
    padding: 0.25rem;
  }

  .xl\:pt-4 {
    padding-top: 0.25rem;
  }

  .xl\:pr-4 {
    padding-right: 0.25rem;
  }

  .xl\:pb-4 {
    padding-bottom: 0.25rem;
  }

  .xl\:pl-4 {
    padding-left: 0.25rem;
  }

  .xl\:px-4 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .xl\:py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .xl\:m-4 {
    margin: 0.25rem;
  }

  .xl\:mt-4 {
    margin-top: 0.25rem;
  }

  .xl\:mr-4 {
    margin-right: 0.25rem;
  }

  .xl\:mb-4 {
    margin-bottom: 0.25rem;
  }

  .xl\:ml-4 {
    margin-left: 0.25rem;
  }

  .xl\:mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .xl\:my-4 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
.p-6 {
  padding: 0.375rem;
}

.pt-6 {
  padding-top: 0.375rem;
}

.pr-6 {
  padding-right: 0.375rem;
}

.pb-6 {
  padding-bottom: 0.375rem;
}

.pl-6 {
  padding-left: 0.375rem;
}

.px-6 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.py-6 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.m-6 {
  margin: 0.375rem;
}

.mt-6 {
  margin-top: 0.375rem;
}

.mr-6 {
  margin-right: 0.375rem;
}

.mb-6 {
  margin-bottom: 0.375rem;
}

.ml-6 {
  margin-left: 0.375rem;
}

.mx-6 {
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.my-6 {
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

@media (min-width: 360px) {
  .xs\:p-6 {
    padding: 0.375rem;
  }

  .xs\:pt-6 {
    padding-top: 0.375rem;
  }

  .xs\:pr-6 {
    padding-right: 0.375rem;
  }

  .xs\:pb-6 {
    padding-bottom: 0.375rem;
  }

  .xs\:pl-6 {
    padding-left: 0.375rem;
  }

  .xs\:px-6 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .xs\:py-6 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .xs\:m-6 {
    margin: 0.375rem;
  }

  .xs\:mt-6 {
    margin-top: 0.375rem;
  }

  .xs\:mr-6 {
    margin-right: 0.375rem;
  }

  .xs\:mb-6 {
    margin-bottom: 0.375rem;
  }

  .xs\:ml-6 {
    margin-left: 0.375rem;
  }

  .xs\:mx-6 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .xs\:my-6 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-6 {
    padding: 0.375rem;
  }

  .sm\:pt-6 {
    padding-top: 0.375rem;
  }

  .sm\:pr-6 {
    padding-right: 0.375rem;
  }

  .sm\:pb-6 {
    padding-bottom: 0.375rem;
  }

  .sm\:pl-6 {
    padding-left: 0.375rem;
  }

  .sm\:px-6 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .sm\:py-6 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .sm\:m-6 {
    margin: 0.375rem;
  }

  .sm\:mt-6 {
    margin-top: 0.375rem;
  }

  .sm\:mr-6 {
    margin-right: 0.375rem;
  }

  .sm\:mb-6 {
    margin-bottom: 0.375rem;
  }

  .sm\:ml-6 {
    margin-left: 0.375rem;
  }

  .sm\:mx-6 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .sm\:my-6 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }
}
@media (min-width: 768px) {
  .md\:p-6 {
    padding: 0.375rem;
  }

  .md\:pt-6 {
    padding-top: 0.375rem;
  }

  .md\:pr-6 {
    padding-right: 0.375rem;
  }

  .md\:pb-6 {
    padding-bottom: 0.375rem;
  }

  .md\:pl-6 {
    padding-left: 0.375rem;
  }

  .md\:px-6 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .md\:py-6 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .md\:m-6 {
    margin: 0.375rem;
  }

  .md\:mt-6 {
    margin-top: 0.375rem;
  }

  .md\:mr-6 {
    margin-right: 0.375rem;
  }

  .md\:mb-6 {
    margin-bottom: 0.375rem;
  }

  .md\:ml-6 {
    margin-left: 0.375rem;
  }

  .md\:mx-6 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .md\:my-6 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-6 {
    padding: 0.375rem;
  }

  .lg\:pt-6 {
    padding-top: 0.375rem;
  }

  .lg\:pr-6 {
    padding-right: 0.375rem;
  }

  .lg\:pb-6 {
    padding-bottom: 0.375rem;
  }

  .lg\:pl-6 {
    padding-left: 0.375rem;
  }

  .lg\:px-6 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .lg\:py-6 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .lg\:m-6 {
    margin: 0.375rem;
  }

  .lg\:mt-6 {
    margin-top: 0.375rem;
  }

  .lg\:mr-6 {
    margin-right: 0.375rem;
  }

  .lg\:mb-6 {
    margin-bottom: 0.375rem;
  }

  .lg\:ml-6 {
    margin-left: 0.375rem;
  }

  .lg\:mx-6 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .lg\:my-6 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-6 {
    padding: 0.375rem;
  }

  .xl\:pt-6 {
    padding-top: 0.375rem;
  }

  .xl\:pr-6 {
    padding-right: 0.375rem;
  }

  .xl\:pb-6 {
    padding-bottom: 0.375rem;
  }

  .xl\:pl-6 {
    padding-left: 0.375rem;
  }

  .xl\:px-6 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .xl\:py-6 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .xl\:m-6 {
    margin: 0.375rem;
  }

  .xl\:mt-6 {
    margin-top: 0.375rem;
  }

  .xl\:mr-6 {
    margin-right: 0.375rem;
  }

  .xl\:mb-6 {
    margin-bottom: 0.375rem;
  }

  .xl\:ml-6 {
    margin-left: 0.375rem;
  }

  .xl\:mx-6 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .xl\:my-6 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }
}
.p-8 {
  padding: 0.5rem;
}

.pt-8 {
  padding-top: 0.5rem;
}

.pr-8 {
  padding-right: 0.5rem;
}

.pb-8 {
  padding-bottom: 0.5rem;
}

.pl-8 {
  padding-left: 0.5rem;
}

.px-8 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-8 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.m-8 {
  margin: 0.5rem;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mr-8 {
  margin-right: 0.5rem;
}

.mb-8 {
  margin-bottom: 0.5rem;
}

.ml-8 {
  margin-left: 0.5rem;
}

.mx-8 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-8 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 360px) {
  .xs\:p-8 {
    padding: 0.5rem;
  }

  .xs\:pt-8 {
    padding-top: 0.5rem;
  }

  .xs\:pr-8 {
    padding-right: 0.5rem;
  }

  .xs\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .xs\:pl-8 {
    padding-left: 0.5rem;
  }

  .xs\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .xs\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .xs\:m-8 {
    margin: 0.5rem;
  }

  .xs\:mt-8 {
    margin-top: 0.5rem;
  }

  .xs\:mr-8 {
    margin-right: 0.5rem;
  }

  .xs\:mb-8 {
    margin-bottom: 0.5rem;
  }

  .xs\:ml-8 {
    margin-left: 0.5rem;
  }

  .xs\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .xs\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-8 {
    padding: 0.5rem;
  }

  .sm\:pt-8 {
    padding-top: 0.5rem;
  }

  .sm\:pr-8 {
    padding-right: 0.5rem;
  }

  .sm\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .sm\:pl-8 {
    padding-left: 0.5rem;
  }

  .sm\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:m-8 {
    margin: 0.5rem;
  }

  .sm\:mt-8 {
    margin-top: 0.5rem;
  }

  .sm\:mr-8 {
    margin-right: 0.5rem;
  }

  .sm\:mb-8 {
    margin-bottom: 0.5rem;
  }

  .sm\:ml-8 {
    margin-left: 0.5rem;
  }

  .sm\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .sm\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .md\:p-8 {
    padding: 0.5rem;
  }

  .md\:pt-8 {
    padding-top: 0.5rem;
  }

  .md\:pr-8 {
    padding-right: 0.5rem;
  }

  .md\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .md\:pl-8 {
    padding-left: 0.5rem;
  }

  .md\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .md\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:m-8 {
    margin: 0.5rem;
  }

  .md\:mt-8 {
    margin-top: 0.5rem;
  }

  .md\:mr-8 {
    margin-right: 0.5rem;
  }

  .md\:mb-8 {
    margin-bottom: 0.5rem;
  }

  .md\:ml-8 {
    margin-left: 0.5rem;
  }

  .md\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .md\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-8 {
    padding: 0.5rem;
  }

  .lg\:pt-8 {
    padding-top: 0.5rem;
  }

  .lg\:pr-8 {
    padding-right: 0.5rem;
  }

  .lg\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .lg\:pl-8 {
    padding-left: 0.5rem;
  }

  .lg\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .lg\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .lg\:m-8 {
    margin: 0.5rem;
  }

  .lg\:mt-8 {
    margin-top: 0.5rem;
  }

  .lg\:mr-8 {
    margin-right: 0.5rem;
  }

  .lg\:mb-8 {
    margin-bottom: 0.5rem;
  }

  .lg\:ml-8 {
    margin-left: 0.5rem;
  }

  .lg\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .lg\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-8 {
    padding: 0.5rem;
  }

  .xl\:pt-8 {
    padding-top: 0.5rem;
  }

  .xl\:pr-8 {
    padding-right: 0.5rem;
  }

  .xl\:pb-8 {
    padding-bottom: 0.5rem;
  }

  .xl\:pl-8 {
    padding-left: 0.5rem;
  }

  .xl\:px-8 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .xl\:py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .xl\:m-8 {
    margin: 0.5rem;
  }

  .xl\:mt-8 {
    margin-top: 0.5rem;
  }

  .xl\:mr-8 {
    margin-right: 0.5rem;
  }

  .xl\:mb-8 {
    margin-bottom: 0.5rem;
  }

  .xl\:ml-8 {
    margin-left: 0.5rem;
  }

  .xl\:mx-8 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .xl\:my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.p-10 {
  padding: 0.625rem;
}

.pt-10 {
  padding-top: 0.625rem;
}

.pr-10 {
  padding-right: 0.625rem;
}

.pb-10 {
  padding-bottom: 0.625rem;
}

.pl-10 {
  padding-left: 0.625rem;
}

.px-10 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.py-10 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.m-10 {
  margin: 0.625rem;
}

.mt-10 {
  margin-top: 0.625rem;
}

.mr-10 {
  margin-right: 0.625rem;
}

.mb-10 {
  margin-bottom: 0.625rem;
}

.ml-10 {
  margin-left: 0.625rem;
}

.mx-10 {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.my-10 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

@media (min-width: 360px) {
  .xs\:p-10 {
    padding: 0.625rem;
  }

  .xs\:pt-10 {
    padding-top: 0.625rem;
  }

  .xs\:pr-10 {
    padding-right: 0.625rem;
  }

  .xs\:pb-10 {
    padding-bottom: 0.625rem;
  }

  .xs\:pl-10 {
    padding-left: 0.625rem;
  }

  .xs\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .xs\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .xs\:m-10 {
    margin: 0.625rem;
  }

  .xs\:mt-10 {
    margin-top: 0.625rem;
  }

  .xs\:mr-10 {
    margin-right: 0.625rem;
  }

  .xs\:mb-10 {
    margin-bottom: 0.625rem;
  }

  .xs\:ml-10 {
    margin-left: 0.625rem;
  }

  .xs\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .xs\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-10 {
    padding: 0.625rem;
  }

  .sm\:pt-10 {
    padding-top: 0.625rem;
  }

  .sm\:pr-10 {
    padding-right: 0.625rem;
  }

  .sm\:pb-10 {
    padding-bottom: 0.625rem;
  }

  .sm\:pl-10 {
    padding-left: 0.625rem;
  }

  .sm\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .sm\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:m-10 {
    margin: 0.625rem;
  }

  .sm\:mt-10 {
    margin-top: 0.625rem;
  }

  .sm\:mr-10 {
    margin-right: 0.625rem;
  }

  .sm\:mb-10 {
    margin-bottom: 0.625rem;
  }

  .sm\:ml-10 {
    margin-left: 0.625rem;
  }

  .sm\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .sm\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 768px) {
  .md\:p-10 {
    padding: 0.625rem;
  }

  .md\:pt-10 {
    padding-top: 0.625rem;
  }

  .md\:pr-10 {
    padding-right: 0.625rem;
  }

  .md\:pb-10 {
    padding-bottom: 0.625rem;
  }

  .md\:pl-10 {
    padding-left: 0.625rem;
  }

  .md\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .md\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .md\:m-10 {
    margin: 0.625rem;
  }

  .md\:mt-10 {
    margin-top: 0.625rem;
  }

  .md\:mr-10 {
    margin-right: 0.625rem;
  }

  .md\:mb-10 {
    margin-bottom: 0.625rem;
  }

  .md\:ml-10 {
    margin-left: 0.625rem;
  }

  .md\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .md\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-10 {
    padding: 0.625rem;
  }

  .lg\:pt-10 {
    padding-top: 0.625rem;
  }

  .lg\:pr-10 {
    padding-right: 0.625rem;
  }

  .lg\:pb-10 {
    padding-bottom: 0.625rem;
  }

  .lg\:pl-10 {
    padding-left: 0.625rem;
  }

  .lg\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .lg\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .lg\:m-10 {
    margin: 0.625rem;
  }

  .lg\:mt-10 {
    margin-top: 0.625rem;
  }

  .lg\:mr-10 {
    margin-right: 0.625rem;
  }

  .lg\:mb-10 {
    margin-bottom: 0.625rem;
  }

  .lg\:ml-10 {
    margin-left: 0.625rem;
  }

  .lg\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .lg\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-10 {
    padding: 0.625rem;
  }

  .xl\:pt-10 {
    padding-top: 0.625rem;
  }

  .xl\:pr-10 {
    padding-right: 0.625rem;
  }

  .xl\:pb-10 {
    padding-bottom: 0.625rem;
  }

  .xl\:pl-10 {
    padding-left: 0.625rem;
  }

  .xl\:px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .xl\:py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .xl\:m-10 {
    margin: 0.625rem;
  }

  .xl\:mt-10 {
    margin-top: 0.625rem;
  }

  .xl\:mr-10 {
    margin-right: 0.625rem;
  }

  .xl\:mb-10 {
    margin-bottom: 0.625rem;
  }

  .xl\:ml-10 {
    margin-left: 0.625rem;
  }

  .xl\:mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .xl\:my-10 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.p-12 {
  padding: 0.75rem;
}

.pt-12 {
  padding-top: 0.75rem;
}

.pr-12 {
  padding-right: 0.75rem;
}

.pb-12 {
  padding-bottom: 0.75rem;
}

.pl-12 {
  padding-left: 0.75rem;
}

.px-12 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-12 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.m-12 {
  margin: 0.75rem;
}

.mt-12 {
  margin-top: 0.75rem;
}

.mr-12 {
  margin-right: 0.75rem;
}

.mb-12 {
  margin-bottom: 0.75rem;
}

.ml-12 {
  margin-left: 0.75rem;
}

.mx-12 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-12 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 360px) {
  .xs\:p-12 {
    padding: 0.75rem;
  }

  .xs\:pt-12 {
    padding-top: 0.75rem;
  }

  .xs\:pr-12 {
    padding-right: 0.75rem;
  }

  .xs\:pb-12 {
    padding-bottom: 0.75rem;
  }

  .xs\:pl-12 {
    padding-left: 0.75rem;
  }

  .xs\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .xs\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .xs\:m-12 {
    margin: 0.75rem;
  }

  .xs\:mt-12 {
    margin-top: 0.75rem;
  }

  .xs\:mr-12 {
    margin-right: 0.75rem;
  }

  .xs\:mb-12 {
    margin-bottom: 0.75rem;
  }

  .xs\:ml-12 {
    margin-left: 0.75rem;
  }

  .xs\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .xs\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-12 {
    padding: 0.75rem;
  }

  .sm\:pt-12 {
    padding-top: 0.75rem;
  }

  .sm\:pr-12 {
    padding-right: 0.75rem;
  }

  .sm\:pb-12 {
    padding-bottom: 0.75rem;
  }

  .sm\:pl-12 {
    padding-left: 0.75rem;
  }

  .sm\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:m-12 {
    margin: 0.75rem;
  }

  .sm\:mt-12 {
    margin-top: 0.75rem;
  }

  .sm\:mr-12 {
    margin-right: 0.75rem;
  }

  .sm\:mb-12 {
    margin-bottom: 0.75rem;
  }

  .sm\:ml-12 {
    margin-left: 0.75rem;
  }

  .sm\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .sm\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 768px) {
  .md\:p-12 {
    padding: 0.75rem;
  }

  .md\:pt-12 {
    padding-top: 0.75rem;
  }

  .md\:pr-12 {
    padding-right: 0.75rem;
  }

  .md\:pb-12 {
    padding-bottom: 0.75rem;
  }

  .md\:pl-12 {
    padding-left: 0.75rem;
  }

  .md\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .md\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:m-12 {
    margin: 0.75rem;
  }

  .md\:mt-12 {
    margin-top: 0.75rem;
  }

  .md\:mr-12 {
    margin-right: 0.75rem;
  }

  .md\:mb-12 {
    margin-bottom: 0.75rem;
  }

  .md\:ml-12 {
    margin-left: 0.75rem;
  }

  .md\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .md\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-12 {
    padding: 0.75rem;
  }

  .lg\:pt-12 {
    padding-top: 0.75rem;
  }

  .lg\:pr-12 {
    padding-right: 0.75rem;
  }

  .lg\:pb-12 {
    padding-bottom: 0.75rem;
  }

  .lg\:pl-12 {
    padding-left: 0.75rem;
  }

  .lg\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lg\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .lg\:m-12 {
    margin: 0.75rem;
  }

  .lg\:mt-12 {
    margin-top: 0.75rem;
  }

  .lg\:mr-12 {
    margin-right: 0.75rem;
  }

  .lg\:mb-12 {
    margin-bottom: 0.75rem;
  }

  .lg\:ml-12 {
    margin-left: 0.75rem;
  }

  .lg\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .lg\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-12 {
    padding: 0.75rem;
  }

  .xl\:pt-12 {
    padding-top: 0.75rem;
  }

  .xl\:pr-12 {
    padding-right: 0.75rem;
  }

  .xl\:pb-12 {
    padding-bottom: 0.75rem;
  }

  .xl\:pl-12 {
    padding-left: 0.75rem;
  }

  .xl\:px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .xl\:py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .xl\:m-12 {
    margin: 0.75rem;
  }

  .xl\:mt-12 {
    margin-top: 0.75rem;
  }

  .xl\:mr-12 {
    margin-right: 0.75rem;
  }

  .xl\:mb-12 {
    margin-bottom: 0.75rem;
  }

  .xl\:ml-12 {
    margin-left: 0.75rem;
  }

  .xl\:mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .xl\:my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.p-124 {
  padding: 0.875rem;
}

.pt-124 {
  padding-top: 0.875rem;
}

.pr-124 {
  padding-right: 0.875rem;
}

.pb-124 {
  padding-bottom: 0.875rem;
}

.pl-124 {
  padding-left: 0.875rem;
}

.px-124 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.py-124 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.m-124 {
  margin: 0.875rem;
}

.mt-124 {
  margin-top: 0.875rem;
}

.mr-124 {
  margin-right: 0.875rem;
}

.mb-124 {
  margin-bottom: 0.875rem;
}

.ml-124 {
  margin-left: 0.875rem;
}

.mx-124 {
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.my-124 {
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

@media (min-width: 360px) {
  .xs\:p-124 {
    padding: 0.875rem;
  }

  .xs\:pt-124 {
    padding-top: 0.875rem;
  }

  .xs\:pr-124 {
    padding-right: 0.875rem;
  }

  .xs\:pb-124 {
    padding-bottom: 0.875rem;
  }

  .xs\:pl-124 {
    padding-left: 0.875rem;
  }

  .xs\:px-124 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .xs\:py-124 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .xs\:m-124 {
    margin: 0.875rem;
  }

  .xs\:mt-124 {
    margin-top: 0.875rem;
  }

  .xs\:mr-124 {
    margin-right: 0.875rem;
  }

  .xs\:mb-124 {
    margin-bottom: 0.875rem;
  }

  .xs\:ml-124 {
    margin-left: 0.875rem;
  }

  .xs\:mx-124 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .xs\:my-124 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-124 {
    padding: 0.875rem;
  }

  .sm\:pt-124 {
    padding-top: 0.875rem;
  }

  .sm\:pr-124 {
    padding-right: 0.875rem;
  }

  .sm\:pb-124 {
    padding-bottom: 0.875rem;
  }

  .sm\:pl-124 {
    padding-left: 0.875rem;
  }

  .sm\:px-124 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .sm\:py-124 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .sm\:m-124 {
    margin: 0.875rem;
  }

  .sm\:mt-124 {
    margin-top: 0.875rem;
  }

  .sm\:mr-124 {
    margin-right: 0.875rem;
  }

  .sm\:mb-124 {
    margin-bottom: 0.875rem;
  }

  .sm\:ml-124 {
    margin-left: 0.875rem;
  }

  .sm\:mx-124 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .sm\:my-124 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 768px) {
  .md\:p-124 {
    padding: 0.875rem;
  }

  .md\:pt-124 {
    padding-top: 0.875rem;
  }

  .md\:pr-124 {
    padding-right: 0.875rem;
  }

  .md\:pb-124 {
    padding-bottom: 0.875rem;
  }

  .md\:pl-124 {
    padding-left: 0.875rem;
  }

  .md\:px-124 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .md\:py-124 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .md\:m-124 {
    margin: 0.875rem;
  }

  .md\:mt-124 {
    margin-top: 0.875rem;
  }

  .md\:mr-124 {
    margin-right: 0.875rem;
  }

  .md\:mb-124 {
    margin-bottom: 0.875rem;
  }

  .md\:ml-124 {
    margin-left: 0.875rem;
  }

  .md\:mx-124 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .md\:my-124 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-124 {
    padding: 0.875rem;
  }

  .lg\:pt-124 {
    padding-top: 0.875rem;
  }

  .lg\:pr-124 {
    padding-right: 0.875rem;
  }

  .lg\:pb-124 {
    padding-bottom: 0.875rem;
  }

  .lg\:pl-124 {
    padding-left: 0.875rem;
  }

  .lg\:px-124 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .lg\:py-124 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .lg\:m-124 {
    margin: 0.875rem;
  }

  .lg\:mt-124 {
    margin-top: 0.875rem;
  }

  .lg\:mr-124 {
    margin-right: 0.875rem;
  }

  .lg\:mb-124 {
    margin-bottom: 0.875rem;
  }

  .lg\:ml-124 {
    margin-left: 0.875rem;
  }

  .lg\:mx-124 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .lg\:my-124 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-124 {
    padding: 0.875rem;
  }

  .xl\:pt-124 {
    padding-top: 0.875rem;
  }

  .xl\:pr-124 {
    padding-right: 0.875rem;
  }

  .xl\:pb-124 {
    padding-bottom: 0.875rem;
  }

  .xl\:pl-124 {
    padding-left: 0.875rem;
  }

  .xl\:px-124 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .xl\:py-124 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .xl\:m-124 {
    margin: 0.875rem;
  }

  .xl\:mt-124 {
    margin-top: 0.875rem;
  }

  .xl\:mr-124 {
    margin-right: 0.875rem;
  }

  .xl\:mb-124 {
    margin-bottom: 0.875rem;
  }

  .xl\:ml-124 {
    margin-left: 0.875rem;
  }

  .xl\:mx-124 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .xl\:my-124 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }
}
.p-16 {
  padding: 1rem;
}

.pt-16 {
  padding-top: 1rem;
}

.pr-16 {
  padding-right: 1rem;
}

.pb-16 {
  padding-bottom: 1rem;
}

.pl-16 {
  padding-left: 1rem;
}

.px-16 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-16 {
  margin: 1rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mr-16 {
  margin-right: 1rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.ml-16 {
  margin-left: 1rem;
}

.mx-16 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-16 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 360px) {
  .xs\:p-16 {
    padding: 1rem;
  }

  .xs\:pt-16 {
    padding-top: 1rem;
  }

  .xs\:pr-16 {
    padding-right: 1rem;
  }

  .xs\:pb-16 {
    padding-bottom: 1rem;
  }

  .xs\:pl-16 {
    padding-left: 1rem;
  }

  .xs\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xs\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xs\:m-16 {
    margin: 1rem;
  }

  .xs\:mt-16 {
    margin-top: 1rem;
  }

  .xs\:mr-16 {
    margin-right: 1rem;
  }

  .xs\:mb-16 {
    margin-bottom: 1rem;
  }

  .xs\:ml-16 {
    margin-left: 1rem;
  }

  .xs\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xs\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-16 {
    padding: 1rem;
  }

  .sm\:pt-16 {
    padding-top: 1rem;
  }

  .sm\:pr-16 {
    padding-right: 1rem;
  }

  .sm\:pb-16 {
    padding-bottom: 1rem;
  }

  .sm\:pl-16 {
    padding-left: 1rem;
  }

  .sm\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:m-16 {
    margin: 1rem;
  }

  .sm\:mt-16 {
    margin-top: 1rem;
  }

  .sm\:mr-16 {
    margin-right: 1rem;
  }

  .sm\:mb-16 {
    margin-bottom: 1rem;
  }

  .sm\:ml-16 {
    margin-left: 1rem;
  }

  .sm\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .md\:p-16 {
    padding: 1rem;
  }

  .md\:pt-16 {
    padding-top: 1rem;
  }

  .md\:pr-16 {
    padding-right: 1rem;
  }

  .md\:pb-16 {
    padding-bottom: 1rem;
  }

  .md\:pl-16 {
    padding-left: 1rem;
  }

  .md\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:m-16 {
    margin: 1rem;
  }

  .md\:mt-16 {
    margin-top: 1rem;
  }

  .md\:mr-16 {
    margin-right: 1rem;
  }

  .md\:mb-16 {
    margin-bottom: 1rem;
  }

  .md\:ml-16 {
    margin-left: 1rem;
  }

  .md\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .md\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-16 {
    padding: 1rem;
  }

  .lg\:pt-16 {
    padding-top: 1rem;
  }

  .lg\:pr-16 {
    padding-right: 1rem;
  }

  .lg\:pb-16 {
    padding-bottom: 1rem;
  }

  .lg\:pl-16 {
    padding-left: 1rem;
  }

  .lg\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:m-16 {
    margin: 1rem;
  }

  .lg\:mt-16 {
    margin-top: 1rem;
  }

  .lg\:mr-16 {
    margin-right: 1rem;
  }

  .lg\:mb-16 {
    margin-bottom: 1rem;
  }

  .lg\:ml-16 {
    margin-left: 1rem;
  }

  .lg\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .lg\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-16 {
    padding: 1rem;
  }

  .xl\:pt-16 {
    padding-top: 1rem;
  }

  .xl\:pr-16 {
    padding-right: 1rem;
  }

  .xl\:pb-16 {
    padding-bottom: 1rem;
  }

  .xl\:pl-16 {
    padding-left: 1rem;
  }

  .xl\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xl\:py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xl\:m-16 {
    margin: 1rem;
  }

  .xl\:mt-16 {
    margin-top: 1rem;
  }

  .xl\:mr-16 {
    margin-right: 1rem;
  }

  .xl\:mb-16 {
    margin-bottom: 1rem;
  }

  .xl\:ml-16 {
    margin-left: 1rem;
  }

  .xl\:mx-16 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xl\:my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.p-18 {
  padding: 1.125rem;
}

.pt-18 {
  padding-top: 1.125rem;
}

.pr-18 {
  padding-right: 1.125rem;
}

.pb-18 {
  padding-bottom: 1.125rem;
}

.pl-18 {
  padding-left: 1.125rem;
}

.px-18 {
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}

.py-18 {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.m-18 {
  margin: 1.125rem;
}

.mt-18 {
  margin-top: 1.125rem;
}

.mr-18 {
  margin-right: 1.125rem;
}

.mb-18 {
  margin-bottom: 1.125rem;
}

.ml-18 {
  margin-left: 1.125rem;
}

.mx-18 {
  margin-left: 1.125rem;
  margin-right: 1.125rem;
}

.my-18 {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

@media (min-width: 360px) {
  .xs\:p-18 {
    padding: 1.125rem;
  }

  .xs\:pt-18 {
    padding-top: 1.125rem;
  }

  .xs\:pr-18 {
    padding-right: 1.125rem;
  }

  .xs\:pb-18 {
    padding-bottom: 1.125rem;
  }

  .xs\:pl-18 {
    padding-left: 1.125rem;
  }

  .xs\:px-18 {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .xs\:py-18 {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

  .xs\:m-18 {
    margin: 1.125rem;
  }

  .xs\:mt-18 {
    margin-top: 1.125rem;
  }

  .xs\:mr-18 {
    margin-right: 1.125rem;
  }

  .xs\:mb-18 {
    margin-bottom: 1.125rem;
  }

  .xs\:ml-18 {
    margin-left: 1.125rem;
  }

  .xs\:mx-18 {
    margin-left: 1.125rem;
    margin-right: 1.125rem;
  }

  .xs\:my-18 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-18 {
    padding: 1.125rem;
  }

  .sm\:pt-18 {
    padding-top: 1.125rem;
  }

  .sm\:pr-18 {
    padding-right: 1.125rem;
  }

  .sm\:pb-18 {
    padding-bottom: 1.125rem;
  }

  .sm\:pl-18 {
    padding-left: 1.125rem;
  }

  .sm\:px-18 {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .sm\:py-18 {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

  .sm\:m-18 {
    margin: 1.125rem;
  }

  .sm\:mt-18 {
    margin-top: 1.125rem;
  }

  .sm\:mr-18 {
    margin-right: 1.125rem;
  }

  .sm\:mb-18 {
    margin-bottom: 1.125rem;
  }

  .sm\:ml-18 {
    margin-left: 1.125rem;
  }

  .sm\:mx-18 {
    margin-left: 1.125rem;
    margin-right: 1.125rem;
  }

  .sm\:my-18 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
  }
}
@media (min-width: 768px) {
  .md\:p-18 {
    padding: 1.125rem;
  }

  .md\:pt-18 {
    padding-top: 1.125rem;
  }

  .md\:pr-18 {
    padding-right: 1.125rem;
  }

  .md\:pb-18 {
    padding-bottom: 1.125rem;
  }

  .md\:pl-18 {
    padding-left: 1.125rem;
  }

  .md\:px-18 {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .md\:py-18 {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

  .md\:m-18 {
    margin: 1.125rem;
  }

  .md\:mt-18 {
    margin-top: 1.125rem;
  }

  .md\:mr-18 {
    margin-right: 1.125rem;
  }

  .md\:mb-18 {
    margin-bottom: 1.125rem;
  }

  .md\:ml-18 {
    margin-left: 1.125rem;
  }

  .md\:mx-18 {
    margin-left: 1.125rem;
    margin-right: 1.125rem;
  }

  .md\:my-18 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-18 {
    padding: 1.125rem;
  }

  .lg\:pt-18 {
    padding-top: 1.125rem;
  }

  .lg\:pr-18 {
    padding-right: 1.125rem;
  }

  .lg\:pb-18 {
    padding-bottom: 1.125rem;
  }

  .lg\:pl-18 {
    padding-left: 1.125rem;
  }

  .lg\:px-18 {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .lg\:py-18 {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

  .lg\:m-18 {
    margin: 1.125rem;
  }

  .lg\:mt-18 {
    margin-top: 1.125rem;
  }

  .lg\:mr-18 {
    margin-right: 1.125rem;
  }

  .lg\:mb-18 {
    margin-bottom: 1.125rem;
  }

  .lg\:ml-18 {
    margin-left: 1.125rem;
  }

  .lg\:mx-18 {
    margin-left: 1.125rem;
    margin-right: 1.125rem;
  }

  .lg\:my-18 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-18 {
    padding: 1.125rem;
  }

  .xl\:pt-18 {
    padding-top: 1.125rem;
  }

  .xl\:pr-18 {
    padding-right: 1.125rem;
  }

  .xl\:pb-18 {
    padding-bottom: 1.125rem;
  }

  .xl\:pl-18 {
    padding-left: 1.125rem;
  }

  .xl\:px-18 {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .xl\:py-18 {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

  .xl\:m-18 {
    margin: 1.125rem;
  }

  .xl\:mt-18 {
    margin-top: 1.125rem;
  }

  .xl\:mr-18 {
    margin-right: 1.125rem;
  }

  .xl\:mb-18 {
    margin-bottom: 1.125rem;
  }

  .xl\:ml-18 {
    margin-left: 1.125rem;
  }

  .xl\:mx-18 {
    margin-left: 1.125rem;
    margin-right: 1.125rem;
  }

  .xl\:my-18 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
  }
}
.p-20 {
  padding: 1.25rem;
}

.pt-20 {
  padding-top: 1.25rem;
}

.pr-20 {
  padding-right: 1.25rem;
}

.pb-20 {
  padding-bottom: 1.25rem;
}

.pl-20 {
  padding-left: 1.25rem;
}

.px-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.m-20 {
  margin: 1.25rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mr-20 {
  margin-right: 1.25rem;
}

.mb-20 {
  margin-bottom: 1.25rem;
}

.ml-20 {
  margin-left: 1.25rem;
}

.mx-20 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-20 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 360px) {
  .xs\:p-20 {
    padding: 1.25rem;
  }

  .xs\:pt-20 {
    padding-top: 1.25rem;
  }

  .xs\:pr-20 {
    padding-right: 1.25rem;
  }

  .xs\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .xs\:pl-20 {
    padding-left: 1.25rem;
  }

  .xs\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xs\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xs\:m-20 {
    margin: 1.25rem;
  }

  .xs\:mt-20 {
    margin-top: 1.25rem;
  }

  .xs\:mr-20 {
    margin-right: 1.25rem;
  }

  .xs\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .xs\:ml-20 {
    margin-left: 1.25rem;
  }

  .xs\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xs\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-20 {
    padding: 1.25rem;
  }

  .sm\:pt-20 {
    padding-top: 1.25rem;
  }

  .sm\:pr-20 {
    padding-right: 1.25rem;
  }

  .sm\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .sm\:pl-20 {
    padding-left: 1.25rem;
  }

  .sm\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:m-20 {
    margin: 1.25rem;
  }

  .sm\:mt-20 {
    margin-top: 1.25rem;
  }

  .sm\:mr-20 {
    margin-right: 1.25rem;
  }

  .sm\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .sm\:ml-20 {
    margin-left: 1.25rem;
  }

  .sm\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 768px) {
  .md\:p-20 {
    padding: 1.25rem;
  }

  .md\:pt-20 {
    padding-top: 1.25rem;
  }

  .md\:pr-20 {
    padding-right: 1.25rem;
  }

  .md\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .md\:pl-20 {
    padding-left: 1.25rem;
  }

  .md\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .md\:m-20 {
    margin: 1.25rem;
  }

  .md\:mt-20 {
    margin-top: 1.25rem;
  }

  .md\:mr-20 {
    margin-right: 1.25rem;
  }

  .md\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .md\:ml-20 {
    margin-left: 1.25rem;
  }

  .md\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .md\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-20 {
    padding: 1.25rem;
  }

  .lg\:pt-20 {
    padding-top: 1.25rem;
  }

  .lg\:pr-20 {
    padding-right: 1.25rem;
  }

  .lg\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .lg\:pl-20 {
    padding-left: 1.25rem;
  }

  .lg\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .lg\:m-20 {
    margin: 1.25rem;
  }

  .lg\:mt-20 {
    margin-top: 1.25rem;
  }

  .lg\:mr-20 {
    margin-right: 1.25rem;
  }

  .lg\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .lg\:ml-20 {
    margin-left: 1.25rem;
  }

  .lg\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .lg\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-20 {
    padding: 1.25rem;
  }

  .xl\:pt-20 {
    padding-top: 1.25rem;
  }

  .xl\:pr-20 {
    padding-right: 1.25rem;
  }

  .xl\:pb-20 {
    padding-bottom: 1.25rem;
  }

  .xl\:pl-20 {
    padding-left: 1.25rem;
  }

  .xl\:px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xl\:py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xl\:m-20 {
    margin: 1.25rem;
  }

  .xl\:mt-20 {
    margin-top: 1.25rem;
  }

  .xl\:mr-20 {
    margin-right: 1.25rem;
  }

  .xl\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .xl\:ml-20 {
    margin-left: 1.25rem;
  }

  .xl\:mx-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xl\:my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-24 {
  padding: 1.5rem;
}

.pt-24 {
  padding-top: 1.5rem;
}

.pr-24 {
  padding-right: 1.5rem;
}

.pb-24 {
  padding-bottom: 1.5rem;
}

.pl-24 {
  padding-left: 1.5rem;
}

.px-24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.m-24 {
  margin: 1.5rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mr-24 {
  margin-right: 1.5rem;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.ml-24 {
  margin-left: 1.5rem;
}

.mx-24 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-24 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 360px) {
  .xs\:p-24 {
    padding: 1.5rem;
  }

  .xs\:pt-24 {
    padding-top: 1.5rem;
  }

  .xs\:pr-24 {
    padding-right: 1.5rem;
  }

  .xs\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .xs\:pl-24 {
    padding-left: 1.5rem;
  }

  .xs\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xs\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xs\:m-24 {
    margin: 1.5rem;
  }

  .xs\:mt-24 {
    margin-top: 1.5rem;
  }

  .xs\:mr-24 {
    margin-right: 1.5rem;
  }

  .xs\:mb-24 {
    margin-bottom: 1.5rem;
  }

  .xs\:ml-24 {
    margin-left: 1.5rem;
  }

  .xs\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xs\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-24 {
    padding: 1.5rem;
  }

  .sm\:pt-24 {
    padding-top: 1.5rem;
  }

  .sm\:pr-24 {
    padding-right: 1.5rem;
  }

  .sm\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .sm\:pl-24 {
    padding-left: 1.5rem;
  }

  .sm\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:m-24 {
    margin: 1.5rem;
  }

  .sm\:mt-24 {
    margin-top: 1.5rem;
  }

  .sm\:mr-24 {
    margin-right: 1.5rem;
  }

  .sm\:mb-24 {
    margin-bottom: 1.5rem;
  }

  .sm\:ml-24 {
    margin-left: 1.5rem;
  }

  .sm\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:p-24 {
    padding: 1.5rem;
  }

  .md\:pt-24 {
    padding-top: 1.5rem;
  }

  .md\:pr-24 {
    padding-right: 1.5rem;
  }

  .md\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .md\:pl-24 {
    padding-left: 1.5rem;
  }

  .md\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:m-24 {
    margin: 1.5rem;
  }

  .md\:mt-24 {
    margin-top: 1.5rem;
  }

  .md\:mr-24 {
    margin-right: 1.5rem;
  }

  .md\:mb-24 {
    margin-bottom: 1.5rem;
  }

  .md\:ml-24 {
    margin-left: 1.5rem;
  }

  .md\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .md\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-24 {
    padding: 1.5rem;
  }

  .lg\:pt-24 {
    padding-top: 1.5rem;
  }

  .lg\:pr-24 {
    padding-right: 1.5rem;
  }

  .lg\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .lg\:pl-24 {
    padding-left: 1.5rem;
  }

  .lg\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:m-24 {
    margin: 1.5rem;
  }

  .lg\:mt-24 {
    margin-top: 1.5rem;
  }

  .lg\:mr-24 {
    margin-right: 1.5rem;
  }

  .lg\:mb-24 {
    margin-bottom: 1.5rem;
  }

  .lg\:ml-24 {
    margin-left: 1.5rem;
  }

  .lg\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .lg\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-24 {
    padding: 1.5rem;
  }

  .xl\:pt-24 {
    padding-top: 1.5rem;
  }

  .xl\:pr-24 {
    padding-right: 1.5rem;
  }

  .xl\:pb-24 {
    padding-bottom: 1.5rem;
  }

  .xl\:pl-24 {
    padding-left: 1.5rem;
  }

  .xl\:px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xl\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xl\:m-24 {
    margin: 1.5rem;
  }

  .xl\:mt-24 {
    margin-top: 1.5rem;
  }

  .xl\:mr-24 {
    margin-right: 1.5rem;
  }

  .xl\:mb-24 {
    margin-bottom: 1.5rem;
  }

  .xl\:ml-24 {
    margin-left: 1.5rem;
  }

  .xl\:mx-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xl\:my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-28 {
  padding: 1.75rem;
}

.pt-28 {
  padding-top: 1.75rem;
}

.pr-28 {
  padding-right: 1.75rem;
}

.pb-28 {
  padding-bottom: 1.75rem;
}

.pl-28 {
  padding-left: 1.75rem;
}

.px-28 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.py-28 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.m-28 {
  margin: 1.75rem;
}

.mt-28 {
  margin-top: 1.75rem;
}

.mr-28 {
  margin-right: 1.75rem;
}

.mb-28 {
  margin-bottom: 1.75rem;
}

.ml-28 {
  margin-left: 1.75rem;
}

.mx-28 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.my-28 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 360px) {
  .xs\:p-28 {
    padding: 1.75rem;
  }

  .xs\:pt-28 {
    padding-top: 1.75rem;
  }

  .xs\:pr-28 {
    padding-right: 1.75rem;
  }

  .xs\:pb-28 {
    padding-bottom: 1.75rem;
  }

  .xs\:pl-28 {
    padding-left: 1.75rem;
  }

  .xs\:px-28 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xs\:py-28 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .xs\:m-28 {
    margin: 1.75rem;
  }

  .xs\:mt-28 {
    margin-top: 1.75rem;
  }

  .xs\:mr-28 {
    margin-right: 1.75rem;
  }

  .xs\:mb-28 {
    margin-bottom: 1.75rem;
  }

  .xs\:ml-28 {
    margin-left: 1.75rem;
  }

  .xs\:mx-28 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .xs\:my-28 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-28 {
    padding: 1.75rem;
  }

  .sm\:pt-28 {
    padding-top: 1.75rem;
  }

  .sm\:pr-28 {
    padding-right: 1.75rem;
  }

  .sm\:pb-28 {
    padding-bottom: 1.75rem;
  }

  .sm\:pl-28 {
    padding-left: 1.75rem;
  }

  .sm\:px-28 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .sm\:py-28 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .sm\:m-28 {
    margin: 1.75rem;
  }

  .sm\:mt-28 {
    margin-top: 1.75rem;
  }

  .sm\:mr-28 {
    margin-right: 1.75rem;
  }

  .sm\:mb-28 {
    margin-bottom: 1.75rem;
  }

  .sm\:ml-28 {
    margin-left: 1.75rem;
  }

  .sm\:mx-28 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:my-28 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 768px) {
  .md\:p-28 {
    padding: 1.75rem;
  }

  .md\:pt-28 {
    padding-top: 1.75rem;
  }

  .md\:pr-28 {
    padding-right: 1.75rem;
  }

  .md\:pb-28 {
    padding-bottom: 1.75rem;
  }

  .md\:pl-28 {
    padding-left: 1.75rem;
  }

  .md\:px-28 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .md\:py-28 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .md\:m-28 {
    margin: 1.75rem;
  }

  .md\:mt-28 {
    margin-top: 1.75rem;
  }

  .md\:mr-28 {
    margin-right: 1.75rem;
  }

  .md\:mb-28 {
    margin-bottom: 1.75rem;
  }

  .md\:ml-28 {
    margin-left: 1.75rem;
  }

  .md\:mx-28 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .md\:my-28 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-28 {
    padding: 1.75rem;
  }

  .lg\:pt-28 {
    padding-top: 1.75rem;
  }

  .lg\:pr-28 {
    padding-right: 1.75rem;
  }

  .lg\:pb-28 {
    padding-bottom: 1.75rem;
  }

  .lg\:pl-28 {
    padding-left: 1.75rem;
  }

  .lg\:px-28 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .lg\:py-28 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .lg\:m-28 {
    margin: 1.75rem;
  }

  .lg\:mt-28 {
    margin-top: 1.75rem;
  }

  .lg\:mr-28 {
    margin-right: 1.75rem;
  }

  .lg\:mb-28 {
    margin-bottom: 1.75rem;
  }

  .lg\:ml-28 {
    margin-left: 1.75rem;
  }

  .lg\:mx-28 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .lg\:my-28 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-28 {
    padding: 1.75rem;
  }

  .xl\:pt-28 {
    padding-top: 1.75rem;
  }

  .xl\:pr-28 {
    padding-right: 1.75rem;
  }

  .xl\:pb-28 {
    padding-bottom: 1.75rem;
  }

  .xl\:pl-28 {
    padding-left: 1.75rem;
  }

  .xl\:px-28 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xl\:py-28 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .xl\:m-28 {
    margin: 1.75rem;
  }

  .xl\:mt-28 {
    margin-top: 1.75rem;
  }

  .xl\:mr-28 {
    margin-right: 1.75rem;
  }

  .xl\:mb-28 {
    margin-bottom: 1.75rem;
  }

  .xl\:ml-28 {
    margin-left: 1.75rem;
  }

  .xl\:mx-28 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .xl\:my-28 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
}
.p-32 {
  padding: 2rem;
}

.pt-32 {
  padding-top: 2rem;
}

.pr-32 {
  padding-right: 2rem;
}

.pb-32 {
  padding-bottom: 2rem;
}

.pl-32 {
  padding-left: 2rem;
}

.px-32 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-32 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.m-32 {
  margin: 2rem;
}

.mt-32 {
  margin-top: 2rem;
}

.mr-32 {
  margin-right: 2rem;
}

.mb-32 {
  margin-bottom: 2rem;
}

.ml-32 {
  margin-left: 2rem;
}

.mx-32 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-32 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 360px) {
  .xs\:p-32 {
    padding: 2rem;
  }

  .xs\:pt-32 {
    padding-top: 2rem;
  }

  .xs\:pr-32 {
    padding-right: 2rem;
  }

  .xs\:pb-32 {
    padding-bottom: 2rem;
  }

  .xs\:pl-32 {
    padding-left: 2rem;
  }

  .xs\:px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xs\:py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xs\:m-32 {
    margin: 2rem;
  }

  .xs\:mt-32 {
    margin-top: 2rem;
  }

  .xs\:mr-32 {
    margin-right: 2rem;
  }

  .xs\:mb-32 {
    margin-bottom: 2rem;
  }

  .xs\:ml-32 {
    margin-left: 2rem;
  }

  .xs\:mx-32 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xs\:my-32 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-32 {
    padding: 2rem;
  }

  .sm\:pt-32 {
    padding-top: 2rem;
  }

  .sm\:pr-32 {
    padding-right: 2rem;
  }

  .sm\:pb-32 {
    padding-bottom: 2rem;
  }

  .sm\:pl-32 {
    padding-left: 2rem;
  }

  .sm\:px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:m-32 {
    margin: 2rem;
  }

  .sm\:mt-32 {
    margin-top: 2rem;
  }

  .sm\:mr-32 {
    margin-right: 2rem;
  }

  .sm\:mb-32 {
    margin-bottom: 2rem;
  }

  .sm\:ml-32 {
    margin-left: 2rem;
  }

  .sm\:mx-32 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:my-32 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .md\:p-32 {
    padding: 2rem;
  }

  .md\:pt-32 {
    padding-top: 2rem;
  }

  .md\:pr-32 {
    padding-right: 2rem;
  }

  .md\:pb-32 {
    padding-bottom: 2rem;
  }

  .md\:pl-32 {
    padding-left: 2rem;
  }

  .md\:px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:m-32 {
    margin: 2rem;
  }

  .md\:mt-32 {
    margin-top: 2rem;
  }

  .md\:mr-32 {
    margin-right: 2rem;
  }

  .md\:mb-32 {
    margin-bottom: 2rem;
  }

  .md\:ml-32 {
    margin-left: 2rem;
  }

  .md\:mx-32 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .md\:my-32 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-32 {
    padding: 2rem;
  }

  .lg\:pt-32 {
    padding-top: 2rem;
  }

  .lg\:pr-32 {
    padding-right: 2rem;
  }

  .lg\:pb-32 {
    padding-bottom: 2rem;
  }

  .lg\:pl-32 {
    padding-left: 2rem;
  }

  .lg\:px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:m-32 {
    margin: 2rem;
  }

  .lg\:mt-32 {
    margin-top: 2rem;
  }

  .lg\:mr-32 {
    margin-right: 2rem;
  }

  .lg\:mb-32 {
    margin-bottom: 2rem;
  }

  .lg\:ml-32 {
    margin-left: 2rem;
  }

  .lg\:mx-32 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .lg\:my-32 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-32 {
    padding: 2rem;
  }

  .xl\:pt-32 {
    padding-top: 2rem;
  }

  .xl\:pr-32 {
    padding-right: 2rem;
  }

  .xl\:pb-32 {
    padding-bottom: 2rem;
  }

  .xl\:pl-32 {
    padding-left: 2rem;
  }

  .xl\:px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xl\:m-32 {
    margin: 2rem;
  }

  .xl\:mt-32 {
    margin-top: 2rem;
  }

  .xl\:mr-32 {
    margin-right: 2rem;
  }

  .xl\:mb-32 {
    margin-bottom: 2rem;
  }

  .xl\:ml-32 {
    margin-left: 2rem;
  }

  .xl\:mx-32 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xl\:my-32 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.p-36 {
  padding: 2.25rem;
}

.pt-36 {
  padding-top: 2.25rem;
}

.pr-36 {
  padding-right: 2.25rem;
}

.pb-36 {
  padding-bottom: 2.25rem;
}

.pl-36 {
  padding-left: 2.25rem;
}

.px-36 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.py-36 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.m-36 {
  margin: 2.25rem;
}

.mt-36 {
  margin-top: 2.25rem;
}

.mr-36 {
  margin-right: 2.25rem;
}

.mb-36 {
  margin-bottom: 2.25rem;
}

.ml-36 {
  margin-left: 2.25rem;
}

.mx-36 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.my-36 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 360px) {
  .xs\:p-36 {
    padding: 2.25rem;
  }

  .xs\:pt-36 {
    padding-top: 2.25rem;
  }

  .xs\:pr-36 {
    padding-right: 2.25rem;
  }

  .xs\:pb-36 {
    padding-bottom: 2.25rem;
  }

  .xs\:pl-36 {
    padding-left: 2.25rem;
  }

  .xs\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .xs\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .xs\:m-36 {
    margin: 2.25rem;
  }

  .xs\:mt-36 {
    margin-top: 2.25rem;
  }

  .xs\:mr-36 {
    margin-right: 2.25rem;
  }

  .xs\:mb-36 {
    margin-bottom: 2.25rem;
  }

  .xs\:ml-36 {
    margin-left: 2.25rem;
  }

  .xs\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .xs\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-36 {
    padding: 2.25rem;
  }

  .sm\:pt-36 {
    padding-top: 2.25rem;
  }

  .sm\:pr-36 {
    padding-right: 2.25rem;
  }

  .sm\:pb-36 {
    padding-bottom: 2.25rem;
  }

  .sm\:pl-36 {
    padding-left: 2.25rem;
  }

  .sm\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:m-36 {
    margin: 2.25rem;
  }

  .sm\:mt-36 {
    margin-top: 2.25rem;
  }

  .sm\:mr-36 {
    margin-right: 2.25rem;
  }

  .sm\:mb-36 {
    margin-bottom: 2.25rem;
  }

  .sm\:ml-36 {
    margin-left: 2.25rem;
  }

  .sm\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .sm\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 768px) {
  .md\:p-36 {
    padding: 2.25rem;
  }

  .md\:pt-36 {
    padding-top: 2.25rem;
  }

  .md\:pr-36 {
    padding-right: 2.25rem;
  }

  .md\:pb-36 {
    padding-bottom: 2.25rem;
  }

  .md\:pl-36 {
    padding-left: 2.25rem;
  }

  .md\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .md\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .md\:m-36 {
    margin: 2.25rem;
  }

  .md\:mt-36 {
    margin-top: 2.25rem;
  }

  .md\:mr-36 {
    margin-right: 2.25rem;
  }

  .md\:mb-36 {
    margin-bottom: 2.25rem;
  }

  .md\:ml-36 {
    margin-left: 2.25rem;
  }

  .md\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .md\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-36 {
    padding: 2.25rem;
  }

  .lg\:pt-36 {
    padding-top: 2.25rem;
  }

  .lg\:pr-36 {
    padding-right: 2.25rem;
  }

  .lg\:pb-36 {
    padding-bottom: 2.25rem;
  }

  .lg\:pl-36 {
    padding-left: 2.25rem;
  }

  .lg\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .lg\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .lg\:m-36 {
    margin: 2.25rem;
  }

  .lg\:mt-36 {
    margin-top: 2.25rem;
  }

  .lg\:mr-36 {
    margin-right: 2.25rem;
  }

  .lg\:mb-36 {
    margin-bottom: 2.25rem;
  }

  .lg\:ml-36 {
    margin-left: 2.25rem;
  }

  .lg\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .lg\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-36 {
    padding: 2.25rem;
  }

  .xl\:pt-36 {
    padding-top: 2.25rem;
  }

  .xl\:pr-36 {
    padding-right: 2.25rem;
  }

  .xl\:pb-36 {
    padding-bottom: 2.25rem;
  }

  .xl\:pl-36 {
    padding-left: 2.25rem;
  }

  .xl\:px-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .xl\:py-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .xl\:m-36 {
    margin: 2.25rem;
  }

  .xl\:mt-36 {
    margin-top: 2.25rem;
  }

  .xl\:mr-36 {
    margin-right: 2.25rem;
  }

  .xl\:mb-36 {
    margin-bottom: 2.25rem;
  }

  .xl\:ml-36 {
    margin-left: 2.25rem;
  }

  .xl\:mx-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .xl\:my-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
.p-40 {
  padding: 2.5rem;
}

.pt-40 {
  padding-top: 2.5rem;
}

.pr-40 {
  padding-right: 2.5rem;
}

.pb-40 {
  padding-bottom: 2.5rem;
}

.pl-40 {
  padding-left: 2.5rem;
}

.px-40 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-40 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.m-40 {
  margin: 2.5rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mr-40 {
  margin-right: 2.5rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

.ml-40 {
  margin-left: 2.5rem;
}

.mx-40 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-40 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 360px) {
  .xs\:p-40 {
    padding: 2.5rem;
  }

  .xs\:pt-40 {
    padding-top: 2.5rem;
  }

  .xs\:pr-40 {
    padding-right: 2.5rem;
  }

  .xs\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .xs\:pl-40 {
    padding-left: 2.5rem;
  }

  .xs\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xs\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xs\:m-40 {
    margin: 2.5rem;
  }

  .xs\:mt-40 {
    margin-top: 2.5rem;
  }

  .xs\:mr-40 {
    margin-right: 2.5rem;
  }

  .xs\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .xs\:ml-40 {
    margin-left: 2.5rem;
  }

  .xs\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xs\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-40 {
    padding: 2.5rem;
  }

  .sm\:pt-40 {
    padding-top: 2.5rem;
  }

  .sm\:pr-40 {
    padding-right: 2.5rem;
  }

  .sm\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .sm\:pl-40 {
    padding-left: 2.5rem;
  }

  .sm\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:m-40 {
    margin: 2.5rem;
  }

  .sm\:mt-40 {
    margin-top: 2.5rem;
  }

  .sm\:mr-40 {
    margin-right: 2.5rem;
  }

  .sm\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .sm\:ml-40 {
    margin-left: 2.5rem;
  }

  .sm\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .md\:p-40 {
    padding: 2.5rem;
  }

  .md\:pt-40 {
    padding-top: 2.5rem;
  }

  .md\:pr-40 {
    padding-right: 2.5rem;
  }

  .md\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .md\:pl-40 {
    padding-left: 2.5rem;
  }

  .md\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:m-40 {
    margin: 2.5rem;
  }

  .md\:mt-40 {
    margin-top: 2.5rem;
  }

  .md\:mr-40 {
    margin-right: 2.5rem;
  }

  .md\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .md\:ml-40 {
    margin-left: 2.5rem;
  }

  .md\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .md\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-40 {
    padding: 2.5rem;
  }

  .lg\:pt-40 {
    padding-top: 2.5rem;
  }

  .lg\:pr-40 {
    padding-right: 2.5rem;
  }

  .lg\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .lg\:pl-40 {
    padding-left: 2.5rem;
  }

  .lg\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:m-40 {
    margin: 2.5rem;
  }

  .lg\:mt-40 {
    margin-top: 2.5rem;
  }

  .lg\:mr-40 {
    margin-right: 2.5rem;
  }

  .lg\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .lg\:ml-40 {
    margin-left: 2.5rem;
  }

  .lg\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .lg\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-40 {
    padding: 2.5rem;
  }

  .xl\:pt-40 {
    padding-top: 2.5rem;
  }

  .xl\:pr-40 {
    padding-right: 2.5rem;
  }

  .xl\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .xl\:pl-40 {
    padding-left: 2.5rem;
  }

  .xl\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:m-40 {
    margin: 2.5rem;
  }

  .xl\:mt-40 {
    margin-top: 2.5rem;
  }

  .xl\:mr-40 {
    margin-right: 2.5rem;
  }

  .xl\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .xl\:ml-40 {
    margin-left: 2.5rem;
  }

  .xl\:mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xl\:my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-44 {
  padding: 2.75rem;
}

.pt-44 {
  padding-top: 2.75rem;
}

.pr-44 {
  padding-right: 2.75rem;
}

.pb-44 {
  padding-bottom: 2.75rem;
}

.pl-44 {
  padding-left: 2.75rem;
}

.px-44 {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.py-44 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.m-44 {
  margin: 2.75rem;
}

.mt-44 {
  margin-top: 2.75rem;
}

.mr-44 {
  margin-right: 2.75rem;
}

.mb-44 {
  margin-bottom: 2.75rem;
}

.ml-44 {
  margin-left: 2.75rem;
}

.mx-44 {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.my-44 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 360px) {
  .xs\:p-44 {
    padding: 2.75rem;
  }

  .xs\:pt-44 {
    padding-top: 2.75rem;
  }

  .xs\:pr-44 {
    padding-right: 2.75rem;
  }

  .xs\:pb-44 {
    padding-bottom: 2.75rem;
  }

  .xs\:pl-44 {
    padding-left: 2.75rem;
  }

  .xs\:px-44 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .xs\:py-44 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .xs\:m-44 {
    margin: 2.75rem;
  }

  .xs\:mt-44 {
    margin-top: 2.75rem;
  }

  .xs\:mr-44 {
    margin-right: 2.75rem;
  }

  .xs\:mb-44 {
    margin-bottom: 2.75rem;
  }

  .xs\:ml-44 {
    margin-left: 2.75rem;
  }

  .xs\:mx-44 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .xs\:my-44 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-44 {
    padding: 2.75rem;
  }

  .sm\:pt-44 {
    padding-top: 2.75rem;
  }

  .sm\:pr-44 {
    padding-right: 2.75rem;
  }

  .sm\:pb-44 {
    padding-bottom: 2.75rem;
  }

  .sm\:pl-44 {
    padding-left: 2.75rem;
  }

  .sm\:px-44 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .sm\:py-44 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .sm\:m-44 {
    margin: 2.75rem;
  }

  .sm\:mt-44 {
    margin-top: 2.75rem;
  }

  .sm\:mr-44 {
    margin-right: 2.75rem;
  }

  .sm\:mb-44 {
    margin-bottom: 2.75rem;
  }

  .sm\:ml-44 {
    margin-left: 2.75rem;
  }

  .sm\:mx-44 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .sm\:my-44 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }
}
@media (min-width: 768px) {
  .md\:p-44 {
    padding: 2.75rem;
  }

  .md\:pt-44 {
    padding-top: 2.75rem;
  }

  .md\:pr-44 {
    padding-right: 2.75rem;
  }

  .md\:pb-44 {
    padding-bottom: 2.75rem;
  }

  .md\:pl-44 {
    padding-left: 2.75rem;
  }

  .md\:px-44 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .md\:py-44 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .md\:m-44 {
    margin: 2.75rem;
  }

  .md\:mt-44 {
    margin-top: 2.75rem;
  }

  .md\:mr-44 {
    margin-right: 2.75rem;
  }

  .md\:mb-44 {
    margin-bottom: 2.75rem;
  }

  .md\:ml-44 {
    margin-left: 2.75rem;
  }

  .md\:mx-44 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .md\:my-44 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-44 {
    padding: 2.75rem;
  }

  .lg\:pt-44 {
    padding-top: 2.75rem;
  }

  .lg\:pr-44 {
    padding-right: 2.75rem;
  }

  .lg\:pb-44 {
    padding-bottom: 2.75rem;
  }

  .lg\:pl-44 {
    padding-left: 2.75rem;
  }

  .lg\:px-44 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .lg\:py-44 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .lg\:m-44 {
    margin: 2.75rem;
  }

  .lg\:mt-44 {
    margin-top: 2.75rem;
  }

  .lg\:mr-44 {
    margin-right: 2.75rem;
  }

  .lg\:mb-44 {
    margin-bottom: 2.75rem;
  }

  .lg\:ml-44 {
    margin-left: 2.75rem;
  }

  .lg\:mx-44 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .lg\:my-44 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-44 {
    padding: 2.75rem;
  }

  .xl\:pt-44 {
    padding-top: 2.75rem;
  }

  .xl\:pr-44 {
    padding-right: 2.75rem;
  }

  .xl\:pb-44 {
    padding-bottom: 2.75rem;
  }

  .xl\:pl-44 {
    padding-left: 2.75rem;
  }

  .xl\:px-44 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .xl\:py-44 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .xl\:m-44 {
    margin: 2.75rem;
  }

  .xl\:mt-44 {
    margin-top: 2.75rem;
  }

  .xl\:mr-44 {
    margin-right: 2.75rem;
  }

  .xl\:mb-44 {
    margin-bottom: 2.75rem;
  }

  .xl\:ml-44 {
    margin-left: 2.75rem;
  }

  .xl\:mx-44 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .xl\:my-44 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }
}
.p-48 {
  padding: 3rem;
}

.pt-48 {
  padding-top: 3rem;
}

.pr-48 {
  padding-right: 3rem;
}

.pb-48 {
  padding-bottom: 3rem;
}

.pl-48 {
  padding-left: 3rem;
}

.px-48 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-48 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.m-48 {
  margin: 3rem;
}

.mt-48 {
  margin-top: 3rem;
}

.mr-48 {
  margin-right: 3rem;
}

.mb-48 {
  margin-bottom: 3rem;
}

.ml-48 {
  margin-left: 3rem;
}

.mx-48 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-48 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 360px) {
  .xs\:p-48 {
    padding: 3rem;
  }

  .xs\:pt-48 {
    padding-top: 3rem;
  }

  .xs\:pr-48 {
    padding-right: 3rem;
  }

  .xs\:pb-48 {
    padding-bottom: 3rem;
  }

  .xs\:pl-48 {
    padding-left: 3rem;
  }

  .xs\:px-48 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xs\:py-48 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xs\:m-48 {
    margin: 3rem;
  }

  .xs\:mt-48 {
    margin-top: 3rem;
  }

  .xs\:mr-48 {
    margin-right: 3rem;
  }

  .xs\:mb-48 {
    margin-bottom: 3rem;
  }

  .xs\:ml-48 {
    margin-left: 3rem;
  }

  .xs\:mx-48 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xs\:my-48 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 576px) {
  .sm\:p-48 {
    padding: 3rem;
  }

  .sm\:pt-48 {
    padding-top: 3rem;
  }

  .sm\:pr-48 {
    padding-right: 3rem;
  }

  .sm\:pb-48 {
    padding-bottom: 3rem;
  }

  .sm\:pl-48 {
    padding-left: 3rem;
  }

  .sm\:px-48 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:py-48 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:m-48 {
    margin: 3rem;
  }

  .sm\:mt-48 {
    margin-top: 3rem;
  }

  .sm\:mr-48 {
    margin-right: 3rem;
  }

  .sm\:mb-48 {
    margin-bottom: 3rem;
  }

  .sm\:ml-48 {
    margin-left: 3rem;
  }

  .sm\:mx-48 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:my-48 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .md\:p-48 {
    padding: 3rem;
  }

  .md\:pt-48 {
    padding-top: 3rem;
  }

  .md\:pr-48 {
    padding-right: 3rem;
  }

  .md\:pb-48 {
    padding-bottom: 3rem;
  }

  .md\:pl-48 {
    padding-left: 3rem;
  }

  .md\:px-48 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:py-48 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:m-48 {
    margin: 3rem;
  }

  .md\:mt-48 {
    margin-top: 3rem;
  }

  .md\:mr-48 {
    margin-right: 3rem;
  }

  .md\:mb-48 {
    margin-bottom: 3rem;
  }

  .md\:ml-48 {
    margin-left: 3rem;
  }

  .md\:mx-48 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .md\:my-48 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .lg\:p-48 {
    padding: 3rem;
  }

  .lg\:pt-48 {
    padding-top: 3rem;
  }

  .lg\:pr-48 {
    padding-right: 3rem;
  }

  .lg\:pb-48 {
    padding-bottom: 3rem;
  }

  .lg\:pl-48 {
    padding-left: 3rem;
  }

  .lg\:px-48 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:py-48 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:m-48 {
    margin: 3rem;
  }

  .lg\:mt-48 {
    margin-top: 3rem;
  }

  .lg\:mr-48 {
    margin-right: 3rem;
  }

  .lg\:mb-48 {
    margin-bottom: 3rem;
  }

  .lg\:ml-48 {
    margin-left: 3rem;
  }

  .lg\:mx-48 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .lg\:my-48 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1280px) {
  .xl\:p-48 {
    padding: 3rem;
  }

  .xl\:pt-48 {
    padding-top: 3rem;
  }

  .xl\:pr-48 {
    padding-right: 3rem;
  }

  .xl\:pb-48 {
    padding-bottom: 3rem;
  }

  .xl\:pl-48 {
    padding-left: 3rem;
  }

  .xl\:px-48 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:py-48 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:m-48 {
    margin: 3rem;
  }

  .xl\:mt-48 {
    margin-top: 3rem;
  }

  .xl\:mr-48 {
    margin-right: 3rem;
  }

  .xl\:mb-48 {
    margin-bottom: 3rem;
  }

  .xl\:ml-48 {
    margin-left: 3rem;
  }

  .xl\:mx-48 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xl\:my-48 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.p-auto {
  padding: auto;
}

.pt-auto {
  padding-top: auto;
}

.pr-auto {
  padding-right: auto;
}

.pb-auto {
  padding-bottom: auto;
}

.pl-auto {
  padding-left: auto;
}

.px-auto {
  padding-left: auto;
  padding-right: auto;
}

.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}

.m-auto {
  margin: auto;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

@media (min-width: 360px) {
  .xs\:p-auto {
    padding: auto;
  }

  .xs\:pt-auto {
    padding-top: auto;
  }

  .xs\:pr-auto {
    padding-right: auto;
  }

  .xs\:pb-auto {
    padding-bottom: auto;
  }

  .xs\:pl-auto {
    padding-left: auto;
  }

  .xs\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .xs\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .xs\:m-auto {
    margin: auto;
  }

  .xs\:mt-auto {
    margin-top: auto;
  }

  .xs\:mr-auto {
    margin-right: auto;
  }

  .xs\:mb-auto {
    margin-bottom: auto;
  }

  .xs\:ml-auto {
    margin-left: auto;
  }

  .xs\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xs\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 576px) {
  .sm\:p-auto {
    padding: auto;
  }

  .sm\:pt-auto {
    padding-top: auto;
  }

  .sm\:pr-auto {
    padding-right: auto;
  }

  .sm\:pb-auto {
    padding-bottom: auto;
  }

  .sm\:pl-auto {
    padding-left: auto;
  }

  .sm\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .sm\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .sm\:m-auto {
    margin: auto;
  }

  .sm\:mt-auto {
    margin-top: auto;
  }

  .sm\:mr-auto {
    margin-right: auto;
  }

  .sm\:mb-auto {
    margin-bottom: auto;
  }

  .sm\:ml-auto {
    margin-left: auto;
  }

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 768px) {
  .md\:p-auto {
    padding: auto;
  }

  .md\:pt-auto {
    padding-top: auto;
  }

  .md\:pr-auto {
    padding-right: auto;
  }

  .md\:pb-auto {
    padding-bottom: auto;
  }

  .md\:pl-auto {
    padding-left: auto;
  }

  .md\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .md\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .md\:m-auto {
    margin: auto;
  }

  .md\:mt-auto {
    margin-top: auto;
  }

  .md\:mr-auto {
    margin-right: auto;
  }

  .md\:mb-auto {
    margin-bottom: auto;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 1024px) {
  .lg\:p-auto {
    padding: auto;
  }

  .lg\:pt-auto {
    padding-top: auto;
  }

  .lg\:pr-auto {
    padding-right: auto;
  }

  .lg\:pb-auto {
    padding-bottom: auto;
  }

  .lg\:pl-auto {
    padding-left: auto;
  }

  .lg\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .lg\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .lg\:m-auto {
    margin: auto;
  }

  .lg\:mt-auto {
    margin-top: auto;
  }

  .lg\:mr-auto {
    margin-right: auto;
  }

  .lg\:mb-auto {
    margin-bottom: auto;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 1280px) {
  .xl\:p-auto {
    padding: auto;
  }

  .xl\:pt-auto {
    padding-top: auto;
  }

  .xl\:pr-auto {
    padding-right: auto;
  }

  .xl\:pb-auto {
    padding-bottom: auto;
  }

  .xl\:pl-auto {
    padding-left: auto;
  }

  .xl\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .xl\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .xl\:m-auto {
    margin: auto;
  }

  .xl\:mt-auto {
    margin-top: auto;
  }

  .xl\:mr-auto {
    margin-right: auto;
  }

  .xl\:mb-auto {
    margin-bottom: auto;
  }

  .xl\:ml-auto {
    margin-left: auto;
  }

  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
/* -------------------------------------------------- */
/* ==Grillade : système de micro-grille  de KNACSS   */
/* ------------------------------------------------ */
.grid {
  display: grid;
}

@media (min-width: 360px) {
  .xs\:grid {
    display: grid;
  }
}
@media (min-width: 576px) {
  .sm\:grid {
    display: grid;
  }
}
@media (min-width: 768px) {
  .md\:grid {
    display: grid;
  }
}
@media (min-width: 1024px) {
  .lg\:grid {
    display: grid;
  }
}
@media (min-width: 1280px) {
  .xl\:grid {
    display: grid;
  }
}
/* grid-template-columns initialisation */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* grid-template-columns au sein des breakpoints */
@media (min-width: 360px) {
  .xs\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xs\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xs\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xs\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xs\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xs\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xs\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .xs\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .xs\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .xs\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .xs\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xs\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 576px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
/* gap initialisation */
.gap-0 {
  gap: 0;
}

.gap-x-0 {
  column-gap: 0;
}

.gap-y-0 {
  row-gap: 0;
}

.gap-1 {
  gap: 0.063rem;
}

.gap-x-1 {
  column-gap: 0.063rem;
}

.gap-y-1 {
  row-gap: 0.063rem;
}

.gap-2 {
  gap: 0.126rem;
}

.gap-x-2 {
  column-gap: 0.126rem;
}

.gap-y-2 {
  row-gap: 0.126rem;
}

.gap-3 {
  gap: 0.188rem;
}

.gap-x-3 {
  column-gap: 0.188rem;
}

.gap-y-3 {
  row-gap: 0.188rem;
}

.gap-5 {
  gap: 0.313rem;
}

.gap-x-5 {
  column-gap: 0.313rem;
}

.gap-y-5 {
  row-gap: 0.313rem;
}

.gap-10 {
  gap: 0.625rem;
}

.gap-x-10 {
  column-gap: 0.625rem;
}

.gap-y-10 {
  row-gap: 0.625rem;
}

.gap-16 {
  gap: 1rem;
}

.gap-x-16 {
  column-gap: 1rem;
}

.gap-y-16 {
  row-gap: 1rem;
}

.gap-20 {
  gap: 1.25rem;
}

.gap-x-20 {
  column-gap: 1.25rem;
}

.gap-y-20 {
  row-gap: 1.25rem;
}

.gap-24 {
  gap: 1.5rem;
}

.gap-x-24 {
  column-gap: 1.5rem;
}

.gap-y-24 {
  row-gap: 1.5rem;
}

.gap-28 {
  gap: 1.75rem;
}

.gap-x-28 {
  column-gap: 1.75rem;
}

.gap-y-28 {
  row-gap: 1.75rem;
}

.gap-32 {
  gap: 2rem;
}

.gap-x-32 {
  column-gap: 2rem;
}

.gap-y-32 {
  row-gap: 2rem;
}

.gap-36 {
  gap: 2.25rem;
}

.gap-x-36 {
  column-gap: 2.25rem;
}

.gap-y-36 {
  row-gap: 2.25rem;
}

.gap-40 {
  gap: 2.5rem;
}

.gap-x-40 {
  column-gap: 2.5rem;
}

.gap-y-40 {
  row-gap: 2.5rem;
}

.gap-44 {
  gap: 2.75rem;
}

.gap-x-44 {
  column-gap: 2.75rem;
}

.gap-y-44 {
  row-gap: 2.75rem;
}

.gap-48 {
  gap: 3rem;
}

.gap-x-48 {
  column-gap: 3rem;
}

.gap-y-48 {
  row-gap: 3rem;
}

/* height-percent initialisation */
.hp-0 {
  height: 0;
}

.hp-5 {
  height: 5%;
}

.hp-10 {
  height: 10%;
}

.hp-15 {
  height: 15%;
}

.hp-20 {
  height: 20%;
}

.hp-25 {
  height: 25%;
}

.hp-30 {
  height: 30%;
}

.hp-35 {
  height: 35%;
}

.hp-40 {
  height: 40%;
}

.hp-45 {
  height: 45%;
}

.hp-50 {
  height: 50%;
}

.hp-55 {
  height: 55%;
}

.hp-60 {
  height: 60%;
}

.hp-65 {
  height: 65%;
}

.hp-70 {
  height: 70%;
}

.hp-75 {
  height: 75%;
}

.hp-80 {
  height: 80%;
}

.hp-85 {
  height: 85%;
}

.hp-90 {
  height: 90%;
}

.hp-95 {
  height: 95%;
}

.hp-100 {
  height: 100%;
}

/* gap au sein des breakpoints */
@media (min-width: 360px) {
  .xs\:gap-0 {
    gap: 0;
  }

  .xs\:gap-x-0 {
    column-gap: 0;
  }

  .xs\:gap-y-0 {
    row-gap: 0;
  }

  .xs\:gap-1 {
    gap: 0.063rem;
  }

  .xs\:gap-x-1 {
    column-gap: 0.063rem;
  }

  .xs\:gap-y-1 {
    row-gap: 0.063rem;
  }

  .xs\:gap-2 {
    gap: 0.126rem;
  }

  .xs\:gap-x-2 {
    column-gap: 0.126rem;
  }

  .xs\:gap-y-2 {
    row-gap: 0.126rem;
  }

  .xs\:gap-3 {
    gap: 0.188rem;
  }

  .xs\:gap-x-3 {
    column-gap: 0.188rem;
  }

  .xs\:gap-y-3 {
    row-gap: 0.188rem;
  }

  .xs\:gap-5 {
    gap: 0.313rem;
  }

  .xs\:gap-x-5 {
    column-gap: 0.313rem;
  }

  .xs\:gap-y-5 {
    row-gap: 0.313rem;
  }

  .xs\:gap-10 {
    gap: 0.625rem;
  }

  .xs\:gap-x-10 {
    column-gap: 0.625rem;
  }

  .xs\:gap-y-10 {
    row-gap: 0.625rem;
  }

  .xs\:gap-16 {
    gap: 1rem;
  }

  .xs\:gap-x-16 {
    column-gap: 1rem;
  }

  .xs\:gap-y-16 {
    row-gap: 1rem;
  }

  .xs\:gap-20 {
    gap: 1.25rem;
  }

  .xs\:gap-x-20 {
    column-gap: 1.25rem;
  }

  .xs\:gap-y-20 {
    row-gap: 1.25rem;
  }

  .xs\:gap-24 {
    gap: 1.5rem;
  }

  .xs\:gap-x-24 {
    column-gap: 1.5rem;
  }

  .xs\:gap-y-24 {
    row-gap: 1.5rem;
  }

  .xs\:gap-28 {
    gap: 1.75rem;
  }

  .xs\:gap-x-28 {
    column-gap: 1.75rem;
  }

  .xs\:gap-y-28 {
    row-gap: 1.75rem;
  }

  .xs\:gap-32 {
    gap: 2rem;
  }

  .xs\:gap-x-32 {
    column-gap: 2rem;
  }

  .xs\:gap-y-32 {
    row-gap: 2rem;
  }

  .xs\:gap-36 {
    gap: 2.25rem;
  }

  .xs\:gap-x-36 {
    column-gap: 2.25rem;
  }

  .xs\:gap-y-36 {
    row-gap: 2.25rem;
  }

  .xs\:gap-40 {
    gap: 2.5rem;
  }

  .xs\:gap-x-40 {
    column-gap: 2.5rem;
  }

  .xs\:gap-y-40 {
    row-gap: 2.5rem;
  }

  .xs\:gap-44 {
    gap: 2.75rem;
  }

  .xs\:gap-x-44 {
    column-gap: 2.75rem;
  }

  .xs\:gap-y-44 {
    row-gap: 2.75rem;
  }

  .xs\:gap-48 {
    gap: 3rem;
  }

  .xs\:gap-x-48 {
    column-gap: 3rem;
  }

  .xs\:gap-y-48 {
    row-gap: 3rem;
  }
}
@media (min-width: 576px) {
  .sm\:gap-0 {
    gap: 0;
  }

  .sm\:gap-x-0 {
    column-gap: 0;
  }

  .sm\:gap-y-0 {
    row-gap: 0;
  }

  .sm\:gap-1 {
    gap: 0.063rem;
  }

  .sm\:gap-x-1 {
    column-gap: 0.063rem;
  }

  .sm\:gap-y-1 {
    row-gap: 0.063rem;
  }

  .sm\:gap-2 {
    gap: 0.126rem;
  }

  .sm\:gap-x-2 {
    column-gap: 0.126rem;
  }

  .sm\:gap-y-2 {
    row-gap: 0.126rem;
  }

  .sm\:gap-3 {
    gap: 0.188rem;
  }

  .sm\:gap-x-3 {
    column-gap: 0.188rem;
  }

  .sm\:gap-y-3 {
    row-gap: 0.188rem;
  }

  .sm\:gap-5 {
    gap: 0.313rem;
  }

  .sm\:gap-x-5 {
    column-gap: 0.313rem;
  }

  .sm\:gap-y-5 {
    row-gap: 0.313rem;
  }

  .sm\:gap-10 {
    gap: 0.625rem;
  }

  .sm\:gap-x-10 {
    column-gap: 0.625rem;
  }

  .sm\:gap-y-10 {
    row-gap: 0.625rem;
  }

  .sm\:gap-16 {
    gap: 1rem;
  }

  .sm\:gap-x-16 {
    column-gap: 1rem;
  }

  .sm\:gap-y-16 {
    row-gap: 1rem;
  }

  .sm\:gap-20 {
    gap: 1.25rem;
  }

  .sm\:gap-x-20 {
    column-gap: 1.25rem;
  }

  .sm\:gap-y-20 {
    row-gap: 1.25rem;
  }

  .sm\:gap-24 {
    gap: 1.5rem;
  }

  .sm\:gap-x-24 {
    column-gap: 1.5rem;
  }

  .sm\:gap-y-24 {
    row-gap: 1.5rem;
  }

  .sm\:gap-28 {
    gap: 1.75rem;
  }

  .sm\:gap-x-28 {
    column-gap: 1.75rem;
  }

  .sm\:gap-y-28 {
    row-gap: 1.75rem;
  }

  .sm\:gap-32 {
    gap: 2rem;
  }

  .sm\:gap-x-32 {
    column-gap: 2rem;
  }

  .sm\:gap-y-32 {
    row-gap: 2rem;
  }

  .sm\:gap-36 {
    gap: 2.25rem;
  }

  .sm\:gap-x-36 {
    column-gap: 2.25rem;
  }

  .sm\:gap-y-36 {
    row-gap: 2.25rem;
  }

  .sm\:gap-40 {
    gap: 2.5rem;
  }

  .sm\:gap-x-40 {
    column-gap: 2.5rem;
  }

  .sm\:gap-y-40 {
    row-gap: 2.5rem;
  }

  .sm\:gap-44 {
    gap: 2.75rem;
  }

  .sm\:gap-x-44 {
    column-gap: 2.75rem;
  }

  .sm\:gap-y-44 {
    row-gap: 2.75rem;
  }

  .sm\:gap-48 {
    gap: 3rem;
  }

  .sm\:gap-x-48 {
    column-gap: 3rem;
  }

  .sm\:gap-y-48 {
    row-gap: 3rem;
  }
}
@media (min-width: 768px) {
  .md\:gap-0 {
    gap: 0;
  }

  .md\:gap-x-0 {
    column-gap: 0;
  }

  .md\:gap-y-0 {
    row-gap: 0;
  }

  .md\:gap-1 {
    gap: 0.063rem;
  }

  .md\:gap-x-1 {
    column-gap: 0.063rem;
  }

  .md\:gap-y-1 {
    row-gap: 0.063rem;
  }

  .md\:gap-2 {
    gap: 0.126rem;
  }

  .md\:gap-x-2 {
    column-gap: 0.126rem;
  }

  .md\:gap-y-2 {
    row-gap: 0.126rem;
  }

  .md\:gap-3 {
    gap: 0.188rem;
  }

  .md\:gap-x-3 {
    column-gap: 0.188rem;
  }

  .md\:gap-y-3 {
    row-gap: 0.188rem;
  }

  .md\:gap-5 {
    gap: 0.313rem;
  }

  .md\:gap-x-5 {
    column-gap: 0.313rem;
  }

  .md\:gap-y-5 {
    row-gap: 0.313rem;
  }

  .md\:gap-10 {
    gap: 0.625rem;
  }

  .md\:gap-x-10 {
    column-gap: 0.625rem;
  }

  .md\:gap-y-10 {
    row-gap: 0.625rem;
  }

  .md\:gap-16 {
    gap: 1rem;
  }

  .md\:gap-x-16 {
    column-gap: 1rem;
  }

  .md\:gap-y-16 {
    row-gap: 1rem;
  }

  .md\:gap-20 {
    gap: 1.25rem;
  }

  .md\:gap-x-20 {
    column-gap: 1.25rem;
  }

  .md\:gap-y-20 {
    row-gap: 1.25rem;
  }

  .md\:gap-24 {
    gap: 1.5rem;
  }

  .md\:gap-x-24 {
    column-gap: 1.5rem;
  }

  .md\:gap-y-24 {
    row-gap: 1.5rem;
  }

  .md\:gap-28 {
    gap: 1.75rem;
  }

  .md\:gap-x-28 {
    column-gap: 1.75rem;
  }

  .md\:gap-y-28 {
    row-gap: 1.75rem;
  }

  .md\:gap-32 {
    gap: 2rem;
  }

  .md\:gap-x-32 {
    column-gap: 2rem;
  }

  .md\:gap-y-32 {
    row-gap: 2rem;
  }

  .md\:gap-36 {
    gap: 2.25rem;
  }

  .md\:gap-x-36 {
    column-gap: 2.25rem;
  }

  .md\:gap-y-36 {
    row-gap: 2.25rem;
  }

  .md\:gap-40 {
    gap: 2.5rem;
  }

  .md\:gap-x-40 {
    column-gap: 2.5rem;
  }

  .md\:gap-y-40 {
    row-gap: 2.5rem;
  }

  .md\:gap-44 {
    gap: 2.75rem;
  }

  .md\:gap-x-44 {
    column-gap: 2.75rem;
  }

  .md\:gap-y-44 {
    row-gap: 2.75rem;
  }

  .md\:gap-48 {
    gap: 3rem;
  }

  .md\:gap-x-48 {
    column-gap: 3rem;
  }

  .md\:gap-y-48 {
    row-gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-0 {
    gap: 0;
  }

  .lg\:gap-x-0 {
    column-gap: 0;
  }

  .lg\:gap-y-0 {
    row-gap: 0;
  }

  .lg\:gap-1 {
    gap: 0.063rem;
  }

  .lg\:gap-x-1 {
    column-gap: 0.063rem;
  }

  .lg\:gap-y-1 {
    row-gap: 0.063rem;
  }

  .lg\:gap-2 {
    gap: 0.126rem;
  }

  .lg\:gap-x-2 {
    column-gap: 0.126rem;
  }

  .lg\:gap-y-2 {
    row-gap: 0.126rem;
  }

  .lg\:gap-3 {
    gap: 0.188rem;
  }

  .lg\:gap-x-3 {
    column-gap: 0.188rem;
  }

  .lg\:gap-y-3 {
    row-gap: 0.188rem;
  }

  .lg\:gap-5 {
    gap: 0.313rem;
  }

  .lg\:gap-x-5 {
    column-gap: 0.313rem;
  }

  .lg\:gap-y-5 {
    row-gap: 0.313rem;
  }

  .lg\:gap-10 {
    gap: 0.625rem;
  }

  .lg\:gap-x-10 {
    column-gap: 0.625rem;
  }

  .lg\:gap-y-10 {
    row-gap: 0.625rem;
  }

  .lg\:gap-16 {
    gap: 1rem;
  }

  .lg\:gap-x-16 {
    column-gap: 1rem;
  }

  .lg\:gap-y-16 {
    row-gap: 1rem;
  }

  .lg\:gap-20 {
    gap: 1.25rem;
  }

  .lg\:gap-x-20 {
    column-gap: 1.25rem;
  }

  .lg\:gap-y-20 {
    row-gap: 1.25rem;
  }

  .lg\:gap-24 {
    gap: 1.5rem;
  }

  .lg\:gap-x-24 {
    column-gap: 1.5rem;
  }

  .lg\:gap-y-24 {
    row-gap: 1.5rem;
  }

  .lg\:gap-28 {
    gap: 1.75rem;
  }

  .lg\:gap-x-28 {
    column-gap: 1.75rem;
  }

  .lg\:gap-y-28 {
    row-gap: 1.75rem;
  }

  .lg\:gap-32 {
    gap: 2rem;
  }

  .lg\:gap-x-32 {
    column-gap: 2rem;
  }

  .lg\:gap-y-32 {
    row-gap: 2rem;
  }

  .lg\:gap-36 {
    gap: 2.25rem;
  }

  .lg\:gap-x-36 {
    column-gap: 2.25rem;
  }

  .lg\:gap-y-36 {
    row-gap: 2.25rem;
  }

  .lg\:gap-40 {
    gap: 2.5rem;
  }

  .lg\:gap-x-40 {
    column-gap: 2.5rem;
  }

  .lg\:gap-y-40 {
    row-gap: 2.5rem;
  }

  .lg\:gap-44 {
    gap: 2.75rem;
  }

  .lg\:gap-x-44 {
    column-gap: 2.75rem;
  }

  .lg\:gap-y-44 {
    row-gap: 2.75rem;
  }

  .lg\:gap-48 {
    gap: 3rem;
  }

  .lg\:gap-x-48 {
    column-gap: 3rem;
  }

  .lg\:gap-y-48 {
    row-gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-0 {
    gap: 0;
  }

  .xl\:gap-x-0 {
    column-gap: 0;
  }

  .xl\:gap-y-0 {
    row-gap: 0;
  }

  .xl\:gap-1 {
    gap: 0.063rem;
  }

  .xl\:gap-x-1 {
    column-gap: 0.063rem;
  }

  .xl\:gap-y-1 {
    row-gap: 0.063rem;
  }

  .xl\:gap-2 {
    gap: 0.126rem;
  }

  .xl\:gap-x-2 {
    column-gap: 0.126rem;
  }

  .xl\:gap-y-2 {
    row-gap: 0.126rem;
  }

  .xl\:gap-3 {
    gap: 0.188rem;
  }

  .xl\:gap-x-3 {
    column-gap: 0.188rem;
  }

  .xl\:gap-y-3 {
    row-gap: 0.188rem;
  }

  .xl\:gap-5 {
    gap: 0.313rem;
  }

  .xl\:gap-x-5 {
    column-gap: 0.313rem;
  }

  .xl\:gap-y-5 {
    row-gap: 0.313rem;
  }

  .xl\:gap-10 {
    gap: 0.625rem;
  }

  .xl\:gap-x-10 {
    column-gap: 0.625rem;
  }

  .xl\:gap-y-10 {
    row-gap: 0.625rem;
  }

  .xl\:gap-16 {
    gap: 1rem;
  }

  .xl\:gap-x-16 {
    column-gap: 1rem;
  }

  .xl\:gap-y-16 {
    row-gap: 1rem;
  }

  .xl\:gap-20 {
    gap: 1.25rem;
  }

  .xl\:gap-x-20 {
    column-gap: 1.25rem;
  }

  .xl\:gap-y-20 {
    row-gap: 1.25rem;
  }

  .xl\:gap-24 {
    gap: 1.5rem;
  }

  .xl\:gap-x-24 {
    column-gap: 1.5rem;
  }

  .xl\:gap-y-24 {
    row-gap: 1.5rem;
  }

  .xl\:gap-28 {
    gap: 1.75rem;
  }

  .xl\:gap-x-28 {
    column-gap: 1.75rem;
  }

  .xl\:gap-y-28 {
    row-gap: 1.75rem;
  }

  .xl\:gap-32 {
    gap: 2rem;
  }

  .xl\:gap-x-32 {
    column-gap: 2rem;
  }

  .xl\:gap-y-32 {
    row-gap: 2rem;
  }

  .xl\:gap-36 {
    gap: 2.25rem;
  }

  .xl\:gap-x-36 {
    column-gap: 2.25rem;
  }

  .xl\:gap-y-36 {
    row-gap: 2.25rem;
  }

  .xl\:gap-40 {
    gap: 2.5rem;
  }

  .xl\:gap-x-40 {
    column-gap: 2.5rem;
  }

  .xl\:gap-y-40 {
    row-gap: 2.5rem;
  }

  .xl\:gap-44 {
    gap: 2.75rem;
  }

  .xl\:gap-x-44 {
    column-gap: 2.75rem;
  }

  .xl\:gap-y-44 {
    row-gap: 2.75rem;
  }

  .xl\:gap-48 {
    gap: 3rem;
  }

  .xl\:gap-x-48 {
    column-gap: 3rem;
  }

  .xl\:gap-y-48 {
    row-gap: 3rem;
  }
}
/* grid-items initialisation */
.col-start-1 {
  grid-column-start: 1;
}

.col-end-1 {
  grid-column-end: 1;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-1 {
  grid-row-start: 1;
}

.row-end-1 {
  grid-row-end: 1;
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-end-2 {
  grid-column-end: 2;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-2 {
  grid-row-start: 2;
}

.row-end-2 {
  grid-row-end: 2;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-end-3 {
  grid-column-end: 3;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-3 {
  grid-row-start: 3;
}

.row-end-3 {
  grid-row-end: 3;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.col-end-4 {
  grid-column-end: 4;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-4 {
  grid-row-start: 4;
}

.row-end-4 {
  grid-row-end: 4;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-end-5 {
  grid-column-end: 5;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-5 {
  grid-row-start: 5;
}

.row-end-5 {
  grid-row-end: 5;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.col-end-6 {
  grid-column-end: 6;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-6 {
  grid-row-start: 6;
}

.row-end-6 {
  grid-row-end: 6;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-end-7 {
  grid-column-end: 7;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-7 {
  grid-row-start: 7;
}

.row-end-7 {
  grid-row-end: 7;
}

.row-span-7 {
  grid-row: span 7/span 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.col-end-8 {
  grid-column-end: 8;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-8 {
  grid-row-start: 8;
}

.row-end-8 {
  grid-row-end: 8;
}

.row-span-8 {
  grid-row: span 8/span 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.col-end-9 {
  grid-column-end: 9;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-9 {
  grid-row-start: 9;
}

.row-end-9 {
  grid-row-end: 9;
}

.row-span-9 {
  grid-row: span 9/span 9;
}

.col-start-10 {
  grid-column-start: 10;
}

.col-end-10 {
  grid-column-end: 10;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-10 {
  grid-row-start: 10;
}

.row-end-10 {
  grid-row-end: 10;
}

.row-span-10 {
  grid-row: span 10/span 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.col-end-11 {
  grid-column-end: 11;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-11 {
  grid-row-start: 11;
}

.row-end-11 {
  grid-row-end: 11;
}

.row-span-11 {
  grid-row: span 11/span 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.col-end-12 {
  grid-column-end: 12;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-start-12 {
  grid-row-start: 12;
}

.row-end-12 {
  grid-row-end: 12;
}

.row-span-12 {
  grid-row: span 12/span 12;
}

/* ajout de col-start-X-span-Y (by Tib1) */
.col-start-1-span-1 {
  grid-column: 1/span 1;
}

.col-start-1-span-2 {
  grid-column: 1/span 2;
}

.col-start-1-span-3 {
  grid-column: 1/span 3;
}

.col-start-1-span-4 {
  grid-column: 1/span 4;
}

.col-start-1-span-5 {
  grid-column: 1/span 5;
}

.col-start-1-span-6 {
  grid-column: 1/span 6;
}

.col-start-1-span-7 {
  grid-column: 1/span 7;
}

.col-start-1-span-8 {
  grid-column: 1/span 8;
}

.col-start-1-span-9 {
  grid-column: 1/span 9;
}

.col-start-1-span-10 {
  grid-column: 1/span 10;
}

.col-start-1-span-11 {
  grid-column: 1/span 11;
}

.col-start-1-span-12 {
  grid-column: 1/span 12;
}

.col-start-2-span-1 {
  grid-column: 2/span 1;
}

.col-start-2-span-2 {
  grid-column: 2/span 2;
}

.col-start-2-span-3 {
  grid-column: 2/span 3;
}

.col-start-2-span-4 {
  grid-column: 2/span 4;
}

.col-start-2-span-5 {
  grid-column: 2/span 5;
}

.col-start-2-span-6 {
  grid-column: 2/span 6;
}

.col-start-2-span-7 {
  grid-column: 2/span 7;
}

.col-start-2-span-8 {
  grid-column: 2/span 8;
}

.col-start-2-span-9 {
  grid-column: 2/span 9;
}

.col-start-2-span-10 {
  grid-column: 2/span 10;
}

.col-start-2-span-11 {
  grid-column: 2/span 11;
}

.col-start-2-span-12 {
  grid-column: 2/span 12;
}

.col-start-3-span-1 {
  grid-column: 3/span 1;
}

.col-start-3-span-2 {
  grid-column: 3/span 2;
}

.col-start-3-span-3 {
  grid-column: 3/span 3;
}

.col-start-3-span-4 {
  grid-column: 3/span 4;
}

.col-start-3-span-5 {
  grid-column: 3/span 5;
}

.col-start-3-span-6 {
  grid-column: 3/span 6;
}

.col-start-3-span-7 {
  grid-column: 3/span 7;
}

.col-start-3-span-8 {
  grid-column: 3/span 8;
}

.col-start-3-span-9 {
  grid-column: 3/span 9;
}

.col-start-3-span-10 {
  grid-column: 3/span 10;
}

.col-start-3-span-11 {
  grid-column: 3/span 11;
}

.col-start-3-span-12 {
  grid-column: 3/span 12;
}

.col-start-4-span-1 {
  grid-column: 4/span 1;
}

.col-start-4-span-2 {
  grid-column: 4/span 2;
}

.col-start-4-span-3 {
  grid-column: 4/span 3;
}

.col-start-4-span-4 {
  grid-column: 4/span 4;
}

.col-start-4-span-5 {
  grid-column: 4/span 5;
}

.col-start-4-span-6 {
  grid-column: 4/span 6;
}

.col-start-4-span-7 {
  grid-column: 4/span 7;
}

.col-start-4-span-8 {
  grid-column: 4/span 8;
}

.col-start-4-span-9 {
  grid-column: 4/span 9;
}

.col-start-4-span-10 {
  grid-column: 4/span 10;
}

.col-start-4-span-11 {
  grid-column: 4/span 11;
}

.col-start-4-span-12 {
  grid-column: 4/span 12;
}

.col-start-5-span-1 {
  grid-column: 5/span 1;
}

.col-start-5-span-2 {
  grid-column: 5/span 2;
}

.col-start-5-span-3 {
  grid-column: 5/span 3;
}

.col-start-5-span-4 {
  grid-column: 5/span 4;
}

.col-start-5-span-5 {
  grid-column: 5/span 5;
}

.col-start-5-span-6 {
  grid-column: 5/span 6;
}

.col-start-5-span-7 {
  grid-column: 5/span 7;
}

.col-start-5-span-8 {
  grid-column: 5/span 8;
}

.col-start-5-span-9 {
  grid-column: 5/span 9;
}

.col-start-5-span-10 {
  grid-column: 5/span 10;
}

.col-start-5-span-11 {
  grid-column: 5/span 11;
}

.col-start-5-span-12 {
  grid-column: 5/span 12;
}

.col-start-6-span-1 {
  grid-column: 6/span 1;
}

.col-start-6-span-2 {
  grid-column: 6/span 2;
}

.col-start-6-span-3 {
  grid-column: 6/span 3;
}

.col-start-6-span-4 {
  grid-column: 6/span 4;
}

.col-start-6-span-5 {
  grid-column: 6/span 5;
}

.col-start-6-span-6 {
  grid-column: 6/span 6;
}

.col-start-6-span-7 {
  grid-column: 6/span 7;
}

.col-start-6-span-8 {
  grid-column: 6/span 8;
}

.col-start-6-span-9 {
  grid-column: 6/span 9;
}

.col-start-6-span-10 {
  grid-column: 6/span 10;
}

.col-start-6-span-11 {
  grid-column: 6/span 11;
}

.col-start-6-span-12 {
  grid-column: 6/span 12;
}

.col-start-7-span-1 {
  grid-column: 7/span 1;
}

.col-start-7-span-2 {
  grid-column: 7/span 2;
}

.col-start-7-span-3 {
  grid-column: 7/span 3;
}

.col-start-7-span-4 {
  grid-column: 7/span 4;
}

.col-start-7-span-5 {
  grid-column: 7/span 5;
}

.col-start-7-span-6 {
  grid-column: 7/span 6;
}

.col-start-7-span-7 {
  grid-column: 7/span 7;
}

.col-start-7-span-8 {
  grid-column: 7/span 8;
}

.col-start-7-span-9 {
  grid-column: 7/span 9;
}

.col-start-7-span-10 {
  grid-column: 7/span 10;
}

.col-start-7-span-11 {
  grid-column: 7/span 11;
}

.col-start-7-span-12 {
  grid-column: 7/span 12;
}

.col-start-8-span-1 {
  grid-column: 8/span 1;
}

.col-start-8-span-2 {
  grid-column: 8/span 2;
}

.col-start-8-span-3 {
  grid-column: 8/span 3;
}

.col-start-8-span-4 {
  grid-column: 8/span 4;
}

.col-start-8-span-5 {
  grid-column: 8/span 5;
}

.col-start-8-span-6 {
  grid-column: 8/span 6;
}

.col-start-8-span-7 {
  grid-column: 8/span 7;
}

.col-start-8-span-8 {
  grid-column: 8/span 8;
}

.col-start-8-span-9 {
  grid-column: 8/span 9;
}

.col-start-8-span-10 {
  grid-column: 8/span 10;
}

.col-start-8-span-11 {
  grid-column: 8/span 11;
}

.col-start-8-span-12 {
  grid-column: 8/span 12;
}

.col-start-9-span-1 {
  grid-column: 9/span 1;
}

.col-start-9-span-2 {
  grid-column: 9/span 2;
}

.col-start-9-span-3 {
  grid-column: 9/span 3;
}

.col-start-9-span-4 {
  grid-column: 9/span 4;
}

.col-start-9-span-5 {
  grid-column: 9/span 5;
}

.col-start-9-span-6 {
  grid-column: 9/span 6;
}

.col-start-9-span-7 {
  grid-column: 9/span 7;
}

.col-start-9-span-8 {
  grid-column: 9/span 8;
}

.col-start-9-span-9 {
  grid-column: 9/span 9;
}

.col-start-9-span-10 {
  grid-column: 9/span 10;
}

.col-start-9-span-11 {
  grid-column: 9/span 11;
}

.col-start-9-span-12 {
  grid-column: 9/span 12;
}

.col-start-10-span-1 {
  grid-column: 10/span 1;
}

.col-start-10-span-2 {
  grid-column: 10/span 2;
}

.col-start-10-span-3 {
  grid-column: 10/span 3;
}

.col-start-10-span-4 {
  grid-column: 10/span 4;
}

.col-start-10-span-5 {
  grid-column: 10/span 5;
}

.col-start-10-span-6 {
  grid-column: 10/span 6;
}

.col-start-10-span-7 {
  grid-column: 10/span 7;
}

.col-start-10-span-8 {
  grid-column: 10/span 8;
}

.col-start-10-span-9 {
  grid-column: 10/span 9;
}

.col-start-10-span-10 {
  grid-column: 10/span 10;
}

.col-start-10-span-11 {
  grid-column: 10/span 11;
}

.col-start-10-span-12 {
  grid-column: 10/span 12;
}

.col-start-11-span-1 {
  grid-column: 11/span 1;
}

.col-start-11-span-2 {
  grid-column: 11/span 2;
}

.col-start-11-span-3 {
  grid-column: 11/span 3;
}

.col-start-11-span-4 {
  grid-column: 11/span 4;
}

.col-start-11-span-5 {
  grid-column: 11/span 5;
}

.col-start-11-span-6 {
  grid-column: 11/span 6;
}

.col-start-11-span-7 {
  grid-column: 11/span 7;
}

.col-start-11-span-8 {
  grid-column: 11/span 8;
}

.col-start-11-span-9 {
  grid-column: 11/span 9;
}

.col-start-11-span-10 {
  grid-column: 11/span 10;
}

.col-start-11-span-11 {
  grid-column: 11/span 11;
}

.col-start-11-span-12 {
  grid-column: 11/span 12;
}

.col-start-12-span-1 {
  grid-column: 12/span 1;
}

.col-start-12-span-2 {
  grid-column: 12/span 2;
}

.col-start-12-span-3 {
  grid-column: 12/span 3;
}

.col-start-12-span-4 {
  grid-column: 12/span 4;
}

.col-start-12-span-5 {
  grid-column: 12/span 5;
}

.col-start-12-span-6 {
  grid-column: 12/span 6;
}

.col-start-12-span-7 {
  grid-column: 12/span 7;
}

.col-start-12-span-8 {
  grid-column: 12/span 8;
}

.col-start-12-span-9 {
  grid-column: 12/span 9;
}

.col-start-12-span-10 {
  grid-column: 12/span 10;
}

.col-start-12-span-11 {
  grid-column: 12/span 11;
}

.col-start-12-span-12 {
  grid-column: 12/span 12;
}

/* grid-items au sein des breakpoints */
@media (min-width: 360px) {
  .xs\:col-start-1 {
    grid-column-start: 1;
  }

  .xs\:col-end-1 {
    grid-column-end: 1;
  }

  .xs\:col-span-1 {
    grid-column: span 1/span 1;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-1 {
    grid-row-start: 1;
  }

  .xs\:row-end-1 {
    grid-row-end: 1;
  }

  .xs\:row-span-1 {
    grid-row: span 1/span 1;
  }

  .xs\:col-start-2 {
    grid-column-start: 2;
  }

  .xs\:col-end-2 {
    grid-column-end: 2;
  }

  .xs\:col-span-2 {
    grid-column: span 2/span 2;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-2 {
    grid-row-start: 2;
  }

  .xs\:row-end-2 {
    grid-row-end: 2;
  }

  .xs\:row-span-2 {
    grid-row: span 2/span 2;
  }

  .xs\:col-start-3 {
    grid-column-start: 3;
  }

  .xs\:col-end-3 {
    grid-column-end: 3;
  }

  .xs\:col-span-3 {
    grid-column: span 3/span 3;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-3 {
    grid-row-start: 3;
  }

  .xs\:row-end-3 {
    grid-row-end: 3;
  }

  .xs\:row-span-3 {
    grid-row: span 3/span 3;
  }

  .xs\:col-start-4 {
    grid-column-start: 4;
  }

  .xs\:col-end-4 {
    grid-column-end: 4;
  }

  .xs\:col-span-4 {
    grid-column: span 4/span 4;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-4 {
    grid-row-start: 4;
  }

  .xs\:row-end-4 {
    grid-row-end: 4;
  }

  .xs\:row-span-4 {
    grid-row: span 4/span 4;
  }

  .xs\:col-start-5 {
    grid-column-start: 5;
  }

  .xs\:col-end-5 {
    grid-column-end: 5;
  }

  .xs\:col-span-5 {
    grid-column: span 5/span 5;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-5 {
    grid-row-start: 5;
  }

  .xs\:row-end-5 {
    grid-row-end: 5;
  }

  .xs\:row-span-5 {
    grid-row: span 5/span 5;
  }

  .xs\:col-start-6 {
    grid-column-start: 6;
  }

  .xs\:col-end-6 {
    grid-column-end: 6;
  }

  .xs\:col-span-6 {
    grid-column: span 6/span 6;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-6 {
    grid-row-start: 6;
  }

  .xs\:row-end-6 {
    grid-row-end: 6;
  }

  .xs\:row-span-6 {
    grid-row: span 6/span 6;
  }

  .xs\:col-start-7 {
    grid-column-start: 7;
  }

  .xs\:col-end-7 {
    grid-column-end: 7;
  }

  .xs\:col-span-7 {
    grid-column: span 7/span 7;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-7 {
    grid-row-start: 7;
  }

  .xs\:row-end-7 {
    grid-row-end: 7;
  }

  .xs\:row-span-7 {
    grid-row: span 7/span 7;
  }

  .xs\:col-start-8 {
    grid-column-start: 8;
  }

  .xs\:col-end-8 {
    grid-column-end: 8;
  }

  .xs\:col-span-8 {
    grid-column: span 8/span 8;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-8 {
    grid-row-start: 8;
  }

  .xs\:row-end-8 {
    grid-row-end: 8;
  }

  .xs\:row-span-8 {
    grid-row: span 8/span 8;
  }

  .xs\:col-start-9 {
    grid-column-start: 9;
  }

  .xs\:col-end-9 {
    grid-column-end: 9;
  }

  .xs\:col-span-9 {
    grid-column: span 9/span 9;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-9 {
    grid-row-start: 9;
  }

  .xs\:row-end-9 {
    grid-row-end: 9;
  }

  .xs\:row-span-9 {
    grid-row: span 9/span 9;
  }

  .xs\:col-start-10 {
    grid-column-start: 10;
  }

  .xs\:col-end-10 {
    grid-column-end: 10;
  }

  .xs\:col-span-10 {
    grid-column: span 10/span 10;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-10 {
    grid-row-start: 10;
  }

  .xs\:row-end-10 {
    grid-row-end: 10;
  }

  .xs\:row-span-10 {
    grid-row: span 10/span 10;
  }

  .xs\:col-start-11 {
    grid-column-start: 11;
  }

  .xs\:col-end-11 {
    grid-column-end: 11;
  }

  .xs\:col-span-11 {
    grid-column: span 11/span 11;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-11 {
    grid-row-start: 11;
  }

  .xs\:row-end-11 {
    grid-row-end: 11;
  }

  .xs\:row-span-11 {
    grid-row: span 11/span 11;
  }

  .xs\:col-start-12 {
    grid-column-start: 12;
  }

  .xs\:col-end-12 {
    grid-column-end: 12;
  }

  .xs\:col-span-12 {
    grid-column: span 12/span 12;
  }

  .xs\:col-span-full {
    grid-column: 1/-1;
  }

  .xs\:row-start-12 {
    grid-row-start: 12;
  }

  .xs\:row-end-12 {
    grid-row-end: 12;
  }

  .xs\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 576px) {
  .sm\:col-start-1 {
    grid-column-start: 1;
  }

  .sm\:col-end-1 {
    grid-column-end: 1;
  }

  .sm\:col-span-1 {
    grid-column: span 1/span 1;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-1 {
    grid-row-start: 1;
  }

  .sm\:row-end-1 {
    grid-row-end: 1;
  }

  .sm\:row-span-1 {
    grid-row: span 1/span 1;
  }

  .sm\:col-start-2 {
    grid-column-start: 2;
  }

  .sm\:col-end-2 {
    grid-column-end: 2;
  }

  .sm\:col-span-2 {
    grid-column: span 2/span 2;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-2 {
    grid-row-start: 2;
  }

  .sm\:row-end-2 {
    grid-row-end: 2;
  }

  .sm\:row-span-2 {
    grid-row: span 2/span 2;
  }

  .sm\:col-start-3 {
    grid-column-start: 3;
  }

  .sm\:col-end-3 {
    grid-column-end: 3;
  }

  .sm\:col-span-3 {
    grid-column: span 3/span 3;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-3 {
    grid-row-start: 3;
  }

  .sm\:row-end-3 {
    grid-row-end: 3;
  }

  .sm\:row-span-3 {
    grid-row: span 3/span 3;
  }

  .sm\:col-start-4 {
    grid-column-start: 4;
  }

  .sm\:col-end-4 {
    grid-column-end: 4;
  }

  .sm\:col-span-4 {
    grid-column: span 4/span 4;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-4 {
    grid-row-start: 4;
  }

  .sm\:row-end-4 {
    grid-row-end: 4;
  }

  .sm\:row-span-4 {
    grid-row: span 4/span 4;
  }

  .sm\:col-start-5 {
    grid-column-start: 5;
  }

  .sm\:col-end-5 {
    grid-column-end: 5;
  }

  .sm\:col-span-5 {
    grid-column: span 5/span 5;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-5 {
    grid-row-start: 5;
  }

  .sm\:row-end-5 {
    grid-row-end: 5;
  }

  .sm\:row-span-5 {
    grid-row: span 5/span 5;
  }

  .sm\:col-start-6 {
    grid-column-start: 6;
  }

  .sm\:col-end-6 {
    grid-column-end: 6;
  }

  .sm\:col-span-6 {
    grid-column: span 6/span 6;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-6 {
    grid-row-start: 6;
  }

  .sm\:row-end-6 {
    grid-row-end: 6;
  }

  .sm\:row-span-6 {
    grid-row: span 6/span 6;
  }

  .sm\:col-start-7 {
    grid-column-start: 7;
  }

  .sm\:col-end-7 {
    grid-column-end: 7;
  }

  .sm\:col-span-7 {
    grid-column: span 7/span 7;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-7 {
    grid-row-start: 7;
  }

  .sm\:row-end-7 {
    grid-row-end: 7;
  }

  .sm\:row-span-7 {
    grid-row: span 7/span 7;
  }

  .sm\:col-start-8 {
    grid-column-start: 8;
  }

  .sm\:col-end-8 {
    grid-column-end: 8;
  }

  .sm\:col-span-8 {
    grid-column: span 8/span 8;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-8 {
    grid-row-start: 8;
  }

  .sm\:row-end-8 {
    grid-row-end: 8;
  }

  .sm\:row-span-8 {
    grid-row: span 8/span 8;
  }

  .sm\:col-start-9 {
    grid-column-start: 9;
  }

  .sm\:col-end-9 {
    grid-column-end: 9;
  }

  .sm\:col-span-9 {
    grid-column: span 9/span 9;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-9 {
    grid-row-start: 9;
  }

  .sm\:row-end-9 {
    grid-row-end: 9;
  }

  .sm\:row-span-9 {
    grid-row: span 9/span 9;
  }

  .sm\:col-start-10 {
    grid-column-start: 10;
  }

  .sm\:col-end-10 {
    grid-column-end: 10;
  }

  .sm\:col-span-10 {
    grid-column: span 10/span 10;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-10 {
    grid-row-start: 10;
  }

  .sm\:row-end-10 {
    grid-row-end: 10;
  }

  .sm\:row-span-10 {
    grid-row: span 10/span 10;
  }

  .sm\:col-start-11 {
    grid-column-start: 11;
  }

  .sm\:col-end-11 {
    grid-column-end: 11;
  }

  .sm\:col-span-11 {
    grid-column: span 11/span 11;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-11 {
    grid-row-start: 11;
  }

  .sm\:row-end-11 {
    grid-row-end: 11;
  }

  .sm\:row-span-11 {
    grid-row: span 11/span 11;
  }

  .sm\:col-start-12 {
    grid-column-start: 12;
  }

  .sm\:col-end-12 {
    grid-column-end: 12;
  }

  .sm\:col-span-12 {
    grid-column: span 12/span 12;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .sm\:row-start-12 {
    grid-row-start: 12;
  }

  .sm\:row-end-12 {
    grid-row-end: 12;
  }

  .sm\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 768px) {
  .md\:col-start-1 {
    grid-column-start: 1;
  }

  .md\:col-end-1 {
    grid-column-end: 1;
  }

  .md\:col-span-1 {
    grid-column: span 1/span 1;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-1 {
    grid-row-start: 1;
  }

  .md\:row-end-1 {
    grid-row-end: 1;
  }

  .md\:row-span-1 {
    grid-row: span 1/span 1;
  }

  .md\:col-start-2 {
    grid-column-start: 2;
  }

  .md\:col-end-2 {
    grid-column-end: 2;
  }

  .md\:col-span-2 {
    grid-column: span 2/span 2;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-2 {
    grid-row-start: 2;
  }

  .md\:row-end-2 {
    grid-row-end: 2;
  }

  .md\:row-span-2 {
    grid-row: span 2/span 2;
  }

  .md\:col-start-3 {
    grid-column-start: 3;
  }

  .md\:col-end-3 {
    grid-column-end: 3;
  }

  .md\:col-span-3 {
    grid-column: span 3/span 3;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-3 {
    grid-row-start: 3;
  }

  .md\:row-end-3 {
    grid-row-end: 3;
  }

  .md\:row-span-3 {
    grid-row: span 3/span 3;
  }

  .md\:col-start-4 {
    grid-column-start: 4;
  }

  .md\:col-end-4 {
    grid-column-end: 4;
  }

  .md\:col-span-4 {
    grid-column: span 4/span 4;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-4 {
    grid-row-start: 4;
  }

  .md\:row-end-4 {
    grid-row-end: 4;
  }

  .md\:row-span-4 {
    grid-row: span 4/span 4;
  }

  .md\:col-start-5 {
    grid-column-start: 5;
  }

  .md\:col-end-5 {
    grid-column-end: 5;
  }

  .md\:col-span-5 {
    grid-column: span 5/span 5;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-5 {
    grid-row-start: 5;
  }

  .md\:row-end-5 {
    grid-row-end: 5;
  }

  .md\:row-span-5 {
    grid-row: span 5/span 5;
  }

  .md\:col-start-6 {
    grid-column-start: 6;
  }

  .md\:col-end-6 {
    grid-column-end: 6;
  }

  .md\:col-span-6 {
    grid-column: span 6/span 6;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-6 {
    grid-row-start: 6;
  }

  .md\:row-end-6 {
    grid-row-end: 6;
  }

  .md\:row-span-6 {
    grid-row: span 6/span 6;
  }

  .md\:col-start-7 {
    grid-column-start: 7;
  }

  .md\:col-end-7 {
    grid-column-end: 7;
  }

  .md\:col-span-7 {
    grid-column: span 7/span 7;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-7 {
    grid-row-start: 7;
  }

  .md\:row-end-7 {
    grid-row-end: 7;
  }

  .md\:row-span-7 {
    grid-row: span 7/span 7;
  }

  .md\:col-start-8 {
    grid-column-start: 8;
  }

  .md\:col-end-8 {
    grid-column-end: 8;
  }

  .md\:col-span-8 {
    grid-column: span 8/span 8;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-8 {
    grid-row-start: 8;
  }

  .md\:row-end-8 {
    grid-row-end: 8;
  }

  .md\:row-span-8 {
    grid-row: span 8/span 8;
  }

  .md\:col-start-9 {
    grid-column-start: 9;
  }

  .md\:col-end-9 {
    grid-column-end: 9;
  }

  .md\:col-span-9 {
    grid-column: span 9/span 9;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-9 {
    grid-row-start: 9;
  }

  .md\:row-end-9 {
    grid-row-end: 9;
  }

  .md\:row-span-9 {
    grid-row: span 9/span 9;
  }

  .md\:col-start-10 {
    grid-column-start: 10;
  }

  .md\:col-end-10 {
    grid-column-end: 10;
  }

  .md\:col-span-10 {
    grid-column: span 10/span 10;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-10 {
    grid-row-start: 10;
  }

  .md\:row-end-10 {
    grid-row-end: 10;
  }

  .md\:row-span-10 {
    grid-row: span 10/span 10;
  }

  .md\:col-start-11 {
    grid-column-start: 11;
  }

  .md\:col-end-11 {
    grid-column-end: 11;
  }

  .md\:col-span-11 {
    grid-column: span 11/span 11;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-11 {
    grid-row-start: 11;
  }

  .md\:row-end-11 {
    grid-row-end: 11;
  }

  .md\:row-span-11 {
    grid-row: span 11/span 11;
  }

  .md\:col-start-12 {
    grid-column-start: 12;
  }

  .md\:col-end-12 {
    grid-column-end: 12;
  }

  .md\:col-span-12 {
    grid-column: span 12/span 12;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .md\:row-start-12 {
    grid-row-start: 12;
  }

  .md\:row-end-12 {
    grid-row-end: 12;
  }

  .md\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 1024px) {
  .lg\:col-start-1 {
    grid-column-start: 1;
  }

  .lg\:col-end-1 {
    grid-column-end: 1;
  }

  .lg\:col-span-1 {
    grid-column: span 1/span 1;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-1 {
    grid-row-start: 1;
  }

  .lg\:row-end-1 {
    grid-row-end: 1;
  }

  .lg\:row-span-1 {
    grid-row: span 1/span 1;
  }

  .lg\:col-start-2 {
    grid-column-start: 2;
  }

  .lg\:col-end-2 {
    grid-column-end: 2;
  }

  .lg\:col-span-2 {
    grid-column: span 2/span 2;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-2 {
    grid-row-start: 2;
  }

  .lg\:row-end-2 {
    grid-row-end: 2;
  }

  .lg\:row-span-2 {
    grid-row: span 2/span 2;
  }

  .lg\:col-start-3 {
    grid-column-start: 3;
  }

  .lg\:col-end-3 {
    grid-column-end: 3;
  }

  .lg\:col-span-3 {
    grid-column: span 3/span 3;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-3 {
    grid-row-start: 3;
  }

  .lg\:row-end-3 {
    grid-row-end: 3;
  }

  .lg\:row-span-3 {
    grid-row: span 3/span 3;
  }

  .lg\:col-start-4 {
    grid-column-start: 4;
  }

  .lg\:col-end-4 {
    grid-column-end: 4;
  }

  .lg\:col-span-4 {
    grid-column: span 4/span 4;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-4 {
    grid-row-start: 4;
  }

  .lg\:row-end-4 {
    grid-row-end: 4;
  }

  .lg\:row-span-4 {
    grid-row: span 4/span 4;
  }

  .lg\:col-start-5 {
    grid-column-start: 5;
  }

  .lg\:col-end-5 {
    grid-column-end: 5;
  }

  .lg\:col-span-5 {
    grid-column: span 5/span 5;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-5 {
    grid-row-start: 5;
  }

  .lg\:row-end-5 {
    grid-row-end: 5;
  }

  .lg\:row-span-5 {
    grid-row: span 5/span 5;
  }

  .lg\:col-start-6 {
    grid-column-start: 6;
  }

  .lg\:col-end-6 {
    grid-column-end: 6;
  }

  .lg\:col-span-6 {
    grid-column: span 6/span 6;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-6 {
    grid-row-start: 6;
  }

  .lg\:row-end-6 {
    grid-row-end: 6;
  }

  .lg\:row-span-6 {
    grid-row: span 6/span 6;
  }

  .lg\:col-start-7 {
    grid-column-start: 7;
  }

  .lg\:col-end-7 {
    grid-column-end: 7;
  }

  .lg\:col-span-7 {
    grid-column: span 7/span 7;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-7 {
    grid-row-start: 7;
  }

  .lg\:row-end-7 {
    grid-row-end: 7;
  }

  .lg\:row-span-7 {
    grid-row: span 7/span 7;
  }

  .lg\:col-start-8 {
    grid-column-start: 8;
  }

  .lg\:col-end-8 {
    grid-column-end: 8;
  }

  .lg\:col-span-8 {
    grid-column: span 8/span 8;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-8 {
    grid-row-start: 8;
  }

  .lg\:row-end-8 {
    grid-row-end: 8;
  }

  .lg\:row-span-8 {
    grid-row: span 8/span 8;
  }

  .lg\:col-start-9 {
    grid-column-start: 9;
  }

  .lg\:col-end-9 {
    grid-column-end: 9;
  }

  .lg\:col-span-9 {
    grid-column: span 9/span 9;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-9 {
    grid-row-start: 9;
  }

  .lg\:row-end-9 {
    grid-row-end: 9;
  }

  .lg\:row-span-9 {
    grid-row: span 9/span 9;
  }

  .lg\:col-start-10 {
    grid-column-start: 10;
  }

  .lg\:col-end-10 {
    grid-column-end: 10;
  }

  .lg\:col-span-10 {
    grid-column: span 10/span 10;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-10 {
    grid-row-start: 10;
  }

  .lg\:row-end-10 {
    grid-row-end: 10;
  }

  .lg\:row-span-10 {
    grid-row: span 10/span 10;
  }

  .lg\:col-start-11 {
    grid-column-start: 11;
  }

  .lg\:col-end-11 {
    grid-column-end: 11;
  }

  .lg\:col-span-11 {
    grid-column: span 11/span 11;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-11 {
    grid-row-start: 11;
  }

  .lg\:row-end-11 {
    grid-row-end: 11;
  }

  .lg\:row-span-11 {
    grid-row: span 11/span 11;
  }

  .lg\:col-start-12 {
    grid-column-start: 12;
  }

  .lg\:col-end-12 {
    grid-column-end: 12;
  }

  .lg\:col-span-12 {
    grid-column: span 12/span 12;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lg\:row-start-12 {
    grid-row-start: 12;
  }

  .lg\:row-end-12 {
    grid-row-end: 12;
  }

  .lg\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 1280px) {
  .xl\:col-start-1 {
    grid-column-start: 1;
  }

  .xl\:col-end-1 {
    grid-column-end: 1;
  }

  .xl\:col-span-1 {
    grid-column: span 1/span 1;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-1 {
    grid-row-start: 1;
  }

  .xl\:row-end-1 {
    grid-row-end: 1;
  }

  .xl\:row-span-1 {
    grid-row: span 1/span 1;
  }

  .xl\:col-start-2 {
    grid-column-start: 2;
  }

  .xl\:col-end-2 {
    grid-column-end: 2;
  }

  .xl\:col-span-2 {
    grid-column: span 2/span 2;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-2 {
    grid-row-start: 2;
  }

  .xl\:row-end-2 {
    grid-row-end: 2;
  }

  .xl\:row-span-2 {
    grid-row: span 2/span 2;
  }

  .xl\:col-start-3 {
    grid-column-start: 3;
  }

  .xl\:col-end-3 {
    grid-column-end: 3;
  }

  .xl\:col-span-3 {
    grid-column: span 3/span 3;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-3 {
    grid-row-start: 3;
  }

  .xl\:row-end-3 {
    grid-row-end: 3;
  }

  .xl\:row-span-3 {
    grid-row: span 3/span 3;
  }

  .xl\:col-start-4 {
    grid-column-start: 4;
  }

  .xl\:col-end-4 {
    grid-column-end: 4;
  }

  .xl\:col-span-4 {
    grid-column: span 4/span 4;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-4 {
    grid-row-start: 4;
  }

  .xl\:row-end-4 {
    grid-row-end: 4;
  }

  .xl\:row-span-4 {
    grid-row: span 4/span 4;
  }

  .xl\:col-start-5 {
    grid-column-start: 5;
  }

  .xl\:col-end-5 {
    grid-column-end: 5;
  }

  .xl\:col-span-5 {
    grid-column: span 5/span 5;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-5 {
    grid-row-start: 5;
  }

  .xl\:row-end-5 {
    grid-row-end: 5;
  }

  .xl\:row-span-5 {
    grid-row: span 5/span 5;
  }

  .xl\:col-start-6 {
    grid-column-start: 6;
  }

  .xl\:col-end-6 {
    grid-column-end: 6;
  }

  .xl\:col-span-6 {
    grid-column: span 6/span 6;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-6 {
    grid-row-start: 6;
  }

  .xl\:row-end-6 {
    grid-row-end: 6;
  }

  .xl\:row-span-6 {
    grid-row: span 6/span 6;
  }

  .xl\:col-start-7 {
    grid-column-start: 7;
  }

  .xl\:col-end-7 {
    grid-column-end: 7;
  }

  .xl\:col-span-7 {
    grid-column: span 7/span 7;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-7 {
    grid-row-start: 7;
  }

  .xl\:row-end-7 {
    grid-row-end: 7;
  }

  .xl\:row-span-7 {
    grid-row: span 7/span 7;
  }

  .xl\:col-start-8 {
    grid-column-start: 8;
  }

  .xl\:col-end-8 {
    grid-column-end: 8;
  }

  .xl\:col-span-8 {
    grid-column: span 8/span 8;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-8 {
    grid-row-start: 8;
  }

  .xl\:row-end-8 {
    grid-row-end: 8;
  }

  .xl\:row-span-8 {
    grid-row: span 8/span 8;
  }

  .xl\:col-start-9 {
    grid-column-start: 9;
  }

  .xl\:col-end-9 {
    grid-column-end: 9;
  }

  .xl\:col-span-9 {
    grid-column: span 9/span 9;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-9 {
    grid-row-start: 9;
  }

  .xl\:row-end-9 {
    grid-row-end: 9;
  }

  .xl\:row-span-9 {
    grid-row: span 9/span 9;
  }

  .xl\:col-start-10 {
    grid-column-start: 10;
  }

  .xl\:col-end-10 {
    grid-column-end: 10;
  }

  .xl\:col-span-10 {
    grid-column: span 10/span 10;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-10 {
    grid-row-start: 10;
  }

  .xl\:row-end-10 {
    grid-row-end: 10;
  }

  .xl\:row-span-10 {
    grid-row: span 10/span 10;
  }

  .xl\:col-start-11 {
    grid-column-start: 11;
  }

  .xl\:col-end-11 {
    grid-column-end: 11;
  }

  .xl\:col-span-11 {
    grid-column: span 11/span 11;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-11 {
    grid-row-start: 11;
  }

  .xl\:row-end-11 {
    grid-row-end: 11;
  }

  .xl\:row-span-11 {
    grid-row: span 11/span 11;
  }

  .xl\:col-start-12 {
    grid-column-start: 12;
  }

  .xl\:col-end-12 {
    grid-column-end: 12;
  }

  .xl\:col-span-12 {
    grid-column: span 12/span 12;
  }

  .xl\:col-span-full {
    grid-column: 1/-1;
  }

  .xl\:row-start-12 {
    grid-row-start: 12;
  }

  .xl\:row-end-12 {
    grid-row-end: 12;
  }

  .xl\:row-span-12 {
    grid-row: span 12/span 12;
  }
}
/* puis pour col-start-X-span-Y (by Tib1) */
@media (min-width: 360px) {
  .xs\:col-start-1-span-1 {
    grid-column: 1/span 1;
  }

  .xs\:col-start-1-span-2 {
    grid-column: 1/span 2;
  }

  .xs\:col-start-1-span-3 {
    grid-column: 1/span 3;
  }

  .xs\:col-start-1-span-4 {
    grid-column: 1/span 4;
  }

  .xs\:col-start-1-span-5 {
    grid-column: 1/span 5;
  }

  .xs\:col-start-1-span-6 {
    grid-column: 1/span 6;
  }

  .xs\:col-start-1-span-7 {
    grid-column: 1/span 7;
  }

  .xs\:col-start-1-span-8 {
    grid-column: 1/span 8;
  }

  .xs\:col-start-1-span-9 {
    grid-column: 1/span 9;
  }

  .xs\:col-start-1-span-10 {
    grid-column: 1/span 10;
  }

  .xs\:col-start-1-span-11 {
    grid-column: 1/span 11;
  }

  .xs\:col-start-1-span-12 {
    grid-column: 1/span 12;
  }

  .xs\:col-start-2-span-1 {
    grid-column: 2/span 1;
  }

  .xs\:col-start-2-span-2 {
    grid-column: 2/span 2;
  }

  .xs\:col-start-2-span-3 {
    grid-column: 2/span 3;
  }

  .xs\:col-start-2-span-4 {
    grid-column: 2/span 4;
  }

  .xs\:col-start-2-span-5 {
    grid-column: 2/span 5;
  }

  .xs\:col-start-2-span-6 {
    grid-column: 2/span 6;
  }

  .xs\:col-start-2-span-7 {
    grid-column: 2/span 7;
  }

  .xs\:col-start-2-span-8 {
    grid-column: 2/span 8;
  }

  .xs\:col-start-2-span-9 {
    grid-column: 2/span 9;
  }

  .xs\:col-start-2-span-10 {
    grid-column: 2/span 10;
  }

  .xs\:col-start-2-span-11 {
    grid-column: 2/span 11;
  }

  .xs\:col-start-2-span-12 {
    grid-column: 2/span 12;
  }

  .xs\:col-start-3-span-1 {
    grid-column: 3/span 1;
  }

  .xs\:col-start-3-span-2 {
    grid-column: 3/span 2;
  }

  .xs\:col-start-3-span-3 {
    grid-column: 3/span 3;
  }

  .xs\:col-start-3-span-4 {
    grid-column: 3/span 4;
  }

  .xs\:col-start-3-span-5 {
    grid-column: 3/span 5;
  }

  .xs\:col-start-3-span-6 {
    grid-column: 3/span 6;
  }

  .xs\:col-start-3-span-7 {
    grid-column: 3/span 7;
  }

  .xs\:col-start-3-span-8 {
    grid-column: 3/span 8;
  }

  .xs\:col-start-3-span-9 {
    grid-column: 3/span 9;
  }

  .xs\:col-start-3-span-10 {
    grid-column: 3/span 10;
  }

  .xs\:col-start-3-span-11 {
    grid-column: 3/span 11;
  }

  .xs\:col-start-3-span-12 {
    grid-column: 3/span 12;
  }

  .xs\:col-start-4-span-1 {
    grid-column: 4/span 1;
  }

  .xs\:col-start-4-span-2 {
    grid-column: 4/span 2;
  }

  .xs\:col-start-4-span-3 {
    grid-column: 4/span 3;
  }

  .xs\:col-start-4-span-4 {
    grid-column: 4/span 4;
  }

  .xs\:col-start-4-span-5 {
    grid-column: 4/span 5;
  }

  .xs\:col-start-4-span-6 {
    grid-column: 4/span 6;
  }

  .xs\:col-start-4-span-7 {
    grid-column: 4/span 7;
  }

  .xs\:col-start-4-span-8 {
    grid-column: 4/span 8;
  }

  .xs\:col-start-4-span-9 {
    grid-column: 4/span 9;
  }

  .xs\:col-start-4-span-10 {
    grid-column: 4/span 10;
  }

  .xs\:col-start-4-span-11 {
    grid-column: 4/span 11;
  }

  .xs\:col-start-4-span-12 {
    grid-column: 4/span 12;
  }

  .xs\:col-start-5-span-1 {
    grid-column: 5/span 1;
  }

  .xs\:col-start-5-span-2 {
    grid-column: 5/span 2;
  }

  .xs\:col-start-5-span-3 {
    grid-column: 5/span 3;
  }

  .xs\:col-start-5-span-4 {
    grid-column: 5/span 4;
  }

  .xs\:col-start-5-span-5 {
    grid-column: 5/span 5;
  }

  .xs\:col-start-5-span-6 {
    grid-column: 5/span 6;
  }

  .xs\:col-start-5-span-7 {
    grid-column: 5/span 7;
  }

  .xs\:col-start-5-span-8 {
    grid-column: 5/span 8;
  }

  .xs\:col-start-5-span-9 {
    grid-column: 5/span 9;
  }

  .xs\:col-start-5-span-10 {
    grid-column: 5/span 10;
  }

  .xs\:col-start-5-span-11 {
    grid-column: 5/span 11;
  }

  .xs\:col-start-5-span-12 {
    grid-column: 5/span 12;
  }

  .xs\:col-start-6-span-1 {
    grid-column: 6/span 1;
  }

  .xs\:col-start-6-span-2 {
    grid-column: 6/span 2;
  }

  .xs\:col-start-6-span-3 {
    grid-column: 6/span 3;
  }

  .xs\:col-start-6-span-4 {
    grid-column: 6/span 4;
  }

  .xs\:col-start-6-span-5 {
    grid-column: 6/span 5;
  }

  .xs\:col-start-6-span-6 {
    grid-column: 6/span 6;
  }

  .xs\:col-start-6-span-7 {
    grid-column: 6/span 7;
  }

  .xs\:col-start-6-span-8 {
    grid-column: 6/span 8;
  }

  .xs\:col-start-6-span-9 {
    grid-column: 6/span 9;
  }

  .xs\:col-start-6-span-10 {
    grid-column: 6/span 10;
  }

  .xs\:col-start-6-span-11 {
    grid-column: 6/span 11;
  }

  .xs\:col-start-6-span-12 {
    grid-column: 6/span 12;
  }

  .xs\:col-start-7-span-1 {
    grid-column: 7/span 1;
  }

  .xs\:col-start-7-span-2 {
    grid-column: 7/span 2;
  }

  .xs\:col-start-7-span-3 {
    grid-column: 7/span 3;
  }

  .xs\:col-start-7-span-4 {
    grid-column: 7/span 4;
  }

  .xs\:col-start-7-span-5 {
    grid-column: 7/span 5;
  }

  .xs\:col-start-7-span-6 {
    grid-column: 7/span 6;
  }

  .xs\:col-start-7-span-7 {
    grid-column: 7/span 7;
  }

  .xs\:col-start-7-span-8 {
    grid-column: 7/span 8;
  }

  .xs\:col-start-7-span-9 {
    grid-column: 7/span 9;
  }

  .xs\:col-start-7-span-10 {
    grid-column: 7/span 10;
  }

  .xs\:col-start-7-span-11 {
    grid-column: 7/span 11;
  }

  .xs\:col-start-7-span-12 {
    grid-column: 7/span 12;
  }

  .xs\:col-start-8-span-1 {
    grid-column: 8/span 1;
  }

  .xs\:col-start-8-span-2 {
    grid-column: 8/span 2;
  }

  .xs\:col-start-8-span-3 {
    grid-column: 8/span 3;
  }

  .xs\:col-start-8-span-4 {
    grid-column: 8/span 4;
  }

  .xs\:col-start-8-span-5 {
    grid-column: 8/span 5;
  }

  .xs\:col-start-8-span-6 {
    grid-column: 8/span 6;
  }

  .xs\:col-start-8-span-7 {
    grid-column: 8/span 7;
  }

  .xs\:col-start-8-span-8 {
    grid-column: 8/span 8;
  }

  .xs\:col-start-8-span-9 {
    grid-column: 8/span 9;
  }

  .xs\:col-start-8-span-10 {
    grid-column: 8/span 10;
  }

  .xs\:col-start-8-span-11 {
    grid-column: 8/span 11;
  }

  .xs\:col-start-8-span-12 {
    grid-column: 8/span 12;
  }

  .xs\:col-start-9-span-1 {
    grid-column: 9/span 1;
  }

  .xs\:col-start-9-span-2 {
    grid-column: 9/span 2;
  }

  .xs\:col-start-9-span-3 {
    grid-column: 9/span 3;
  }

  .xs\:col-start-9-span-4 {
    grid-column: 9/span 4;
  }

  .xs\:col-start-9-span-5 {
    grid-column: 9/span 5;
  }

  .xs\:col-start-9-span-6 {
    grid-column: 9/span 6;
  }

  .xs\:col-start-9-span-7 {
    grid-column: 9/span 7;
  }

  .xs\:col-start-9-span-8 {
    grid-column: 9/span 8;
  }

  .xs\:col-start-9-span-9 {
    grid-column: 9/span 9;
  }

  .xs\:col-start-9-span-10 {
    grid-column: 9/span 10;
  }

  .xs\:col-start-9-span-11 {
    grid-column: 9/span 11;
  }

  .xs\:col-start-9-span-12 {
    grid-column: 9/span 12;
  }

  .xs\:col-start-10-span-1 {
    grid-column: 10/span 1;
  }

  .xs\:col-start-10-span-2 {
    grid-column: 10/span 2;
  }

  .xs\:col-start-10-span-3 {
    grid-column: 10/span 3;
  }

  .xs\:col-start-10-span-4 {
    grid-column: 10/span 4;
  }

  .xs\:col-start-10-span-5 {
    grid-column: 10/span 5;
  }

  .xs\:col-start-10-span-6 {
    grid-column: 10/span 6;
  }

  .xs\:col-start-10-span-7 {
    grid-column: 10/span 7;
  }

  .xs\:col-start-10-span-8 {
    grid-column: 10/span 8;
  }

  .xs\:col-start-10-span-9 {
    grid-column: 10/span 9;
  }

  .xs\:col-start-10-span-10 {
    grid-column: 10/span 10;
  }

  .xs\:col-start-10-span-11 {
    grid-column: 10/span 11;
  }

  .xs\:col-start-10-span-12 {
    grid-column: 10/span 12;
  }

  .xs\:col-start-11-span-1 {
    grid-column: 11/span 1;
  }

  .xs\:col-start-11-span-2 {
    grid-column: 11/span 2;
  }

  .xs\:col-start-11-span-3 {
    grid-column: 11/span 3;
  }

  .xs\:col-start-11-span-4 {
    grid-column: 11/span 4;
  }

  .xs\:col-start-11-span-5 {
    grid-column: 11/span 5;
  }

  .xs\:col-start-11-span-6 {
    grid-column: 11/span 6;
  }

  .xs\:col-start-11-span-7 {
    grid-column: 11/span 7;
  }

  .xs\:col-start-11-span-8 {
    grid-column: 11/span 8;
  }

  .xs\:col-start-11-span-9 {
    grid-column: 11/span 9;
  }

  .xs\:col-start-11-span-10 {
    grid-column: 11/span 10;
  }

  .xs\:col-start-11-span-11 {
    grid-column: 11/span 11;
  }

  .xs\:col-start-11-span-12 {
    grid-column: 11/span 12;
  }

  .xs\:col-start-12-span-1 {
    grid-column: 12/span 1;
  }

  .xs\:col-start-12-span-2 {
    grid-column: 12/span 2;
  }

  .xs\:col-start-12-span-3 {
    grid-column: 12/span 3;
  }

  .xs\:col-start-12-span-4 {
    grid-column: 12/span 4;
  }

  .xs\:col-start-12-span-5 {
    grid-column: 12/span 5;
  }

  .xs\:col-start-12-span-6 {
    grid-column: 12/span 6;
  }

  .xs\:col-start-12-span-7 {
    grid-column: 12/span 7;
  }

  .xs\:col-start-12-span-8 {
    grid-column: 12/span 8;
  }

  .xs\:col-start-12-span-9 {
    grid-column: 12/span 9;
  }

  .xs\:col-start-12-span-10 {
    grid-column: 12/span 10;
  }

  .xs\:col-start-12-span-11 {
    grid-column: 12/span 11;
  }

  .xs\:col-start-12-span-12 {
    grid-column: 12/span 12;
  }
}
@media (min-width: 576px) {
  .sm\:col-start-1-span-1 {
    grid-column: 1/span 1;
  }

  .sm\:col-start-1-span-2 {
    grid-column: 1/span 2;
  }

  .sm\:col-start-1-span-3 {
    grid-column: 1/span 3;
  }

  .sm\:col-start-1-span-4 {
    grid-column: 1/span 4;
  }

  .sm\:col-start-1-span-5 {
    grid-column: 1/span 5;
  }

  .sm\:col-start-1-span-6 {
    grid-column: 1/span 6;
  }

  .sm\:col-start-1-span-7 {
    grid-column: 1/span 7;
  }

  .sm\:col-start-1-span-8 {
    grid-column: 1/span 8;
  }

  .sm\:col-start-1-span-9 {
    grid-column: 1/span 9;
  }

  .sm\:col-start-1-span-10 {
    grid-column: 1/span 10;
  }

  .sm\:col-start-1-span-11 {
    grid-column: 1/span 11;
  }

  .sm\:col-start-1-span-12 {
    grid-column: 1/span 12;
  }

  .sm\:col-start-2-span-1 {
    grid-column: 2/span 1;
  }

  .sm\:col-start-2-span-2 {
    grid-column: 2/span 2;
  }

  .sm\:col-start-2-span-3 {
    grid-column: 2/span 3;
  }

  .sm\:col-start-2-span-4 {
    grid-column: 2/span 4;
  }

  .sm\:col-start-2-span-5 {
    grid-column: 2/span 5;
  }

  .sm\:col-start-2-span-6 {
    grid-column: 2/span 6;
  }

  .sm\:col-start-2-span-7 {
    grid-column: 2/span 7;
  }

  .sm\:col-start-2-span-8 {
    grid-column: 2/span 8;
  }

  .sm\:col-start-2-span-9 {
    grid-column: 2/span 9;
  }

  .sm\:col-start-2-span-10 {
    grid-column: 2/span 10;
  }

  .sm\:col-start-2-span-11 {
    grid-column: 2/span 11;
  }

  .sm\:col-start-2-span-12 {
    grid-column: 2/span 12;
  }

  .sm\:col-start-3-span-1 {
    grid-column: 3/span 1;
  }

  .sm\:col-start-3-span-2 {
    grid-column: 3/span 2;
  }

  .sm\:col-start-3-span-3 {
    grid-column: 3/span 3;
  }

  .sm\:col-start-3-span-4 {
    grid-column: 3/span 4;
  }

  .sm\:col-start-3-span-5 {
    grid-column: 3/span 5;
  }

  .sm\:col-start-3-span-6 {
    grid-column: 3/span 6;
  }

  .sm\:col-start-3-span-7 {
    grid-column: 3/span 7;
  }

  .sm\:col-start-3-span-8 {
    grid-column: 3/span 8;
  }

  .sm\:col-start-3-span-9 {
    grid-column: 3/span 9;
  }

  .sm\:col-start-3-span-10 {
    grid-column: 3/span 10;
  }

  .sm\:col-start-3-span-11 {
    grid-column: 3/span 11;
  }

  .sm\:col-start-3-span-12 {
    grid-column: 3/span 12;
  }

  .sm\:col-start-4-span-1 {
    grid-column: 4/span 1;
  }

  .sm\:col-start-4-span-2 {
    grid-column: 4/span 2;
  }

  .sm\:col-start-4-span-3 {
    grid-column: 4/span 3;
  }

  .sm\:col-start-4-span-4 {
    grid-column: 4/span 4;
  }

  .sm\:col-start-4-span-5 {
    grid-column: 4/span 5;
  }

  .sm\:col-start-4-span-6 {
    grid-column: 4/span 6;
  }

  .sm\:col-start-4-span-7 {
    grid-column: 4/span 7;
  }

  .sm\:col-start-4-span-8 {
    grid-column: 4/span 8;
  }

  .sm\:col-start-4-span-9 {
    grid-column: 4/span 9;
  }

  .sm\:col-start-4-span-10 {
    grid-column: 4/span 10;
  }

  .sm\:col-start-4-span-11 {
    grid-column: 4/span 11;
  }

  .sm\:col-start-4-span-12 {
    grid-column: 4/span 12;
  }

  .sm\:col-start-5-span-1 {
    grid-column: 5/span 1;
  }

  .sm\:col-start-5-span-2 {
    grid-column: 5/span 2;
  }

  .sm\:col-start-5-span-3 {
    grid-column: 5/span 3;
  }

  .sm\:col-start-5-span-4 {
    grid-column: 5/span 4;
  }

  .sm\:col-start-5-span-5 {
    grid-column: 5/span 5;
  }

  .sm\:col-start-5-span-6 {
    grid-column: 5/span 6;
  }

  .sm\:col-start-5-span-7 {
    grid-column: 5/span 7;
  }

  .sm\:col-start-5-span-8 {
    grid-column: 5/span 8;
  }

  .sm\:col-start-5-span-9 {
    grid-column: 5/span 9;
  }

  .sm\:col-start-5-span-10 {
    grid-column: 5/span 10;
  }

  .sm\:col-start-5-span-11 {
    grid-column: 5/span 11;
  }

  .sm\:col-start-5-span-12 {
    grid-column: 5/span 12;
  }

  .sm\:col-start-6-span-1 {
    grid-column: 6/span 1;
  }

  .sm\:col-start-6-span-2 {
    grid-column: 6/span 2;
  }

  .sm\:col-start-6-span-3 {
    grid-column: 6/span 3;
  }

  .sm\:col-start-6-span-4 {
    grid-column: 6/span 4;
  }

  .sm\:col-start-6-span-5 {
    grid-column: 6/span 5;
  }

  .sm\:col-start-6-span-6 {
    grid-column: 6/span 6;
  }

  .sm\:col-start-6-span-7 {
    grid-column: 6/span 7;
  }

  .sm\:col-start-6-span-8 {
    grid-column: 6/span 8;
  }

  .sm\:col-start-6-span-9 {
    grid-column: 6/span 9;
  }

  .sm\:col-start-6-span-10 {
    grid-column: 6/span 10;
  }

  .sm\:col-start-6-span-11 {
    grid-column: 6/span 11;
  }

  .sm\:col-start-6-span-12 {
    grid-column: 6/span 12;
  }

  .sm\:col-start-7-span-1 {
    grid-column: 7/span 1;
  }

  .sm\:col-start-7-span-2 {
    grid-column: 7/span 2;
  }

  .sm\:col-start-7-span-3 {
    grid-column: 7/span 3;
  }

  .sm\:col-start-7-span-4 {
    grid-column: 7/span 4;
  }

  .sm\:col-start-7-span-5 {
    grid-column: 7/span 5;
  }

  .sm\:col-start-7-span-6 {
    grid-column: 7/span 6;
  }

  .sm\:col-start-7-span-7 {
    grid-column: 7/span 7;
  }

  .sm\:col-start-7-span-8 {
    grid-column: 7/span 8;
  }

  .sm\:col-start-7-span-9 {
    grid-column: 7/span 9;
  }

  .sm\:col-start-7-span-10 {
    grid-column: 7/span 10;
  }

  .sm\:col-start-7-span-11 {
    grid-column: 7/span 11;
  }

  .sm\:col-start-7-span-12 {
    grid-column: 7/span 12;
  }

  .sm\:col-start-8-span-1 {
    grid-column: 8/span 1;
  }

  .sm\:col-start-8-span-2 {
    grid-column: 8/span 2;
  }

  .sm\:col-start-8-span-3 {
    grid-column: 8/span 3;
  }

  .sm\:col-start-8-span-4 {
    grid-column: 8/span 4;
  }

  .sm\:col-start-8-span-5 {
    grid-column: 8/span 5;
  }

  .sm\:col-start-8-span-6 {
    grid-column: 8/span 6;
  }

  .sm\:col-start-8-span-7 {
    grid-column: 8/span 7;
  }

  .sm\:col-start-8-span-8 {
    grid-column: 8/span 8;
  }

  .sm\:col-start-8-span-9 {
    grid-column: 8/span 9;
  }

  .sm\:col-start-8-span-10 {
    grid-column: 8/span 10;
  }

  .sm\:col-start-8-span-11 {
    grid-column: 8/span 11;
  }

  .sm\:col-start-8-span-12 {
    grid-column: 8/span 12;
  }

  .sm\:col-start-9-span-1 {
    grid-column: 9/span 1;
  }

  .sm\:col-start-9-span-2 {
    grid-column: 9/span 2;
  }

  .sm\:col-start-9-span-3 {
    grid-column: 9/span 3;
  }

  .sm\:col-start-9-span-4 {
    grid-column: 9/span 4;
  }

  .sm\:col-start-9-span-5 {
    grid-column: 9/span 5;
  }

  .sm\:col-start-9-span-6 {
    grid-column: 9/span 6;
  }

  .sm\:col-start-9-span-7 {
    grid-column: 9/span 7;
  }

  .sm\:col-start-9-span-8 {
    grid-column: 9/span 8;
  }

  .sm\:col-start-9-span-9 {
    grid-column: 9/span 9;
  }

  .sm\:col-start-9-span-10 {
    grid-column: 9/span 10;
  }

  .sm\:col-start-9-span-11 {
    grid-column: 9/span 11;
  }

  .sm\:col-start-9-span-12 {
    grid-column: 9/span 12;
  }

  .sm\:col-start-10-span-1 {
    grid-column: 10/span 1;
  }

  .sm\:col-start-10-span-2 {
    grid-column: 10/span 2;
  }

  .sm\:col-start-10-span-3 {
    grid-column: 10/span 3;
  }

  .sm\:col-start-10-span-4 {
    grid-column: 10/span 4;
  }

  .sm\:col-start-10-span-5 {
    grid-column: 10/span 5;
  }

  .sm\:col-start-10-span-6 {
    grid-column: 10/span 6;
  }

  .sm\:col-start-10-span-7 {
    grid-column: 10/span 7;
  }

  .sm\:col-start-10-span-8 {
    grid-column: 10/span 8;
  }

  .sm\:col-start-10-span-9 {
    grid-column: 10/span 9;
  }

  .sm\:col-start-10-span-10 {
    grid-column: 10/span 10;
  }

  .sm\:col-start-10-span-11 {
    grid-column: 10/span 11;
  }

  .sm\:col-start-10-span-12 {
    grid-column: 10/span 12;
  }

  .sm\:col-start-11-span-1 {
    grid-column: 11/span 1;
  }

  .sm\:col-start-11-span-2 {
    grid-column: 11/span 2;
  }

  .sm\:col-start-11-span-3 {
    grid-column: 11/span 3;
  }

  .sm\:col-start-11-span-4 {
    grid-column: 11/span 4;
  }

  .sm\:col-start-11-span-5 {
    grid-column: 11/span 5;
  }

  .sm\:col-start-11-span-6 {
    grid-column: 11/span 6;
  }

  .sm\:col-start-11-span-7 {
    grid-column: 11/span 7;
  }

  .sm\:col-start-11-span-8 {
    grid-column: 11/span 8;
  }

  .sm\:col-start-11-span-9 {
    grid-column: 11/span 9;
  }

  .sm\:col-start-11-span-10 {
    grid-column: 11/span 10;
  }

  .sm\:col-start-11-span-11 {
    grid-column: 11/span 11;
  }

  .sm\:col-start-11-span-12 {
    grid-column: 11/span 12;
  }

  .sm\:col-start-12-span-1 {
    grid-column: 12/span 1;
  }

  .sm\:col-start-12-span-2 {
    grid-column: 12/span 2;
  }

  .sm\:col-start-12-span-3 {
    grid-column: 12/span 3;
  }

  .sm\:col-start-12-span-4 {
    grid-column: 12/span 4;
  }

  .sm\:col-start-12-span-5 {
    grid-column: 12/span 5;
  }

  .sm\:col-start-12-span-6 {
    grid-column: 12/span 6;
  }

  .sm\:col-start-12-span-7 {
    grid-column: 12/span 7;
  }

  .sm\:col-start-12-span-8 {
    grid-column: 12/span 8;
  }

  .sm\:col-start-12-span-9 {
    grid-column: 12/span 9;
  }

  .sm\:col-start-12-span-10 {
    grid-column: 12/span 10;
  }

  .sm\:col-start-12-span-11 {
    grid-column: 12/span 11;
  }

  .sm\:col-start-12-span-12 {
    grid-column: 12/span 12;
  }
}
@media (min-width: 768px) {
  .md\:col-start-1-span-1 {
    grid-column: 1/span 1;
  }

  .md\:col-start-1-span-2 {
    grid-column: 1/span 2;
  }

  .md\:col-start-1-span-3 {
    grid-column: 1/span 3;
  }

  .md\:col-start-1-span-4 {
    grid-column: 1/span 4;
  }

  .md\:col-start-1-span-5 {
    grid-column: 1/span 5;
  }

  .md\:col-start-1-span-6 {
    grid-column: 1/span 6;
  }

  .md\:col-start-1-span-7 {
    grid-column: 1/span 7;
  }

  .md\:col-start-1-span-8 {
    grid-column: 1/span 8;
  }

  .md\:col-start-1-span-9 {
    grid-column: 1/span 9;
  }

  .md\:col-start-1-span-10 {
    grid-column: 1/span 10;
  }

  .md\:col-start-1-span-11 {
    grid-column: 1/span 11;
  }

  .md\:col-start-1-span-12 {
    grid-column: 1/span 12;
  }

  .md\:col-start-2-span-1 {
    grid-column: 2/span 1;
  }

  .md\:col-start-2-span-2 {
    grid-column: 2/span 2;
  }

  .md\:col-start-2-span-3 {
    grid-column: 2/span 3;
  }

  .md\:col-start-2-span-4 {
    grid-column: 2/span 4;
  }

  .md\:col-start-2-span-5 {
    grid-column: 2/span 5;
  }

  .md\:col-start-2-span-6 {
    grid-column: 2/span 6;
  }

  .md\:col-start-2-span-7 {
    grid-column: 2/span 7;
  }

  .md\:col-start-2-span-8 {
    grid-column: 2/span 8;
  }

  .md\:col-start-2-span-9 {
    grid-column: 2/span 9;
  }

  .md\:col-start-2-span-10 {
    grid-column: 2/span 10;
  }

  .md\:col-start-2-span-11 {
    grid-column: 2/span 11;
  }

  .md\:col-start-2-span-12 {
    grid-column: 2/span 12;
  }

  .md\:col-start-3-span-1 {
    grid-column: 3/span 1;
  }

  .md\:col-start-3-span-2 {
    grid-column: 3/span 2;
  }

  .md\:col-start-3-span-3 {
    grid-column: 3/span 3;
  }

  .md\:col-start-3-span-4 {
    grid-column: 3/span 4;
  }

  .md\:col-start-3-span-5 {
    grid-column: 3/span 5;
  }

  .md\:col-start-3-span-6 {
    grid-column: 3/span 6;
  }

  .md\:col-start-3-span-7 {
    grid-column: 3/span 7;
  }

  .md\:col-start-3-span-8 {
    grid-column: 3/span 8;
  }

  .md\:col-start-3-span-9 {
    grid-column: 3/span 9;
  }

  .md\:col-start-3-span-10 {
    grid-column: 3/span 10;
  }

  .md\:col-start-3-span-11 {
    grid-column: 3/span 11;
  }

  .md\:col-start-3-span-12 {
    grid-column: 3/span 12;
  }

  .md\:col-start-4-span-1 {
    grid-column: 4/span 1;
  }

  .md\:col-start-4-span-2 {
    grid-column: 4/span 2;
  }

  .md\:col-start-4-span-3 {
    grid-column: 4/span 3;
  }

  .md\:col-start-4-span-4 {
    grid-column: 4/span 4;
  }

  .md\:col-start-4-span-5 {
    grid-column: 4/span 5;
  }

  .md\:col-start-4-span-6 {
    grid-column: 4/span 6;
  }

  .md\:col-start-4-span-7 {
    grid-column: 4/span 7;
  }

  .md\:col-start-4-span-8 {
    grid-column: 4/span 8;
  }

  .md\:col-start-4-span-9 {
    grid-column: 4/span 9;
  }

  .md\:col-start-4-span-10 {
    grid-column: 4/span 10;
  }

  .md\:col-start-4-span-11 {
    grid-column: 4/span 11;
  }

  .md\:col-start-4-span-12 {
    grid-column: 4/span 12;
  }

  .md\:col-start-5-span-1 {
    grid-column: 5/span 1;
  }

  .md\:col-start-5-span-2 {
    grid-column: 5/span 2;
  }

  .md\:col-start-5-span-3 {
    grid-column: 5/span 3;
  }

  .md\:col-start-5-span-4 {
    grid-column: 5/span 4;
  }

  .md\:col-start-5-span-5 {
    grid-column: 5/span 5;
  }

  .md\:col-start-5-span-6 {
    grid-column: 5/span 6;
  }

  .md\:col-start-5-span-7 {
    grid-column: 5/span 7;
  }

  .md\:col-start-5-span-8 {
    grid-column: 5/span 8;
  }

  .md\:col-start-5-span-9 {
    grid-column: 5/span 9;
  }

  .md\:col-start-5-span-10 {
    grid-column: 5/span 10;
  }

  .md\:col-start-5-span-11 {
    grid-column: 5/span 11;
  }

  .md\:col-start-5-span-12 {
    grid-column: 5/span 12;
  }

  .md\:col-start-6-span-1 {
    grid-column: 6/span 1;
  }

  .md\:col-start-6-span-2 {
    grid-column: 6/span 2;
  }

  .md\:col-start-6-span-3 {
    grid-column: 6/span 3;
  }

  .md\:col-start-6-span-4 {
    grid-column: 6/span 4;
  }

  .md\:col-start-6-span-5 {
    grid-column: 6/span 5;
  }

  .md\:col-start-6-span-6 {
    grid-column: 6/span 6;
  }

  .md\:col-start-6-span-7 {
    grid-column: 6/span 7;
  }

  .md\:col-start-6-span-8 {
    grid-column: 6/span 8;
  }

  .md\:col-start-6-span-9 {
    grid-column: 6/span 9;
  }

  .md\:col-start-6-span-10 {
    grid-column: 6/span 10;
  }

  .md\:col-start-6-span-11 {
    grid-column: 6/span 11;
  }

  .md\:col-start-6-span-12 {
    grid-column: 6/span 12;
  }

  .md\:col-start-7-span-1 {
    grid-column: 7/span 1;
  }

  .md\:col-start-7-span-2 {
    grid-column: 7/span 2;
  }

  .md\:col-start-7-span-3 {
    grid-column: 7/span 3;
  }

  .md\:col-start-7-span-4 {
    grid-column: 7/span 4;
  }

  .md\:col-start-7-span-5 {
    grid-column: 7/span 5;
  }

  .md\:col-start-7-span-6 {
    grid-column: 7/span 6;
  }

  .md\:col-start-7-span-7 {
    grid-column: 7/span 7;
  }

  .md\:col-start-7-span-8 {
    grid-column: 7/span 8;
  }

  .md\:col-start-7-span-9 {
    grid-column: 7/span 9;
  }

  .md\:col-start-7-span-10 {
    grid-column: 7/span 10;
  }

  .md\:col-start-7-span-11 {
    grid-column: 7/span 11;
  }

  .md\:col-start-7-span-12 {
    grid-column: 7/span 12;
  }

  .md\:col-start-8-span-1 {
    grid-column: 8/span 1;
  }

  .md\:col-start-8-span-2 {
    grid-column: 8/span 2;
  }

  .md\:col-start-8-span-3 {
    grid-column: 8/span 3;
  }

  .md\:col-start-8-span-4 {
    grid-column: 8/span 4;
  }

  .md\:col-start-8-span-5 {
    grid-column: 8/span 5;
  }

  .md\:col-start-8-span-6 {
    grid-column: 8/span 6;
  }

  .md\:col-start-8-span-7 {
    grid-column: 8/span 7;
  }

  .md\:col-start-8-span-8 {
    grid-column: 8/span 8;
  }

  .md\:col-start-8-span-9 {
    grid-column: 8/span 9;
  }

  .md\:col-start-8-span-10 {
    grid-column: 8/span 10;
  }

  .md\:col-start-8-span-11 {
    grid-column: 8/span 11;
  }

  .md\:col-start-8-span-12 {
    grid-column: 8/span 12;
  }

  .md\:col-start-9-span-1 {
    grid-column: 9/span 1;
  }

  .md\:col-start-9-span-2 {
    grid-column: 9/span 2;
  }

  .md\:col-start-9-span-3 {
    grid-column: 9/span 3;
  }

  .md\:col-start-9-span-4 {
    grid-column: 9/span 4;
  }

  .md\:col-start-9-span-5 {
    grid-column: 9/span 5;
  }

  .md\:col-start-9-span-6 {
    grid-column: 9/span 6;
  }

  .md\:col-start-9-span-7 {
    grid-column: 9/span 7;
  }

  .md\:col-start-9-span-8 {
    grid-column: 9/span 8;
  }

  .md\:col-start-9-span-9 {
    grid-column: 9/span 9;
  }

  .md\:col-start-9-span-10 {
    grid-column: 9/span 10;
  }

  .md\:col-start-9-span-11 {
    grid-column: 9/span 11;
  }

  .md\:col-start-9-span-12 {
    grid-column: 9/span 12;
  }

  .md\:col-start-10-span-1 {
    grid-column: 10/span 1;
  }

  .md\:col-start-10-span-2 {
    grid-column: 10/span 2;
  }

  .md\:col-start-10-span-3 {
    grid-column: 10/span 3;
  }

  .md\:col-start-10-span-4 {
    grid-column: 10/span 4;
  }

  .md\:col-start-10-span-5 {
    grid-column: 10/span 5;
  }

  .md\:col-start-10-span-6 {
    grid-column: 10/span 6;
  }

  .md\:col-start-10-span-7 {
    grid-column: 10/span 7;
  }

  .md\:col-start-10-span-8 {
    grid-column: 10/span 8;
  }

  .md\:col-start-10-span-9 {
    grid-column: 10/span 9;
  }

  .md\:col-start-10-span-10 {
    grid-column: 10/span 10;
  }

  .md\:col-start-10-span-11 {
    grid-column: 10/span 11;
  }

  .md\:col-start-10-span-12 {
    grid-column: 10/span 12;
  }

  .md\:col-start-11-span-1 {
    grid-column: 11/span 1;
  }

  .md\:col-start-11-span-2 {
    grid-column: 11/span 2;
  }

  .md\:col-start-11-span-3 {
    grid-column: 11/span 3;
  }

  .md\:col-start-11-span-4 {
    grid-column: 11/span 4;
  }

  .md\:col-start-11-span-5 {
    grid-column: 11/span 5;
  }

  .md\:col-start-11-span-6 {
    grid-column: 11/span 6;
  }

  .md\:col-start-11-span-7 {
    grid-column: 11/span 7;
  }

  .md\:col-start-11-span-8 {
    grid-column: 11/span 8;
  }

  .md\:col-start-11-span-9 {
    grid-column: 11/span 9;
  }

  .md\:col-start-11-span-10 {
    grid-column: 11/span 10;
  }

  .md\:col-start-11-span-11 {
    grid-column: 11/span 11;
  }

  .md\:col-start-11-span-12 {
    grid-column: 11/span 12;
  }

  .md\:col-start-12-span-1 {
    grid-column: 12/span 1;
  }

  .md\:col-start-12-span-2 {
    grid-column: 12/span 2;
  }

  .md\:col-start-12-span-3 {
    grid-column: 12/span 3;
  }

  .md\:col-start-12-span-4 {
    grid-column: 12/span 4;
  }

  .md\:col-start-12-span-5 {
    grid-column: 12/span 5;
  }

  .md\:col-start-12-span-6 {
    grid-column: 12/span 6;
  }

  .md\:col-start-12-span-7 {
    grid-column: 12/span 7;
  }

  .md\:col-start-12-span-8 {
    grid-column: 12/span 8;
  }

  .md\:col-start-12-span-9 {
    grid-column: 12/span 9;
  }

  .md\:col-start-12-span-10 {
    grid-column: 12/span 10;
  }

  .md\:col-start-12-span-11 {
    grid-column: 12/span 11;
  }

  .md\:col-start-12-span-12 {
    grid-column: 12/span 12;
  }
}
@media (min-width: 1024px) {
  .lg\:col-start-1-span-1 {
    grid-column: 1/span 1;
  }

  .lg\:col-start-1-span-2 {
    grid-column: 1/span 2;
  }

  .lg\:col-start-1-span-3 {
    grid-column: 1/span 3;
  }

  .lg\:col-start-1-span-4 {
    grid-column: 1/span 4;
  }

  .lg\:col-start-1-span-5 {
    grid-column: 1/span 5;
  }

  .lg\:col-start-1-span-6 {
    grid-column: 1/span 6;
  }

  .lg\:col-start-1-span-7 {
    grid-column: 1/span 7;
  }

  .lg\:col-start-1-span-8 {
    grid-column: 1/span 8;
  }

  .lg\:col-start-1-span-9 {
    grid-column: 1/span 9;
  }

  .lg\:col-start-1-span-10 {
    grid-column: 1/span 10;
  }

  .lg\:col-start-1-span-11 {
    grid-column: 1/span 11;
  }

  .lg\:col-start-1-span-12 {
    grid-column: 1/span 12;
  }

  .lg\:col-start-2-span-1 {
    grid-column: 2/span 1;
  }

  .lg\:col-start-2-span-2 {
    grid-column: 2/span 2;
  }

  .lg\:col-start-2-span-3 {
    grid-column: 2/span 3;
  }

  .lg\:col-start-2-span-4 {
    grid-column: 2/span 4;
  }

  .lg\:col-start-2-span-5 {
    grid-column: 2/span 5;
  }

  .lg\:col-start-2-span-6 {
    grid-column: 2/span 6;
  }

  .lg\:col-start-2-span-7 {
    grid-column: 2/span 7;
  }

  .lg\:col-start-2-span-8 {
    grid-column: 2/span 8;
  }

  .lg\:col-start-2-span-9 {
    grid-column: 2/span 9;
  }

  .lg\:col-start-2-span-10 {
    grid-column: 2/span 10;
  }

  .lg\:col-start-2-span-11 {
    grid-column: 2/span 11;
  }

  .lg\:col-start-2-span-12 {
    grid-column: 2/span 12;
  }

  .lg\:col-start-3-span-1 {
    grid-column: 3/span 1;
  }

  .lg\:col-start-3-span-2 {
    grid-column: 3/span 2;
  }

  .lg\:col-start-3-span-3 {
    grid-column: 3/span 3;
  }

  .lg\:col-start-3-span-4 {
    grid-column: 3/span 4;
  }

  .lg\:col-start-3-span-5 {
    grid-column: 3/span 5;
  }

  .lg\:col-start-3-span-6 {
    grid-column: 3/span 6;
  }

  .lg\:col-start-3-span-7 {
    grid-column: 3/span 7;
  }

  .lg\:col-start-3-span-8 {
    grid-column: 3/span 8;
  }

  .lg\:col-start-3-span-9 {
    grid-column: 3/span 9;
  }

  .lg\:col-start-3-span-10 {
    grid-column: 3/span 10;
  }

  .lg\:col-start-3-span-11 {
    grid-column: 3/span 11;
  }

  .lg\:col-start-3-span-12 {
    grid-column: 3/span 12;
  }

  .lg\:col-start-4-span-1 {
    grid-column: 4/span 1;
  }

  .lg\:col-start-4-span-2 {
    grid-column: 4/span 2;
  }

  .lg\:col-start-4-span-3 {
    grid-column: 4/span 3;
  }

  .lg\:col-start-4-span-4 {
    grid-column: 4/span 4;
  }

  .lg\:col-start-4-span-5 {
    grid-column: 4/span 5;
  }

  .lg\:col-start-4-span-6 {
    grid-column: 4/span 6;
  }

  .lg\:col-start-4-span-7 {
    grid-column: 4/span 7;
  }

  .lg\:col-start-4-span-8 {
    grid-column: 4/span 8;
  }

  .lg\:col-start-4-span-9 {
    grid-column: 4/span 9;
  }

  .lg\:col-start-4-span-10 {
    grid-column: 4/span 10;
  }

  .lg\:col-start-4-span-11 {
    grid-column: 4/span 11;
  }

  .lg\:col-start-4-span-12 {
    grid-column: 4/span 12;
  }

  .lg\:col-start-5-span-1 {
    grid-column: 5/span 1;
  }

  .lg\:col-start-5-span-2 {
    grid-column: 5/span 2;
  }

  .lg\:col-start-5-span-3 {
    grid-column: 5/span 3;
  }

  .lg\:col-start-5-span-4 {
    grid-column: 5/span 4;
  }

  .lg\:col-start-5-span-5 {
    grid-column: 5/span 5;
  }

  .lg\:col-start-5-span-6 {
    grid-column: 5/span 6;
  }

  .lg\:col-start-5-span-7 {
    grid-column: 5/span 7;
  }

  .lg\:col-start-5-span-8 {
    grid-column: 5/span 8;
  }

  .lg\:col-start-5-span-9 {
    grid-column: 5/span 9;
  }

  .lg\:col-start-5-span-10 {
    grid-column: 5/span 10;
  }

  .lg\:col-start-5-span-11 {
    grid-column: 5/span 11;
  }

  .lg\:col-start-5-span-12 {
    grid-column: 5/span 12;
  }

  .lg\:col-start-6-span-1 {
    grid-column: 6/span 1;
  }

  .lg\:col-start-6-span-2 {
    grid-column: 6/span 2;
  }

  .lg\:col-start-6-span-3 {
    grid-column: 6/span 3;
  }

  .lg\:col-start-6-span-4 {
    grid-column: 6/span 4;
  }

  .lg\:col-start-6-span-5 {
    grid-column: 6/span 5;
  }

  .lg\:col-start-6-span-6 {
    grid-column: 6/span 6;
  }

  .lg\:col-start-6-span-7 {
    grid-column: 6/span 7;
  }

  .lg\:col-start-6-span-8 {
    grid-column: 6/span 8;
  }

  .lg\:col-start-6-span-9 {
    grid-column: 6/span 9;
  }

  .lg\:col-start-6-span-10 {
    grid-column: 6/span 10;
  }

  .lg\:col-start-6-span-11 {
    grid-column: 6/span 11;
  }

  .lg\:col-start-6-span-12 {
    grid-column: 6/span 12;
  }

  .lg\:col-start-7-span-1 {
    grid-column: 7/span 1;
  }

  .lg\:col-start-7-span-2 {
    grid-column: 7/span 2;
  }

  .lg\:col-start-7-span-3 {
    grid-column: 7/span 3;
  }

  .lg\:col-start-7-span-4 {
    grid-column: 7/span 4;
  }

  .lg\:col-start-7-span-5 {
    grid-column: 7/span 5;
  }

  .lg\:col-start-7-span-6 {
    grid-column: 7/span 6;
  }

  .lg\:col-start-7-span-7 {
    grid-column: 7/span 7;
  }

  .lg\:col-start-7-span-8 {
    grid-column: 7/span 8;
  }

  .lg\:col-start-7-span-9 {
    grid-column: 7/span 9;
  }

  .lg\:col-start-7-span-10 {
    grid-column: 7/span 10;
  }

  .lg\:col-start-7-span-11 {
    grid-column: 7/span 11;
  }

  .lg\:col-start-7-span-12 {
    grid-column: 7/span 12;
  }

  .lg\:col-start-8-span-1 {
    grid-column: 8/span 1;
  }

  .lg\:col-start-8-span-2 {
    grid-column: 8/span 2;
  }

  .lg\:col-start-8-span-3 {
    grid-column: 8/span 3;
  }

  .lg\:col-start-8-span-4 {
    grid-column: 8/span 4;
  }

  .lg\:col-start-8-span-5 {
    grid-column: 8/span 5;
  }

  .lg\:col-start-8-span-6 {
    grid-column: 8/span 6;
  }

  .lg\:col-start-8-span-7 {
    grid-column: 8/span 7;
  }

  .lg\:col-start-8-span-8 {
    grid-column: 8/span 8;
  }

  .lg\:col-start-8-span-9 {
    grid-column: 8/span 9;
  }

  .lg\:col-start-8-span-10 {
    grid-column: 8/span 10;
  }

  .lg\:col-start-8-span-11 {
    grid-column: 8/span 11;
  }

  .lg\:col-start-8-span-12 {
    grid-column: 8/span 12;
  }

  .lg\:col-start-9-span-1 {
    grid-column: 9/span 1;
  }

  .lg\:col-start-9-span-2 {
    grid-column: 9/span 2;
  }

  .lg\:col-start-9-span-3 {
    grid-column: 9/span 3;
  }

  .lg\:col-start-9-span-4 {
    grid-column: 9/span 4;
  }

  .lg\:col-start-9-span-5 {
    grid-column: 9/span 5;
  }

  .lg\:col-start-9-span-6 {
    grid-column: 9/span 6;
  }

  .lg\:col-start-9-span-7 {
    grid-column: 9/span 7;
  }

  .lg\:col-start-9-span-8 {
    grid-column: 9/span 8;
  }

  .lg\:col-start-9-span-9 {
    grid-column: 9/span 9;
  }

  .lg\:col-start-9-span-10 {
    grid-column: 9/span 10;
  }

  .lg\:col-start-9-span-11 {
    grid-column: 9/span 11;
  }

  .lg\:col-start-9-span-12 {
    grid-column: 9/span 12;
  }

  .lg\:col-start-10-span-1 {
    grid-column: 10/span 1;
  }

  .lg\:col-start-10-span-2 {
    grid-column: 10/span 2;
  }

  .lg\:col-start-10-span-3 {
    grid-column: 10/span 3;
  }

  .lg\:col-start-10-span-4 {
    grid-column: 10/span 4;
  }

  .lg\:col-start-10-span-5 {
    grid-column: 10/span 5;
  }

  .lg\:col-start-10-span-6 {
    grid-column: 10/span 6;
  }

  .lg\:col-start-10-span-7 {
    grid-column: 10/span 7;
  }

  .lg\:col-start-10-span-8 {
    grid-column: 10/span 8;
  }

  .lg\:col-start-10-span-9 {
    grid-column: 10/span 9;
  }

  .lg\:col-start-10-span-10 {
    grid-column: 10/span 10;
  }

  .lg\:col-start-10-span-11 {
    grid-column: 10/span 11;
  }

  .lg\:col-start-10-span-12 {
    grid-column: 10/span 12;
  }

  .lg\:col-start-11-span-1 {
    grid-column: 11/span 1;
  }

  .lg\:col-start-11-span-2 {
    grid-column: 11/span 2;
  }

  .lg\:col-start-11-span-3 {
    grid-column: 11/span 3;
  }

  .lg\:col-start-11-span-4 {
    grid-column: 11/span 4;
  }

  .lg\:col-start-11-span-5 {
    grid-column: 11/span 5;
  }

  .lg\:col-start-11-span-6 {
    grid-column: 11/span 6;
  }

  .lg\:col-start-11-span-7 {
    grid-column: 11/span 7;
  }

  .lg\:col-start-11-span-8 {
    grid-column: 11/span 8;
  }

  .lg\:col-start-11-span-9 {
    grid-column: 11/span 9;
  }

  .lg\:col-start-11-span-10 {
    grid-column: 11/span 10;
  }

  .lg\:col-start-11-span-11 {
    grid-column: 11/span 11;
  }

  .lg\:col-start-11-span-12 {
    grid-column: 11/span 12;
  }

  .lg\:col-start-12-span-1 {
    grid-column: 12/span 1;
  }

  .lg\:col-start-12-span-2 {
    grid-column: 12/span 2;
  }

  .lg\:col-start-12-span-3 {
    grid-column: 12/span 3;
  }

  .lg\:col-start-12-span-4 {
    grid-column: 12/span 4;
  }

  .lg\:col-start-12-span-5 {
    grid-column: 12/span 5;
  }

  .lg\:col-start-12-span-6 {
    grid-column: 12/span 6;
  }

  .lg\:col-start-12-span-7 {
    grid-column: 12/span 7;
  }

  .lg\:col-start-12-span-8 {
    grid-column: 12/span 8;
  }

  .lg\:col-start-12-span-9 {
    grid-column: 12/span 9;
  }

  .lg\:col-start-12-span-10 {
    grid-column: 12/span 10;
  }

  .lg\:col-start-12-span-11 {
    grid-column: 12/span 11;
  }

  .lg\:col-start-12-span-12 {
    grid-column: 12/span 12;
  }
}
@media (min-width: 1280px) {
  .xl\:col-start-1-span-1 {
    grid-column: 1/span 1;
  }

  .xl\:col-start-1-span-2 {
    grid-column: 1/span 2;
  }

  .xl\:col-start-1-span-3 {
    grid-column: 1/span 3;
  }

  .xl\:col-start-1-span-4 {
    grid-column: 1/span 4;
  }

  .xl\:col-start-1-span-5 {
    grid-column: 1/span 5;
  }

  .xl\:col-start-1-span-6 {
    grid-column: 1/span 6;
  }

  .xl\:col-start-1-span-7 {
    grid-column: 1/span 7;
  }

  .xl\:col-start-1-span-8 {
    grid-column: 1/span 8;
  }

  .xl\:col-start-1-span-9 {
    grid-column: 1/span 9;
  }

  .xl\:col-start-1-span-10 {
    grid-column: 1/span 10;
  }

  .xl\:col-start-1-span-11 {
    grid-column: 1/span 11;
  }

  .xl\:col-start-1-span-12 {
    grid-column: 1/span 12;
  }

  .xl\:col-start-2-span-1 {
    grid-column: 2/span 1;
  }

  .xl\:col-start-2-span-2 {
    grid-column: 2/span 2;
  }

  .xl\:col-start-2-span-3 {
    grid-column: 2/span 3;
  }

  .xl\:col-start-2-span-4 {
    grid-column: 2/span 4;
  }

  .xl\:col-start-2-span-5 {
    grid-column: 2/span 5;
  }

  .xl\:col-start-2-span-6 {
    grid-column: 2/span 6;
  }

  .xl\:col-start-2-span-7 {
    grid-column: 2/span 7;
  }

  .xl\:col-start-2-span-8 {
    grid-column: 2/span 8;
  }

  .xl\:col-start-2-span-9 {
    grid-column: 2/span 9;
  }

  .xl\:col-start-2-span-10 {
    grid-column: 2/span 10;
  }

  .xl\:col-start-2-span-11 {
    grid-column: 2/span 11;
  }

  .xl\:col-start-2-span-12 {
    grid-column: 2/span 12;
  }

  .xl\:col-start-3-span-1 {
    grid-column: 3/span 1;
  }

  .xl\:col-start-3-span-2 {
    grid-column: 3/span 2;
  }

  .xl\:col-start-3-span-3 {
    grid-column: 3/span 3;
  }

  .xl\:col-start-3-span-4 {
    grid-column: 3/span 4;
  }

  .xl\:col-start-3-span-5 {
    grid-column: 3/span 5;
  }

  .xl\:col-start-3-span-6 {
    grid-column: 3/span 6;
  }

  .xl\:col-start-3-span-7 {
    grid-column: 3/span 7;
  }

  .xl\:col-start-3-span-8 {
    grid-column: 3/span 8;
  }

  .xl\:col-start-3-span-9 {
    grid-column: 3/span 9;
  }

  .xl\:col-start-3-span-10 {
    grid-column: 3/span 10;
  }

  .xl\:col-start-3-span-11 {
    grid-column: 3/span 11;
  }

  .xl\:col-start-3-span-12 {
    grid-column: 3/span 12;
  }

  .xl\:col-start-4-span-1 {
    grid-column: 4/span 1;
  }

  .xl\:col-start-4-span-2 {
    grid-column: 4/span 2;
  }

  .xl\:col-start-4-span-3 {
    grid-column: 4/span 3;
  }

  .xl\:col-start-4-span-4 {
    grid-column: 4/span 4;
  }

  .xl\:col-start-4-span-5 {
    grid-column: 4/span 5;
  }

  .xl\:col-start-4-span-6 {
    grid-column: 4/span 6;
  }

  .xl\:col-start-4-span-7 {
    grid-column: 4/span 7;
  }

  .xl\:col-start-4-span-8 {
    grid-column: 4/span 8;
  }

  .xl\:col-start-4-span-9 {
    grid-column: 4/span 9;
  }

  .xl\:col-start-4-span-10 {
    grid-column: 4/span 10;
  }

  .xl\:col-start-4-span-11 {
    grid-column: 4/span 11;
  }

  .xl\:col-start-4-span-12 {
    grid-column: 4/span 12;
  }

  .xl\:col-start-5-span-1 {
    grid-column: 5/span 1;
  }

  .xl\:col-start-5-span-2 {
    grid-column: 5/span 2;
  }

  .xl\:col-start-5-span-3 {
    grid-column: 5/span 3;
  }

  .xl\:col-start-5-span-4 {
    grid-column: 5/span 4;
  }

  .xl\:col-start-5-span-5 {
    grid-column: 5/span 5;
  }

  .xl\:col-start-5-span-6 {
    grid-column: 5/span 6;
  }

  .xl\:col-start-5-span-7 {
    grid-column: 5/span 7;
  }

  .xl\:col-start-5-span-8 {
    grid-column: 5/span 8;
  }

  .xl\:col-start-5-span-9 {
    grid-column: 5/span 9;
  }

  .xl\:col-start-5-span-10 {
    grid-column: 5/span 10;
  }

  .xl\:col-start-5-span-11 {
    grid-column: 5/span 11;
  }

  .xl\:col-start-5-span-12 {
    grid-column: 5/span 12;
  }

  .xl\:col-start-6-span-1 {
    grid-column: 6/span 1;
  }

  .xl\:col-start-6-span-2 {
    grid-column: 6/span 2;
  }

  .xl\:col-start-6-span-3 {
    grid-column: 6/span 3;
  }

  .xl\:col-start-6-span-4 {
    grid-column: 6/span 4;
  }

  .xl\:col-start-6-span-5 {
    grid-column: 6/span 5;
  }

  .xl\:col-start-6-span-6 {
    grid-column: 6/span 6;
  }

  .xl\:col-start-6-span-7 {
    grid-column: 6/span 7;
  }

  .xl\:col-start-6-span-8 {
    grid-column: 6/span 8;
  }

  .xl\:col-start-6-span-9 {
    grid-column: 6/span 9;
  }

  .xl\:col-start-6-span-10 {
    grid-column: 6/span 10;
  }

  .xl\:col-start-6-span-11 {
    grid-column: 6/span 11;
  }

  .xl\:col-start-6-span-12 {
    grid-column: 6/span 12;
  }

  .xl\:col-start-7-span-1 {
    grid-column: 7/span 1;
  }

  .xl\:col-start-7-span-2 {
    grid-column: 7/span 2;
  }

  .xl\:col-start-7-span-3 {
    grid-column: 7/span 3;
  }

  .xl\:col-start-7-span-4 {
    grid-column: 7/span 4;
  }

  .xl\:col-start-7-span-5 {
    grid-column: 7/span 5;
  }

  .xl\:col-start-7-span-6 {
    grid-column: 7/span 6;
  }

  .xl\:col-start-7-span-7 {
    grid-column: 7/span 7;
  }

  .xl\:col-start-7-span-8 {
    grid-column: 7/span 8;
  }

  .xl\:col-start-7-span-9 {
    grid-column: 7/span 9;
  }

  .xl\:col-start-7-span-10 {
    grid-column: 7/span 10;
  }

  .xl\:col-start-7-span-11 {
    grid-column: 7/span 11;
  }

  .xl\:col-start-7-span-12 {
    grid-column: 7/span 12;
  }

  .xl\:col-start-8-span-1 {
    grid-column: 8/span 1;
  }

  .xl\:col-start-8-span-2 {
    grid-column: 8/span 2;
  }

  .xl\:col-start-8-span-3 {
    grid-column: 8/span 3;
  }

  .xl\:col-start-8-span-4 {
    grid-column: 8/span 4;
  }

  .xl\:col-start-8-span-5 {
    grid-column: 8/span 5;
  }

  .xl\:col-start-8-span-6 {
    grid-column: 8/span 6;
  }

  .xl\:col-start-8-span-7 {
    grid-column: 8/span 7;
  }

  .xl\:col-start-8-span-8 {
    grid-column: 8/span 8;
  }

  .xl\:col-start-8-span-9 {
    grid-column: 8/span 9;
  }

  .xl\:col-start-8-span-10 {
    grid-column: 8/span 10;
  }

  .xl\:col-start-8-span-11 {
    grid-column: 8/span 11;
  }

  .xl\:col-start-8-span-12 {
    grid-column: 8/span 12;
  }

  .xl\:col-start-9-span-1 {
    grid-column: 9/span 1;
  }

  .xl\:col-start-9-span-2 {
    grid-column: 9/span 2;
  }

  .xl\:col-start-9-span-3 {
    grid-column: 9/span 3;
  }

  .xl\:col-start-9-span-4 {
    grid-column: 9/span 4;
  }

  .xl\:col-start-9-span-5 {
    grid-column: 9/span 5;
  }

  .xl\:col-start-9-span-6 {
    grid-column: 9/span 6;
  }

  .xl\:col-start-9-span-7 {
    grid-column: 9/span 7;
  }

  .xl\:col-start-9-span-8 {
    grid-column: 9/span 8;
  }

  .xl\:col-start-9-span-9 {
    grid-column: 9/span 9;
  }

  .xl\:col-start-9-span-10 {
    grid-column: 9/span 10;
  }

  .xl\:col-start-9-span-11 {
    grid-column: 9/span 11;
  }

  .xl\:col-start-9-span-12 {
    grid-column: 9/span 12;
  }

  .xl\:col-start-10-span-1 {
    grid-column: 10/span 1;
  }

  .xl\:col-start-10-span-2 {
    grid-column: 10/span 2;
  }

  .xl\:col-start-10-span-3 {
    grid-column: 10/span 3;
  }

  .xl\:col-start-10-span-4 {
    grid-column: 10/span 4;
  }

  .xl\:col-start-10-span-5 {
    grid-column: 10/span 5;
  }

  .xl\:col-start-10-span-6 {
    grid-column: 10/span 6;
  }

  .xl\:col-start-10-span-7 {
    grid-column: 10/span 7;
  }

  .xl\:col-start-10-span-8 {
    grid-column: 10/span 8;
  }

  .xl\:col-start-10-span-9 {
    grid-column: 10/span 9;
  }

  .xl\:col-start-10-span-10 {
    grid-column: 10/span 10;
  }

  .xl\:col-start-10-span-11 {
    grid-column: 10/span 11;
  }

  .xl\:col-start-10-span-12 {
    grid-column: 10/span 12;
  }

  .xl\:col-start-11-span-1 {
    grid-column: 11/span 1;
  }

  .xl\:col-start-11-span-2 {
    grid-column: 11/span 2;
  }

  .xl\:col-start-11-span-3 {
    grid-column: 11/span 3;
  }

  .xl\:col-start-11-span-4 {
    grid-column: 11/span 4;
  }

  .xl\:col-start-11-span-5 {
    grid-column: 11/span 5;
  }

  .xl\:col-start-11-span-6 {
    grid-column: 11/span 6;
  }

  .xl\:col-start-11-span-7 {
    grid-column: 11/span 7;
  }

  .xl\:col-start-11-span-8 {
    grid-column: 11/span 8;
  }

  .xl\:col-start-11-span-9 {
    grid-column: 11/span 9;
  }

  .xl\:col-start-11-span-10 {
    grid-column: 11/span 10;
  }

  .xl\:col-start-11-span-11 {
    grid-column: 11/span 11;
  }

  .xl\:col-start-11-span-12 {
    grid-column: 11/span 12;
  }

  .xl\:col-start-12-span-1 {
    grid-column: 12/span 1;
  }

  .xl\:col-start-12-span-2 {
    grid-column: 12/span 2;
  }

  .xl\:col-start-12-span-3 {
    grid-column: 12/span 3;
  }

  .xl\:col-start-12-span-4 {
    grid-column: 12/span 4;
  }

  .xl\:col-start-12-span-5 {
    grid-column: 12/span 5;
  }

  .xl\:col-start-12-span-6 {
    grid-column: 12/span 6;
  }

  .xl\:col-start-12-span-7 {
    grid-column: 12/span 7;
  }

  .xl\:col-start-12-span-8 {
    grid-column: 12/span 8;
  }

  .xl\:col-start-12-span-9 {
    grid-column: 12/span 9;
  }

  .xl\:col-start-12-span-10 {
    grid-column: 12/span 10;
  }

  .xl\:col-start-12-span-11 {
    grid-column: 12/span 11;
  }

  .xl\:col-start-12-span-12 {
    grid-column: 12/span 12;
  }
}
/* classes .order-X pour ordonner les éléments de la grille (by Tib1) */
.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

/* .order au sein des breakpoints */
@media (min-width: 360px) {
  .xs\:order-1 {
    order: 1;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-2 {
    order: 2;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-3 {
    order: 3;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-4 {
    order: 4;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-5 {
    order: 5;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-6 {
    order: 6;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-7 {
    order: 7;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-8 {
    order: 8;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-9 {
    order: 9;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-10 {
    order: 10;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-11 {
    order: 11;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }

  .xs\:order-12 {
    order: 12;
  }

  .xs\:order-first {
    order: -1;
  }

  .xs\:order-last {
    order: 13;
  }
}
@media (min-width: 576px) {
  .sm\:order-1 {
    order: 1;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-2 {
    order: 2;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-3 {
    order: 3;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-4 {
    order: 4;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-5 {
    order: 5;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-6 {
    order: 6;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-7 {
    order: 7;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-8 {
    order: 8;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-9 {
    order: 9;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-10 {
    order: 10;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-11 {
    order: 11;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }

  .sm\:order-12 {
    order: 12;
  }

  .sm\:order-first {
    order: -1;
  }

  .sm\:order-last {
    order: 13;
  }
}
@media (min-width: 768px) {
  .md\:order-1 {
    order: 1;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-3 {
    order: 3;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-4 {
    order: 4;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-5 {
    order: 5;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-6 {
    order: 6;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-7 {
    order: 7;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-8 {
    order: 8;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-9 {
    order: 9;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-10 {
    order: 10;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-11 {
    order: 11;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }

  .md\:order-12 {
    order: 12;
  }

  .md\:order-first {
    order: -1;
  }

  .md\:order-last {
    order: 13;
  }
}
@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-3 {
    order: 3;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-4 {
    order: 4;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-5 {
    order: 5;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-6 {
    order: 6;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-7 {
    order: 7;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-8 {
    order: 8;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-9 {
    order: 9;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-10 {
    order: 10;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-11 {
    order: 11;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }

  .lg\:order-12 {
    order: 12;
  }

  .lg\:order-first {
    order: -1;
  }

  .lg\:order-last {
    order: 13;
  }
}
@media (min-width: 1280px) {
  .xl\:order-1 {
    order: 1;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-2 {
    order: 2;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-3 {
    order: 3;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-4 {
    order: 4;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-5 {
    order: 5;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-6 {
    order: 6;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-7 {
    order: 7;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-8 {
    order: 8;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-9 {
    order: 9;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-10 {
    order: 10;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-11 {
    order: 11;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }

  .xl\:order-12 {
    order: 12;
  }

  .xl\:order-first {
    order: -1;
  }

  .xl\:order-last {
    order: 13;
  }
}
/* classes .d-none ou .d-block pour cacher ou afficher un élément */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-inline {
  display: inline !important;
}

/* classes .d-none ou .d-block au sein des breakpoints */
@media (min-width: 360px) {
  .xs\:d-none {
    display: none !important;
  }

  .xs\:d-block {
    display: block !important;
  }
}
@media (min-width: 576px) {
  .sm\:d-none {
    display: none !important;
  }

  .sm\:d-block {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .md\:d-none {
    display: none !important;
  }

  .md\:d-block {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .lg\:d-none {
    display: none !important;
  }

  .lg\:d-block {
    display: block !important;
  }
}
@media (min-width: 1280px) {
  .xl\:d-none {
    display: none !important;
  }

  .xl\:d-block {
    display: block !important;
  }
}
/* Déclarations pour Oscine */
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_It.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_Lt.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_LtIt.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_Bd.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_BdIt.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_XBb.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Oscine";
  src: url("../fonts/Oscine_Trial_XBbIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
/* Déclarations pour Interstate */
@font-face {
  font-weight: bold;
  font-style: normal;
  font-family: "Interstate";
  src: url("../fonts/Interstate-bold.ttf") format("truetype");
}
@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: "Interstate";
  src: url("../fonts/Interstate-black.ttf") format("truetype");
}
@font-face {
  font-weight: bold;
  font-style: italic;
  font-family: "Interstate";
  src: url("../fonts/Interstate-bolditalic.ttf") format("truetype");
}
@font-face {
  font-weight: 900;
  font-style: normal;
  font-family: "Interstate";
  src: url("../fonts/Interstate-UltraBlack.ttf") format("truetype");
}
@font-face {
  font-weight: 900;
  font-style: italic;
  font-family: "Interstate";
  src: url("../fonts/Interstate-UltraBlackItalic.ttf") format("truetype");
}
/* Déclarations pour Organetto */
@font-face {
  font-family: "Organetto";
  src: url("../fonts/Organetto-ultra-cnd-light.otf") format("opentype");
  font-stretch: ultra-condensed;
  font-weight: lighter;
  font-style: normal;
}
/* Déclarations pour Noto Color Emoji */
@font-face {
  font-family: "Noto Color Emoji";
  font-style: normal;
  src: url("../fonts/NotoColorEmoji-Regular.ttf") format("truetype");
  font-display: swap;
}
header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  background-color: #707070;
  box-shadow: #656565 0px 2px 10px;
  top: 0;
  left: 0;
}

#dTopBarre {
  height: 142px;
  display: flex;
  transition: 0.4s;
  width: 95%;
}
@media all and (min-width: 1024px) and (max-width: 1150px) {
  #dTopBarre {
    width: unset;
    margin: 0 12px;
  }
}

#dTitre img {
  height: 55px;
}

.language {
  height: 50px;
  width: 50px;
  font-size: 1.5rem;
  background-color: #d42f19;
  color: white;
  cursor: pointer;
  transition: border 0.2s, color 0.2s, background-color 0.2s;
  border: 0;
}
.language:hover, .language.actif:hover {
  background-color: #d42f19;
  color: white;
  border: 5px solid white;
}
.language.actif {
  background-color: white;
  color: #d42f19;
  border: unset;
}
@media all and (max-width: 1150px) {
  .language {
    height: 40px;
    width: 40px;
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
@media all and (max-width: 1024px) {
  .language {
    height: 34px;
    width: 34px;
    font-size: 1.2rem;
    margin-top: 13px;
  }
}

/* Menu */
.scs-nav {
  height: 94px;
}

.scs-nav-top {
  display: flex;
  position: relative;
  justify-content: right;
  height: 100%;
}

@media all and (max-width: 1023px) {
  .scs-nav-top {
    flex-direction: column;
  }
}
.scs-nav-top ul {
  margin: 0;
  padding: 0;
}

.scs-nav-top li {
  list-style: none;
}

.scs-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Oscine", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1.775rem;
  letter-spacing: 1px;
}

.scs-nav .niv-0:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  margin-top: 4px;
  width: 100%;
  margin-bottom: 0px;
  background-color: transparent;
}

.scs-nav .niv-0:hover:after {
  background-color: #e7473c;
}

.scs-nav .niv-0:hover {
  color: white;
}

.niv-0 {
  margin: 0px 6px;
  position: relative;
  flex-direction: column;
  text-align: center;
  display: inline-grid;
  grid-template-rows: 64px auto;
  justify-items: center;
  align-items: center;
  height: 100%;
  position: relative;
}
.niv-0 > div > a {
  display: inline-block;
  text-align: left;
}
@media all and (max-width: 1023px) {
  .niv-0 {
    display: inline-flex;
    align-items: unset;
  }
}

.scs-nav .niv-1 a {
  font-weight: normal !important;
  font-stretch: ultra-condensed;
  font-style: normal;
  font-family: Oscine;
  text-transform: uppercase;
  font-size: 1.2rem;
  white-space: normal;
  color: #272727 !important;
  display: inline-block;
  line-height: 1.3rem;
}
.scs-nav .niv-1 a:hover {
  color: #d42f19 !important;
}

.niv-1 {
  grid-row: 2;
  justify-self: start;
  max-width: 220px;
  min-width: 100%;
  visibility: hidden;
  overflow: hidden;
  position: relative;
  text-align: left;
  top: 30px;
  left: 0;
  height: 0;
  background-color: #ffffff;
  padding: 10px !important;
  padding: 0;
  margin: 0;
  z-index: 1000;
  -webkit-box-shadow: -5px -1px 7px 5px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -5px -1px 7px 5px rgba(0, 0, 0, 0.07);
  box-shadow: -5px -1px 7px 5px rgba(0, 0, 0, 0.07);
}

.scs-nav-top .niv-0:nth-child(1) .niv-1 {
  max-width: unset;
}

.niv-0:hover > .niv-1 {
  visibility: visible;
  height: auto;
  overflow: unset;
}

.scs-nav li {
  line-height: 2rem;
}
@media all and (max-width: 1450px) {
  .scs-nav {
    height: 94px;
  }
  .scs-nav a {
    font-size: 1.4rem;
    letter-spacing: 0.9px;
  }
  .scs-nav .niv-1 {
    max-width: 190px;
  }
  .scs-nav .niv-1 a {
    font-size: 1.08rem !important;
  }
}
@media all and (max-width: 1300px) {
  .scs-nav li {
    line-height: 1.7rem;
  }
  .scs-nav a {
    font-size: 1.25rem;
    letter-spacing: 0.9px;
  }
  .scs-nav .niv-1 {
    max-width: 160px;
  }
  .scs-nav .niv-1 a {
    font-size: 0.87rem !important;
  }
}
@media all and (max-width: 1160px) {
  .scs-nav li {
    line-height: 1.5rem;
  }
  .scs-nav a {
    font-size: 1.05rem;
    letter-spacing: 0.8px;
  }
  .scs-nav .niv-1 {
    max-width: 150px;
  }
  .scs-nav .niv-1 a {
    font-size: 0.81rem !important;
  }
}
@media all and (max-width: 900px) {
  .scs-nav a {
    font-size: 0.95rem;
    letter-spacing: 0.7px;
  }
  .scs-nav .niv-1 {
    top: calc(100% - 23px) !important;
  }
  .scs-nav .niv-1 a {
    font-size: 1rem !important;
  }
}

#imgTitreMenu {
  max-width: 315px;
}

.bgw {
  transition: 0.4s;
}
.bgw a {
  color: #fff !important;
}
.bgw .scs-nav a:hover:after {
  background-color: #fff !important;
}

.bgw.accueil a {
  color: white !important;
  text-shadow: 1px 1px #333;
}
.bgw.accueil .scs-nav a:hover:after {
  background-color: white !important;
}

#sicsiBurger.sicsiBurgerActif {
  display: block;
}
#sicsiBurger.sicsiBurgerActif > label div {
  background-color: white;
}
#sicsiBurger.sicsiBurgerActif > input:checked + label div {
  background-color: white;
}

/*****************
* Version mobile *
******************/
/* classe .sicsiBurgerActif 
*
* > Quand on est en version mobile
*
*/
header.sicsiBurgerActif a {
  color: #d42f19 !important;
}

#dTopBarre.sicsiBurgerActif {
  flex-direction: column;
  transition: none;
}
#dTopBarre.sicsiBurgerActif #dTitre {
  height: 81px;
  min-height: 81px;
}
#dTopBarre.sicsiBurgerActif #dTitre > div:first-child {
  margin-left: 24px;
}
#dTopBarre.sicsiBurgerActif > hr {
  display: none;
}
#dTopBarre.sicsiBurgerActif.sicsiMenuBurgerOuvert #dTitre {
  justify-content: center;
}
#dTopBarre.sicsiBurgerActif.sicsiMenuBurgerOuvert #dTitre > div:first-child img {
  display: none;
}
#dTopBarre.sicsiBurgerActif.sicsiMenuBurgerOuvert > hr {
  margin: 0;
  display: block !important;
  height: 1px;
  border: 0;
  border-top: 2px solid #707070;
  padding: 0;
}
#dTopBarre.sicsiBurgerActif.sicsiMenuBurgerOuvert .language {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  margin: 0 12px 0 0;
  height: 37px;
  width: 41px;
  font-size: 1.4rem;
  font-weight: bold;
}
#dTopBarre.sicsiBurgerActif #dMenu {
  display: none;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#dTopBarre.sicsiBurgerActif #dMenu > ul {
  flex-direction: column;
}
#dTopBarre.sicsiBurgerActif #dMenu .scs-nav {
  height: unset;
  width: 100%;
  max-width: 400px;
  margin: auto;
}
#dTopBarre.sicsiBurgerActif #dMenu .scs-nav-top {
  padding-top: 80px;
}
#dTopBarre.sicsiBurgerActif #dMenu .scs-nav-top.mob-show {
  padding-top: 0;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 {
  height: 100px;
  justify-content: center;
  text-align: left;
  margin: 0px !important;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 > div:first-child {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 > div:first-child img {
  width: 53px;
  height: 53px;
  transform: rotate(-45deg);
  margin-right: 35px;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 > div:first-child a {
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: 0.9px;
  margin-left: 2px;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0.mob-show {
  height: 100%;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0.mob-show > div:first-child img {
  transform: rotate(0deg);
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 .niv-1 {
  display: none;
  max-width: unset;
  background-color: #eceae4;
  overflow-y: auto;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 .niv-1 li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 48px;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 .niv-1 li img {
  width: 22px;
  margin-right: 40px;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 .niv-1 a {
  font-family: "Oscine", Calibri, "Trebuchet MS", sans-serif;
  font-weight: normal;
  font-size: 1.25rem !important;
  margin: 0 30px;
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0 .niv-1.mob-show {
  display: block;
  top: unset !important;
  visibility: visible;
  height: calc(100vh - 181px);
}
#dTopBarre.sicsiBurgerActif #dMenu .niv-0:after {
  display: none;
}

@media all and (max-width: 1023px) {
  #dTopBarre {
    height: 81px;
    display: flex;
    transition: 0.4s;
    width: 100%;
  }
}
@media all and (max-width: 1023px) and (min-width: 1024px) and (max-width: 1150px) {
  #dTopBarre {
    width: unset;
    margin: 0 12px;
  }
}
@media all and (max-width: 1023px) {
  .language {
    display: none !important;
  }
}
@media all and (max-width: 1023px) {
  #dTitre img {
    height: 33px;
  }
}
/* classe .sicsiMenuBurgerOuvert
*
* Quand on est en version mobile et que le menu est ouvert
*
*/
header.sicsiMenuBurgerOuvert #sicsiBurger > label > div {
  display: none;
  opacity: 0;
}
header.sicsiMenuBurgerOuvert #sicsiBurger > label > img {
  display: block;
  opacity: 1;
}

#dTopBarre.sicsiMenuBurgerOuvert {
  height: 100vh;
  width: 100%;
}

#dMenu.sicsiMenuBurgerOuvert {
  display: block !important;
}

#sicsiBurger > input {
  display: none;
}
#sicsiBurger > label {
  position: absolute;
  right: 24px;
  margin: 28px auto;
  display: block;
  width: 32px;
  height: 30px;
  cursor: pointer;
}
#sicsiBurger > label div {
  background-color: #fff;
  /*margin-left: 0;*/
  margin-bottom: 6px;
  border-radius: 3px;
  margin-right: 0;
  margin-left: auto;
  height: 4px;
  opacity: 1;
}
#sicsiBurger > label > img {
  display: none;
  opacity: 0;
}
#sicsiBurger > label div:first-child {
  width: 32px;
}
#sicsiBurger > label div:nth-child(2) {
  width: 26px;
}
#sicsiBurger > label div:nth-child(3) {
  width: 20px;
}
#sicsiBurger > img {
  display: none;
}

/* Couleur noire */
.has-couleur-noire-color {
  color: #000000;
}

.has-couleur-noire-background-color {
  background-color: #000000;
}

/* Couleur blanche */
.has-couleur-blanche-color {
  color: #ffffff;
}

.has-couleur-blanche-background-color {
  background-color: #ffffff;
}

/* Couleur principale */
.has-couleur-principale-color {
  color: #d42f19;
}

.has-couleur-principale-background-color {
  background-color: #d42f19;
}

/* Gris clair */
.has-couleur-gris-clair-color {
  color: #eceae4;
}

.has-couleur-gris-clair-background-color {
  background-color: #eceae4;
}

/* Gris moyen */
.has-couleur-gris-moyen-color {
  color: #707070;
}

.has-couleur-gris-moyen-background-color {
  background-color: #707070;
}

/* Gris foncé */
.has-couleur-gris-fonce-color {
  color: #272727;
}

.has-couleur-gris-fonce-background-color {
  background-color: #272727;
}

/* Couleur principale light */
.has-couleur-secondaire-color {
  color: #e7473c;
}

.has-couleur-secondaire-background-color {
  background-color: #e7473c;
}

:root {
  --hauteur-topbarre-top: 142px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #272727;
  font-family: "Oscine", Calibri, "Trebuchet MS", sans-serif;
  position: relative;
  font-size: 1.3rem;
}

/* Styles pour les boutons sous Gutemberg / Wordpress */
:root :where(.wp-block-buttons-is-layout-flex) {
  gap: 16px;
}

.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/****/
/******************************/
/* Styles du mini Menu Droite */
/******************************/
#miniMenu {
  position: fixed;
  z-index: 4000;
}
#miniMenu #miniMenuDEnglo {
  width: 100%;
  height: 100%;
}
#miniMenu #menuContent ul {
  list-style: none;
  flex: 1;
  margin: 0;
  padding: 0;
}
#miniMenu #menuContent li {
  display: flex;
  flex: 1;
  text-align: center;
  align-items: center;
}
@media all and (min-width: 1024px) {
  #miniMenu {
    background-color: #eceae4;
    top: 224px;
    right: -288px;
    width: 413px;
    height: 507px;
    box-shadow: -7px 7px 12px #00000029;
    transition: right 0.3s ease-in-out;
    overflow: visible;
    border-top-left-radius: 33px;
    border-bottom-left-radius: 33px;
    z-index: 5010;
    /* Lorsque le menu est ouvert */
    /* Conteneur du contenu du menu avec overflow: hidden */
    /* Icône dans le coin supérieur gauche */
    /* Rotation de l'image lorsque le menu est ouvert */
  }
  #miniMenu .text-container {
    overflow: hidden;
  }
  #miniMenu.ouvert {
    right: 0;
  }
  #miniMenu #menuContent {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Masque le contenu qui déborde */
    padding: 40px 0;
  }
  #miniMenu #menuContent li {
    justify-content: start;
  }
  #miniMenu #menuContent li img {
    margin: 0 30px;
    width: 69px;
    height: 69px;
  }
  #miniMenu #menuContent li a {
    display: block;
    color: #d42f19;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
  }
  #miniMenu #menuContent li a:hover {
    text-decoration: underline;
  }
  #miniMenu #menuIcone {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    /* Centre l'image sur le coin */
    z-index: 1001;
  }
  #miniMenu #menuIcone::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    background: transparent;
    transform: translate(-50%, -50%);
    box-shadow: -3px 4px 6px #00000029;
    z-index: -1;
    border-radius: 50%;
  }
  #miniMenu #menuIcone img {
    width: 62px;
    height: 62px;
    transform-origin: center center;
    /* Définit le centre de rotation */
    transition: transform 0.3s ease;
    /* Transition pour la rotation */
    transform: rotate(-45deg);
    position: relative;
    z-index: 1;
  }
  #miniMenu.ouvert #menuIcone img {
    transform: rotate(0deg);
  }
}
@media all and (max-width: 1023px) {
  #miniMenu {
    padding: 0 10px;
    top: unset;
    bottom: 10px;
    right: unset;
    height: 90px;
    width: 100%;
  }
  #miniMenu li {
    justify-items: center;
    flex-direction: column;
  }
  #miniMenu li a {
    color: #d42f19;
    font-size: 1rem;
    text-decoration: none;
    line-height: 1rem;
    display: inline-block;
  }
  #miniMenu #miniMenuDEnglo {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    background-color: #eceae4;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
    max-width: 665px;
    margin-right: auto;
    margin-left: auto;
  }
  #miniMenu img {
    max-height: 41px;
  }
  #miniMenu #menuIcone {
    display: none;
  }
}

/********************/
/* Styles du FOOTER */
/********************/
.-footer {
  position: relative;
  z-index: 5000;
  background-color: #B4B4B4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #707070;
  margin-top: 60px;
  padding-top: 46px;
  margin-right: 30px;
  margin-left: 30px;
}
.-footer .grid:nth-child(1) {
  display: inline-grid;
  width: auto;
}
.-footer .main-grid {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 2rem;
}
.-footer a.titre-principal {
  color: #272727;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.1s;
  position: relative;
}
.-footer a.titre-principal:hover {
  color: #d42f19;
}
.-footer a.titre-principal:after {
  position: absolute;
  bottom: 0px;
  content: "";
  display: block;
  height: 4px;
  margin-top: 40px;
  width: 100%;
  margin-bottom: 0px;
}
.-footer div:nth-child(1) > div {
  padding: 0 10px;
}
.-footer div:nth-child(1) > div:nth-child(1) > img:nth-child(1) {
  padding-bottom: 20px;
}
.-footer div:nth-child(1) > div:nth-child(n+3) > div {
  max-width: 200px;
}
.-footer .col-g {
  font-size: 1.25rem;
}
.-footer .col-vue {
  font-size: 1rem;
}
.-footer .ss-bloc-menu {
  padding: 0 !important;
  width: 800px !important;
  min-height: 376px;
}
.-footer .ss-bloc-menu > div {
  padding: 0 10px;
  width: 100%;
}
.-footer .ss-bloc-menu .ss-bloc-menu-2 {
  padding: 0 !important;
  width: 600px !important;
  min-width: 600px;
}
.-footer .ss-bloc-menu .ss-bloc-menu-2 > div {
  padding: 0 10px;
  width: 100%;
}
.-footer .ss-bloc-menu .ss-bloc-menu-2.items-4 {
  width: 800px !important;
  min-width: 800px;
}
.-footer ul {
  padding: 0;
  padding-top: 15px;
  position: relative;
}
.-footer ul:before {
  background-color: #d42f19;
  position: absolute;
  top: 0px;
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  margin-top: 5px;
}
.-footer ul a {
  color: #272727 !important;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.2rem;
}
.-footer ul a:hover {
  color: #d42f19;
  text-decoration: none;
}
.-footer li {
  list-style: none;
  line-height: 1.9rem;
}
.-footer .bloc-socnet {
  position: relative;
  top: -250px;
  height: 0;
}
.-footer .bloc-socnet > hr {
  margin-top: 28px;
  margin-bottom: 16px;
}
.-footer .bloc-socnet > img.icn-socnet {
  width: 34px;
  height: 34px;
  margin-top: 24px;
  margin-right: 9px;
}
.-footer .rgpd {
  position: relative;
  height: 0;
  top: -70px;
}
.-footer .rgpd a {
  font-size: 1.25rem;
  color: #272727;
}
.-footer .rgpd a:hover {
  color: #d42f19;
}
@media all and (min-width: 1512px) {
  .-footer .lg\:grid-cols-7 {
    grid-template-columns: 240px 150px 210px repeat(4, 200px) !important;
  }
  .-footer .lg\:grid-cols-7.items-4 {
    grid-template-columns: 240px 210px repeat(5, 200px) !important;
  }
}
@media all and (min-width: 1024px) and (max-width: 1511px) {
  .-footer .main-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .-footer .lg\:grid-cols-7 {
    grid-template-columns: 225px 122px 183px repeat(4, 168px) !important;
  }
  .-footer .lg\:grid-cols-7.items-4 {
    grid-template-columns: 225px 183px repeat(4, 168px) !important;
  }
  .-footer .col-g {
    font-size: 1.1rem;
  }
  .-footer .col-vue {
    font-size: 0.9rem;
  }
  .-footer .ss-bloc-menu {
    padding: 0 !important;
    width: 672px !important;
  }
  .-footer .ss-bloc-menu > div {
    padding: 0 10px;
  }
  .-footer .ss-bloc-menu .ss-bloc-menu-2 {
    padding: 0 !important;
    width: 504px !important;
    min-width: 504px;
  }
  .-footer .ss-bloc-menu .ss-bloc-menu-2 > div {
    padding: 0 10px;
    width: 100%;
  }
  .-footer .bloc-socnet > img.icn-socnet {
    width: 30px;
    height: 30px;
  }
  .-footer a.titre-principal {
    font-size: 1.07rem;
  }
  .-footer ul a {
    font-size: 1.02rem;
    line-height: 1rem;
  }
}
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .-footer .main-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .-footer .lg\:grid-cols-7 {
    grid-template-columns: 180px 112px 166px repeat(4, 128px) !important;
  }
  .-footer .col-g {
    font-size: 1rem;
  }
  .-footer .col-vue {
    font-size: 0.8rem;
  }
  .-footer .ss-bloc-menu {
    padding: 0 !important;
    width: 512px !important;
  }
  .-footer .ss-bloc-menu > div {
    padding: 0 8px;
  }
  .-footer .ss-bloc-menu .ss-bloc-menu-2 {
    padding: 0 !important;
    width: 384px !important;
    min-width: 384px;
  }
  .-footer .ss-bloc-menu .ss-bloc-menu-2 > div {
    padding: 0 10px;
    width: 100%;
  }
  .-footer .bloc-socnet > img.icn-socnet {
    width: 28px;
    height: 28px;
  }
  .-footer a.titre-principal {
    font-size: 0.95rem;
  }
  .-footer ul a {
    font-size: 0.83rem;
    line-height: 1rem;
  }
  .-footer .rgpd a {
    font-size: 1rem;
  }
}
@media all and (min-width: 1024px) and (max-width: 1140px) {
  .-footer .lg\:grid-cols-7 {
    grid-template-columns: 180px 166px repeat(4, 128px) !important;
  }
  .-footer > div > div > div:nth-child(2) {
    display: none !important;
  }
}
@media all and (max-width: 1023px) {
  .-footer {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-right: unset;
    margin-left: unset;
  }
  .-footer .lg\:grid-cols-7 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .-footer grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .-footer .main-grid {
    padding-left: 38px;
    padding-right: 38px;
    padding-top: 32px;
  }
  .-footer .grid:nth-child(1) {
    width: 100%;
  }
  .-footer .col-act-solo {
    margin-top: 20px;
  }
  .-footer .ss-bloc-menu {
    width: unset !important;
  }
  .-footer .ss-bloc-menu div:nth-child(1) {
    padding-right: 30px;
  }
  .-footer .ss-bloc-menu .ss-bloc-menu-2 {
    padding: 0 !important;
    width: unset !important;
    min-width: unset;
  }
  .-footer .ss-bloc-menu .ss-bloc-menu-2 > div {
    padding: 0;
    width: 100%;
  }
  .-footer div:nth-child(1) > div:nth-child(n+3) > div {
    max-width: unset;
  }
  .-footer div:nth-child(1) > div:nth-child(1) > img:nth-child(1) {
    max-width: 180px;
  }
  .-footer ul:before {
    display: none;
  }
  .-footer .bloc-socnet {
    position: unset;
    top: unset;
    height: unset;
    margin-bottom: 20px;
  }
  .-footer .rgpd {
    text-align: end;
  }
}
@media all and (max-width: 1023px) and (max-width: 576px) {
  .-footer .main-grid {
    padding-left: 18px;
    padding-right: 18px;
  }
  .-footer .col-g {
    font-size: 1.1rem;
  }
  .-footer a.titre-principal {
    font-size: 1.1rem;
  }
  .-footer ul a {
    font-size: 1rem;
    line-height: 1.1rem;
  }
}
.-footer .ffooter {
  vertical-align: middle;
  background-color: #272727;
  color: #eceae4;
  height: 36px;
  font-size: 10px;
}

footer {
  background-color: #eceae4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #707070;
  margin-top: 60px;
  padding-top: 46px;
  margin-right: 30px;
  margin-left: 30px;
  z-index: 5000;
  position: relative;
}
footer a.titre-principal {
  color: #272727;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.1s;
  position: relative;
}
footer a.titre-principal:hover {
  color: #d42f19;
}
footer a.titre-principal:after {
  position: absolute;
  bottom: 0px;
  content: "";
  display: block;
  height: 4px;
  margin-top: 40px;
  width: 100%;
  margin-bottom: 0px;
}
footer .grid-footer {
  grid-template-columns: 240px 1fr;
}
@media all and (max-width: 1023px) {
  footer .grid-footer {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
footer .col-g {
  font-size: 1.25rem;
}
footer .col-vue {
  font-size: 1rem;
}
@media all and (max-width: 1023px) {
  footer .col-vue {
    display: none;
  }
}
footer .menu {
  display: flex;
  flex-wrap: wrap;
}
footer .menu > div {
  padding: 0 10px;
}
footer .menu > div.titre-niveau-1 {
  width: fit-content;
}
footer .menu .titre-niveau-1 {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
footer .menu .titre-principal {
  display: inline-block;
  white-space: nowrap;
}
footer ul {
  text-wrap: auto;
  padding: 0;
  padding-top: 15px;
  position: relative;
}
footer ul:before {
  background-color: #d42f19;
  position: absolute;
  top: 0px;
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  margin-top: 5px;
}
footer ul a {
  color: #272727 !important;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.2rem;
}
footer ul a:hover {
  color: #d42f19;
  text-decoration: none;
}
footer li {
  list-style: none;
  line-height: 1.9rem;
}
footer .bloc-socnet > hr {
  margin-top: 28px;
  margin-bottom: 16px;
}
footer .bloc-socnet > img.icn-socnet {
  width: 34px;
  height: 34px;
  margin-top: 24px;
  margin-right: 9px;
}
footer .rgpd {
  margin-top: 70px;
}
footer .rgpd a {
  font-size: 1.25rem;
  color: #272727;
}
footer .rgpd a:hover {
  color: #d42f19;
}
@media all and (max-width: 1023px) {
  footer {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-right: unset;
    margin-left: unset;
  }
  footer .grid-footer {
    padding-left: 38px;
    padding-right: 38px;
  }
  footer .titre-niveau-1 {
    margin-top: 10px;
  }
  footer .bloc-socnet > img.icn-socnet {
    width: 28px;
    height: 28px;
  }
  footer ul:before {
    display: none;
  }
  footer .rgpd {
    margin-top: 30px;
  }
}
@media all and (max-width: 576px) {
  footer .col-g {
    font-size: 1.1rem;
  }
  footer a.titre-principal {
    font-size: 1.1rem;
  }
  footer ul a {
    font-size: 1rem;
    line-height: 1.1rem;
  }
}
footer .ffooter {
  vertical-align: middle;
  background-color: #272727;
  color: #eceae4;
  height: 36px;
  font-size: 10px;
}

.globContainer {
  width: 100%;
  padding-left: 212px;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}
@media all and (max-width: 1425px) {
  .globContainer {
    padding-left: 50px;
  }
}
@media all and (max-width: 1023px) {
  .globContainer {
    padding: unset;
    padding: 0 10px;
  }
}
.globContainer.plusMBottom {
  margin-bottom: 50px;
}

.plusMTop {
  margin-top: 193px;
}
@media all and (max-width: 1023px) {
  .plusMTop {
    margin-top: 99px;
  }
}

.plusMTop2 {
  margin-top: 193px;
}
@media all and (max-width: 1023px) {
  .plusMTop2 {
    margin-top: unset;
  }
}

.bgGrisClair {
  background-color: #eceae4;
}

.bgGrisClairClair {
  background-color: #f7f7f7;
}

.bgPrincipal {
  background-color: #d42f19;
}

.colorPrincipal {
  color: #d42f19;
}

.centralContainer {
  width: 1066px;
}
@media all and (max-width: 1279px) {
  .centralContainer {
    width: 800px;
  }
}
@media all and (max-width: 1023px) {
  .centralContainer {
    max-width: 665px;
    width: unset;
    margin-right: auto;
    margin-left: auto;
  }
  .centralContainer.sAccueilCarrousel {
    padding: unset;
  }
}

.normalTextContainer {
  max-width: 832px;
}

.ariane {
  font-size: 1.2rem;
  color: #707070;
  margin-bottom: 0.5rem;
}
@media all and (max-width: 1023px) {
  .ariane {
    font-size: 1rem;
  }
}
.ariane a {
  text-decoration: none !important;
  color: #707070 !important;
}
.ariane a:hover {
  text-decoration: underline !important;
}
.ariane span {
  font-weight: bold;
}

a, a:hover, a:visited {
  color: #d42f19;
}

h1 {
  color: #d42f19;
  font-size: 3rem;
  margin: unset;
  line-height: 3rem;
}

h2 {
  font-size: 2rem;
  color: #272727;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 2rem;
  color: #d42f19;
  margin-block-end: 0;
}

h4 {
  color: #272727;
  margin: unset;
  font-size: 1.7rem;
  line-height: 1.7rem;
  margin-bottom: 1.7rem;
}

h5 {
  color: #d42f19;
  font-size: 1.7rem;
  font-weight: normal;
  margin: unset;
}

figure {
  margin: 0;
}

p {
  white-space: normal !important;
  min-width: 0 !important;
}

@media all and (max-width: 1425px) {
  body {
    font-size: 1.3rem;
  }

  h1 {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }

  h2, h3 {
    font-size: 1.8rem;
  }

  h4, h5 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media all and (max-width: 1023px) {
  body {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2.025rem;
    line-height: 2.025rem;
  }

  h2, h3 {
    font-size: 1.4rem;
  }

  h4, h5 {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}
@media all and (max-width: 768px) {
  body {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 1.825rem;
    line-height: 1.825rem;
  }

  h2, h3 {
    font-size: 1.3rem;
  }

  h4, h5 {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
button {
  height: 50px;
  min-height: 50px;
  background-color: #d42f19;
  border: solid 1px #d42f19;
  color: #eceae4;
  border-radius: 10px;
  width: 194px;
}
button:hover {
  background-color: #eceae4;
  color: #d42f19;
}

.wp-block-button {
  margin-left: unset !important;
  margin-right: unset !important;
}

.wp-block-button .wp-block-button__link {
  display: inline-block;
  height: 50px;
  min-height: 50px;
  background-color: #d42f19;
  color: #eceae4;
  border-radius: 10px;
  width: 194px;
  text-align: center;
  line-height: 50px;
  /* Centrer verticalement le texte */
  text-decoration: none;
  /* Supprime le soulignement du lien */
  padding: unset;
  cursor: pointer;
}

/* Styles pour le hover */
.wp-block-button .wp-block-button__link:hover {
  background-color: #eceae4;
  color: #d42f19;
  border: solid 1px #d42f19;
}

input, select {
  border: 1px solid #707070 !important;
  border-radius: 6px;
  height: 50px;
  padding: 0 20px;
  outline: none;
}

.cursorPointer {
  cursor: pointer;
}

.heightD25M0 {
  height: 25px !important;
}
@media all and (max-width: 1023px) {
  .heightD25M0 {
    height: 0px !important;
  }
}

/***********/
/* Accueil */
/***********/
.sAccueilCarrousel {
  width: 100%;
  padding-left: 212px;
  margin-top: 152px;
}
@media all and (max-width: 1425px) {
  .sAccueilCarrousel {
    padding-left: 50px;
  }
}
@media all and (max-width: 1023px) {
  .sAccueilCarrousel {
    margin-top: 91px;
    padding: unset;
  }
}
.sAccueilCarrousel .scroll {
  color: #707070;
  font-size: 1.2rem;
}
.sAccueilCarrousel .scroll > img {
  width: 32px;
  height: auto;
}
@media all and (max-width: 1023px) {
  .sAccueilCarrousel .scroll {
    display: none;
  }
}
@media all and (max-width: 1023px) {
  .sAccueilCarrousel h1 {
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-style: italic;
  }
}
.sAccueilCarrousel .centralContainer {
  margin-bottom: unset;
  line-height: 0.5rem;
}

.carrousel .centralBckg {
  background: unset;
}
@media all and (max-width: 1023px) {
  .carrousel .centralBckg {
    background-color: #eceae4;
  }
}
.carrousel .titreCarrousel {
  display: none;
}
.carrousel .titreCarrousel.ON {
  display: block;
}
.carrousel .titreCarrousel h4 {
  margin-bottom: 0.3rem;
}
.carrousel .imgCarrousel {
  margin-top: 10px;
  position: relative;
  display: inline-block;
  width: 1066px;
  height: 600px;
  overflow: hidden;
  cursor: pointer;
}
@media all and (max-width: 1280px) {
  .carrousel .imgCarrousel {
    width: 800px;
    height: 450px;
  }
}
@media all and (max-width: 1023px) {
  .carrousel .imgCarrousel {
    width: 100%;
    max-width: 665px;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.carrousel .imgCarrousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}
.carrousel .imgCarrousel img.ON {
  opacity: 1;
  display: block;
}
.carrousel .imgCarrousel .overlay-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 18px solid #d42f19;
  border-radius: 24px;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.carrousel .imgCarrousel:hover .overlay-border {
  opacity: 1;
}
.carrousel .imgCarrousel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}
.carrousel .imgCarrousel:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}
.carrousel .imgCarrousel div.imgCarrouselPre, .carrousel .imgCarrousel div.imgCarrouselSui {
  position: absolute;
  top: 40px;
  background-repeat: no-repeat;
  width: 65px;
  height: 65px;
  z-index: 3;
  cursor: pointer;
}
.carrousel .imgCarrousel div.imgCarrouselPre {
  right: 129px;
  background-image: url(../img/gnrl/icn/fleCarPreOFF.svg);
}
.carrousel .imgCarrousel div.imgCarrouselPre.ON {
  background-image: url(../img/gnrl/icn/fleCarPreON.svg);
}
.carrousel .imgCarrousel div.imgCarrouselSui {
  right: 40px;
  background-image: url(../img/gnrl/icn/fleCarSuiOFF.svg);
}
.carrousel .imgCarrousel div.imgCarrouselSui.ON {
  background-image: url(../img/gnrl/icn/fleCarSuiON.svg);
}
.carrousel .barNav {
  height: 50px;
  margin-top: 20px;
}
.carrousel .barNav div {
  background-color: #eceae4;
  height: 24px;
  width: 25%;
}
.carrousel .barNav div.ON {
  background-color: #d42f19;
}
@media all and (max-width: 1023px) {
  .carrousel .barNav {
    height: unset;
    margin-top: unset;
  }
  .carrousel .barNav div {
    height: 16px;
  }
}
@media all and (max-width: 1023px) {
  .carrousel div.imgCarrouselPre, .carrousel div.imgCarrouselSui {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    width: 43px;
    height: 43px;
    z-index: 3;
    cursor: pointer;
  }
  .carrousel div.imgCarrouselPre {
    margin-right: 14px;
    background-image: url(../img/gnrl/icn/fleCarPreOFF.svg);
  }
  .carrousel div.imgCarrouselPre.ON {
    background-image: url(../img/gnrl/icn/fleCarPreON.svg);
  }
  .carrousel div.imgCarrouselSui {
    margin-left: 14px;
    background-image: url(../img/gnrl/icn/fleCarSuiOFF.svg);
  }
  .carrousel div.imgCarrouselSui.ON {
    background-image: url(../img/gnrl/icn/fleCarSuiON.svg);
  }
}

/*******************
/* Dernières actus */
/*******************/
.dernieresActus {
  padding-left: 212px;
}
@media all and (max-width: 1425px) {
  .dernieresActus {
    padding-left: 50px;
  }
}
@media all and (max-width: 1023px) {
  .dernieresActus {
    padding-left: unset;
  }
}
.dernieresActus hr {
  border-top: 2px solid #eceae4;
  margin: 30px 0 50px 0;
}
@media all and (max-width: 1023px) {
  .dernieresActus hr.princ {
    display: none;
  }
}
.dernieresActus .globContainer {
  padding-left: 1.125rem !important;
  padding-right: 1.125rem !important;
}
@media all and (min-width: 1024px) {
  .dernieresActus .sousTitre {
    display: none;
  }
}
@media all and (max-width: 1023px) {
  .dernieresActus .sousTitre {
    display: flex;
  }
}
@media all and (min-width: 1024px) {
  .dernieresActus .sousTitre {
    color: red;
  }
}
.dernieresActus .listeActus {
  /*
  & .imageActu:hover .overlay-border {
      opacity: 1;
  }
      */
}
.dernieresActus .listeActus .imageActu {
  position: relative;
  width: 380px;
  min-width: 380px;
  height: 214px;
}
@media all and (max-width: 1023px) {
  .dernieresActus .listeActus .imageActu {
    width: 100%;
    height: 180px;
    min-width: unset;
  }
}
@media all and (max-width: 1023px) and (min-width: 376px) {
  .dernieresActus .listeActus .imageActu {
    height: 250px;
  }
}
@media all and (max-width: 1023px) and (min-width: 600px) {
  .dernieresActus .listeActus .imageActu {
    height: 350px;
  }
}
.dernieresActus .listeActus img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.dernieresActus .listeActus .overlay-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 8px solid #d42f19;
  border-radius: 24px;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media all and (max-width: 1023px) {
  .dernieresActus .listeActus .cartouche {
    padding-top: 20px;
  }
}
.dernieresActus .listeActus .cartouche span {
  background-color: #d42f19;
  border-radius: 5px;
  color: white;
  padding: 0 6px;
  font-weight: bold;
  font-size: 1.2rem;
}
.dernieresActus .listeActus .sousTitreDate, .dernieresActus .listeActus .titre {
  font-size: 1.6rem;
  font-weight: bold;
}
@media all and (max-width: 1023px) {
  .dernieresActus .listeActus .sousTitreDate, .dernieresActus .listeActus .titre {
    font-size: 1.2rem;
  }
}
.dernieresActus .listeActus .titre {
  color: #d42f19;
  padding-bottom: 10px;
}
@media all and (max-width: 425px) {
  .dernieresActus .listeActus .resume {
    font-size: 0.9rem;
  }
}
.dernieresActus .listeActus .dateParution {
  padding-top: 10px;
  color: #707070;
}
@media all and (max-width: 1023px) {
  .dernieresActus .listeActus .dateParution {
    font-size: 0.9rem;
  }
}
.dernieresActus .listeActus hr {
  border-top: 1px solid #272727;
  margin: 30px 0 30px 0;
}

.pagination button {
  padding: 5px;
  margin: 2px;
  min-width: 25px;
  min-height: unset;
  width: unset;
  height: auto;
  background-color: #eceae4;
  color: #d42f19;
  cursor: pointer;
  border: solid 1px #d42f19;
}
.pagination button.active {
  background-color: #d42f19;
  color: #eceae4;
}

.bandeauSyndicats {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media all and (max-width: 1023px) {
  .bandeauSyndicats {
    height: 280px;
  }
  .bandeauSyndicats img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: right;
  }
}
@media all and (max-width: 1023px) and (max-width: 768px) {
  .bandeauSyndicats {
    height: 230px;
  }
}
@media all and (max-width: 1023px) and (max-width: 540px) {
  .bandeauSyndicats {
    height: 200px;
  }
}
@media all and (max-width: 1023px) and (max-width: 425px) {
  .bandeauSyndicats {
    height: 170px;
  }
}
@media all and (max-width: 1023px) and (max-width: 320px) {
  .bandeauSyndicats {
    height: 130px;
  }
}

.cestQuoi {
  font-size: 1.7rem;
  color: #d42f19;
}
.cestQuoi .txt {
  margin-top: 30px;
  text-align: justify;
}
@media all and (max-width: 768px) {
  .cestQuoi {
    font-size: 1.5rem;
    padding: 0 10px;
  }
  .cestQuoi h1 {
    font-size: 1.7rem;
  }
}
@media all and (max-width: 425px) {
  .cestQuoi {
    font-size: 1.2rem;
  }
}

.graph-accueil-centrales {
  position: relative;
  --largeur-graph: 820px;
  --largeur-cercle-graph: calc(var(--largeur-graph) / 3.42);
  --largeur-div-cercle: calc(var(--largeur-graph) / 3);
  --decalage-cercle: calc(var(--largeur-div-cercle) - var(--largeur-cercle-graph));
  height: var(--largeur-graph);
}
@media all and (max-width: 1280px) {
  .graph-accueil-centrales {
    transform: scale(0.8);
    height: 656px;
    transform-origin: top;
  }
}
@media all and (max-width: 1023px) {
  .graph-accueil-centrales {
    transform: scale(0.6);
    height: 492px;
  }
}
@media all and (max-width: 540px) {
  .graph-accueil-centrales {
    transform: scale(0.5);
    height: 410px;
  }
}
@media all and (max-width: 425px) {
  .graph-accueil-centrales {
    transform: scale(0.38);
    height: 311.6px;
  }
}
@media all and (max-width: 320px) {
  .graph-accueil-centrales {
    transform: scale(0.36);
    height: 295.2px;
  }
}
.graph-accueil-centrales .gcontainer {
  position: absolute;
  width: var(--largeur-graph);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: "v1 c1 c1 c1 v2 c2 c2 c2 v3" "c3 c3 c3 c4 c4 c4 c5 c5 c5" "v4 c6 c6 c6 v5 c7 c7 c7 v6";
  z-index: 2;
}
.graph-accueil-centrales .gcontainer [class^=c] {
  position: relative;
  height: var(--largeur-div-cercle);
  width: var(--largeur-div-cercle);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/accueil/cercleGrisECEAE3.svg");
  background-size: var(--largeur-cercle-graph) var(--largeur-cercle-graph);
  background-repeat: no-repeat;
  background-position: center;
}
.graph-accueil-centrales .gcontainer [class^=c] img {
  position: absolute;
}
.graph-accueil-centrales .gcontainer [class^=c]::before {
  content: "";
  position: absolute;
  width: var(--largeur-cercle-graph);
  height: var(--largeur-cercle-graph);
  border: 0px solid #ECEAE3ff;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  transition: border 0.3s;
}
.graph-accueil-centrales .gcontainer [class^=c]:hover::before {
  border: 10px solid #d42f19;
}
.graph-accueil-centrales .gcontainer .c4 {
  background-image: url("../img/accueil/cercleGrisF7F7F7.svg");
}
.graph-accueil-centrales .gcontainer .c4:hover::before {
  border: unset;
}
.graph-accueil-centrales .gcontainer [class^=v] {
  height: var(--largeur-div-cercle);
  width: cal(var(--largeur-div-cercle)/3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.graph-accueil-centrales .gcontainer .c1, .graph-accueil-centrales .gcontainer .c5, .graph-accueil-centrales .gcontainer .c6 {
  background-position-x: var(--decalage-cercle);
}
.graph-accueil-centrales .gcontainer .c1::before, .graph-accueil-centrales .gcontainer .c5::before, .graph-accueil-centrales .gcontainer .c6::before {
  left: var(--decalage-cercle);
}
.graph-accueil-centrales .gcontainer .c2, .graph-accueil-centrales .gcontainer .c3, .graph-accueil-centrales .gcontainer .c7 {
  background-position-x: 0;
}
.graph-accueil-centrales .gcontainer .c2::before, .graph-accueil-centrales .gcontainer .c3::before, .graph-accueil-centrales .gcontainer .c7::before {
  left: 0;
}
.graph-accueil-centrales .gcontainer .c1, .graph-accueil-centrales .gcontainer .c2 {
  background-position-y: var(--decalage-cercle);
}
.graph-accueil-centrales .gcontainer .c1::before, .graph-accueil-centrales .gcontainer .c2::before {
  top: var(--decalage-cercle);
}
.graph-accueil-centrales .gcontainer .c6, .graph-accueil-centrales .gcontainer .c7 {
  background-position-y: 0;
}
.graph-accueil-centrales .gcontainer .c6::before, .graph-accueil-centrales .gcontainer .c7::before {
  top: 0;
}
.graph-accueil-centrales .gcontainer .v1 {
  grid-area: v1;
}
.graph-accueil-centrales .gcontainer .v2 {
  grid-area: v2;
}
.graph-accueil-centrales .gcontainer .v3 {
  grid-area: v3;
}
.graph-accueil-centrales .gcontainer .v4 {
  grid-area: v4;
}
.graph-accueil-centrales .gcontainer .v5 {
  grid-area: v5;
}
.graph-accueil-centrales .gcontainer .v6 {
  grid-area: v6;
}
.graph-accueil-centrales .gcontainer .c1 {
  grid-area: c1;
}
.graph-accueil-centrales .gcontainer .c1 img {
  right: 26px;
  top: 50px;
}
.graph-accueil-centrales .gcontainer .c2 {
  grid-area: c2;
}
.graph-accueil-centrales .gcontainer .c2 img {
  left: 54px;
  top: 84px;
}
.graph-accueil-centrales .gcontainer .c3 {
  grid-area: c3;
}
.graph-accueil-centrales .gcontainer .c3 img {
  top: 88px;
  left: 18px;
}
.graph-accueil-centrales .gcontainer .c4 {
  grid-area: c4;
}
.graph-accueil-centrales .gcontainer .c4 img {
  max-width: 193px;
}
.graph-accueil-centrales .gcontainer .c5 {
  grid-area: c5;
}
.graph-accueil-centrales .gcontainer .c5 img {
  right: 25px;
  top: 88px;
}
.graph-accueil-centrales .gcontainer .c6 {
  grid-area: c6;
}
.graph-accueil-centrales .gcontainer .c6 img {
  right: 36px;
  top: 66px;
}
.graph-accueil-centrales .gcontainer .c7 {
  grid-area: c7;
}
.graph-accueil-centrales .gcontainer .c7 img {
  right: 74px;
  top: 32px;
}
.graph-accueil-centrales .gcontainer2 {
  position: absolute;
  display: grid;
  width: var(--largeur-graph);
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: 1fr 1fr 0.5fr 1fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: "vl1 vl1 vl1 vl1 vl1 vl1 vl1 vl1 vl1" "vm3 vm3 vm3 th3 h   th1 vm1 vm1 vm1" "vp2 vp2 tv2 tv2 h   tv1 tv1 vp1 vp1" "vm4 vm4 vm4 th4 h   th2 vm2 vm2 vm2" "vl2 vl2 vl2 vl2 vl2 vl2 vl2 vl2 vl2";
}
.graph-accueil-centrales .gcontainer2 [class^=vl] {
  width: var(--largeur-graph);
}
.graph-accueil-centrales .gcontainer2 [class^=vm] {
  width: var(--largeur-div-cercle);
}
.graph-accueil-centrales .gcontainer2 [class^=vl], .graph-accueil-centrales .gcontainer2 [class^=vm], .graph-accueil-centrales .gcontainer2 [class^=th] {
  height: calc(var(--largeur-div-cercle) / 3 * 2);
}
.graph-accueil-centrales .gcontainer2 [class^=vp], .graph-accueil-centrales .gcontainer2 [class^=tv] {
  height: calc(var(--largeur-div-cercle) / 3);
  width: calc(var(--largeur-div-cercle) / 3 * 2);
}
.graph-accueil-centrales .gcontainer2 [class^=h], .graph-accueil-centrales .gcontainer2 [class^=th] {
  width: calc(var(--largeur-div-cercle) / 3);
}
.graph-accueil-centrales .gcontainer2 [class^=tv], .graph-accueil-centrales .gcontainer2 [class^=th] {
  position: relative;
}
.graph-accueil-centrales .gcontainer2 [class^=tv] img, .graph-accueil-centrales .gcontainer2 [class^=th] img {
  height: 12px;
  width: 200px;
}
.graph-accueil-centrales .gcontainer2 .vl1 {
  grid-area: vl1;
}
.graph-accueil-centrales .gcontainer2 .vl2 {
  grid-area: vl2;
}
.graph-accueil-centrales .gcontainer2 .vm1 {
  grid-area: vm1;
}
.graph-accueil-centrales .gcontainer2 .vm2 {
  grid-area: vm2;
}
.graph-accueil-centrales .gcontainer2 .vm3 {
  grid-area: vm3;
}
.graph-accueil-centrales .gcontainer2 .vm4 {
  grid-area: vm4;
}
.graph-accueil-centrales .gcontainer2 .vp1 {
  grid-area: vp1;
}
.graph-accueil-centrales .gcontainer2 .vp2 {
  grid-area: vp2;
}
.graph-accueil-centrales .gcontainer2 .tv1 {
  grid-area: tv1;
}
.graph-accueil-centrales .gcontainer2 .tv2 {
  grid-area: tv2;
}
.graph-accueil-centrales .gcontainer2 .th1 {
  grid-area: th1;
}
.graph-accueil-centrales .gcontainer2 .th2 {
  grid-area: th2;
}
.graph-accueil-centrales .gcontainer2 .th3 {
  grid-area: th3;
}
.graph-accueil-centrales .gcontainer2 .th4 {
  grid-area: th4;
}
.graph-accueil-centrales .gcontainer2 .h {
  grid-area: h;
}
.graph-accueil-centrales .gcontainer2 .th1 img {
  transform: rotate(-55deg);
  position: absolute;
  top: 100px;
  right: 10px;
}
.graph-accueil-centrales .gcontainer2 .th2 img {
  transform: rotate(55deg);
  position: absolute;
  top: 80px;
}
.graph-accueil-centrales .gcontainer2 .th3 img {
  transform: rotate(55deg);
  position: absolute;
  top: 100px;
  left: 10px;
}
.graph-accueil-centrales .gcontainer2 .th4 img {
  transform: rotate(-55deg);
  position: absolute;
  top: 80px;
}
.graph-accueil-centrales .gcontainer2 [class^=tv] img {
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
}

.graph-accueil-services {
  width: calc(var(--largeur-div-cercle) * 4);
  height: 400px;
  --largeur-div-cercle: 246px;
  --largeur-mob-cadre: 150px;
  --largeur-mob-inter: 30px;
  position: relative;
}
@media all and (min-width: 770px) and (max-width: 1280px) {
  .graph-accueil-services {
    transform: scale(0.8);
    transform-origin: left;
  }
}
@media all and (min-width: 770px) and (max-width: 1023px) {
  .graph-accueil-services {
    transform: scale(0.7);
  }
}
@media all and (max-width: 769px) {
  .graph-accueil-services {
    width: 331px;
    height: 330px;
  }
}
@media all and (max-width: 374px) {
  .graph-accueil-services {
    transform: scale(0.7);
    width: 231.7px;
    height: 300px;
    margin-left: unset !important;
    margin-right: unset !important;
  }
}
.graph-accueil-services .gcontainer {
  width: calc(var(--largeur-div-cercle) * 4);
  position: absolute;
  display: grid;
  grid-template-columns: calc(var(--largeur-div-cercle) / 2 * 3) calc(var(--largeur-div-cercle) / 2) calc(var(--largeur-div-cercle) / 2) calc(var(--largeur-div-cercle) / 2 * 3);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: "c1 c1 c2 c2" "c3 f f c4" "c5 f f c6" "c7 f f c8" "c9 c9 c9 c9";
  z-index: 2;
}
.graph-accueil-services .gcontainer .c1 {
  grid-area: c1;
}
.graph-accueil-services .gcontainer .c2 {
  grid-area: c2;
}
.graph-accueil-services .gcontainer .c3 {
  grid-area: c3;
}
.graph-accueil-services .gcontainer .c4 {
  grid-area: c4;
}
.graph-accueil-services .gcontainer .c5 {
  grid-area: c5;
}
.graph-accueil-services .gcontainer .c6 {
  grid-area: c6;
}
.graph-accueil-services .gcontainer .c7 {
  grid-area: c7;
}
.graph-accueil-services .gcontainer .c8 {
  grid-area: c8;
}
.graph-accueil-services .gcontainer .c9 {
  grid-area: c9;
}
.graph-accueil-services .gcontainer .f {
  grid-area: f;
}
.graph-accueil-services .gcontainer [class^=c] {
  width: calc(var(--largeur-div-cercle) / 2 * 3);
  height: calc(var(--largeur-div-cercle) / 3);
  position: relative;
}
@media all and (max-width: 769px) {
  .graph-accueil-services .gcontainer [class^=c] {
    width: unset !important;
  }
  .graph-accueil-services .gcontainer [class^=c] > div {
    width: calc(var(--largeur-mob-cadre)) !important;
  }
}
.graph-accueil-services .gcontainer [class^=c] > div {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d42f19;
  width: 326px;
  height: 60px;
  border-radius: 10px;
  color: white;
  font-size: 1.3rem;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: border 0.5s ease 0s, color 0.5s ease 0s;
  cursor: pointer;
}
.graph-accueil-services .gcontainer [class^=c] > div:hover {
  background-color: white;
  border: 1px solid #d42f19;
  color: #d42f19;
}
.graph-accueil-services .gcontainer .f {
  background-image: url("../img/accueil/cercleGrisECEAE3.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media all and (min-width: 770px) {
  .graph-accueil-services .gcontainer .c1, .graph-accueil-services .gcontainer .c2 {
    width: calc(var(--largeur-div-cercle) * 2);
  }
  .graph-accueil-services .gcontainer .c1 > div {
    transform: translate(calc(-50% + 20px), -50%);
  }
  .graph-accueil-services .gcontainer .c2 > div {
    transform: translate(calc(-50% - 20px), -50%);
  }
  .graph-accueil-services .gcontainer .c9 {
    width: calc(var(--largeur-div-cercle) * 4);
  }
  .graph-accueil-services .gcontainer .c9 > div {
    transform: translate(-50%, calc(-50% + 10px));
  }
  .graph-accueil-services .gcontainer .c5 > div {
    transform: translate(calc(-50% - 20px), -50%);
  }
  .graph-accueil-services .gcontainer .c6 > div {
    transform: translate(calc(-50% + 20px), -50%);
  }
  .graph-accueil-services .gcontainer .f {
    width: var(--largeur-div-cercle);
  }
  .graph-accueil-services .gcontainer .f img {
    max-width: 193px;
  }
}
@media all and (max-width: 769px) {
  .graph-accueil-services .gcontainer {
    width: calc(var(--largeur-mob-cadre) * 2 + var(--largeur-mob-inter));
    grid-template-areas: "f f f" "c1 v c2" "c3 v c4" "c5 v c6" "c7 v c8" "c9 c9 c9";
    grid-template-columns: var(--largeur-mob-cadre) var(--largeur-mob-inter) var(--largeur-mob-cadre);
    grid-template-rows: 90px 40px 40px 60px 40px 60px;
  }
  .graph-accueil-services .gcontainer .v {
    grid-area: v;
  }
  .graph-accueil-services .gcontainer .v, .graph-accueil-services .gcontainer .c9 {
    background-image: url("../img/accueil/ligneVertSchemMobServices.png.webp");
    background-repeat: repeat-y;
    background-position: center;
  }
  .graph-accueil-services .gcontainer .c9 {
    background-repeat: no-repeat;
    background-position-y: -10px;
  }
  .graph-accueil-services .gcontainer [class^=c] {
    height: 43px;
  }
  .graph-accueil-services .gcontainer [class^=c] > div {
    border-radius: 5px;
    height: 33px;
    font-size: 1rem !important;
  }
  .graph-accueil-services .gcontainer .c1 > div, .graph-accueil-services .gcontainer .c3 > div, .graph-accueil-services .gcontainer .c5 > div, .graph-accueil-services .gcontainer .c7 > div {
    transform: translate(calc(-50% + 2px), -50%) !important;
  }
  .graph-accueil-services .gcontainer .c1 > img, .graph-accueil-services .gcontainer .c3 > img, .graph-accueil-services .gcontainer .c5 > img, .graph-accueil-services .gcontainer .c7 > img {
    display: block !important;
    position: absolute;
    right: -18px;
    top: 20%;
    transform: translate(0px, -50%);
  }
  .graph-accueil-services .gcontainer .c5, .graph-accueil-services .gcontainer .c6, .graph-accueil-services .gcontainer .c9 {
    height: 63px;
  }
  .graph-accueil-services .gcontainer .c5 > div, .graph-accueil-services .gcontainer .c6 > div, .graph-accueil-services .gcontainer .c9 > div {
    height: 53px;
  }
  .graph-accueil-services .gcontainer .c5 > img, .graph-accueil-services .gcontainer .c6 > img, .graph-accueil-services .gcontainer .c9 > img {
    top: 32% !important;
  }
  .graph-accueil-services .gcontainer .c2 > div, .graph-accueil-services .gcontainer .c4 > div, .graph-accueil-services .gcontainer .c6 > div, .graph-accueil-services .gcontainer .c8 > div {
    transform: translate(calc(-50% - 2px), -50%) !important;
  }
  .graph-accueil-services .gcontainer .c2 > img, .graph-accueil-services .gcontainer .c4 > img, .graph-accueil-services .gcontainer .c6 > img, .graph-accueil-services .gcontainer .c8 > img {
    display: block !important;
    position: absolute;
    left: -17px;
    top: 20%;
    transform: translate(0px, -50%);
  }
  .graph-accueil-services .gcontainer .f {
    width: 100%;
    background-size: 90px;
  }
  .graph-accueil-services .gcontainer .f img {
    max-width: 72px;
  }
}
.graph-accueil-services .gcontainer2 {
  position: absolute;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 112px 62px 62px 62px 112px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: "c1 c2" "c3 c4" "c5 c6" "c7 c8" "c9 c9";
}
@media all and (max-width: 769px) {
  .graph-accueil-services .gcontainer2 {
    display: none !important;
  }
}
.graph-accueil-services .gcontainer2 .c1 {
  grid-area: c1;
}
.graph-accueil-services .gcontainer2 .c2 {
  grid-area: c2;
}
.graph-accueil-services .gcontainer2 .c3 {
  grid-area: c3;
}
.graph-accueil-services .gcontainer2 .c4 {
  grid-area: c4;
}
.graph-accueil-services .gcontainer2 .c5 {
  grid-area: c5;
}
.graph-accueil-services .gcontainer2 .c6 {
  grid-area: c6;
}
.graph-accueil-services .gcontainer2 .c7 {
  grid-area: c7;
}
.graph-accueil-services .gcontainer2 .c8 {
  grid-area: c8;
}
.graph-accueil-services .gcontainer2 .c9 {
  grid-area: c9;
}
.graph-accueil-services .gcontainer2 [class^=c] {
  position: relative;
}
.graph-accueil-services .gcontainer2 [class^=c] img {
  height: 12px;
  width: 200px;
}
.graph-accueil-services .gcontainer2 .c1 img {
  transform: rotate(55deg);
  position: absolute;
  top: 100px;
  right: -32px;
}
.graph-accueil-services .gcontainer2 .c2 img {
  transform: rotate(-55deg);
  position: absolute;
  top: 100px;
  left: -32px;
}
.graph-accueil-services .gcontainer2 .c3 img {
  transform: rotate(36deg);
  position: absolute;
  top: 38px;
  right: 0;
}
.graph-accueil-services .gcontainer2 .c4 img {
  transform: rotate(-36deg);
  position: absolute;
  top: 38px;
}
.graph-accueil-services .gcontainer2 .c5 img, .graph-accueil-services .gcontainer2 .c6 img {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
}
.graph-accueil-services .gcontainer2 .c5 img {
  right: 0;
}
.graph-accueil-services .gcontainer2 .c7 img {
  transform: rotate(-36deg);
  position: absolute;
  top: 10px;
  right: -5px;
}
.graph-accueil-services .gcontainer2 .c8 img {
  transform: rotate(36deg);
  position: absolute;
  top: 10px;
  left: -5px;
}
.graph-accueil-services .gcontainer2 .c9 img {
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  position: absolute;
  max-height: 100px;
  top: 0;
}

.enteteGenerale .arianeTitre, .enteteGeneraleSansPhoto .arianeTitre {
  order: 1;
}
@media all and (max-width: 1023px) {
  .enteteGenerale .arianeTitre, .enteteGeneraleSansPhoto .arianeTitre {
    margin-top: 99px;
  }
}
.enteteGenerale .date_parution, .enteteGenerale .credit_photo, .enteteGeneraleSansPhoto .date_parution, .enteteGeneraleSansPhoto .credit_photo {
  color: #707070;
  font-size: 1rem;
}
.enteteGenerale .credit_photo, .enteteGeneraleSansPhoto .credit_photo {
  font-size: 1rem;
  font-style: italic;
  text-align: right;
}
.enteteGenerale .contPhotoIllus, .enteteGeneraleSansPhoto .contPhotoIllus {
  margin-top: 20px;
  width: 800px;
  height: 450px;
  order: 2;
  margin-left: 212px;
  position: relative;
}
@media all and (max-width: 1425px) {
  .enteteGenerale .contPhotoIllus, .enteteGeneraleSansPhoto .contPhotoIllus {
    margin-left: 50px;
    /*
    width: 900px;
    height: 506px;
    */
  }
}
@media all and (max-width: 1280px) {
  .enteteGenerale .contPhotoIllus, .enteteGeneraleSansPhoto .contPhotoIllus {
    width: 800px;
    height: 450px;
  }
}
@media all and (max-width: 1023px) {
  .enteteGenerale .contPhotoIllus, .enteteGeneraleSansPhoto .contPhotoIllus {
    order: -1;
    margin-left: unset;
    width: 100% !important;
  }
  .enteteGenerale .contPhotoIllus.centralContainer, .enteteGeneraleSansPhoto .contPhotoIllus.centralContainer {
    max-width: unset;
  }
}
@media all and (max-width: 800px) {
  .enteteGenerale .contPhotoIllus, .enteteGeneraleSansPhoto .contPhotoIllus {
    margin-top: 60px;
    width: 100%;
    height: auto;
  }
}
.enteteGenerale .contPhotoIllus > img, .enteteGeneraleSansPhoto .contPhotoIllus > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.enteteGenerale .contPhotoIllus .credit-date, .enteteGeneraleSansPhoto .contPhotoIllus .credit-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.enteteGenerale .contPhotoIllus div.insert_logo, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo {
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
  background-color: white;
  /*
  width: 294px;
  height: 248px;
  */
  width: 240px;
  height: 202px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.enteteGenerale .contPhotoIllus div.insert_logo img, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo img {
  max-width: 184px;
  height: auto;
}
@media all and (max-width: 1280px) {
  .enteteGenerale .contPhotoIllus div.insert_logo, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo {
    width: 240px;
    height: 202px;
  }
  .enteteGenerale .contPhotoIllus div.insert_logo img, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo img {
    max-width: 184px;
    max-height: 155px;
  }
}
@media all and (max-width: 1023px) {
  .enteteGenerale .contPhotoIllus div.insert_logo, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo {
    border-radius: 25px;
    left: 20px;
    width: 200px;
    height: 169px;
  }
  .enteteGenerale .contPhotoIllus div.insert_logo img, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo img {
    max-width: 153px;
    max-height: 129px;
  }
}
@media all and (max-width: 768px) {
  .enteteGenerale .contPhotoIllus div.insert_logo, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo {
    width: 152px;
    height: 152px;
  }
  .enteteGenerale .contPhotoIllus div.insert_logo img, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo img {
    max-width: 116px;
    max-height: 116px;
  }
}
@media all and (max-width: 540px) {
  .enteteGenerale .contPhotoIllus div.insert_logo, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo {
    width: 136px;
    height: 136px;
  }
  .enteteGenerale .contPhotoIllus div.insert_logo img, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo img {
    max-width: 121px;
    max-height: 121px;
  }
}
@media all and (max-width: 425px) {
  .enteteGenerale .contPhotoIllus div.insert_logo, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo {
    width: 121px;
    height: 121px;
  }
  .enteteGenerale .contPhotoIllus div.insert_logo img, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo img {
    max-width: 92px;
    max-height: 92px;
  }
}
@media all and (max-width: 320px) {
  .enteteGenerale .contPhotoIllus div.insert_logo, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo {
    width: 100px;
    height: 100px;
  }
  .enteteGenerale .contPhotoIllus div.insert_logo img, .enteteGeneraleSansPhoto .contPhotoIllus div.insert_logo img {
    max-width: 76px;
    max-height: 76px;
  }
}

.enteteGenerale .arianeTitre {
  order: 1;
}
@media all and (max-width: 1023px) {
  .enteteGenerale .arianeTitre {
    margin: unset;
  }
}
.enteteGenerale .normalTextContainer {
  margin-left: unset !important;
}

.fb-secGen, .mailCtcColPrincipal, .lienExterneColPrincipal {
  display: flex;
  align-items: center;
}
.fb-secGen img, .mailCtcColPrincipal img, .lienExterneColPrincipal img {
  width: 21px;
  height: auto;
}
.fb-secGen a, .mailCtcColPrincipal a, .lienExterneColPrincipal a {
  gap: 8px;
  color: #d42f19;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mailCtcColPrincipal a {
  color: white;
}

@media all and (max-width: 425px) {
  .militer .listeGroupes {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.militer .listeGroupes > div {
  margin: 15px auto 15px auto;
  height: 289px;
  width: 261px;
  background-color: #eceae4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}
.militer .listeGroupes > div img {
  height: 145px;
  margin-top: 20px;
  margin: 0 auto;
}
.militer .listeGroupes > div div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.militer .listeGroupes > div button {
  margin-top: auto;
  margin-bottom: 16px;
  align-self: center;
}
@media all and (max-width: 425px) {
  .militer .listeGroupes > div {
    margin: 15px auto 15px auto;
    width: 100%;
  }
}
.militer .listeGroupes2 > div:first-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media all and (max-width: 1024px) {
  .militer .listeGroupes2 > div:first-child {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 768px) {
  .militer .listeGroupes2 > div:first-child {
    grid-template-columns: 1fr;
  }
}
.militer .listeGroupes2 > div:first-child > div > div {
  margin: 15px auto 15px auto;
  height: 289px;
  width: 261px;
  background-color: #eceae4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}
.militer .listeGroupes2 > div:first-child > div > div img {
  height: 145px;
  margin-top: 20px;
  margin: 0 auto;
}
.militer .listeGroupes2 > div:first-child > div > div p {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.militer .listeGroupes2 > div:first-child > div > div .wp-block-button {
  margin-top: auto;
  margin-bottom: 16px;
  align-self: center;
}
@media all and (max-width: 425px) {
  .militer .listeGroupes2 > div:first-child > div > div {
    margin: 15px auto 15px auto;
    width: 100%;
  }
}
@media all and (max-width: 425px) {
  .militer .listeGroupes2 {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.militer .basGroupesMilitants {
  padding: 30px 55px;
}
.militer .basGroupesMilitants > div:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media all and (max-width: 1023px) {
  .militer .basGroupesMilitants > div:first-child {
    grid-template-columns: 1fr;
  }
}
.militer .basGroupesMilitants p {
  font-style: italic;
  font-size: 0.9em;
}
.militer .basGroupesMilitants .encartRejoins {
  border-radius: 10px;
  color: white;
  width: 450px;
  min-width: 450px;
  max-width: 450px;
  padding: 20px;
  margin-right: 30px;
  height: 100%;
}
@media all and (max-width: 1023px) {
  .militer .basGroupesMilitants .encartRejoins {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.militer .basGroupesMilitants .encartRejoins h4 {
  color: white;
  padding-bottom: 10px;
}
.militer .basGroupesMilitants .logoCoord {
  text-align: center;
  display: flex;
  align-items: end;
}
.militer .basGroupesMilitants .logoCoord .logo {
  flex-grow: 1;
}
.militer .basGroupesMilitants .logoCoord .logo img {
  max-width: 182px;
  margin: auto;
}
.militer .basGroupesMilitants .logoCoord .socnetSout {
  margin-top: 20px;
}
.militer .basGroupesMilitants .logoCoord .socnetSout > div:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media all and (max-width: 1023px) {
  .militer .basGroupesMilitants .logoCoord .socnetSout > div:first-child {
    grid-template-columns: 1fr;
  }
}
.militer .basGroupesMilitants .logoCoord .socnetSout .socnet {
  width: 225px;
  text-align: left;
}
.militer .basGroupesMilitants .logoCoord .socnetSout .socnet > div:first-child {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: end;
}
.militer .basGroupesMilitants .logoCoord .socnetSout .socnet img {
  margin-right: 10px;
}
.militer .basGroupesMilitants .logoCoord .socnetSout .sout {
  text-align: right;
  font-size: 0.7em;
  font-style: italic;
  color: #707070;
}
.militer .basGroupesMilitants .logoCoord .socnetSout .sout div img {
  max-height: 50px;
  max-width: 100px;
  margin-left: 8px;
}
.militer .basGroupesMilitants .coord {
  margin-top: 40px;
}
.militer .basGroupesMilitants .coord .adrRdv {
  font-size: 0.8em;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.militer .basGroupesMilitants .coord .adrRdv > div:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media all and (max-width: 768px) {
  .militer .basGroupesMilitants .coord .adrRdv > div:first-child {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 768px) {
  .militer .basGroupesMilitants .coord .adrRdv {
    max-width: 310px;
  }
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord > div:first-child {
  display: grid;
  grid-template-columns: 38px 0.9fr;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord .adresse {
  margin-left: 0;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord .adresse > div {
  text-align: left;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord .img-info-coord {
  width: 38px;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord .img-info-coord img {
  height: 22px;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord p {
  font-style: normal;
  font-size: 1em;
  text-align: left;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord:nth-child(1) {
  width: 290px;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord:nth-child(2) {
  width: 170px;
}
.militer .basGroupesMilitants .coord .adrRdv .info-coord .tel {
  width: 390px !important;
}
@media all and (max-width: 1280px) {
  .militer .basGroupesMilitants {
    padding: 30px 25px;
  }
  .militer .centralContainer {
    width: 970px;
  }
}
@media all and (max-width: 1150px) {
  .militer .socnetSout {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .militer .socnetSout .socnet {
    text-align: center;
    align-items: center !important;
    justify-content: center;
    width: 100% !important;
  }
  .militer .socnetSout .sout {
    text-align: center !important;
  }
  .militer .socnetSout .sout div {
    margin-top: 20px;
  }
}
@media all and (max-width: 1023px) {
  .militer .centralContainer {
    width: unset !important;
  }
  .militer .centralContainer {
    margin: unset !important;
    max-width: unset !important;
    flex-direction: column;
    padding: 0 !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .militer .affiJeunesGratuite {
    border-radius: unset !important;
  }
  .militer .encartRejoins {
    width: unset !important;
    min-width: unset !important;
    margin: 0 !important;
  }
  .militer .logoCoord .logo {
    margin: 20px 0;
  }
}
@media all and (max-width: 374px) {
  .militer .encartRejoins {
    font-size: 0.8em;
  }
}
.militer .affiJeunesGratuite > div {
  display: block !important;
}
.militer .affiJeunesGratuite > div h4 {
  margin-bottom: 0;
}
.militer .affiJeunesGratuite > div p {
  font-style: normal;
  margin: 0;
  line-height: 1em;
}
.militer .affiJeunesGratuite > div button, .militer .affiJeunesGratuite > div .wp-block-button__link {
  width: 325px;
}
.militer .affiJeunesGratuite > div button, .militer .affiJeunesGratuite > div .wp-block-button {
  margin: 30px 0;
}
@media all and (max-width: 1023px) {
  .militer .affiJeunesGratuite > div {
    padding: 20px 20px !important;
  }
}
@media all and (max-width: 425px) {
  .militer .affiJeunesGratuite > div button, .militer .affiJeunesGratuite > div .wp-block-button__link {
    width: 100%;
  }
}

.moteurRecherche > div:first-child {
  margin-left: auto;
  margin-right: auto;
}
.moteurRecherche .inputRecherche, .moteurRecherche .inputFiltreRecherche {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
.moteurRecherche .inputRecherche input, .moteurRecherche .inputFiltreRecherche input {
  width: 310px;
  outline: none;
}
.moteurRecherche .inputRecherche .loupeRecherche, .moteurRecherche .inputRecherche .flecheRecherche, .moteurRecherche .inputFiltreRecherche .loupeRecherche, .moteurRecherche .inputFiltreRecherche .flecheRecherche {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.moteurRecherche .inputRecherche {
  width: 310px;
}
.moteurRecherche .inputFiltreRecherche input {
  width: 130px;
  cursor: pointer;
}
.moteurRecherche .inputFiltreRecherche .flecheRecherche {
  width: 22px;
  height: 13px;
  transition: 0.3s;
}
.moteurRecherche .inputFiltreRecherche.actif .flecheRecherche {
  transform: translateY(-50%) rotate(180deg);
}
.moteurRecherche .tags {
  margin-top: 10px;
  max-width: 790px;
  flex-wrap: wrap;
}
.moteurRecherche .tags .tagFiltre {
  margin-top: 10px;
  background-color: white;
  border: 1px solid #d42f19;
  border-radius: 6px;
  height: 37px;
  color: #d42f19;
  margin-right: 10px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: bold;
  cursor: pointer;
}
.moteurRecherche .tags .tagFiltre.selected {
  background-color: #d42f19;
  color: white;
}
@media all and (max-width: 1023px) {
  .moteurRecherche .inputFiltreRecherche {
    margin-right: 6px;
    margin-top: 6px;
    width: 150px;
  }
  .moteurRecherche .inputFiltreRecherche input {
    width: 150px;
  }
  .moteurRecherche .tags {
    max-width: 590px;
  }
}
@media all and (max-width: 768px) {
  .moteurRecherche .tags {
    max-width: 490px;
  }
}
@media all and (max-width: 576px) {
  .moteurRecherche .tags {
    max-width: 320px;
  }
}
@media all and (max-width: 340px) {
  .moteurRecherche .inputFiltreRecherche {
    margin-right: 6px;
    margin-top: 6px;
    width: 120px;
  }
  .moteurRecherche .inputFiltreRecherche input {
    width: 120px;
  }
  .moteurRecherche .inputRecherche {
    width: 250px;
  }
  .moteurRecherche .inputRecherche input {
    width: 250px;
  }
  .moteurRecherche .tags {
    max-width: 280px;
  }
  .moteurRecherche .tags .tagFiltre {
    font-size: 0.8em;
    height: 26px;
  }
}

.basServices {
  padding: 30px 50px 30px 50px;
}
@media all and (max-width: 1023px) {
  .basServices.centralContainer {
    margin-right: -10px !important;
    margin-left: -10px !important;
  }
}
.basServices hr {
  border-color: #eceae4;
  margin: 0.2rem 0 0.8rem 0 !important;
}
.basServices p {
  font-style: italic;
  font-size: 1rem;
}
.basServices .cadre-info1 > div:first-child {
  display: grid;
  grid-template-columns: 1fr 150px;
}
@media all and (max-width: 1023px) {
  .basServices .cadre-info1 > div:first-child {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 1023px) {
  .basServices .cadre-info1 {
    padding: 30px 0;
  }
}
.basServices .ligne-info1, .basServices .ligne-info2 {
  font-size: 0.8em;
}
.basServices .ligne-info1 > div:first-child, .basServices .ligne-info2 > div:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info1 > div:first-child, .basServices .ligne-info2 > div:first-child {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info1, .basServices .ligne-info2 {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.basServices .ligne-info1 .bloc, .basServices .ligne-info2 .bloc {
  width: 100%;
}
.basServices .ligne-info1 .bloc > div, .basServices .ligne-info2 .bloc > div {
  height: 100%;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info1 .bloc, .basServices .ligne-info2 .bloc {
    margin-top: 1rem;
  }
}
.basServices .ligne-info1 .info-coord.wp-block-group, .basServices .ligne-info1 .info-coord-1.wp-block-group, .basServices .ligne-info1 .info-coord-2.wp-block-group, .basServices .ligne-info2 .info-coord.wp-block-group, .basServices .ligne-info2 .info-coord-1.wp-block-group, .basServices .ligne-info2 .info-coord-2.wp-block-group {
  margin: unset;
}
.basServices .ligne-info1 .info-coord > div, .basServices .ligne-info1 .info-coord-1 > div, .basServices .ligne-info1 .info-coord-2 > div, .basServices .ligne-info2 .info-coord > div, .basServices .ligne-info2 .info-coord-1 > div, .basServices .ligne-info2 .info-coord-2 > div {
  display: grid;
  grid-template-columns: 38px 0.9fr;
}
.basServices .ligne-info1 .info-coord > div div, .basServices .ligne-info1 .info-coord-1 > div div, .basServices .ligne-info1 .info-coord-2 > div div, .basServices .ligne-info2 .info-coord > div div, .basServices .ligne-info2 .info-coord-1 > div div, .basServices .ligne-info2 .info-coord-2 > div div {
  margin-left: unset !important;
}
.basServices .ligne-info1 .info-coord .adresse, .basServices .ligne-info1 .info-coord-1 .adresse, .basServices .ligne-info1 .info-coord-2 .adresse, .basServices .ligne-info2 .info-coord .adresse, .basServices .ligne-info2 .info-coord-1 .adresse, .basServices .ligne-info2 .info-coord-2 .adresse {
  margin-left: 0;
}
.basServices .ligne-info1 .info-coord .adresse > div, .basServices .ligne-info1 .info-coord-1 .adresse > div, .basServices .ligne-info1 .info-coord-2 .adresse > div, .basServices .ligne-info2 .info-coord .adresse > div, .basServices .ligne-info2 .info-coord-1 .adresse > div, .basServices .ligne-info2 .info-coord-2 .adresse > div {
  text-align: left;
}
.basServices .ligne-info1 .info-coord .img-info-coord, .basServices .ligne-info1 .info-coord-1 .img-info-coord, .basServices .ligne-info1 .info-coord-2 .img-info-coord, .basServices .ligne-info2 .info-coord .img-info-coord, .basServices .ligne-info2 .info-coord-1 .img-info-coord, .basServices .ligne-info2 .info-coord-2 .img-info-coord {
  width: 38px;
}
.basServices .ligne-info1 .info-coord .img-info-coord img, .basServices .ligne-info1 .info-coord-1 .img-info-coord img, .basServices .ligne-info1 .info-coord-2 .img-info-coord img, .basServices .ligne-info2 .info-coord .img-info-coord img, .basServices .ligne-info2 .info-coord-1 .img-info-coord img, .basServices .ligne-info2 .info-coord-2 .img-info-coord img {
  height: 22px;
}
.basServices .ligne-info1 .info-coord p, .basServices .ligne-info1 .info-coord-1 p, .basServices .ligne-info1 .info-coord-2 p, .basServices .ligne-info2 .info-coord p, .basServices .ligne-info2 .info-coord-1 p, .basServices .ligne-info2 .info-coord-2 p {
  font-style: normal;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 0 !important;
}
.basServices .ligne-info1 .hr-bloc, .basServices .ligne-info2 .hr-bloc {
  grid-column: span 3/span 3;
  border-top: 1px solid #eceae4;
  margin: 0.75rem 0;
  height: 3px;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info1 .hr-bloc, .basServices .ligne-info2 .hr-bloc {
    grid-column: span 1/span 1;
  }
}
.basServices .ligne-info1 .hr-bloc p, .basServices .ligne-info2 .hr-bloc p {
  margin: 0;
}
.basServices .ligne-info1 .info-coord-1, .basServices .ligne-info2 .info-coord-1 {
  min-height: 45px;
}
.basServices .ligne-info1 .info-coord-1 div, .basServices .ligne-info2 .info-coord-1 div {
  margin-left: unset;
  margin-right: unset;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info1 .info-coord-1, .basServices .ligne-info2 .info-coord-1 {
    min-height: unset;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
  }
}
.basServices .ligne-info1 .info-coord-2, .basServices .ligne-info2 .info-coord-2 {
  margin-top: 0.75em;
}
.basServices .ligne-info1 .info-coord-2 > div, .basServices .ligne-info2 .info-coord-2 > div {
  grid-template-columns: 90px 0.9fr;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info1 .info-coord-2, .basServices .ligne-info2 .info-coord-2 {
    margin-top: 1rem !important;
  }
}
.basServices .ligne-info1 .info-coord-3 > div, .basServices .ligne-info2 .info-coord-3 > div {
  text-align: center;
}
.basServices .ligne-info1 .ligne-lien, .basServices .ligne-info2 .ligne-lien {
  width: 100%;
  grid-column: span 3/span 3;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info1 .ligne-lien, .basServices .ligne-info2 .ligne-lien {
    grid-column: span 1/span 1;
  }
}
.basServices .ligne-info1 .ligne-lien .lienExterneColPrincipal p, .basServices .ligne-info2 .ligne-lien .lienExterneColPrincipal p {
  margin: 0;
  font-style: normal !important;
}
.basServices .cadre-info1 .cadre-logos, .basServices .cadre-info2 .cadre-logos {
  padding: 0 0 0 10px;
}
.basServices .cadre-info1 .cadre-logos p, .basServices .cadre-info2 .cadre-logos p {
  margin-bottom: 0 !important;
}
.basServices .cadre-info1 .cadre-logos > div, .basServices .cadre-info2 .cadre-logos > div {
  display: flex;
  flex-direction: column;
}
.basServices .cadre-info1 .cadre-logos .logos > div, .basServices .cadre-info2 .cadre-logos .logos > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.basServices .cadre-info1 .cadre-logos figure, .basServices .cadre-info2 .cadre-logos figure {
  max-width: 100px;
}
@media all and (max-width: 1023px) {
  .basServices .cadre-info1 .cadre-logos, .basServices .cadre-info2 .cadre-logos {
    margin-top: 30px;
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 320px) {
  .basServices .cadre-info1 .cadre-logos, .basServices .cadre-info2 .cadre-logos {
    max-width: 260px;
  }
}
.basServices .cadre-info2 > div:first-child {
  display: grid;
  grid-template-columns: 1fr 422px;
}
@media all and (max-width: 1023px) {
  .basServices .cadre-info2 > div:first-child {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 1023px) {
  .basServices .cadre-info2 {
    padding: 30px 0;
  }
}
.basServices .cadre-info2 .cadre-logos {
  justify-content: end;
}
.basServices .cadre-info2 .cadre-logos > div:first-child {
  max-width: 315px;
}
.basServices .ligne-info2 > div:first-child {
  grid-template-columns: 1fr 1fr !important;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info2 > div:first-child {
    grid-template-columns: 1fr !important;
  }
}
.basServices .ligne-info4 {
  margin: unset;
}
@media all and (max-width: 1023px) {
  .basServices .ligne-info4 {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.basServices .ligne-info4 .ligne-adresse-tel > div p {
  display: flex;
  gap: 8px;
  font-style: normal;
}
.basServices .ligne-info4 .ligne-adresse-tel > div img {
  width: 21px;
  height: auto;
  min-width: 21px;
  margin-top: 2px;
}
.basServices .wp-block-button {
  cursor: pointer;
}
.basServices .wp-block-button a {
  position: relative;
  width: 240px;
  color: #fff;
}
.basServices .wp-block-button a img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  width: 20px;
  height: 20px;
  transition: right 0.5s ease;
}
.basServices .wp-block-button a:hover {
  background-color: #e7473c !important;
  color: #fff !important;
  border: unset;
}
.basServices .wp-block-button a:hover img {
  right: 10px;
}

.saffilier {
  width: 1370px;
  margin-bottom: 50px !important;
}
@media all and (max-width: 1690px) {
  .saffilier {
    width: 1170px;
  }
}
@media all and (max-width: 1490px) {
  .saffilier {
    width: 970px;
  }
}
@media all and (max-width: 1425px) {
  .saffilier {
    width: 1132px;
  }
}
@media all and (max-width: 1295px) {
  .saffilier {
    width: 1000px;
  }
  .saffilier .titreCentrale > div {
    display: flex;
    flex-direction: column;
  }
  .saffilier .titreCentrale > div h4 {
    margin-bottom: 0.7rem;
  }
  .saffilier .titreCentrale > div figure {
    float: none !important;
    left: unset !important;
    order: 1;
    margin-bottom: 0.7rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 1160px) {
  .saffilier {
    width: 880px;
  }
}
@media all and (max-width: 768px) {
  .saffilier {
    width: 100%;
  }
}
.saffilier > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media all and (max-width: 1023px) {
  .saffilier > div {
    grid-template-columns: 1fr;
    gap: 0 !important;
  }
}
.saffilier .ficheCentrale {
  padding: 30px 50px 30px 50px;
  background-color: #f7f7f7;
}
@media all and (max-width: 768px) {
  .saffilier .ficheCentrale {
    padding: 30px 25px 30px 25px;
  }
}
@media all and (max-width: 1023px) {
  .saffilier .ficheCentrale {
    margin-bottom: 50px;
  }
}
.saffilier .ficheCentrale > div {
  position: relative;
  height: 100%;
  padding-bottom: 75px;
}
.saffilier .ficheCentrale.plusCoord > div {
  position: relative;
  height: 100%;
  padding-bottom: 250px;
}
@media all and (max-width: 1023px) {
  .saffilier .ficheCentrale.plusCoord .wp-block-button {
    left: unset !important;
    transform: unset !important;
    text-align: center;
  }
}
.saffilier .ficheCentrale .titreCentrale figure {
  float: right;
  position: relative;
  left: 22px;
}
.saffilier .ficheCentrale .wp-block-button {
  position: absolute;
  bottom: 0;
}
@media all and (max-width: 1023px) {
  .saffilier .ficheCentrale .wp-block-button {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.saffilier .ficheCentrale .wp-block-button .wp-block-button__link {
  width: 325px;
}
@media all and (max-width: 400px) {
  .saffilier .ficheCentrale .wp-block-button {
    width: 100%;
  }
  .saffilier .ficheCentrale .wp-block-button .wp-block-button__link {
    width: 100%;
  }
}
.saffilier .ficheCentrale .coordonnees-bouton {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.saffilier .ficheCentrale .coordonnees-bouton .wp-block-button {
  bottom: unset;
  position: unset;
  margin-top: 25px;
}
.saffilier .ficheCentrale .ligne-adresse-tel > div p {
  display: flex;
  gap: 8px;
  font-style: normal;
}
.saffilier .ficheCentrale .ligne-adresse-tel > div img {
  width: 21px;
  height: auto;
  min-width: 21px;
  margin-top: 2px;
}
.saffilier .ficheCentrale .lienExterneColPrincipal img {
  width: 21px;
  height: auto;
  min-width: 21px;
  margin-top: 2px;
}
.saffilier .ficheCentrale .lienExterneColPrincipal p {
  font-style: normal !important;
}

@media all and (max-width: 1120px) {
  .listeGroupesChomage {
    width: 860px;
  }
}
@media all and (max-width: 1023px) {
  .listeGroupesChomage {
    width: 100%;
  }
}
.listeGroupesChomage > div:first-child {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media all and (max-width: 1280px) {
  .listeGroupesChomage > div:first-child {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (max-width: 790px) {
  .listeGroupesChomage > div:first-child {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 370px) {
  .listeGroupesChomage > div:first-child {
    grid-template-columns: 1fr;
  }
}
.listeGroupesChomage > div:first-child > div > div {
  height: 196px;
  width: 245px;
  background-color: #eceae4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}
@media all and (max-width: 530px) {
  .listeGroupesChomage > div:first-child > div > div {
    width: 157px;
    height: 157px;
  }
}
.listeGroupesChomage > div:first-child > div > div img {
  height: 75px;
  margin-top: 20px;
  max-width: 120px;
  margin: 14px auto 0px auto;
}
@media all and (max-width: 530px) {
  .listeGroupesChomage > div:first-child > div > div img {
    height: 55px;
  }
}
.listeGroupesChomage > div:first-child > div > div p {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.listeGroupesChomage > div:first-child > div > div .wp-block-button {
  margin-top: auto;
  margin-bottom: 16px;
  align-self: center;
  display: flex;
}
.listeGroupesChomage > div:first-child > div > div .wp-block-button .wp-block-button__link {
  width: 224px;
  font-size: 0.8em;
  color: white;
}
.listeGroupesChomage > div:first-child > div > div .wp-block-button .wp-block-button__link:hover {
  color: #d42f19;
}
@media all and (max-width: 530px) {
  .listeGroupesChomage > div:first-child > div > div .wp-block-button .wp-block-button__link {
    width: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2em;
    font-size: 0.75em;
  }
}
@media all and (max-width: 425px) {
  .listeGroupesChomage {
    padding-right: 16px;
    padding-left: 6px;
  }
}

.chomage {
  z-index: 3000;
}
.chomage .menuChomage {
  gap: 25px;
  margin-bottom: 50px;
}
.chomage .menuChomage .menuChomageItem button {
  height: 59px;
  width: 225px;
  line-height: 1.2em;
  cursor: pointer;
}
@media all and (max-width: 768px) {
  .chomage .menuChomage .menuChomageItem button {
    font-size: 1rem;
  }
}
@media all and (max-width: 500px) {
  .chomage .menuChomage .menuChomageItem button {
    width: 100% !important;
  }
}
.chomage .menuChomage .menuChomageItem button:hover {
  background-color: white;
}
.chomage .menuChomage .menuChomageItem button.actif {
  background-color: white;
  color: #707070;
  border-color: #707070;
}
.chomage.globContainer.permanences {
  padding-left: 50px;
}
@media all and (max-width: 1372px) {
  .chomage.globContainer.permanences {
    padding-left: 0;
  }
}
@media all and (max-width: 1023px) {
  .chomage.globContainer.permanences {
    padding: 0;
  }
}
.chomage.globContainer.permanences .contenuChomage.centralContainer {
  width: 1366px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 400px;
}
@media all and (max-width: 768px) {
  .chomage.globContainer.permanences .contenuChomage.centralContainer {
    margin-bottom: 550px;
  }
}
@media all and (max-width: 1670px) {
  .chomage.globContainer.permanences .contenuChomage.centralContainer {
    margin-left: 40px;
  }
}
@media all and (max-width: 1546px) {
  .chomage.globContainer.permanences .contenuChomage.centralContainer {
    margin-left: auto;
    width: 1066px;
  }
  .chomage.globContainer.permanences .contenuChomage.centralContainer .bloc-permanence > div {
    position: relative;
    padding: 30px 10px 30px 10px;
  }
}
@media all and (max-width: 1372px) {
  .chomage.globContainer.permanences .contenuChomage.centralContainer {
    width: unset;
  }
  .chomage.globContainer.permanences .contenuChomage.centralContainer .bloc-permanence > div {
    position: relative;
    padding: 30px 50px 30px 50px;
  }
}

.ensemble-2-blocs-permanences, .bloc-permanence, .coordonnees {
  margin-top: 30px;
}
.ensemble-2-blocs-permanences > div, .bloc-permanence > div, .coordonnees > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
@media all and (max-width: 768px) {
  .ensemble-2-blocs-permanences > div, .bloc-permanence > div, .coordonnees > div {
    grid-template-columns: 1fr;
  }
}
.ensemble-2-blocs-permanences .bloc-permanence, .bloc-permanence .bloc-permanence, .coordonnees .bloc-permanence {
  max-width: 668px;
}
.ensemble-2-blocs-permanences .bloc-permanence > div, .bloc-permanence .bloc-permanence > div, .coordonnees .bloc-permanence > div {
  position: relative;
  padding: 30px 50px 30px 50px;
  background-color: #f7f7f7;
  height: 100%;
}
.ensemble-2-blocs-permanences .wp-block-button, .bloc-permanence .wp-block-button, .coordonnees .wp-block-button {
  cursor: pointer;
}
.ensemble-2-blocs-permanences .boutons > div, .bloc-permanence .boutons > div, .coordonnees .boutons > div {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.ensemble-2-blocs-permanences .boutons div.sans-rdv, .bloc-permanence .boutons div.sans-rdv, .coordonnees .boutons div.sans-rdv {
  cursor: unset;
  user-select: none;
}
.ensemble-2-blocs-permanences .boutons div.sans-rdv > a, .bloc-permanence .boutons div.sans-rdv > a, .coordonnees .boutons div.sans-rdv > a {
  padding: 0 40px;
  user-select: none;
  line-height: normal;
  background-color: unset;
  color: #555;
  border: solid 1px #555;
  height: 97px;
  cursor: unset;
}
@media all and (max-width: 768px) {
  .ensemble-2-blocs-permanences .boutons div.sans-rdv > a, .bloc-permanence .boutons div.sans-rdv > a, .coordonnees .boutons div.sans-rdv > a {
    height: 87px;
    padding: 0 50px;
  }
}
.ensemble-2-blocs-permanences .boutons div.rdv, .bloc-permanence .boutons div.rdv, .coordonnees .boutons div.rdv {
  user-select: none;
}
.ensemble-2-blocs-permanences .boutons div.rdv > a, .bloc-permanence .boutons div.rdv > a, .coordonnees .boutons div.rdv > a {
  height: 64px;
}
@media all and (max-width: 768px) {
  .ensemble-2-blocs-permanences .boutons div.rdv > a, .bloc-permanence .boutons div.rdv > a, .coordonnees .boutons div.rdv > a {
    height: 50px;
  }
}
.ensemble-2-blocs-permanences .boutons div.rdv > a img, .bloc-permanence .boutons div.rdv > a img, .coordonnees .boutons div.rdv > a img {
  top: 50%;
  transform: translate(0, -50%);
  right: 10px;
  transition: right 0.5s ease;
}
.ensemble-2-blocs-permanences .boutons div.rdv > a:hover, .bloc-permanence .boutons div.rdv > a:hover, .coordonnees .boutons div.rdv > a:hover {
  background-color: #e7473c !important;
  color: #fff !important;
  border: unset;
}
.ensemble-2-blocs-permanences .boutons div.rdv > a:hover img, .bloc-permanence .boutons div.rdv > a:hover img, .coordonnees .boutons div.rdv > a:hover img {
  right: 6px;
}
.ensemble-2-blocs-permanences .boutons div.nous-joindre, .bloc-permanence .boutons div.nous-joindre, .coordonnees .boutons div.nous-joindre {
  user-select: none;
}
.ensemble-2-blocs-permanences .boutons div.nous-joindre > a, .bloc-permanence .boutons div.nous-joindre > a, .coordonnees .boutons div.nous-joindre > a {
  background-color: #707070;
  border: solid 1px #707070;
}
.ensemble-2-blocs-permanences .boutons div.nous-joindre > a img, .bloc-permanence .boutons div.nous-joindre > a img, .coordonnees .boutons div.nous-joindre > a img {
  transform: rotate(90deg);
  top: 15px;
  right: 19px;
  transition: top 0.5s ease, transform 0.5s ease;
}
.ensemble-2-blocs-permanences .boutons div.nous-joindre > a img.active, .bloc-permanence .boutons div.nous-joindre > a img.active, .coordonnees .boutons div.nous-joindre > a img.active {
  transform: rotate(270deg);
}
.ensemble-2-blocs-permanences .boutons div.nous-joindre > a:hover, .bloc-permanence .boutons div.nous-joindre > a:hover, .coordonnees .boutons div.nous-joindre > a:hover {
  background-color: #888888 !important;
  color: #fff !important;
}
.ensemble-2-blocs-permanences .boutons div.nous-joindre > a:hover img, .bloc-permanence .boutons div.nous-joindre > a:hover img, .coordonnees .boutons div.nous-joindre > a:hover img {
  top: 13px;
}
.ensemble-2-blocs-permanences .boutons a, .bloc-permanence .boutons a, .coordonnees .boutons a {
  position: relative;
  width: 220px;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85em;
}
.ensemble-2-blocs-permanences .boutons a img, .bloc-permanence .boutons a img, .coordonnees .boutons a img {
  position: absolute;
  width: 20px;
  height: 20px;
}
.ensemble-2-blocs-permanences .boutons a.rdv, .bloc-permanence .boutons a.rdv, .coordonnees .boutons a.rdv {
  height: 64px;
}
@media all and (max-width: 768px) {
  .ensemble-2-blocs-permanences .boutons a.rdv, .bloc-permanence .boutons a.rdv, .coordonnees .boutons a.rdv {
    height: 50px;
  }
}
.ensemble-2-blocs-permanences .boutons a.rdv img, .bloc-permanence .boutons a.rdv img, .coordonnees .boutons a.rdv img {
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  transition: right 0.5s ease;
}
.ensemble-2-blocs-permanences .boutons a.rdv:hover, .bloc-permanence .boutons a.rdv:hover, .coordonnees .boutons a.rdv:hover {
  background-color: #e7473c !important;
  color: #fff !important;
  border: unset;
}
.ensemble-2-blocs-permanences .boutons a.rdv:hover img, .bloc-permanence .boutons a.rdv:hover img, .coordonnees .boutons a.rdv:hover img {
  right: 10px;
}
.ensemble-2-blocs-permanences .boutons a.nous-joindre, .bloc-permanence .boutons a.nous-joindre, .coordonnees .boutons a.nous-joindre {
  background-color: #707070;
  border: solid 1px #707070;
}
.ensemble-2-blocs-permanences .boutons a.nous-joindre img, .bloc-permanence .boutons a.nous-joindre img, .coordonnees .boutons a.nous-joindre img {
  transform: rotate(90deg) translate(-50%);
  top: 50%;
  right: 34px;
  transition: top 0.5s ease;
}
.ensemble-2-blocs-permanences .boutons a.nous-joindre:hover, .bloc-permanence .boutons a.nous-joindre:hover, .coordonnees .boutons a.nous-joindre:hover {
  background-color: #888888 !important;
  color: #fff !important;
}
.ensemble-2-blocs-permanences .boutons a.nous-joindre:hover img, .bloc-permanence .boutons a.nous-joindre:hover img, .coordonnees .boutons a.nous-joindre:hover img {
  top: 47%;
}
.ensemble-2-blocs-permanences .coordonnees, .bloc-permanence .coordonnees, .coordonnees .coordonnees {
  margin-top: 0;
  padding: 20px 50px 20px 50px;
  position: absolute;
  top: 100%;
  z-index: 5000;
  width: 100%;
  background-color: #eceae4;
  display: none;
  box-shadow: -3px 7px 12px #00000029;
}
.ensemble-2-blocs-permanences .coordonnees.affiche, .bloc-permanence .coordonnees.affiche, .coordonnees .coordonnees.affiche {
  display: block !important;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1, .bloc-permanence .coordonnees .ligne-info1, .coordonnees .coordonnees .ligne-info1 {
  width: 100%;
  font-size: 0.8em;
}
@media all and (max-width: 1023px) {
  .ensemble-2-blocs-permanences .coordonnees .ligne-info1, .bloc-permanence .coordonnees .ligne-info1, .coordonnees .coordonnees .ligne-info1 {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .bloc, .bloc-permanence .coordonnees .ligne-info1 .bloc, .coordonnees .coordonnees .ligne-info1 .bloc {
  width: 100%;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .bloc > div, .bloc-permanence .coordonnees .ligne-info1 .bloc > div, .coordonnees .coordonnees .ligne-info1 .bloc > div {
  height: 100%;
}
@media all and (max-width: 1023px) {
  .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .bloc, .bloc-permanence .coordonnees .ligne-info1 .bloc, .coordonnees .coordonnees .ligne-info1 .bloc {
    margin-top: 1rem;
  }
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2, .bloc-permanence .coordonnees .ligne-info1 .info-coord, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2, .coordonnees .coordonnees .ligne-info1 .info-coord, .coordonnees .coordonnees .ligne-info1 .info-coord-1, .coordonnees .coordonnees .ligne-info1 .info-coord-2 {
  margin-bottom: 10px;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord.wp-block-group, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1.wp-block-group, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2.wp-block-group, .bloc-permanence .coordonnees .ligne-info1 .info-coord.wp-block-group, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1.wp-block-group, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2.wp-block-group, .coordonnees .coordonnees .ligne-info1 .info-coord.wp-block-group, .coordonnees .coordonnees .ligne-info1 .info-coord-1.wp-block-group, .coordonnees .coordonnees .ligne-info1 .info-coord-2.wp-block-group {
  margin: unset;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord > div, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 > div, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 > div, .coordonnees .coordonnees .ligne-info1 .info-coord > div, .coordonnees .coordonnees .ligne-info1 .info-coord-1 > div, .coordonnees .coordonnees .ligne-info1 .info-coord-2 > div {
  display: grid;
  grid-template-columns: 38px 0.9fr;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord > div div, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 > div div, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 > div div, .bloc-permanence .coordonnees .ligne-info1 .info-coord > div div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 > div div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 > div div, .coordonnees .coordonnees .ligne-info1 .info-coord > div div, .coordonnees .coordonnees .ligne-info1 .info-coord-1 > div div, .coordonnees .coordonnees .ligne-info1 .info-coord-2 > div div {
  margin-left: unset !important;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord .adresse, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 .adresse, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 .adresse, .bloc-permanence .coordonnees .ligne-info1 .info-coord .adresse, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 .adresse, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 .adresse, .coordonnees .coordonnees .ligne-info1 .info-coord .adresse, .coordonnees .coordonnees .ligne-info1 .info-coord-1 .adresse, .coordonnees .coordonnees .ligne-info1 .info-coord-2 .adresse {
  margin-left: 0;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord .adresse > div, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 .adresse > div, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 .adresse > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord .adresse > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 .adresse > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 .adresse > div, .coordonnees .coordonnees .ligne-info1 .info-coord .adresse > div, .coordonnees .coordonnees .ligne-info1 .info-coord-1 .adresse > div, .coordonnees .coordonnees .ligne-info1 .info-coord-2 .adresse > div {
  text-align: left;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord .img-info-coord, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 .img-info-coord, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 .img-info-coord, .bloc-permanence .coordonnees .ligne-info1 .info-coord .img-info-coord, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 .img-info-coord, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 .img-info-coord, .coordonnees .coordonnees .ligne-info1 .info-coord .img-info-coord, .coordonnees .coordonnees .ligne-info1 .info-coord-1 .img-info-coord, .coordonnees .coordonnees .ligne-info1 .info-coord-2 .img-info-coord {
  width: 38px;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord .img-info-coord img, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 .img-info-coord img, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 .img-info-coord img, .bloc-permanence .coordonnees .ligne-info1 .info-coord .img-info-coord img, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 .img-info-coord img, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 .img-info-coord img, .coordonnees .coordonnees .ligne-info1 .info-coord .img-info-coord img, .coordonnees .coordonnees .ligne-info1 .info-coord-1 .img-info-coord img, .coordonnees .coordonnees .ligne-info1 .info-coord-2 .img-info-coord img {
  height: 22px;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord p, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 p, .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 p, .bloc-permanence .coordonnees .ligne-info1 .info-coord p, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 p, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 p, .coordonnees .coordonnees .ligne-info1 .info-coord p, .coordonnees .coordonnees .ligne-info1 .info-coord-1 p, .coordonnees .coordonnees .ligne-info1 .info-coord-2 p {
  font-style: normal;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 0 !important;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .hr-bloc, .bloc-permanence .coordonnees .ligne-info1 .hr-bloc, .coordonnees .coordonnees .ligne-info1 .hr-bloc {
  grid-column: span 3/span 3;
  border-top: 1px solid #eceae4;
  margin: 0.75rem 0;
  height: 3px;
}
@media all and (max-width: 1023px) {
  .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .hr-bloc, .bloc-permanence .coordonnees .ligne-info1 .hr-bloc, .coordonnees .coordonnees .ligne-info1 .hr-bloc {
    grid-column: span 1/span 1;
  }
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .hr-bloc p, .bloc-permanence .coordonnees .ligne-info1 .hr-bloc p, .coordonnees .coordonnees .ligne-info1 .hr-bloc p {
  margin: 0;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1, .coordonnees .coordonnees .ligne-info1 .info-coord-1 {
  min-height: 45px;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1 div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1 div, .coordonnees .coordonnees .ligne-info1 .info-coord-1 div {
  margin-left: unset;
  margin-right: unset;
}
@media all and (max-width: 1023px) {
  .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-1, .bloc-permanence .coordonnees .ligne-info1 .info-coord-1, .coordonnees .coordonnees .ligne-info1 .info-coord-1 {
    min-height: unset;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
  }
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2, .coordonnees .coordonnees .ligne-info1 .info-coord-2 {
  margin-top: 0.75em;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2 > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2 > div, .coordonnees .coordonnees .ligne-info1 .info-coord-2 > div {
  grid-template-columns: 90px 0.9fr;
}
@media all and (max-width: 1023px) {
  .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-2, .bloc-permanence .coordonnees .ligne-info1 .info-coord-2, .coordonnees .coordonnees .ligne-info1 .info-coord-2 {
    margin-top: 1rem !important;
  }
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .info-coord-3 > div, .bloc-permanence .coordonnees .ligne-info1 .info-coord-3 > div, .coordonnees .coordonnees .ligne-info1 .info-coord-3 > div {
  text-align: center;
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .ligne-lien, .bloc-permanence .coordonnees .ligne-info1 .ligne-lien, .coordonnees .coordonnees .ligne-info1 .ligne-lien {
  width: 100%;
  grid-column: span 3/span 3;
}
@media all and (max-width: 1023px) {
  .ensemble-2-blocs-permanences .coordonnees .ligne-info1 .ligne-lien, .bloc-permanence .coordonnees .ligne-info1 .ligne-lien, .coordonnees .coordonnees .ligne-info1 .ligne-lien {
    grid-column: span 1/span 1;
  }
}
.ensemble-2-blocs-permanences .coordonnees .ligne-info1 .ligne-lien .lienExterneColPrincipal p, .bloc-permanence .coordonnees .ligne-info1 .ligne-lien .lienExterneColPrincipal p, .coordonnees .coordonnees .ligne-info1 .ligne-lien .lienExterneColPrincipal p {
  margin: 0;
  font-style: normal !important;
}
.ensemble-2-blocs-permanences .coordonnees hr, .bloc-permanence .coordonnees hr, .coordonnees .coordonnees hr {
  margin: unset;
  margin-bottom: 10px;
}
@media all and (min-width: 769px) {
  .ensemble-2-blocs-permanences .coordonnees hr, .bloc-permanence .coordonnees hr, .coordonnees .coordonnees hr {
    display: none;
  }
}

@media all and (max-width: 1372px) {
  .ensemble-2-blocs-permanences > div {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 768px) {
  .coordonnees > div {
    gap: 10px;
  }
}

.faq {
  width: 836px;
  border-radius: 10px;
  border: solid 3px #f7f7f7;
  margin-bottom: 20px;
  overflow: hidden;
  user-select: none;
}
@media all and (max-width: 1023px) {
  .faq {
    width: 100%;
  }
}
.faq p {
  padding: 20px 30px;
  margin: 0;
}
.faq .question {
  width: 100%;
}
.faq .question p {
  font-size: 1.6rem;
}
@media all and (max-width: 768px) {
  .faq .question p {
    font-size: 1.3rem;
  }
}
.faq .question > div {
  display: flex;
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  min-height: 79px;
  width: 100%;
  background-color: #f7f7f7;
}
.faq .question > div figure {
  flex-grow: 1;
  display: flex;
  justify-content: end;
  padding: 11px 30px 0 0;
  min-width: 159px;
}
@media all and (max-width: 576px) {
  .faq .question > div figure {
    padding: 10px 10px 0 0;
    min-width: 76px;
  }
}
.faq .question > div figure img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(-3px 4px 4px #00000029);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq .question > div figure img.ouvert {
  transform: rotate(0deg);
}
.faq .reponse {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.6s ease;
}
.faq .reponse p {
  text-align: justify;
}
.faq .reponse > div {
  padding-right: 159px;
}
@media all and (max-width: 768px) {
  .faq .reponse > div {
    padding-right: unset;
  }
}
.faq.ouvert {
  border: solid 3px #d42f19;
}
@media all and (max-width: 576px) {
  .faq.ouvert {
    border: solid 3px #f7f7f7;
    background-color: #f7f7f7 !important;
    box-shadow: -7px 7px 12px #00000029;
  }
  .faq.ouvert .question > div {
    background-color: #f7f7f7 !important;
    color: #272727 !important;
  }
  .faq.ouvert .question > div p {
    font-weight: bold;
  }
  .faq.ouvert .reponse {
    background-color: #f7f7f7 !important;
  }
}
.faq.ouvert .question > div {
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  background-color: #d42f19;
  color: white;
}
.faq.ouvert .reponse {
  height: auto;
}

.centralContainer.large {
  width: 1366px;
}
@media (max-width: 1578px) {
  .centralContainer.large {
    width: 100%;
  }
}

.servicesJuridiques > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1680px) {
  .servicesJuridiques > div {
    grid-template-columns: 1fr;
    padding-right: 212px;
    gap: 0 !important;
  }
}
@media (max-width: 1680px) {
  .servicesJuridiques > div {
    padding-right: 50px !important;
  }
}
@media (max-width: 1023px) {
  .servicesJuridiques > div {
    padding-right: unset !important;
  }
}
.servicesJuridiques p {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.2em;
  text-align: left;
  margin-bottom: 0 !important;
}
.servicesJuridiques .serviceJuridique {
  width: 668px;
  background-color: #f7f7f7;
  padding: 30px 50px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .servicesJuridiques .serviceJuridique {
    width: 100%;
  }
}
.servicesJuridiques .titreImage > div {
  position: relative;
}
.servicesJuridiques .titreImage > div > figure {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .servicesJuridiques .titreImage > div {
    position: unset;
  }
  .servicesJuridiques .titreImage > div > figure {
    position: unset;
    top: unset;
    right: unset;
    margin-bottom: 20px;
  }
}
.servicesJuridiques .informations > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .servicesJuridiques .informations > div {
    grid-template-columns: 1fr;
  }
}
.servicesJuridiques .informations .col1 {
  width: 317px;
}
@media (max-width: 768px) {
  .servicesJuridiques .informations .col1 {
    width: 100%;
  }
}
.servicesJuridiques .informations .col2 {
  display: flex;
  height: 100%;
  align-items: end;
}
.servicesJuridiques .info-coord {
  margin-bottom: 20px;
}
.servicesJuridiques .info-coord > div {
  display: grid;
  grid-template-columns: 38px 0.9fr;
}
.servicesJuridiques .info-coord > div div {
  margin-left: unset !important;
}
.servicesJuridiques .info-coord .adresse {
  margin-left: 0;
}
.servicesJuridiques .info-coord .adresse > div {
  text-align: left;
}
.servicesJuridiques .info-coord .img-info-coord {
  width: 38px;
}
.servicesJuridiques .info-coord .img-info-coord figure {
  position: relative;
}
.servicesJuridiques .info-coord .img-info-coord img {
  position: absolute;
  top: 0;
  height: 22px;
}
.servicesJuridiques .info-coord-horaires > div {
  display: grid;
  grid-template-columns: 100px 1fr;
}
.servicesJuridiques .info-coord-horaires > div div {
  margin-left: unset !important;
}
.servicesJuridiques .hr-bloc {
  grid-column: span 3/span 3;
  border-top: 1px solid #eceae4;
  margin: 0.75rem 0;
  height: 3px;
}
@media all and (max-width: 1023px) {
  .servicesJuridiques .hr-bloc {
    grid-column: span 1/span 1;
  }
}
.servicesJuridiques .hr-bloc p {
  margin: 0;
}
.servicesJuridiques .ligne-lien {
  margin-bottom: 10px;
}

.bloc_documents_a_telecharger {
  color: #707070;
  grid-row-gap: 75px;
}
.bloc_documents_a_telecharger > div {
  width: 80%;
  max-width: 310px;
}
.bloc_documents_a_telecharger .file {
  max-width: 150px;
}
.bloc_documents_a_telecharger .file > div {
  text-align: center;
}
.bloc_documents_a_telecharger img {
  width: 64px;
  height: 53px;
}
.bloc_documents_a_telecharger span {
  font-size: 0.8em;
}

#fgtbForm input[type=text], #fgtbForm input[type=date], #fgtbForm input[type=tel], #fgtbForm input[type=email], #fgtbForm select {
  width: 450px;
  margin-bottom: 20px;
}

.nosvaleurs-noscombats {
  cursor: pointer;
}
.nosvaleurs-noscombats .d1 > div {
  display: flex;
  flex-direction: row;
}
@media all and (max-width: 1023px) {
  .nosvaleurs-noscombats .d1 > div {
    flex-direction: column;
  }
}
.nosvaleurs-noscombats .imageActu {
  position: relative;
  width: 380px;
  min-width: 380px;
  height: 214px;
}
@media all and (max-width: 1023px) {
  .nosvaleurs-noscombats .imageActu {
    width: 100%;
    height: 180px;
    min-width: unset;
  }
}
@media all and (max-width: 1023px) and (min-width: 376px) {
  .nosvaleurs-noscombats .imageActu {
    height: 250px;
  }
}
@media all and (max-width: 1023px) and (min-width: 600px) {
  .nosvaleurs-noscombats .imageActu {
    height: 350px;
  }
}
.nosvaleurs-noscombats img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.nosvaleurs-noscombats .titre {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d42f19;
  padding: 10px 0;
}
@media all and (max-width: 1023px) {
  .nosvaleurs-noscombats .titre {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 425px) {
  .nosvaleurs-noscombats .resume {
    font-size: 0.9rem;
  }
}
.nosvaleurs-noscombats hr {
  border-top: 1px solid #272727;
  margin: 30px 0 30px 0;
}

.pan-warning {
  font-family: "Noto Color Emoji", sans-serif;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  max-width: 100%;
}

/*# sourceMappingURL=fgtb.css.map */
