/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/*, *:before, *:after {
  box-sizing: border-box;
}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}/* Objects
Non-cosmetic design patterns including grid and layout classes)
*//* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

@media screen and (max-width: 1352px) {
  .content-wrapper {
    max-width: 100% !important;
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/body {
  line-height: 1.4;
  overflow-wrap: break-word;
  hyphens: auto;
  word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}button,
.button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:hover,
.button:hover,
button:focus,
.button:focus {
  text-decoration: none;
}

button:disabled,
.button:disabled {
  background: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

/* Button */

.button-wrapper { 
  margin-bottom: -1rem;
}

.button-wrapper a {
  transition: 0.2s linear all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.button-wrapper a:not(:last-child) { 
  margin-right: 1rem;
}

.button--icon-left {
  flex-direction: row-reverse;
}

.button__text {
  vertical-align: middle;
}

.button__icon {
  height: 16px;
  width: 16px;
  display: inline-flex;
  flex: 0 0 16px;
  align-items: center;
  margin-left: 0.75rem;
}

.button__icon--default,
.button__icon--hovered {
  margin-left: 0.75rem;
  height: 16px;
  width: 16px;
}

.button__icon--default img, 
.button__icon--hovered img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.button--icon-left .button__icon,
.button--icon-left .button__icon--default,
.button--icon-left .button__icon--hovered {
  margin-left: 0;
  margin-right: 10px;
}

.button .button__icon--default {
  display: inline-flex;
}

.button .button__icon--hovered {
  display: none;
}

.button:hover .button__icon--default {
  display: none;
}

.button:hover .button__icon--hovered {
  display: inline-flex;
}

.button__icon svg { 
  max-width: 100%;
  width: 100%;
  height: auto;
  fill: currentColor;
  transition: all .15s linear;
}/* Labels */

form label {
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* Inputs */
form.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 33.333%;
}

form fieldset.form-columns-1 .hs-form-field .input,
form fieldset.form-columns-2 .hs-form-field:last-child .input,
form fieldset.form-columns-3 .hs-form-field:last-child .input {
  margin-right: 0;
}

form .hs-form-field .input input[type='text'],
form .hs-form-field .input input[type='email'],
form .hs-form-field .input input[type='password'],
form .hs-form-field .input input[type='tel'],
form .hs-form-field .input input[type='number'],
form .hs-form-field .input input[type='date'],
form .hs-form-field .input select.hs-input,
form .form-columns-1 .hs-form-field .input .hs-input.hs-fieldtype-intl-phone,
form .hs-form-field .input textarea.hs-input {
  width: 100%;
}

form .hs-form-field .input input[type='date'] {
  appearance: none;
  min-height: 50px;
}

form input[type='text'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='date'],
form input[type='file'],
form select,
form textarea {
  display: inline-block;
  width: 100%;
  transition: all 0.15s linear;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form fieldset {
  max-width: 100% !important;
}

form .form-columns-1 .hs-form-field .input .hs-input.hs-fieldtype-intl-phone select.hs-input {
  min-height: unset !important;
}
@media screen and (max-width: 767px) {
  form fieldset.form-columns-3 .hs-form-field,
  form.hs-form fieldset.form-columns-3 .hs-form-field .input .hs-input {
    width: 100% !important;
    float: none !important;
  }
  form fieldset.form-columns-3 .hs-form-field .input {
    margin-right: 0;
  }
};

@media screen and (max-width: 400px) {
  form fieldset.form-columns-2 .hs-form-field,
  form.hs-form fieldset.form-columns-2 .hs-form-field .input .hs-input {
    width: 100%;
  }
  form fieldset.form-columns-2 .hs-form-field .input {
    margin-right: 0;
  }
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form .hs-form-radio-display,
form .hs-form-checkbox-display,
form .hs-form-booleancheckbox > label{
  display: flex;
  align-items: center;
  position: relative;
}

form input[type='checkbox'],
form input[type='radio'] {
  appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid #cfd2d8;
  border-radius: 3px;
  box-shadow: none;
  cursor: pointer;
  margin-right: 0.5rem;
  vertical-align: middle;
}

form input[type='radio'] {
  border-radius: 50%;
}

form input[type='checkbox'] + *,
form input[type='radio'] + * {
  display: inline;
  float: none;
  margin-left: 0 !important;
  vertical-align: middle;
}

form input[type='checkbox']:checked {
  border-color: #ff3a69;
}

form input[type='checkbox']:checked:after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  position: absolute;
  transform: rotate(45deg) translate(-50%,-50%);
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  margin-left: -5px;
}

form input[type='radio']:checked {
  border-color: var(--icon-background-hover-color);
}

form input[type='radio']:checked:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--icon-background-hover-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* Form field radio */
form .hs-fieldtype-radio { 
  padding: 1.5rem;
}

form .hs-form-radio > label {
  margin-bottom: 0;
}

form .hs-form-radio .hs-form-radio-display {
  cursor: pointer;
}

form .hs-form-radio .hs-form-radio-display span {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

form input[type=radio] {
  position: relative;
  width: 20px;
  flex: 0 0 20px;
  height: 20px;
  border: 2px solid #333;
}

/* Form field checkbox */
form .hs-fieldtype-checkbox { 
  padding: 1.5rem;
}

form .hs-form-checkbox {
  padding: 0.5rem 0;
}

form .hs-form-checkbox > label {
  margin-bottom: 0;
}

form .hs-form-checkbox .hs-form-checkbox-display {
  cursor: pointer;
}

form .hs-form-checkbox .hs-form-checkbox-display span {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

form input[type=checkbox] {
  position: relative;
  width: 18px;
  flex: 0 0 18px;
  height: 18px;
  border-radius: 0;
  border: 2px solid #333;
}

/* Form field dropdown */
form .input {
  position: relative;
}

form select {
  border: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  background-image: none;
}

form select:focus,
form select:active {
  outline: none;
}

form select + .select-arrow {
  position: absolute;
  display: block;
  border-radius: 0 1px 0 0;
  height: 8px;
  right: 28px;
  top: 50%;
  transform: translateY(-75%) rotate(135deg);
  transform-origin: 50% 50%;
  width: 8px;
  box-shadow: inset -2px 2px 0 0 #333;
}

/* Inputs - date picker */
.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: '\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #fff;
}

::-webkit-calendar-picker-indicator,
form .hs-dateinput:before {
  content: "";
  right: 0;
}

::-webkit-calendar-picker-indicator {
  padding: 0;
  margin-right: -1px;
}

form .hs-dateinput .icon-calendar {
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  color:#000;
}

form .hs-dateinput .fn-date-picker {
  width: 573px;
  padding: 24px 38px 16px;
  border-width: 1px;
  border-style: solid;
}

form .hs-dateinput .fn-date-picker .pika-lendar {
  margin: 0;
  width: 100%;
}

form .hs-dateinput .fn-date-picker .pika-title {
  text-align: left;
  line-height: 0;
  padding-left: 22px;
  margin-bottom: 24px;
}

form .hs-dateinput .fn-date-picker .pika-label {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  background: transparent;
  margin-right: 24px;
  padding: 0 16px 0 0;
}

form .hs-dateinput .fn-date-picker .pika-label::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4588_17504)'%3E%3Cpath d='M6 8L3 5L9 5L6 8Z' fill='%232C2F34'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4588_17504'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
}

form .hs-dateinput .fn-date-picker .pika-prev,
form .hs-dateinput .fn-date-picker .pika-next {
  display: none;
}

form .hs-dateinput .fn-date-picker .pika-table {
  margin-bottom: 0;
}

form .hs-dateinput .fn-date-picker .pika-table th {
  line-height: 24px;
}

form .hs-dateinput .fn-date-picker .pika-table abbr{
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  cursor: auto;
}

form .hs-dateinput .fn-date-picker .pika-table .pika-button {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  padding: 9px;
}

form .hs-dateinput .fn-date-picker .pika-label select {
  padding: 0 6px;
  top: 0;
  height: 16px;
  min-width: 100px;
  font-size: 14px;
}

form .hs-dateinput .fn-date-picker .pika-label:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  form .hs-dateinput .fn-date-picker {
    width: 342px;
    padding: 24px 13px 16px;
  }
}

/* Inputs - file picker */
form input[type='file'] {
  background: transparent;
  border: initial;
  padding: initial;
  width: auto;
}

/* Richtext */
form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */
body .legal-consent-container .hs-form-booleancheckbox-display input {
  float: none;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  display: inline !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.legal-consent-container .hs-form-booleancheckbox-display p span { 
  vertical-align: baseline;
}

form .legal-consent-container .field.hs-form-field {
  margin-bottom: 0;
}

form .hs-form-booleancheckbox span {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

/* Validation */
.hs-form .hs-input:focus,
.hs-form .hs-input:active {
  outline: none;
}

.hs_error_rollup {
  display: none;
}

.hs-error-msg {
  padding: 0;
  margin-bottom: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
}

.hs-form-required {
  display: inline;
}

/* Submit button */

form input[type='submit'],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  border-style: solid;
}

/* Custom input file */
.custom-input-file input[type='file'] {
  display: none;
}

.custom-input-file .input-button {
  border: 2px solid #f2f4f8;
  background: #f2f4f8;
  border-radius: 4px;
  min-width: 150px;
  color: #2c2f34;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  text-align: left;
}

.custom-input-file .input-file-icon {
  display: inline-flex;
  height: 20px;
  width: 20px;
  margin-left: 1rem;
  cursor: pointer;
}

.custom-input-file .input-file-icon svg {
  width: 100%;
  height: auto;
}

form .custom-input-file .input-button {
  position: relative;
  width: 100%;
  justify-content: center;
  border-style: solid;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

/* Custom-helptext */
form .hs-field-desc {
  visibility: hidden;
}

form .hs-field-desc.custom-helptext {
  position: relative;
  width: 12px;
  height: 12px;
  visibility: visible;
  margin-bottom: 0;
  margin-left: 10px;
}

form .custom-helptext .helptext-icon {
  color: #9BA0AD;
}

form .custom-helptext .helptext-wrapper {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  position: absolute;
  bottom: calc(100% + 14px);
  left: -28px;
  padding: 10px 16px;
  border-radius: 8px;
  width: 516px;
  height: auto;
  visibility: hidden;
  transition: all 0.2s linear;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  border: 1px solid #333;
}

form .custom-helptext .helptext-wrapper::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 22px;
  height: 20px;
  width: 20px;
  transform: rotate(45deg);
  border-left: transparent;
  border-top: transparent;
  border-style: solid;
  border-width: 1px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

form .custom-helptext:hover .helptext-wrapper {
  visibility: visible;
}

/* Form one field */
@media (min-width: 576px) {
  .form--one-field .hs-form {
    display: flex;
    flex-wrap: wrap;
  }

  .form--one-field .hs-form-field:first-of-type {
    flex-grow: 1;
    margin-bottom: 0;
  }

  .form--one-field .hs-form-field:first-of-type > label,
  .form--one-field .hs-form-field:first-of-type > .hs-field-desc {
    display: none;
  }

  .form--one-field .hs-form-field:first-of-type > .input {
    margin-top: 0;
    width: calc(100% - 1.5rem);
  }

  .form--one-field .hs-submit input[type="submit"] {
    margin-top: 0;
  }

  .form--one-field .hs-form-field:not(:first-of-type),
  .form--one-field .legal-consent-container {
    order: 3;
    width: 100%;
  }

  .form--one-field .legal-consent-container {
    margin-top: 1.5rem;
  }

  .form--one-field .hs_error_rollup {
    order: 2;
    width: 100%;
  }

  .form--one-field .field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-file):not(.hs-fieldtype-date) > label,
  .form--one-field .field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-file):not(.hs-fieldtype-date) > legend {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/* Form complexe layout */
.form--complexe .hs-form-field {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.form--complexe .hs-form-field > label{
  width: 250px;
}

.form--complexe .hs-form-field div.input,
.form--complexe .hs-richtext,
.form--complexe .hs-error-msgs {
  margin-left: auto;
  width: calc(100% - 274px);
}

.form--complexe .hs-fieldtype-radio div.input,
.form--complexe .hs-fieldtype-checkbox div.input {
  width: calc(100% - 274px + 1.5rem);
}

.form--complexe .hs-submit {
  text-align: center;
}

@media (max-width: 991px) {
  .form--complexe .hs-form-field > label,
  .form--complexe .hs-form-field div.input,
  .form--complexe .hs-richtext,
  .form--complexe .hs-error-msgs {
    width: 100%;
  }
  
  .form--complexe .hs-fieldtype-radio div.input,
  .form--complexe .hs-fieldtype-checkbox div.input {
    width: 100%;
  }
}/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}/* Menu */
.menu--desktop {
    display: block;
}

.menu--mobile {
    display: none;
}

@media (max-width: 1199px) {
    .menu--desktop {
        display: none;
    }

    .menu--mobile {
        display: block;
    }
}

/* Menu items */
.menu__item {
    position: relative;
}

.menu__item > span.menu__link { 
    pointer-events: none !important;
}

.menu__link {
    font-size: 1rem;
    line-height: 1.4;
    text-decoration: none;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
    text-decoration: none;
}

.menu__link--active-link,
.menu__link--active-branch {
    font-weight: bold;
}

.menu .menu__link[href="#"] {
    cursor: default;
}

@media (min-width: 992px) and (max-width: 1150px) {
    .menu__link {
        font-size: 0.833rem;
    }
}

@media (max-width: 1199px) {
    .menu__item {
        display: block;
        width: 100%;
    }

    .menu__link {
        display: block;
        font-size: 16px;
        color: #52575D;
    }
}

/* Menu items - top level */
.menu__item--depth-1 {
    display: inline-block;
    padding: 12px 15px;
}

.menu__item--depth-1 > .menu__link { 
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
}

.menu__item--depth-1 > .menu__link:after { 
    background: #ff3a69;
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    display: block;
    height: 2px;
    transition: width .3s;
    width: 0;
}

.menu__item--depth-1 > .menu__link--active-link:after { 
    width: 100%;
}

.menu__item--depth-1 > span.menu__link::after { 
    background: transparent !important;
}

.menu__item--depth-1.menu__item--has-submenu > .menu__link--active-link:after,
.menu__item--depth-1.nav__item--mega-branch > .menu__link--active-link:after { 
    width: 100%;
}

@media (max-width: 1199px) {
    .menu__item--depth-1 {
        border-top: 1px solid #EBEBEB;
        padding: 0;
    }

    .menu__item--depth-1 > .menu__link {
        padding: 12px 0 12px 0;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        color: #2C2F34;
    }

    .menu__item--depth-1 > .menu__link:after { 
        display: none;
    }

    .menu__item--depth-1 > .menu__link--active-link:after {
        content: none;
    }
}

/* Menu items - submenus */
.menu__submenu {
    padding: 10px 0;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: #fff;
    display: none;
    left: 0;
    position: absolute;
    text-align: left;
    text-transform: none;
    top: 100%;
    width: 240px;
    z-index: 100;
}

.menu__item--open > .menu__submenu {
    display: block;
    animation: pop .2s ease-in-out forwards;
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

.menu__item--depth-1:first-child .menu__submenu--level-2 {
    transform: unset;
}

.menu__submenu .menu__item {
    border-bottom: 1px solid #D1D6DC;
    padding: 0;
    width: 100%;
}

.menu__submenu .menu__item:last-child { 
    border-bottom-color: transparent;
}

.menu__submenu .menu__link {
    display: block;
    padding: 0.7rem 1.05rem;
    transition: background-color 0.3s;
    width: 100%;
    line-height: 30px;
    font-weight: 500;
    font-size: 1rem;
}

ul.menu__submenu--level-3 {
    margin-top: -10px;
    left: 100%;
    top: 0;
}

.menu__submenu .menu__child-toggle-icon {
    border-color: #2C2F34;
}

.menu__submenu .menu__child-toggle-icon:focus, 
.menu__submenu .menu__child-toggle-icon:hover {
    border-color: #141B22;
}

/* Flyouts for the last one top level menu items go left to keep page responsive */
.menu__item--depth-1:nth-last-child(-n+1) .menu__submenu--level-3 {
    left: auto;
    right: 100%;
    top: 0;
}

/* Accounts for child toggle */
.menu__submenu .menu__item--has-submenu > .menu__link {
    padding-right: 25px;
}

@media (max-width: 1199px) {
    .menu__submenu {
        border: none;
        border-radius: 0;
        box-shadow: none;
        position: static;
        transform: unset;
        width: 100%;
    }

    .menu__submenu .menu__item {
        background: #FFF;
        border-bottom: none;
        padding: 0;
    }

    .menu__submenu .menu__link {
        display: block;
        padding: 12px 0;
        line-height: 1.5;
        transition: none;
        width: 100%;
    }

    .menu__submenu .menu__item .menu__link:hover,
    .menu__submenu .menu__item .menu__link:focus {
        background: inherit;
        transition: none;
    }

    .menu__item--has-submenu > .menu__link {
        position: relative;
        width: 100%;
        padding-right: 30px;
    }

    .menu--mobile .menu__submenu {
        background: #fff;
        padding: 0;
    }

    .menu--mobile .menu__submenu {
        margin-top: 0;
    }
}

/* Menu icons */
/* desktop */
.menu--desktop .menu__submenu .menu__child-toggle {
    margin-left: auto;
}

.menu--desktop .menu__child-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.menu--desktop .menu__child-toggle-icon {
    width: calc(1em * 0.375);
    height: calc(1em * 0.375);
    margin-left: 2px;
    border-style: solid;
    border-color: #2c2f34;
    
        border-width: 0px 2px 2px 0px;
    
    transform: rotate(45deg);
}

.menu--desktop .menu__item--depth-1 > .menu__link > .menu__child-toggle {
    position: static;
    vertical-align: middle;
}

.menu--desktop .menu__submenu .menu__child-toggle-icon {
    transform: rotate(315deg);
}

.menu--desktop .menu--on-click .menu__item--depth-1 > .menu__link > .menu__child-toggle {
    padding: 0 7px;
}

.menu--desktop .menu--on-click .menu__submenu .menu__child-toggle {
    padding: 8px;
}

/* mobile */
.menu--mobile .menu__child-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 100%;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

.menu--mobile .menu__child-toggle-icon {
    display: inline-flex;
    align-items: center;
    width: 16px;
    height: 16px;
    margin-left: auto;
    transition: transform 0.4s;
    border: none;
}

.menu--mobile .menu__item--open > .menu__link .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(180deg);
    transition: transform 0.4s;
}


/* Mega menu */
.nav__item--mega-branch {
    position: static;
}

.nav__mega {
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 0;
    height: 0;
    opacity: 0;
    max-height: calc(100vh - 100px);
    position: absolute;
    right: 0;
    top: 100%;
    left: 0;
    padding: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
}

.nav__item--mega-branch.menu__item--open > .nav__mega {
    width: 100%;
    height: auto;
    opacity: 1;
    padding: 60px 24px;
    overflow-y: auto;
    z-index: 100;
}

.nav__mega-hover-extender {
    display: none;
    height: 100px;
    left: -30px;
    position: absolute;
    right: -30px;
    top: 100%;
}

.nav__item--mega-branch:hover > a .nav__mega-hover-extender{
    display: block;
}

.nav__mega-cols {
    width: 100%;
}

.nav__mega-col h3,
.nav__mega-col h4,
.nav__mega-col h5,
.nav__mega-col h6 { 
    margin-bottom: 32px;
    color: #2c2f34;
}

.nav__mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__mega-col ul li:not(:last-child) {
    margin-bottom: 24px;
}

.nav__mega-col ul li a { 
    font-size: 16px;
    color: #2c2f34;
}

.nav__mega-col ul li a:hover,
.nav__mega-col ul li a:focus { 
    color: #ff3a69;
}

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

@media (max-width: 1199px) {
    .nav__item--mega-branch {
        position: relative;
    }

    .menu__item--open .nav__mega {
        position: static;
    }

    .nav__mega-content,
    .nav__mega-aside {
        width: 100% !important;
    }

    .nav__mega-col {
        width: 50% !important;
        margin-bottom: 30px;
    }

    .nav__item--mega-branch:hover > .nav__mega {
        visibility: hidden;
        opacity: 0;
    }

    .nav__item--mega-branch.menu__item--open > .nav__mega {
        padding-left: 0;
        padding-right: 0;
        opacity: 1;
        visibility: visible;
        z-index: 99;
        height: auto;
        overflow-y: hidden;
        max-height: initial;
    }
}

/* Nav popup */
.menu__nav-popup { 
    display: none;
}

.menu__nav-content {
    position: relative;
    padding: 15px 15px 100px 15px;
}

.menu__nav-popup.open {
    background: #FFF;
    display: block;
    left: 0;
    min-height: calc(100vh - 80px);
    position: fixed;
    right: 0;
    top: 80px;
    z-index: 1010;
    height: calc(100vh - 80px);
    overflow-x: hidden;
}

.menu__close-toggle {
    position: fixed;
    right: 15px;
    top: 34px;
    margin-right: 0;
    text-align: center;
    cursor: pointer;
    z-index: 1020;
    display: none;
}

.menu__close-toggle svg {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.menu__close-toggle.show {
    display: flex;
}

@media screen and (max-width: 991px) {
    .menu__close-toggle {
        top: 29px;
    }
}.slick-dotted .slick-dots {
  line-height: 0;
  height: 16px;
  bottom: -84px;
}

.slick-dotted .slick-dots li {
    margin: 0 2px;
}

.slick-dotted .slick-dots li button {
    padding: 0;
    background: var(--dot-background-default-color);
    border: 1px solid transparent;
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.slick-dotted .slick-dots li.slick-active button {
    background: var(--color-text-highlight);
    border-color: transparent;
}

.slick-dotted .slick-dots li button:before {
    content: "";
    color: #EBEBEB;
    font-size: 10px;
    opacity: 1;
}

.slick-dotted .slick-dots li.slick-active button:before {
    color: var(--color-primary);
    opacity: 1;
}
.slick-slider .slick-arrow {
    height: 48px;
    width: 48px;
    z-index: 99;
    color: var(--icon-icon-default-color);
}

.slick-slider .slick-arrow:hover,
.slick-slider .slick-arrow:focus,
.slick-slider .slick-arrow:hover path,
.slick-slider .slick-arrow:focus path {
    fill: var(--icon-icon-hover-color);
}

.slick-slider .slick-arrow svg { 
    max-width: 100%;
    height: auto;
}

.slick-slider .slick-next::before, 
.slick-slider .slick-prev::before { 
    content: "";
}

.slick-slider .slick-prev {
    left: -120px;
}

.slick-slider .slick-next {
    right: -120px;
}

.slick-slider .slick-disabled {
    opacity: 0.4;
    cursor: default;
}

.slick-slider.slick-not-init .slick-slide:nth-child(n+2) { 
    display: none !important;
}

/* Content slider */
.slider-container .owl-dots {
    line-height: 0;
    margin-top: 15px;
}

.slider-container .owl-dots button.owl-dot {
    margin: 0 2px;
}

.slider-container .owl-dots button.owl-dot {
    padding: 0;
    background: var(--dot-background-default-color);
    border: 1px solid transparent;
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.slider-container .owl-dots button.owl-dot span {
    display: none;
}

.slider-container .owl-dots button.owl-dot.active {
    background: var(--color-text-highlight);
    border-color: transparent;
}

.slider-container .owl-dots button.owl-dot:before {
    content: "";
    color: #EBEBEB;
    font-size: 10px;
    opacity: 1;
}

.slider-container .owl-dots button.owl-dot.active:before {
    color: var(--color-primary);
    opacity: 1;
}#hs-modal-content #hs-modal-footer button#hs-modal-accept-all,
#hs-modal-content #hs-modal-footer button#hs-modal-save-settings {
    padding: 0 15px;
    line-height: 1.5;
    min-height: 3.3em;
    height: auto;
}

#hs-eu-cookie-confirmation #hs-eu-cookie-settings-button:focus,
#hs-eu-cookie-confirmation #hs-eu-cookie-settings-button:active {
    outline: none;
}/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/@keyframes headerStickyActive {
  from {
    opacity: 0;
    transform: scale(1.1) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0%);
  }
}

@keyframes headerStickyInactive {
  from {
    transform: translateY(20%);
  }
  to {
    transform: translateY(0%);
  }
}

.header {
  width: 100%;
  min-height: 80px;
  transition: 0.3s;
  background: #fff;
  z-index: 1030;
}

.header--sticky-active {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  animation: 0.2s ease-in-out headerStickyActive;
}

.header--sticky-inactive {
  animation: 0.2s ease-in-out headerStickyInactive;
}

.header--sticky-active.scrolled-down {
  transform: translateY(-100%);
  animation: none;
}

.header--sticky-active.scrolled-up {
  transform: translateY(0);
  animation: none;
}

.header--overlap:not(.header--sticky) {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

html:not(.hs-inline-edit) .header--overlap.header--sticky:not(.header--sticky-active) {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
}

html.hs-inline-edit .header {
  position: static !important;
  transform: none !important;
}

html.hs-inline-edit body.nav-open .header {
  position: fixed !important;
}

@media (max-width: 1199px) {
  .header {
    min-height: auto;
  }
}

/* Header DND sections */
.header .dnd-section {
  padding: 0;
}

/* Header container */
.header__container {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header__column {
  display: flex;
}

.header__row {
  padding-top: 17px;
  padding-bottom: 17px;
}

.header__row {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1199px) {
  .header__column {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .header__row {
    flex-wrap: wrap;
  }
}

/* Navigation skipper */
.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */
.header__logo {
  margin-right: 15px;
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
  min-width: fit-content;
}

@media (max-width: 1199px) {
  .header__logo {
    min-width: 160px;
    padding: 10px 0;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .header__logo {
    min-width: 120px;
    margin-right: 0;
  }
}

@media (max-width: 320px) {
  .header__logo {
    max-width: 120px;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header__logo--main a {
  display: block;
  line-height: 0;
}

/* Controls */
.header__control {
  display: flex;
  align-items: center;
  min-width: fit-content;
  min-height: 42px;
}

.header__control .header__element:not(:last-child) {
  margin-right: var(--spacing-medium-s);
}

/* Search bar */
.header__search {
  width: auto;
}

.header__search .site-search__open {
  padding: 14px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--color-text-body);
}

@media (max-width: 1199px) {
  .site-search__close svg {
    max-width: 18px;
  }
}

@media (max-width: 991px) {
  .header__search .site-search__open {
    border-radius: 5px;
    padding: 10px;
  }
}

/* Language switcher */
.language-switcher {
  background: transparent;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}

.language-switcher .globe_class {
  background-image: none;
  width: 10px;
}

.language-switcher .lang_switcher_class {
  position: static;
}

.language-switcher .lang_list_class {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: 50%;
  opacity: 0;
  min-width: 60px;
  padding: 5px 0;
  text-align: center;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.language-switcher .lang_list_class li {
  background: transparent;
}

.language-switcher:hover .lang_list_class,
.language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.language-switcher .lang_list_class:before,
.language-switcher .lang_list_class:after {
  opacity: 0;
}

.language-switcher .lang_list_class.first-active::after {
  border-bottom-color: #fff;
  top: -22px;
  transition: 0.3s;
}

.language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.language-switcher .lang_list_class li:first-child {
  padding-top: 10px;
  border-top: none;
}

.language-switcher .lang_list_class li:last-child {
  padding-bottom: 10px;
  border-bottom: none;
}

.language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.language-switcher-label-current,
.language-switcher .lang_list_class li a {
  font-weight: 500;
  font-size: 1rem;
  color: #8a8a8a;
}

.language-switcher__label {
  display: flex;
  position: relative;
}

.language-switcher__label-current {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  min-height: 48px;
  font-weight: 600;
}

.language-switcher__label-current:after {
  content: '';
  display: block;
  height: 6px;
  width: 6px;
  margin-left: 12px;
  border-style: solid;
  border-color: #2c2f34;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  margin-top: -2px;
}

@media (max-width: 991px) {
  .language-switcher {
    padding-right: 5px;
  }

  .language-switcher__label-current {
    min-height: 40px;
    margin-left: 5px;
  }
}

/* Navigation */
#nav-toggle {
  display: none;
}

.header__navigation {
  margin-right: 40px;
}

.header__navigation.header__navigation--no-space {
  margin-right: 0 !important;
}

.header__navigation.header__navigation--no-space .menu__item--depth-1 {
  padding-right: 0;
}

@media (max-width: 1199px) {
  .header__navigation {
    margin-right: 10px;
  }
}

/* Mobile toggles */
.header__navigation-toggle {
  display: none;

}

.header__navigation-toggle svg {
  width: 20px;
  height: 20px;
}

.header__control--no-toggle {
  margin-right: 0 !important;
}

.header__navigation-toggle--hidden {
  display: none !important;
}

@media (max-width: 1199px) {
  .header__navigation {
    width: 100%;
  }

  .header__button {
    display: none;
  }

  .header__navigation-toggle,
  .site-search__open {
    cursor: pointer;
    position: relative;
  }

  .header__navigation-toggle {
    background: transparent;
    border-color: transparent;
    padding: 0;
    color: #fff;
  }

  .header__navigation-toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation-toggle:hover,
  .header__navigation-toggle:focus {
    background: transparent;
    border-color: transparent;
  }

  .nav-open .header__logo--main {
    z-index: 9999;
  }

  .nav-open .header__control {
    z-index: 9999;
    margin-right: 40px;
  }

  .nav-open .header__navigation-toggle {
    display: none;
  }
}.hs-inline-edit .footer div.hs_cos_wrapper_type_icon {
    display: inline-block;
}

.footer .hs-item-has-children .hs-menu-children-wrapper {
    display: none !important;
}

.footer .hs-menu-item a[href^="javascript:void(0)"] {
    pointer-events: none;
}

.footer .hs-menu-wrapper ul > .hs-menu-item:not(:last-child) {
    margin-bottom: 24px;
}

/* Overlap */
@media screen and (min-width: 768px) {
    .footer--overlap {
        position: fixed !important;
        bottom: 0;
        right: 0;
        left: 0;
        transition: all 0.5s;
        z-index: 999;
    }

    html:not(.hs-inline-edit) .footer--bg-onscroll:not(.footer--sticky-active),
    html:not(.hs-inline-edit) .footer--bg-onscroll:not(.footer--sticky-active) .footer__bottom { 
        background: none !important;
    }

    html:not(.hs-inline-edit) .footer--bg-onscroll:not(.footer--sticky-active) .footer__bottom {
        border-color: transparent !important;
    }

    .footer--overlap .content-wrapper {
        padding: 0 15px;
    }

    .footer--overlap .footer__bottom {
        transition: all 0.5s;
    }
}

@media screen and (max-width: 767px) {
    .footer--overlap-mobile {
        position: fixed !important;
        bottom: 0;
        right: 0;
        left: 0;
        transition: all 0.5s;
        z-index: 99;
    }

    html:not(.hs-inline-edit) .footer--bg-onscroll:not(.footer--sticky-active),
    html:not(.hs-inline-edit) .footer--bg-onscroll:not(.footer--sticky-active) .footer__bottom { 
        background: none !important;
    }

    html:not(.hs-inline-edit) .footer--bg-onscroll:not(.footer--sticky-active) .footer__bottom {
        border-color: transparent !important;
    }

    .footer--overlap-mobile .content-wrapper {
        padding: 0 15px;
    }

    .footer--overlap-mobile .footer__bottom {
        transition: all 0.5s;
    }
}/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}


/* Color scheme hint */
#color-variables-print {
  display: none;
}
.color-hint__open {
  position: fixed;
  z-index: 9999999999;
  left: 8px;
  bottom: 16px;
  background: #292929;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;

  padding: 15px 30px;
  border-radius: 50px;

  cursor: pointer;
}
.color-hint__print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #F2F4F8;
  border: 1px solid #F2F4F8;
  margin-right: 16px;
  text-align: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.color-hint__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #F2F4F8;
  border: 1px solid #F2F4F8;
  margin-right: 16px;
  text-align: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.color-hint__close::after {
  content: '';
  background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.00072 5.58672L11.9507 0.636719L13.3647 2.05072L8.41472 7.00072L13.3647 11.9507L11.9507 13.3647L7.00072 8.41472L2.05072 13.3647L0.636719 11.9507L5.58672 7.00072L0.636719 2.05072L2.05072 0.636719L7.00072 5.58672Z" fill="%232C2F34"/></svg>');
  display: block;
  width: 13px;
  height: 13px;
}
.color-hint__toolbar-scheme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  margin-right: 16px;
  background: #fff;
  color: #2C2F34;
  border: 1px solid #E4E8EF;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  cursor: pointer;
}
.color-hint__toolbar-scheme.active {
  background: #292929;
  color: #fff;
  border: 1px solid #292929;
}
.color-hint__toolbar {
  display: none;
  position: fixed;
  z-index: 9999999999;
  left: 8px;
  bottom: 16px;
  background: #fff;
  box-shadow: 0px 0px 70px 0px #565D8526;
  
  width: 885px;
  padding: 5px 10px;
  border-radius: 22px;
}
.color-hint {
  display: none;
  position: fixed;
  z-index: 9999999999;
  left: 8px;
  bottom: 82px;
  width: 885px;
  box-shadow: 0px 0px 70px 0px #565D8526;
  background: #fff;
  border-radius: 22px;
}
.color-hint__content {
  display: none;
}
.color-hint__content.active {
  display: block;
}

.color-hint__colors {
  display: flex;
  flex-wrap: nowrap;
}

.color-hint__colors-first-col {
  flex: 1 1 33.33%;
}
.color-hint__colors-second-col {
  flex: 1 1 33.33%;
  border-left: 1px solid var(--color-bg-support-hard);
  border-right: 1px solid var(--color-bg-support-hard);
}
.color-hint__colors-third-col {
  flex: 1 1 33.33%;
}
.color-hint__color-wrapper {
  padding: 16px;
}
.color-hint__colors-first-col .color-hint__color-wrapper:first-child,
.color-hint__colors-third-col .color-hint__color-wrapper:first-child {
  border-bottom: 1px solid var(--color-bg-support-hard);
}
.color-hint__color {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.color-hint__color-tooltip {
  display: none;
  -webkit-justify-content: center;
  justify-content: center;
  background: #444;
  border-radius: 8px;
  color: #fff;
  content: attr(title);
  font-size: 16px;
  padding: 13px;
  width: 220px;

  left: 0;
  bottom: 40px;
  position: absolute;
  z-index: 1;
}

.color-hint__color-tooltip:before{
  border: solid;
  border-color: #444 transparent;
  border-width: 12px 6px 0 6px;
  content: "";

  left: 45%;
  bottom: -11px;
  position: absolute;
}

.color-hint__color:hover .color-hint__color-tooltip {
  display: -webkit-flex;
  display: flex;
}


.color-hint__color:last-child {
  margin-bottom: 0;
}
.color-hint__color-circle {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: block;
  margin-right: 6px;
  border: 1px solid #ADADAD
}
.color-hint__color svg {
  margin-right: 6px;
}
.color-hint__color-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  color: #2C2F34;
}



.color-hint__colors-v2 {
  display: none;
  /* display: flex; */
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #000;
}
.color-hint__color-card {
  flex: 0 1 calc(10%);
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(86,93,133,.15);
}

.color-hint__color-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Theme color hint tab */

.color-hint__toogle-elements {
  display: none;
  border-bottom: 1px solid #000;
  position: relative;
  margin-top: 28px;
  margin-bottom: 28px;
  cursor: pointer;
}
.color-hint__toogle-elements::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;

  width: 40px;
  height: 40px;
  background: #09F;

  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;

  display: flex;
  justify-content: center;
  padding-top: 3px;
}

.color-hint__toogle-elements.active::before {
  content: "-";
}

.color-hint__toogle-elements::after {
  content: "Module examples";
  position: absolute;
  bottom: 3px;
  left: 0;
  color: #09F;
  font-size: 17px;
  line-height: 1;
}

.color-hint__elements-wrapper {
  display: none;
}

.color-hint__elements {
  max-width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
}
.color-hint__element {
  background: var(--color-bg-primary);
  margin: 8px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(86,93,133,.15);
  text-align: center;
}

.color-hint__elements .slick-track {
    display: flex !important;
}
.color-hint__elements .slick-slide {
    height: inherit !important;
}

.color-hint__elements.slick-slider .slick-prev {
  left: -50px;
}
.color-hint__elements.slick-slider .slick-next {
  right: -50px;
}

.color-hint__element-fce {
  padding: 15px 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.color-hint__element-contact {
  text-align: left;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.color-hint__elements .testimonial-2 .testimonial__item-wrapper {
  padding: 15px;
}
.color-hint__elements .testimonial__item-avatar img {
  display: inline-block;
}
.color-hint__elements .testimonial-2 .testimonial__item-name {
  margin-top: var(--spacing-small-s);
  margin-bottom: var(--spacing-small-m);
}
.color-hint__elements .testimonial-2 .testimonial__item-star {
  margin-top: var(--spacing-small-s);
}
.color-hint__elements .testimonial-2 .testimonial__item-divider {
  margin-top: var(--spacing-small-l);
  margin-bottom: var(--spacing-small-l);
}

.color-hint__element-list {
  height: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1600px) {
  .color-hint__color-card p {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .color-hint__open {
    display: none;
  }
}.blog-load-more {
    display: flex;
    padding-top: 0;
}

.blog-load-more__loading {
    display: none;
    text-align: start;
    --main-color: var(--color-text-highlight, #ff3a69);
}

.blog-load-more--loading .blog-load-more__loading {
    display: inline-block;
}

.blog-load-more--loading .blog-load-more__btn {
    display: none;
}

#post-list > * {
    outline: 0;
}

.blog-load-more__btn {
    margin-top: 0;
    margin-bottom: 0;
}

/* Loading animation */

.dot-pulse {
    position: relative;
    left: -9999px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--main-color);
    color: var(--main-color);
    box-shadow: 9999px 0 0 -5px var(--main-color);
    animation: dotPulse 1.5s infinite linear;
    animation-delay: .25s;
}

.dot-pulse::before, 
.dot-pulse::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--main-color);
    color: var(--main-color);
}

.dot-pulse::before {
    box-shadow: 9984px 0 0 -5px var(--main-color);
    animation: dotPulseBefore 1.5s infinite linear;
    animation-delay: 0s;
}

.dot-pulse::after {
    box-shadow: 10014px 0 0 -5px var(--main-color);
    animation: dotPulseAfter 1.5s infinite linear;
    animation-delay: .5s;
}

@keyframes dotPulseBefore {
    0% {
        box-shadow: 9984px 0 0 -5px var(--main-color);
    }
    30% {
        box-shadow: 9984px 0 0 2px var(--main-color);
    }
    60%,
    100% {
        box-shadow: 9984px 0 0 -5px var(--main-color);
    }
}

@keyframes dotPulse {
    0% {
        box-shadow: 9999px 0 0 -5px var(--main-color);
    }
    30% {
        box-shadow: 9999px 0 0 2px var(--main-color);
    }
    60%,
    100% {
        box-shadow: 9999px 0 0 -5px var(--main-color);
    }
}

@keyframes dotPulseAfter {
    0% {
        box-shadow: 10014px 0 0 -5px var(--main-color);
    }
    30% {
        box-shadow: 10014px 0 0 2px var(--main-color);
    }
    60%,
    100% {
        box-shadow: 10014px 0 0 -5px var(--main-color);
    }
}/* Utilities
Helper classes with ability to override anything that comes before it
*//* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}/* Extend
Contains extended files
*//* Generic
Base styling
*/
/***

====================================================================
    Base
====================================================================

***/
html {
    scroll-behavior: smooth;
}

.body-container {
    min-height: 70vh;
}

.body-wrapper {
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden !important;
}

/***

====================================================================
    SVG icons
====================================================================

***/
.svg-icon {
    display: flex;
    width: 48px;
    height: 48px;
    position: relative;
    border-radius: 50%;
}

.svg-icon svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Spacing
Spacing classes
*/







  
  
  

  

  
    
  

  

  
    .m-large-xxl {
      margin: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mx-large-xxl,
    .mx-large-xxl {
      margin-left: var(--spacing-large-xxl) !important;
      margin-right: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.my-large-xxl,
    .my-large-xxl {
      margin-top: var(--spacing-large-xxl) !important;
      margin-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mt-large-xxl,
    .mt-large-xxl {
      margin-top: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mb-large-xxl,
    .mb-large-xxl {
      margin-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.ml-large-xxl,
    .ml-large-xxl {
      margin-left: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mr-large-xxl,
    .mr-large-xxl {
      margin-right: var(--spacing-large-xxl) !important;
    }
  
    .p-large-xxl {
      padding: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.px-large-xxl,
    .px-large-xxl {
      padding-left: var(--spacing-large-xxl) !important;
      padding-right: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.py-large-xxl,
    .py-large-xxl {
      padding-top: var(--spacing-large-xxl) !important;
      padding-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pt-large-xxl,
    .pt-large-xxl {
      padding-top: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pb-large-xxl,
    .pb-large-xxl {
      padding-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pl-large-xxl,
    .pl-large-xxl {
      padding-left: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pr-large-xxl,
    .pr-large-xxl {
      padding-right: var(--spacing-large-xxl) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-large-xl {
      margin: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-large-xl,
    .mx-large-xl {
      margin-left: var(--spacing-large-xl) !important;
      margin-right: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-xl,
    .row-fluid-wrapper.dnd-section--custom.my-large-xl,
    .my-large-xl {
      margin-top: var(--spacing-large-xl) !important;
      margin-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-large-xl,
    .mt-large-xl {
      margin-top: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-large-xl,
    .mb-large-xl {
      margin-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-large-xl,
    .ml-large-xl {
      margin-left: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-large-xl,
    .mr-large-xl {
      margin-right: var(--spacing-large-xl) !important;
    }
  
    .p-large-xl {
      padding: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-xl,
    .row-fluid-wrapper.dnd-section--custom.px-large-xl,
    .px-large-xl {
      padding-left: var(--spacing-large-xl) !important;
      padding-right: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-xl,
    .row-fluid-wrapper.dnd-section--custom.py-large-xl,
    .py-large-xl {
      padding-top: var(--spacing-large-xl) !important;
      padding-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-large-xl,
    .pt-large-xl {
      padding-top: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-large-xl,
    .pb-large-xl {
      padding-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-large-xl,
    .pl-large-xl {
      padding-left: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-large-xl,
    .pr-large-xl {
      padding-right: var(--spacing-large-xl) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-large-l {
      margin: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-l,
    .row-fluid-wrapper.dnd-section--custom.mx-large-l,
    .mx-large-l {
      margin-left: var(--spacing-large-l) !important;
      margin-right: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-l,
    .row-fluid-wrapper.dnd-section--custom.my-large-l,
    .my-large-l {
      margin-top: var(--spacing-large-l) !important;
      margin-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-l,
    .row-fluid-wrapper.dnd-section--custom.mt-large-l,
    .mt-large-l {
      margin-top: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-l,
    .row-fluid-wrapper.dnd-section--custom.mb-large-l,
    .mb-large-l {
      margin-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-l,
    .row-fluid-wrapper.dnd-section--custom.ml-large-l,
    .ml-large-l {
      margin-left: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-l,
    .row-fluid-wrapper.dnd-section--custom.mr-large-l,
    .mr-large-l {
      margin-right: var(--spacing-large-l) !important;
    }
  
    .p-large-l {
      padding: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-l,
    .row-fluid-wrapper.dnd-section--custom.px-large-l,
    .px-large-l {
      padding-left: var(--spacing-large-l) !important;
      padding-right: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-l,
    .row-fluid-wrapper.dnd-section--custom.py-large-l,
    .py-large-l {
      padding-top: var(--spacing-large-l) !important;
      padding-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-l,
    .row-fluid-wrapper.dnd-section--custom.pt-large-l,
    .pt-large-l {
      padding-top: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-l,
    .row-fluid-wrapper.dnd-section--custom.pb-large-l,
    .pb-large-l {
      padding-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-l,
    .row-fluid-wrapper.dnd-section--custom.pl-large-l,
    .pl-large-l {
      padding-left: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-l,
    .row-fluid-wrapper.dnd-section--custom.pr-large-l,
    .pr-large-l {
      padding-right: var(--spacing-large-l) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-large-m {
      margin: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-m,
    .row-fluid-wrapper.dnd-section--custom.mx-large-m,
    .mx-large-m {
      margin-left: var(--spacing-large-m) !important;
      margin-right: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-m,
    .row-fluid-wrapper.dnd-section--custom.my-large-m,
    .my-large-m {
      margin-top: var(--spacing-large-m) !important;
      margin-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-m,
    .row-fluid-wrapper.dnd-section--custom.mt-large-m,
    .mt-large-m {
      margin-top: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-m,
    .row-fluid-wrapper.dnd-section--custom.mb-large-m,
    .mb-large-m {
      margin-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-m,
    .row-fluid-wrapper.dnd-section--custom.ml-large-m,
    .ml-large-m {
      margin-left: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-m,
    .row-fluid-wrapper.dnd-section--custom.mr-large-m,
    .mr-large-m {
      margin-right: var(--spacing-large-m) !important;
    }
  
    .p-large-m {
      padding: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-m,
    .row-fluid-wrapper.dnd-section--custom.px-large-m,
    .px-large-m {
      padding-left: var(--spacing-large-m) !important;
      padding-right: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-m,
    .row-fluid-wrapper.dnd-section--custom.py-large-m,
    .py-large-m {
      padding-top: var(--spacing-large-m) !important;
      padding-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-m,
    .row-fluid-wrapper.dnd-section--custom.pt-large-m,
    .pt-large-m {
      padding-top: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-m,
    .row-fluid-wrapper.dnd-section--custom.pb-large-m,
    .pb-large-m {
      padding-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-m,
    .row-fluid-wrapper.dnd-section--custom.pl-large-m,
    .pl-large-m {
      padding-left: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-m,
    .row-fluid-wrapper.dnd-section--custom.pr-large-m,
    .pr-large-m {
      padding-right: var(--spacing-large-m) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-large-s {
      margin: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-s,
    .row-fluid-wrapper.dnd-section--custom.mx-large-s,
    .mx-large-s {
      margin-left: var(--spacing-large-s) !important;
      margin-right: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-s,
    .row-fluid-wrapper.dnd-section--custom.my-large-s,
    .my-large-s {
      margin-top: var(--spacing-large-s) !important;
      margin-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-s,
    .row-fluid-wrapper.dnd-section--custom.mt-large-s,
    .mt-large-s {
      margin-top: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-s,
    .row-fluid-wrapper.dnd-section--custom.mb-large-s,
    .mb-large-s {
      margin-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-s,
    .row-fluid-wrapper.dnd-section--custom.ml-large-s,
    .ml-large-s {
      margin-left: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-s,
    .row-fluid-wrapper.dnd-section--custom.mr-large-s,
    .mr-large-s {
      margin-right: var(--spacing-large-s) !important;
    }
  
    .p-large-s {
      padding: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-s,
    .row-fluid-wrapper.dnd-section--custom.px-large-s,
    .px-large-s {
      padding-left: var(--spacing-large-s) !important;
      padding-right: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-s,
    .row-fluid-wrapper.dnd-section--custom.py-large-s,
    .py-large-s {
      padding-top: var(--spacing-large-s) !important;
      padding-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-s,
    .row-fluid-wrapper.dnd-section--custom.pt-large-s,
    .pt-large-s {
      padding-top: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-s,
    .row-fluid-wrapper.dnd-section--custom.pb-large-s,
    .pb-large-s {
      padding-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-s,
    .row-fluid-wrapper.dnd-section--custom.pl-large-s,
    .pl-large-s {
      padding-left: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-s,
    .row-fluid-wrapper.dnd-section--custom.pr-large-s,
    .pr-large-s {
      padding-right: var(--spacing-large-s) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-medium-xl {
      margin: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-xl,
    .mx-medium-xl {
      margin-left: var(--spacing-medium-xl) !important;
      margin-right: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.my-medium-xl,
    .my-medium-xl {
      margin-top: var(--spacing-medium-xl) !important;
      margin-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-xl,
    .mt-medium-xl {
      margin-top: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-xl,
    .mb-medium-xl {
      margin-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-xl,
    .ml-medium-xl {
      margin-left: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-xl,
    .mr-medium-xl {
      margin-right: var(--spacing-medium-xl) !important;
    }
  
    .p-medium-xl {
      padding: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.px-medium-xl,
    .px-medium-xl {
      padding-left: var(--spacing-medium-xl) !important;
      padding-right: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.py-medium-xl,
    .py-medium-xl {
      padding-top: var(--spacing-medium-xl) !important;
      padding-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-xl,
    .pt-medium-xl {
      padding-top: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-xl,
    .pb-medium-xl {
      padding-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-xl,
    .pl-medium-xl {
      padding-left: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-xl,
    .pr-medium-xl {
      padding-right: var(--spacing-medium-xl) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-medium-l {
      margin: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-l,
    .mx-medium-l {
      margin-left: var(--spacing-medium-l) !important;
      margin-right: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-l,
    .row-fluid-wrapper.dnd-section--custom.my-medium-l,
    .my-medium-l {
      margin-top: var(--spacing-medium-l) !important;
      margin-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-l,
    .mt-medium-l {
      margin-top: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-l,
    .mb-medium-l {
      margin-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-l,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-l,
    .ml-medium-l {
      margin-left: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-l,
    .mr-medium-l {
      margin-right: var(--spacing-medium-l) !important;
    }
  
    .p-medium-l {
      padding: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-l,
    .row-fluid-wrapper.dnd-section--custom.px-medium-l,
    .px-medium-l {
      padding-left: var(--spacing-medium-l) !important;
      padding-right: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-l,
    .row-fluid-wrapper.dnd-section--custom.py-medium-l,
    .py-medium-l {
      padding-top: var(--spacing-medium-l) !important;
      padding-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-l,
    .pt-medium-l {
      padding-top: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-l,
    .pb-medium-l {
      padding-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-l,
    .pl-medium-l {
      padding-left: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-l,
    .pr-medium-l {
      padding-right: var(--spacing-medium-l) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-medium-m {
      margin: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-m,
    .mx-medium-m {
      margin-left: var(--spacing-medium-m) !important;
      margin-right: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-m,
    .row-fluid-wrapper.dnd-section--custom.my-medium-m,
    .my-medium-m {
      margin-top: var(--spacing-medium-m) !important;
      margin-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-m,
    .mt-medium-m {
      margin-top: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-m,
    .mb-medium-m {
      margin-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-m,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-m,
    .ml-medium-m {
      margin-left: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-m,
    .mr-medium-m {
      margin-right: var(--spacing-medium-m) !important;
    }
  
    .p-medium-m {
      padding: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-m,
    .row-fluid-wrapper.dnd-section--custom.px-medium-m,
    .px-medium-m {
      padding-left: var(--spacing-medium-m) !important;
      padding-right: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-m,
    .row-fluid-wrapper.dnd-section--custom.py-medium-m,
    .py-medium-m {
      padding-top: var(--spacing-medium-m) !important;
      padding-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-m,
    .pt-medium-m {
      padding-top: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-m,
    .pb-medium-m {
      padding-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-m,
    .pl-medium-m {
      padding-left: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-m,
    .pr-medium-m {
      padding-right: var(--spacing-medium-m) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-medium-s {
      margin: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-s,
    .mx-medium-s {
      margin-left: var(--spacing-medium-s) !important;
      margin-right: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-s,
    .row-fluid-wrapper.dnd-section--custom.my-medium-s,
    .my-medium-s {
      margin-top: var(--spacing-medium-s) !important;
      margin-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-s,
    .mt-medium-s {
      margin-top: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-s,
    .mb-medium-s {
      margin-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-s,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-s,
    .ml-medium-s {
      margin-left: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-s,
    .mr-medium-s {
      margin-right: var(--spacing-medium-s) !important;
    }
  
    .p-medium-s {
      padding: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-s,
    .row-fluid-wrapper.dnd-section--custom.px-medium-s,
    .px-medium-s {
      padding-left: var(--spacing-medium-s) !important;
      padding-right: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-s,
    .row-fluid-wrapper.dnd-section--custom.py-medium-s,
    .py-medium-s {
      padding-top: var(--spacing-medium-s) !important;
      padding-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-s,
    .pt-medium-s {
      padding-top: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-s,
    .pb-medium-s {
      padding-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-s,
    .pl-medium-s {
      padding-left: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-s,
    .pr-medium-s {
      padding-right: var(--spacing-medium-s) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-small-xl {
      margin: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-small-xl,
    .mx-small-xl {
      margin-left: var(--spacing-small-xl) !important;
      margin-right: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-xl,
    .row-fluid-wrapper.dnd-section--custom.my-small-xl,
    .my-small-xl {
      margin-top: var(--spacing-small-xl) !important;
      margin-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-small-xl,
    .mt-small-xl {
      margin-top: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-small-xl,
    .mb-small-xl {
      margin-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-small-xl,
    .ml-small-xl {
      margin-left: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-small-xl,
    .mr-small-xl {
      margin-right: var(--spacing-small-xl) !important;
    }
  
    .p-small-xl {
      padding: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-xl,
    .row-fluid-wrapper.dnd-section--custom.px-small-xl,
    .px-small-xl {
      padding-left: var(--spacing-small-xl) !important;
      padding-right: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-xl,
    .row-fluid-wrapper.dnd-section--custom.py-small-xl,
    .py-small-xl {
      padding-top: var(--spacing-small-xl) !important;
      padding-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-small-xl,
    .pt-small-xl {
      padding-top: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-small-xl,
    .pb-small-xl {
      padding-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-small-xl,
    .pl-small-xl {
      padding-left: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-small-xl,
    .pr-small-xl {
      padding-right: var(--spacing-small-xl) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-small-l {
      margin: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-l,
    .row-fluid-wrapper.dnd-section--custom.mx-small-l,
    .mx-small-l {
      margin-left: var(--spacing-small-l) !important;
      margin-right: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-l,
    .row-fluid-wrapper.dnd-section--custom.my-small-l,
    .my-small-l {
      margin-top: var(--spacing-small-l) !important;
      margin-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-l,
    .row-fluid-wrapper.dnd-section--custom.mt-small-l,
    .mt-small-l {
      margin-top: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-l,
    .row-fluid-wrapper.dnd-section--custom.mb-small-l,
    .mb-small-l {
      margin-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-l,
    .row-fluid-wrapper.dnd-section--custom.ml-small-l,
    .ml-small-l {
      margin-left: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-l,
    .row-fluid-wrapper.dnd-section--custom.mr-small-l,
    .mr-small-l {
      margin-right: var(--spacing-small-l) !important;
    }
  
    .p-small-l {
      padding: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-l,
    .row-fluid-wrapper.dnd-section--custom.px-small-l,
    .px-small-l {
      padding-left: var(--spacing-small-l) !important;
      padding-right: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-l,
    .row-fluid-wrapper.dnd-section--custom.py-small-l,
    .py-small-l {
      padding-top: var(--spacing-small-l) !important;
      padding-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-l,
    .row-fluid-wrapper.dnd-section--custom.pt-small-l,
    .pt-small-l {
      padding-top: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-l,
    .row-fluid-wrapper.dnd-section--custom.pb-small-l,
    .pb-small-l {
      padding-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-l,
    .row-fluid-wrapper.dnd-section--custom.pl-small-l,
    .pl-small-l {
      padding-left: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-l,
    .row-fluid-wrapper.dnd-section--custom.pr-small-l,
    .pr-small-l {
      padding-right: var(--spacing-small-l) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-small-m {
      margin: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-m,
    .row-fluid-wrapper.dnd-section--custom.mx-small-m,
    .mx-small-m {
      margin-left: var(--spacing-small-m) !important;
      margin-right: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-m,
    .row-fluid-wrapper.dnd-section--custom.my-small-m,
    .my-small-m {
      margin-top: var(--spacing-small-m) !important;
      margin-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-m,
    .row-fluid-wrapper.dnd-section--custom.mt-small-m,
    .mt-small-m {
      margin-top: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-m,
    .row-fluid-wrapper.dnd-section--custom.mb-small-m,
    .mb-small-m {
      margin-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-m,
    .row-fluid-wrapper.dnd-section--custom.ml-small-m,
    .ml-small-m {
      margin-left: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-m,
    .row-fluid-wrapper.dnd-section--custom.mr-small-m,
    .mr-small-m {
      margin-right: var(--spacing-small-m) !important;
    }
  
    .p-small-m {
      padding: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-m,
    .row-fluid-wrapper.dnd-section--custom.px-small-m,
    .px-small-m {
      padding-left: var(--spacing-small-m) !important;
      padding-right: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-m,
    .row-fluid-wrapper.dnd-section--custom.py-small-m,
    .py-small-m {
      padding-top: var(--spacing-small-m) !important;
      padding-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-m,
    .row-fluid-wrapper.dnd-section--custom.pt-small-m,
    .pt-small-m {
      padding-top: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-m,
    .row-fluid-wrapper.dnd-section--custom.pb-small-m,
    .pb-small-m {
      padding-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-m,
    .row-fluid-wrapper.dnd-section--custom.pl-small-m,
    .pl-small-m {
      padding-left: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-m,
    .row-fluid-wrapper.dnd-section--custom.pr-small-m,
    .pr-small-m {
      padding-right: var(--spacing-small-m) !important;
    }
  


  
  
  

  

  
    
  

  

  
    .m-small-s {
      margin: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-s,
    .row-fluid-wrapper.dnd-section--custom.mx-small-s,
    .mx-small-s {
      margin-left: var(--spacing-small-s) !important;
      margin-right: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-s,
    .row-fluid-wrapper.dnd-section--custom.my-small-s,
    .my-small-s {
      margin-top: var(--spacing-small-s) !important;
      margin-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-s,
    .row-fluid-wrapper.dnd-section--custom.mt-small-s,
    .mt-small-s {
      margin-top: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-s,
    .row-fluid-wrapper.dnd-section--custom.mb-small-s,
    .mb-small-s {
      margin-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-s,
    .row-fluid-wrapper.dnd-section--custom.ml-small-s,
    .ml-small-s {
      margin-left: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-s,
    .row-fluid-wrapper.dnd-section--custom.mr-small-s,
    .mr-small-s {
      margin-right: var(--spacing-small-s) !important;
    }
  
    .p-small-s {
      padding: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-s,
    .row-fluid-wrapper.dnd-section--custom.px-small-s,
    .px-small-s {
      padding-left: var(--spacing-small-s) !important;
      padding-right: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-s,
    .row-fluid-wrapper.dnd-section--custom.py-small-s,
    .py-small-s {
      padding-top: var(--spacing-small-s) !important;
      padding-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-s,
    .row-fluid-wrapper.dnd-section--custom.pt-small-s,
    .pt-small-s {
      padding-top: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-s,
    .row-fluid-wrapper.dnd-section--custom.pb-small-s,
    .pb-small-s {
      padding-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-s,
    .row-fluid-wrapper.dnd-section--custom.pl-small-s,
    .pl-small-s {
      padding-left: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-s,
    .row-fluid-wrapper.dnd-section--custom.pr-small-s,
    .pr-small-s {
      padding-right: var(--spacing-small-s) !important;
    }
  


  
  
  

  
    
  

  
    
  

  

  
    .m-none {
      margin: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-none,
    .row-fluid-wrapper.dnd-section--custom.mx-none,
    .mx-none {
      margin-left: 0px !important;
      margin-right: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.my-none,
    .row-fluid-wrapper.dnd-section--custom.my-none,
    .my-none {
      margin-top: 0px !important;
      margin-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-none,
    .row-fluid-wrapper.dnd-section--custom.mt-none,
    .mt-none {
      margin-top: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-none,
    .row-fluid-wrapper.dnd-section--custom.mb-none,
    .mb-none {
      margin-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-none,
    .row-fluid-wrapper.dnd-section--custom.ml-none,
    .ml-none {
      margin-left: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-none,
    .row-fluid-wrapper.dnd-section--custom.mr-none,
    .mr-none {
      margin-right: 0px !important;
    }
  
    .p-none {
      padding: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.px-none,
    .row-fluid-wrapper.dnd-section--custom.px-none,
    .px-none {
      padding-left: 0px !important;
      padding-right: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.py-none,
    .row-fluid-wrapper.dnd-section--custom.py-none,
    .py-none {
      padding-top: 0px !important;
      padding-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-none,
    .row-fluid-wrapper.dnd-section--custom.pt-none,
    .pt-none {
      padding-top: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-none,
    .row-fluid-wrapper.dnd-section--custom.pb-none,
    .pb-none {
      padding-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-none,
    .row-fluid-wrapper.dnd-section--custom.pl-none,
    .pl-none {
      padding-left: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-none,
    .row-fluid-wrapper.dnd-section--custom.pr-none,
    .pr-none {
      padding-right: 0px !important;
    }
  



@media (max-width: 767px) {
    
    
        
  
  
  

  

  
    
  

  

  
    .m-large-xxl {
      margin: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mx-large-xxl,
    .mx-large-xxl {
      margin-left: var(--spacing-large-xxl) !important;
      margin-right: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.my-large-xxl,
    .my-large-xxl {
      margin-top: var(--spacing-large-xxl) !important;
      margin-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mt-large-xxl,
    .mt-large-xxl {
      margin-top: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mb-large-xxl,
    .mb-large-xxl {
      margin-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.ml-large-xxl,
    .ml-large-xxl {
      margin-left: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mr-large-xxl,
    .mr-large-xxl {
      margin-right: var(--spacing-large-xxl) !important;
    }
  
    .p-large-xxl {
      padding: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.px-large-xxl,
    .px-large-xxl {
      padding-left: var(--spacing-large-xxl) !important;
      padding-right: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.py-large-xxl,
    .py-large-xxl {
      padding-top: var(--spacing-large-xxl) !important;
      padding-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pt-large-xxl,
    .pt-large-xxl {
      padding-top: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pb-large-xxl,
    .pb-large-xxl {
      padding-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pl-large-xxl,
    .pl-large-xxl {
      padding-left: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pr-large-xxl,
    .pr-large-xxl {
      padding-right: var(--spacing-large-xxl) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-large-xl {
      margin: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-large-xl,
    .mx-large-xl {
      margin-left: var(--spacing-large-xl) !important;
      margin-right: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-xl,
    .row-fluid-wrapper.dnd-section--custom.my-large-xl,
    .my-large-xl {
      margin-top: var(--spacing-large-xl) !important;
      margin-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-large-xl,
    .mt-large-xl {
      margin-top: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-large-xl,
    .mb-large-xl {
      margin-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-large-xl,
    .ml-large-xl {
      margin-left: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-large-xl,
    .mr-large-xl {
      margin-right: var(--spacing-large-xl) !important;
    }
  
    .p-large-xl {
      padding: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-xl,
    .row-fluid-wrapper.dnd-section--custom.px-large-xl,
    .px-large-xl {
      padding-left: var(--spacing-large-xl) !important;
      padding-right: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-xl,
    .row-fluid-wrapper.dnd-section--custom.py-large-xl,
    .py-large-xl {
      padding-top: var(--spacing-large-xl) !important;
      padding-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-large-xl,
    .pt-large-xl {
      padding-top: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-large-xl,
    .pb-large-xl {
      padding-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-large-xl,
    .pl-large-xl {
      padding-left: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-large-xl,
    .pr-large-xl {
      padding-right: var(--spacing-large-xl) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-large-l {
      margin: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-l,
    .row-fluid-wrapper.dnd-section--custom.mx-large-l,
    .mx-large-l {
      margin-left: var(--spacing-large-l) !important;
      margin-right: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-l,
    .row-fluid-wrapper.dnd-section--custom.my-large-l,
    .my-large-l {
      margin-top: var(--spacing-large-l) !important;
      margin-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-l,
    .row-fluid-wrapper.dnd-section--custom.mt-large-l,
    .mt-large-l {
      margin-top: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-l,
    .row-fluid-wrapper.dnd-section--custom.mb-large-l,
    .mb-large-l {
      margin-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-l,
    .row-fluid-wrapper.dnd-section--custom.ml-large-l,
    .ml-large-l {
      margin-left: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-l,
    .row-fluid-wrapper.dnd-section--custom.mr-large-l,
    .mr-large-l {
      margin-right: var(--spacing-large-l) !important;
    }
  
    .p-large-l {
      padding: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-l,
    .row-fluid-wrapper.dnd-section--custom.px-large-l,
    .px-large-l {
      padding-left: var(--spacing-large-l) !important;
      padding-right: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-l,
    .row-fluid-wrapper.dnd-section--custom.py-large-l,
    .py-large-l {
      padding-top: var(--spacing-large-l) !important;
      padding-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-l,
    .row-fluid-wrapper.dnd-section--custom.pt-large-l,
    .pt-large-l {
      padding-top: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-l,
    .row-fluid-wrapper.dnd-section--custom.pb-large-l,
    .pb-large-l {
      padding-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-l,
    .row-fluid-wrapper.dnd-section--custom.pl-large-l,
    .pl-large-l {
      padding-left: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-l,
    .row-fluid-wrapper.dnd-section--custom.pr-large-l,
    .pr-large-l {
      padding-right: var(--spacing-large-l) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-large-m {
      margin: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-m,
    .row-fluid-wrapper.dnd-section--custom.mx-large-m,
    .mx-large-m {
      margin-left: var(--spacing-large-m) !important;
      margin-right: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-m,
    .row-fluid-wrapper.dnd-section--custom.my-large-m,
    .my-large-m {
      margin-top: var(--spacing-large-m) !important;
      margin-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-m,
    .row-fluid-wrapper.dnd-section--custom.mt-large-m,
    .mt-large-m {
      margin-top: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-m,
    .row-fluid-wrapper.dnd-section--custom.mb-large-m,
    .mb-large-m {
      margin-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-m,
    .row-fluid-wrapper.dnd-section--custom.ml-large-m,
    .ml-large-m {
      margin-left: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-m,
    .row-fluid-wrapper.dnd-section--custom.mr-large-m,
    .mr-large-m {
      margin-right: var(--spacing-large-m) !important;
    }
  
    .p-large-m {
      padding: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-m,
    .row-fluid-wrapper.dnd-section--custom.px-large-m,
    .px-large-m {
      padding-left: var(--spacing-large-m) !important;
      padding-right: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-m,
    .row-fluid-wrapper.dnd-section--custom.py-large-m,
    .py-large-m {
      padding-top: var(--spacing-large-m) !important;
      padding-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-m,
    .row-fluid-wrapper.dnd-section--custom.pt-large-m,
    .pt-large-m {
      padding-top: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-m,
    .row-fluid-wrapper.dnd-section--custom.pb-large-m,
    .pb-large-m {
      padding-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-m,
    .row-fluid-wrapper.dnd-section--custom.pl-large-m,
    .pl-large-m {
      padding-left: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-m,
    .row-fluid-wrapper.dnd-section--custom.pr-large-m,
    .pr-large-m {
      padding-right: var(--spacing-large-m) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-large-s {
      margin: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-large-s,
    .row-fluid-wrapper.dnd-section--custom.mx-large-s,
    .mx-large-s {
      margin-left: var(--spacing-large-s) !important;
      margin-right: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-large-s,
    .row-fluid-wrapper.dnd-section--custom.my-large-s,
    .my-large-s {
      margin-top: var(--spacing-large-s) !important;
      margin-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-large-s,
    .row-fluid-wrapper.dnd-section--custom.mt-large-s,
    .mt-large-s {
      margin-top: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-large-s,
    .row-fluid-wrapper.dnd-section--custom.mb-large-s,
    .mb-large-s {
      margin-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-large-s,
    .row-fluid-wrapper.dnd-section--custom.ml-large-s,
    .ml-large-s {
      margin-left: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-large-s,
    .row-fluid-wrapper.dnd-section--custom.mr-large-s,
    .mr-large-s {
      margin-right: var(--spacing-large-s) !important;
    }
  
    .p-large-s {
      padding: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-large-s,
    .row-fluid-wrapper.dnd-section--custom.px-large-s,
    .px-large-s {
      padding-left: var(--spacing-large-s) !important;
      padding-right: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-large-s,
    .row-fluid-wrapper.dnd-section--custom.py-large-s,
    .py-large-s {
      padding-top: var(--spacing-large-s) !important;
      padding-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-large-s,
    .row-fluid-wrapper.dnd-section--custom.pt-large-s,
    .pt-large-s {
      padding-top: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-large-s,
    .row-fluid-wrapper.dnd-section--custom.pb-large-s,
    .pb-large-s {
      padding-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-large-s,
    .row-fluid-wrapper.dnd-section--custom.pl-large-s,
    .pl-large-s {
      padding-left: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-large-s,
    .row-fluid-wrapper.dnd-section--custom.pr-large-s,
    .pr-large-s {
      padding-right: var(--spacing-large-s) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-medium-xl {
      margin: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-xl,
    .mx-medium-xl {
      margin-left: var(--spacing-medium-xl) !important;
      margin-right: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.my-medium-xl,
    .my-medium-xl {
      margin-top: var(--spacing-medium-xl) !important;
      margin-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-xl,
    .mt-medium-xl {
      margin-top: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-xl,
    .mb-medium-xl {
      margin-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-xl,
    .ml-medium-xl {
      margin-left: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-xl,
    .mr-medium-xl {
      margin-right: var(--spacing-medium-xl) !important;
    }
  
    .p-medium-xl {
      padding: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.px-medium-xl,
    .px-medium-xl {
      padding-left: var(--spacing-medium-xl) !important;
      padding-right: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.py-medium-xl,
    .py-medium-xl {
      padding-top: var(--spacing-medium-xl) !important;
      padding-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-xl,
    .pt-medium-xl {
      padding-top: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-xl,
    .pb-medium-xl {
      padding-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-xl,
    .pl-medium-xl {
      padding-left: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-xl,
    .pr-medium-xl {
      padding-right: var(--spacing-medium-xl) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-medium-l {
      margin: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-l,
    .mx-medium-l {
      margin-left: var(--spacing-medium-l) !important;
      margin-right: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-l,
    .row-fluid-wrapper.dnd-section--custom.my-medium-l,
    .my-medium-l {
      margin-top: var(--spacing-medium-l) !important;
      margin-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-l,
    .mt-medium-l {
      margin-top: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-l,
    .mb-medium-l {
      margin-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-l,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-l,
    .ml-medium-l {
      margin-left: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-l,
    .mr-medium-l {
      margin-right: var(--spacing-medium-l) !important;
    }
  
    .p-medium-l {
      padding: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-l,
    .row-fluid-wrapper.dnd-section--custom.px-medium-l,
    .px-medium-l {
      padding-left: var(--spacing-medium-l) !important;
      padding-right: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-l,
    .row-fluid-wrapper.dnd-section--custom.py-medium-l,
    .py-medium-l {
      padding-top: var(--spacing-medium-l) !important;
      padding-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-l,
    .pt-medium-l {
      padding-top: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-l,
    .pb-medium-l {
      padding-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-l,
    .pl-medium-l {
      padding-left: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-l,
    .pr-medium-l {
      padding-right: var(--spacing-medium-l) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-medium-m {
      margin: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-m,
    .mx-medium-m {
      margin-left: var(--spacing-medium-m) !important;
      margin-right: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-m,
    .row-fluid-wrapper.dnd-section--custom.my-medium-m,
    .my-medium-m {
      margin-top: var(--spacing-medium-m) !important;
      margin-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-m,
    .mt-medium-m {
      margin-top: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-m,
    .mb-medium-m {
      margin-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-m,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-m,
    .ml-medium-m {
      margin-left: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-m,
    .mr-medium-m {
      margin-right: var(--spacing-medium-m) !important;
    }
  
    .p-medium-m {
      padding: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-m,
    .row-fluid-wrapper.dnd-section--custom.px-medium-m,
    .px-medium-m {
      padding-left: var(--spacing-medium-m) !important;
      padding-right: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-m,
    .row-fluid-wrapper.dnd-section--custom.py-medium-m,
    .py-medium-m {
      padding-top: var(--spacing-medium-m) !important;
      padding-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-m,
    .pt-medium-m {
      padding-top: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-m,
    .pb-medium-m {
      padding-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-m,
    .pl-medium-m {
      padding-left: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-m,
    .pr-medium-m {
      padding-right: var(--spacing-medium-m) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-medium-s {
      margin: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mx-medium-s,
    .mx-medium-s {
      margin-left: var(--spacing-medium-s) !important;
      margin-right: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-medium-s,
    .row-fluid-wrapper.dnd-section--custom.my-medium-s,
    .my-medium-s {
      margin-top: var(--spacing-medium-s) !important;
      margin-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mt-medium-s,
    .mt-medium-s {
      margin-top: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mb-medium-s,
    .mb-medium-s {
      margin-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-medium-s,
    .row-fluid-wrapper.dnd-section--custom.ml-medium-s,
    .ml-medium-s {
      margin-left: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mr-medium-s,
    .mr-medium-s {
      margin-right: var(--spacing-medium-s) !important;
    }
  
    .p-medium-s {
      padding: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-medium-s,
    .row-fluid-wrapper.dnd-section--custom.px-medium-s,
    .px-medium-s {
      padding-left: var(--spacing-medium-s) !important;
      padding-right: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-medium-s,
    .row-fluid-wrapper.dnd-section--custom.py-medium-s,
    .py-medium-s {
      padding-top: var(--spacing-medium-s) !important;
      padding-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pt-medium-s,
    .pt-medium-s {
      padding-top: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pb-medium-s,
    .pb-medium-s {
      padding-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pl-medium-s,
    .pl-medium-s {
      padding-left: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pr-medium-s,
    .pr-medium-s {
      padding-right: var(--spacing-medium-s) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-small-xl {
      margin: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-small-xl,
    .mx-small-xl {
      margin-left: var(--spacing-small-xl) !important;
      margin-right: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-xl,
    .row-fluid-wrapper.dnd-section--custom.my-small-xl,
    .my-small-xl {
      margin-top: var(--spacing-small-xl) !important;
      margin-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-small-xl,
    .mt-small-xl {
      margin-top: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-small-xl,
    .mb-small-xl {
      margin-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-small-xl,
    .ml-small-xl {
      margin-left: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-small-xl,
    .mr-small-xl {
      margin-right: var(--spacing-small-xl) !important;
    }
  
    .p-small-xl {
      padding: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-xl,
    .row-fluid-wrapper.dnd-section--custom.px-small-xl,
    .px-small-xl {
      padding-left: var(--spacing-small-xl) !important;
      padding-right: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-xl,
    .row-fluid-wrapper.dnd-section--custom.py-small-xl,
    .py-small-xl {
      padding-top: var(--spacing-small-xl) !important;
      padding-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-small-xl,
    .pt-small-xl {
      padding-top: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-small-xl,
    .pb-small-xl {
      padding-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-small-xl,
    .pl-small-xl {
      padding-left: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-small-xl,
    .pr-small-xl {
      padding-right: var(--spacing-small-xl) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-small-l {
      margin: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-l,
    .row-fluid-wrapper.dnd-section--custom.mx-small-l,
    .mx-small-l {
      margin-left: var(--spacing-small-l) !important;
      margin-right: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-l,
    .row-fluid-wrapper.dnd-section--custom.my-small-l,
    .my-small-l {
      margin-top: var(--spacing-small-l) !important;
      margin-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-l,
    .row-fluid-wrapper.dnd-section--custom.mt-small-l,
    .mt-small-l {
      margin-top: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-l,
    .row-fluid-wrapper.dnd-section--custom.mb-small-l,
    .mb-small-l {
      margin-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-l,
    .row-fluid-wrapper.dnd-section--custom.ml-small-l,
    .ml-small-l {
      margin-left: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-l,
    .row-fluid-wrapper.dnd-section--custom.mr-small-l,
    .mr-small-l {
      margin-right: var(--spacing-small-l) !important;
    }
  
    .p-small-l {
      padding: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-l,
    .row-fluid-wrapper.dnd-section--custom.px-small-l,
    .px-small-l {
      padding-left: var(--spacing-small-l) !important;
      padding-right: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-l,
    .row-fluid-wrapper.dnd-section--custom.py-small-l,
    .py-small-l {
      padding-top: var(--spacing-small-l) !important;
      padding-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-l,
    .row-fluid-wrapper.dnd-section--custom.pt-small-l,
    .pt-small-l {
      padding-top: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-l,
    .row-fluid-wrapper.dnd-section--custom.pb-small-l,
    .pb-small-l {
      padding-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-l,
    .row-fluid-wrapper.dnd-section--custom.pl-small-l,
    .pl-small-l {
      padding-left: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-l,
    .row-fluid-wrapper.dnd-section--custom.pr-small-l,
    .pr-small-l {
      padding-right: var(--spacing-small-l) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-small-m {
      margin: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-m,
    .row-fluid-wrapper.dnd-section--custom.mx-small-m,
    .mx-small-m {
      margin-left: var(--spacing-small-m) !important;
      margin-right: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-m,
    .row-fluid-wrapper.dnd-section--custom.my-small-m,
    .my-small-m {
      margin-top: var(--spacing-small-m) !important;
      margin-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-m,
    .row-fluid-wrapper.dnd-section--custom.mt-small-m,
    .mt-small-m {
      margin-top: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-m,
    .row-fluid-wrapper.dnd-section--custom.mb-small-m,
    .mb-small-m {
      margin-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-m,
    .row-fluid-wrapper.dnd-section--custom.ml-small-m,
    .ml-small-m {
      margin-left: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-m,
    .row-fluid-wrapper.dnd-section--custom.mr-small-m,
    .mr-small-m {
      margin-right: var(--spacing-small-m) !important;
    }
  
    .p-small-m {
      padding: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-m,
    .row-fluid-wrapper.dnd-section--custom.px-small-m,
    .px-small-m {
      padding-left: var(--spacing-small-m) !important;
      padding-right: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-m,
    .row-fluid-wrapper.dnd-section--custom.py-small-m,
    .py-small-m {
      padding-top: var(--spacing-small-m) !important;
      padding-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-m,
    .row-fluid-wrapper.dnd-section--custom.pt-small-m,
    .pt-small-m {
      padding-top: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-m,
    .row-fluid-wrapper.dnd-section--custom.pb-small-m,
    .pb-small-m {
      padding-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-m,
    .row-fluid-wrapper.dnd-section--custom.pl-small-m,
    .pl-small-m {
      padding-left: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-m,
    .row-fluid-wrapper.dnd-section--custom.pr-small-m,
    .pr-small-m {
      padding-right: var(--spacing-small-m) !important;
    }
  

        
  
  
  

  

  
    
  

  

  
    .m-small-s {
      margin: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-small-s,
    .row-fluid-wrapper.dnd-section--custom.mx-small-s,
    .mx-small-s {
      margin-left: var(--spacing-small-s) !important;
      margin-right: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-small-s,
    .row-fluid-wrapper.dnd-section--custom.my-small-s,
    .my-small-s {
      margin-top: var(--spacing-small-s) !important;
      margin-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-small-s,
    .row-fluid-wrapper.dnd-section--custom.mt-small-s,
    .mt-small-s {
      margin-top: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-small-s,
    .row-fluid-wrapper.dnd-section--custom.mb-small-s,
    .mb-small-s {
      margin-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-small-s,
    .row-fluid-wrapper.dnd-section--custom.ml-small-s,
    .ml-small-s {
      margin-left: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-small-s,
    .row-fluid-wrapper.dnd-section--custom.mr-small-s,
    .mr-small-s {
      margin-right: var(--spacing-small-s) !important;
    }
  
    .p-small-s {
      padding: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-small-s,
    .row-fluid-wrapper.dnd-section--custom.px-small-s,
    .px-small-s {
      padding-left: var(--spacing-small-s) !important;
      padding-right: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-small-s,
    .row-fluid-wrapper.dnd-section--custom.py-small-s,
    .py-small-s {
      padding-top: var(--spacing-small-s) !important;
      padding-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-small-s,
    .row-fluid-wrapper.dnd-section--custom.pt-small-s,
    .pt-small-s {
      padding-top: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-small-s,
    .row-fluid-wrapper.dnd-section--custom.pb-small-s,
    .pb-small-s {
      padding-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-small-s,
    .row-fluid-wrapper.dnd-section--custom.pl-small-s,
    .pl-small-s {
      padding-left: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-small-s,
    .row-fluid-wrapper.dnd-section--custom.pr-small-s,
    .pr-small-s {
      padding-right: var(--spacing-small-s) !important;
    }
  

        
  
  
  

  
    
  

  
    
  

  

  
    .m-none {
      margin: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-none,
    .row-fluid-wrapper.dnd-section--custom.mx-none,
    .mx-none {
      margin-left: 0px !important;
      margin-right: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.my-none,
    .row-fluid-wrapper.dnd-section--custom.my-none,
    .my-none {
      margin-top: 0px !important;
      margin-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-none,
    .row-fluid-wrapper.dnd-section--custom.mt-none,
    .mt-none {
      margin-top: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-none,
    .row-fluid-wrapper.dnd-section--custom.mb-none,
    .mb-none {
      margin-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-none,
    .row-fluid-wrapper.dnd-section--custom.ml-none,
    .ml-none {
      margin-left: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-none,
    .row-fluid-wrapper.dnd-section--custom.mr-none,
    .mr-none {
      margin-right: 0px !important;
    }
  
    .p-none {
      padding: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.px-none,
    .row-fluid-wrapper.dnd-section--custom.px-none,
    .px-none {
      padding-left: 0px !important;
      padding-right: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.py-none,
    .row-fluid-wrapper.dnd-section--custom.py-none,
    .py-none {
      padding-top: 0px !important;
      padding-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-none,
    .row-fluid-wrapper.dnd-section--custom.pt-none,
    .pt-none {
      padding-top: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-none,
    .row-fluid-wrapper.dnd-section--custom.pb-none,
    .pb-none {
      padding-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-none,
    .row-fluid-wrapper.dnd-section--custom.pl-none,
    .pl-none {
      padding-left: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-none,
    .row-fluid-wrapper.dnd-section--custom.pr-none,
    .pr-none {
      padding-right: 0px !important;
    }
  

    
        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-large-xxl {
      margin: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-large-xxl,
    .mx-sm-large-xxl {
      margin-left: var(--spacing-large-xxl) !important;
      margin-right: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.my-sm-large-xxl,
    .my-sm-large-xxl {
      margin-top: var(--spacing-large-xxl) !important;
      margin-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-large-xxl,
    .mt-sm-large-xxl {
      margin-top: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-large-xxl,
    .mb-sm-large-xxl {
      margin-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-large-xxl,
    .ml-sm-large-xxl {
      margin-left: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-large-xxl,
    .mr-sm-large-xxl {
      margin-right: var(--spacing-large-xxl) !important;
    }
  
    .p-sm-large-xxl {
      padding: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.px-sm-large-xxl,
    .px-sm-large-xxl {
      padding-left: var(--spacing-large-xxl) !important;
      padding-right: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.py-sm-large-xxl,
    .py-sm-large-xxl {
      padding-top: var(--spacing-large-xxl) !important;
      padding-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-large-xxl,
    .pt-sm-large-xxl {
      padding-top: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-large-xxl,
    .pb-sm-large-xxl {
      padding-bottom: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-large-xxl,
    .pl-sm-large-xxl {
      padding-left: var(--spacing-large-xxl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-large-xxl,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-large-xxl,
    .pr-sm-large-xxl {
      padding-right: var(--spacing-large-xxl) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-large-xl {
      margin: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-large-xl,
    .mx-sm-large-xl {
      margin-left: var(--spacing-large-xl) !important;
      margin-right: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.my-sm-large-xl,
    .my-sm-large-xl {
      margin-top: var(--spacing-large-xl) !important;
      margin-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-large-xl,
    .mt-sm-large-xl {
      margin-top: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-large-xl,
    .mb-sm-large-xl {
      margin-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-large-xl,
    .ml-sm-large-xl {
      margin-left: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-large-xl,
    .mr-sm-large-xl {
      margin-right: var(--spacing-large-xl) !important;
    }
  
    .p-sm-large-xl {
      padding: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.px-sm-large-xl,
    .px-sm-large-xl {
      padding-left: var(--spacing-large-xl) !important;
      padding-right: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.py-sm-large-xl,
    .py-sm-large-xl {
      padding-top: var(--spacing-large-xl) !important;
      padding-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-large-xl,
    .pt-sm-large-xl {
      padding-top: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-large-xl,
    .pb-sm-large-xl {
      padding-bottom: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-large-xl,
    .pl-sm-large-xl {
      padding-left: var(--spacing-large-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-large-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-large-xl,
    .pr-sm-large-xl {
      padding-right: var(--spacing-large-xl) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-large-l {
      margin: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-large-l,
    .mx-sm-large-l {
      margin-left: var(--spacing-large-l) !important;
      margin-right: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.my-sm-large-l,
    .my-sm-large-l {
      margin-top: var(--spacing-large-l) !important;
      margin-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-large-l,
    .mt-sm-large-l {
      margin-top: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-large-l,
    .mb-sm-large-l {
      margin-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-large-l,
    .ml-sm-large-l {
      margin-left: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-large-l,
    .mr-sm-large-l {
      margin-right: var(--spacing-large-l) !important;
    }
  
    .p-sm-large-l {
      padding: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.px-sm-large-l,
    .px-sm-large-l {
      padding-left: var(--spacing-large-l) !important;
      padding-right: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.py-sm-large-l,
    .py-sm-large-l {
      padding-top: var(--spacing-large-l) !important;
      padding-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-large-l,
    .pt-sm-large-l {
      padding-top: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-large-l,
    .pb-sm-large-l {
      padding-bottom: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-large-l,
    .pl-sm-large-l {
      padding-left: var(--spacing-large-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-large-l,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-large-l,
    .pr-sm-large-l {
      padding-right: var(--spacing-large-l) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-large-m {
      margin: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-large-m,
    .mx-sm-large-m {
      margin-left: var(--spacing-large-m) !important;
      margin-right: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.my-sm-large-m,
    .my-sm-large-m {
      margin-top: var(--spacing-large-m) !important;
      margin-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-large-m,
    .mt-sm-large-m {
      margin-top: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-large-m,
    .mb-sm-large-m {
      margin-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-large-m,
    .ml-sm-large-m {
      margin-left: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-large-m,
    .mr-sm-large-m {
      margin-right: var(--spacing-large-m) !important;
    }
  
    .p-sm-large-m {
      padding: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.px-sm-large-m,
    .px-sm-large-m {
      padding-left: var(--spacing-large-m) !important;
      padding-right: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.py-sm-large-m,
    .py-sm-large-m {
      padding-top: var(--spacing-large-m) !important;
      padding-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-large-m,
    .pt-sm-large-m {
      padding-top: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-large-m,
    .pb-sm-large-m {
      padding-bottom: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-large-m,
    .pl-sm-large-m {
      padding-left: var(--spacing-large-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-large-m,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-large-m,
    .pr-sm-large-m {
      padding-right: var(--spacing-large-m) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-large-s {
      margin: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-large-s,
    .mx-sm-large-s {
      margin-left: var(--spacing-large-s) !important;
      margin-right: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.my-sm-large-s,
    .my-sm-large-s {
      margin-top: var(--spacing-large-s) !important;
      margin-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-large-s,
    .mt-sm-large-s {
      margin-top: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-large-s,
    .mb-sm-large-s {
      margin-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-large-s,
    .ml-sm-large-s {
      margin-left: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-large-s,
    .mr-sm-large-s {
      margin-right: var(--spacing-large-s) !important;
    }
  
    .p-sm-large-s {
      padding: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.px-sm-large-s,
    .px-sm-large-s {
      padding-left: var(--spacing-large-s) !important;
      padding-right: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.py-sm-large-s,
    .py-sm-large-s {
      padding-top: var(--spacing-large-s) !important;
      padding-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-large-s,
    .pt-sm-large-s {
      padding-top: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-large-s,
    .pb-sm-large-s {
      padding-bottom: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-large-s,
    .pl-sm-large-s {
      padding-left: var(--spacing-large-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-large-s,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-large-s,
    .pr-sm-large-s {
      padding-right: var(--spacing-large-s) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-medium-xl {
      margin: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-medium-xl,
    .mx-sm-medium-xl {
      margin-left: var(--spacing-medium-xl) !important;
      margin-right: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.my-sm-medium-xl,
    .my-sm-medium-xl {
      margin-top: var(--spacing-medium-xl) !important;
      margin-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-medium-xl,
    .mt-sm-medium-xl {
      margin-top: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-medium-xl,
    .mb-sm-medium-xl {
      margin-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-medium-xl,
    .ml-sm-medium-xl {
      margin-left: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-medium-xl,
    .mr-sm-medium-xl {
      margin-right: var(--spacing-medium-xl) !important;
    }
  
    .p-sm-medium-xl {
      padding: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.px-sm-medium-xl,
    .px-sm-medium-xl {
      padding-left: var(--spacing-medium-xl) !important;
      padding-right: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.py-sm-medium-xl,
    .py-sm-medium-xl {
      padding-top: var(--spacing-medium-xl) !important;
      padding-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-medium-xl,
    .pt-sm-medium-xl {
      padding-top: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-medium-xl,
    .pb-sm-medium-xl {
      padding-bottom: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-medium-xl,
    .pl-sm-medium-xl {
      padding-left: var(--spacing-medium-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-medium-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-medium-xl,
    .pr-sm-medium-xl {
      padding-right: var(--spacing-medium-xl) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-medium-l {
      margin: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-medium-l,
    .mx-sm-medium-l {
      margin-left: var(--spacing-medium-l) !important;
      margin-right: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.my-sm-medium-l,
    .my-sm-medium-l {
      margin-top: var(--spacing-medium-l) !important;
      margin-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-medium-l,
    .mt-sm-medium-l {
      margin-top: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-medium-l,
    .mb-sm-medium-l {
      margin-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-medium-l,
    .ml-sm-medium-l {
      margin-left: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-medium-l,
    .mr-sm-medium-l {
      margin-right: var(--spacing-medium-l) !important;
    }
  
    .p-sm-medium-l {
      padding: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.px-sm-medium-l,
    .px-sm-medium-l {
      padding-left: var(--spacing-medium-l) !important;
      padding-right: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.py-sm-medium-l,
    .py-sm-medium-l {
      padding-top: var(--spacing-medium-l) !important;
      padding-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-medium-l,
    .pt-sm-medium-l {
      padding-top: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-medium-l,
    .pb-sm-medium-l {
      padding-bottom: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-medium-l,
    .pl-sm-medium-l {
      padding-left: var(--spacing-medium-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-medium-l,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-medium-l,
    .pr-sm-medium-l {
      padding-right: var(--spacing-medium-l) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-medium-m {
      margin: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-medium-m,
    .mx-sm-medium-m {
      margin-left: var(--spacing-medium-m) !important;
      margin-right: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.my-sm-medium-m,
    .my-sm-medium-m {
      margin-top: var(--spacing-medium-m) !important;
      margin-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-medium-m,
    .mt-sm-medium-m {
      margin-top: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-medium-m,
    .mb-sm-medium-m {
      margin-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-medium-m,
    .ml-sm-medium-m {
      margin-left: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-medium-m,
    .mr-sm-medium-m {
      margin-right: var(--spacing-medium-m) !important;
    }
  
    .p-sm-medium-m {
      padding: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.px-sm-medium-m,
    .px-sm-medium-m {
      padding-left: var(--spacing-medium-m) !important;
      padding-right: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.py-sm-medium-m,
    .py-sm-medium-m {
      padding-top: var(--spacing-medium-m) !important;
      padding-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-medium-m,
    .pt-sm-medium-m {
      padding-top: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-medium-m,
    .pb-sm-medium-m {
      padding-bottom: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-medium-m,
    .pl-sm-medium-m {
      padding-left: var(--spacing-medium-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-medium-m,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-medium-m,
    .pr-sm-medium-m {
      padding-right: var(--spacing-medium-m) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-medium-s {
      margin: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-medium-s,
    .mx-sm-medium-s {
      margin-left: var(--spacing-medium-s) !important;
      margin-right: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.my-sm-medium-s,
    .my-sm-medium-s {
      margin-top: var(--spacing-medium-s) !important;
      margin-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-medium-s,
    .mt-sm-medium-s {
      margin-top: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-medium-s,
    .mb-sm-medium-s {
      margin-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-medium-s,
    .ml-sm-medium-s {
      margin-left: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-medium-s,
    .mr-sm-medium-s {
      margin-right: var(--spacing-medium-s) !important;
    }
  
    .p-sm-medium-s {
      padding: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.px-sm-medium-s,
    .px-sm-medium-s {
      padding-left: var(--spacing-medium-s) !important;
      padding-right: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.py-sm-medium-s,
    .py-sm-medium-s {
      padding-top: var(--spacing-medium-s) !important;
      padding-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-medium-s,
    .pt-sm-medium-s {
      padding-top: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-medium-s,
    .pb-sm-medium-s {
      padding-bottom: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-medium-s,
    .pl-sm-medium-s {
      padding-left: var(--spacing-medium-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-medium-s,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-medium-s,
    .pr-sm-medium-s {
      padding-right: var(--spacing-medium-s) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-small-xl {
      margin: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-small-xl,
    .mx-sm-small-xl {
      margin-left: var(--spacing-small-xl) !important;
      margin-right: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.my-sm-small-xl,
    .my-sm-small-xl {
      margin-top: var(--spacing-small-xl) !important;
      margin-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-small-xl,
    .mt-sm-small-xl {
      margin-top: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-small-xl,
    .mb-sm-small-xl {
      margin-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-small-xl,
    .ml-sm-small-xl {
      margin-left: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-small-xl,
    .mr-sm-small-xl {
      margin-right: var(--spacing-small-xl) !important;
    }
  
    .p-sm-small-xl {
      padding: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.px-sm-small-xl,
    .px-sm-small-xl {
      padding-left: var(--spacing-small-xl) !important;
      padding-right: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.py-sm-small-xl,
    .py-sm-small-xl {
      padding-top: var(--spacing-small-xl) !important;
      padding-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-small-xl,
    .pt-sm-small-xl {
      padding-top: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-small-xl,
    .pb-sm-small-xl {
      padding-bottom: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-small-xl,
    .pl-sm-small-xl {
      padding-left: var(--spacing-small-xl) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-small-xl,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-small-xl,
    .pr-sm-small-xl {
      padding-right: var(--spacing-small-xl) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-small-l {
      margin: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-small-l,
    .mx-sm-small-l {
      margin-left: var(--spacing-small-l) !important;
      margin-right: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.my-sm-small-l,
    .my-sm-small-l {
      margin-top: var(--spacing-small-l) !important;
      margin-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-small-l,
    .mt-sm-small-l {
      margin-top: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-small-l,
    .mb-sm-small-l {
      margin-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-small-l,
    .ml-sm-small-l {
      margin-left: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-small-l,
    .mr-sm-small-l {
      margin-right: var(--spacing-small-l) !important;
    }
  
    .p-sm-small-l {
      padding: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.px-sm-small-l,
    .px-sm-small-l {
      padding-left: var(--spacing-small-l) !important;
      padding-right: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.py-sm-small-l,
    .py-sm-small-l {
      padding-top: var(--spacing-small-l) !important;
      padding-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-small-l,
    .pt-sm-small-l {
      padding-top: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-small-l,
    .pb-sm-small-l {
      padding-bottom: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-small-l,
    .pl-sm-small-l {
      padding-left: var(--spacing-small-l) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-small-l,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-small-l,
    .pr-sm-small-l {
      padding-right: var(--spacing-small-l) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-small-m {
      margin: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-small-m,
    .mx-sm-small-m {
      margin-left: var(--spacing-small-m) !important;
      margin-right: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.my-sm-small-m,
    .my-sm-small-m {
      margin-top: var(--spacing-small-m) !important;
      margin-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-small-m,
    .mt-sm-small-m {
      margin-top: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-small-m,
    .mb-sm-small-m {
      margin-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-small-m,
    .ml-sm-small-m {
      margin-left: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-small-m,
    .mr-sm-small-m {
      margin-right: var(--spacing-small-m) !important;
    }
  
    .p-sm-small-m {
      padding: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.px-sm-small-m,
    .px-sm-small-m {
      padding-left: var(--spacing-small-m) !important;
      padding-right: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.py-sm-small-m,
    .py-sm-small-m {
      padding-top: var(--spacing-small-m) !important;
      padding-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-small-m,
    .pt-sm-small-m {
      padding-top: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-small-m,
    .pb-sm-small-m {
      padding-bottom: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-small-m,
    .pl-sm-small-m {
      padding-left: var(--spacing-small-m) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-small-m,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-small-m,
    .pr-sm-small-m {
      padding-right: var(--spacing-small-m) !important;
    }
  

        
  
  
  

  

  
    
  

  
    
  

  
    .m-sm-small-s {
      margin: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-small-s,
    .mx-sm-small-s {
      margin-left: var(--spacing-small-s) !important;
      margin-right: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.my-sm-small-s,
    .my-sm-small-s {
      margin-top: var(--spacing-small-s) !important;
      margin-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-small-s,
    .mt-sm-small-s {
      margin-top: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-small-s,
    .mb-sm-small-s {
      margin-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-small-s,
    .ml-sm-small-s {
      margin-left: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-small-s,
    .mr-sm-small-s {
      margin-right: var(--spacing-small-s) !important;
    }
  
    .p-sm-small-s {
      padding: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.px-sm-small-s,
    .px-sm-small-s {
      padding-left: var(--spacing-small-s) !important;
      padding-right: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.py-sm-small-s,
    .py-sm-small-s {
      padding-top: var(--spacing-small-s) !important;
      padding-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-small-s,
    .pt-sm-small-s {
      padding-top: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-small-s,
    .pb-sm-small-s {
      padding-bottom: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-small-s,
    .pl-sm-small-s {
      padding-left: var(--spacing-small-s) !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-small-s,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-small-s,
    .pr-sm-small-s {
      padding-right: var(--spacing-small-s) !important;
    }
  

        
  
  
  

  
    
  

  
    
  

  
    
  

  
    .m-sm-none {
      margin: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mx-sm-none,
    .row-fluid-wrapper.dnd-section--custom.mx-sm-none,
    .mx-sm-none {
      margin-left: 0px !important;
      margin-right: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.my-sm-none,
    .row-fluid-wrapper.dnd-section--custom.my-sm-none,
    .my-sm-none {
      margin-top: 0px !important;
      margin-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mt-sm-none,
    .row-fluid-wrapper.dnd-section--custom.mt-sm-none,
    .mt-sm-none {
      margin-top: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mb-sm-none,
    .row-fluid-wrapper.dnd-section--custom.mb-sm-none,
    .mb-sm-none {
      margin-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.ml-sm-none,
    .row-fluid-wrapper.dnd-section--custom.ml-sm-none,
    .ml-sm-none {
      margin-left: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.mr-sm-none,
    .row-fluid-wrapper.dnd-section--custom.mr-sm-none,
    .mr-sm-none {
      margin-right: 0px !important;
    }
  
    .p-sm-none {
      padding: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.px-sm-none,
    .row-fluid-wrapper.dnd-section--custom.px-sm-none,
    .px-sm-none {
      padding-left: 0px !important;
      padding-right: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.py-sm-none,
    .row-fluid-wrapper.dnd-section--custom.py-sm-none,
    .py-sm-none {
      padding-top: 0px !important;
      padding-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pt-sm-none,
    .row-fluid-wrapper.dnd-section--custom.pt-sm-none,
    .pt-sm-none {
      padding-top: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pb-sm-none,
    .row-fluid-wrapper.dnd-section--custom.pb-sm-none,
    .pb-sm-none {
      padding-bottom: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pl-sm-none,
    .row-fluid-wrapper.dnd-section--custom.pl-sm-none,
    .pl-sm-none {
      padding-left: 0px !important;
    }
    .row-fluid-wrapper.section-modal-box.pr-sm-none,
    .row-fluid-wrapper.dnd-section--custom.pr-sm-none,
    .pr-sm-none {
      padding-right: 0px !important;
    }
  

    
}

/* Border
Border classes
*/




  
    .border-radius--none img {
      border-radius: 0;
    }
  


  
    .border-radius--tiny img {
      border-radius: var(--border-radius-tiny);
    }
  


  
    .border-radius--small img {
      border-radius: var(--border-radius-small);
    }
  


  
    .border-radius--medium img {
      border-radius: var(--border-radius-medium);
    }
  


  
    .border-radius--large img {
      border-radius: var(--border-radius-large);
    }
  


  
    .border-radius--full img {
      border-radius: var(--border-radius-full);
    }
  


/* Slick
Slider styling
*/
/* Slick arrow */
.slick-slider .svg-icon {
  background: var(--icon-background-default-color);
}
.slick-slider .slick-arrow:hover .svg-icon,
.slick-slider .slick-arrow:focus .svg-icon {
    background: var(--icon-background-hover-color);
}

/* Slick dotted */
.slick-dotted .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dotted .slick-dots li button::before {
    display: none;
}

.slick-dotted .slick-dots li {
    width: 16px;
    height: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dotted .slick-dots li button {
    background: var(--dot-background-default-color);
    border: 1px solid transparent;
    width: 8px;
    height: 8px;
    line-height: 8px;
    display: inline-block;
}

.slick-dotted .slick-dots li:not(.slick-active) button {
    opacity: 0.1;
}

.slick-dotted .slick-dots li.slick-active button {
    background: var(--color-text-highlight);
    border-color: transparent;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

/* Helper
Utilities helpers classes
*/
/* Shadow classes */
.shadow--none {
    box-shadow: none;
}

.shadow--light {
    box-shadow: var(--shadow-light);
}

.shadow--moderate {
    box-shadow: var(--shadow-moderate);
}

.shadow--strong {
    box-shadow: var(--shadow-strong);
}


/* Opacity classes */
.opacity--none {
    opacity: 0;
}

.opacity--semi {
    opacity: var(--opacity-semi);
}

.opacity--moderate {
    opacity: var(--opacity-moderate);
}

.opacity--mostly-opaque {
    opacity: var(--opacity-mostly-opaque);
}

.opacity--opaque {
    opacity: var(--opacity-opaque);
}

/* Lazy bg */
.lazybg {
    background-image: none !important
}

/* DnD
Containers dnd
*/
/***

====================================================================
    DnD container
====================================================================

***/
[class*="force-full-width-section"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
[class*="force-full-width-section"] > .row-fluid {
    max-width: 100% !important;
}
[class*="force-full-width-section"] .dnd-column {
    padding-left: 0 ;
    padding-right: 0;
}
[class*="force-full-width-section"] .row-fluid [class*='span'] {
    min-height: 0;
}
html:not(.hs-inline-edit) .row-depth-1 > .row-fluid  > .dnd-column {
    padding-left: 0;
    padding-right: 0;
}

/* Animation
Animations classes
*/
@keyframes pop {
    from {
        opacity: 0;
        transform: scale(.9) translateZ(0);
    }
    to {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes slideLeft {
    from {
      margin-left: 100%;
    }
    to {
      margin-left: 0%;
    }
}

@keyframes slideRight {
    from {
      margin-left: -100%;
    }
    to {
      margin-left: 0%;
    }
}

/* Utilities
Helper classes
*/


/* Typography classes */
.text-left {
  text-align: left;
}

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

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

/* Bootstrap 4 display classes */
.d-none {
    display: none !important;
}
  
.d-inline {
    display: inline !important;
}
  
.d-inline-block {
    display: inline-block !important;
}
  
.d-block {
    display: block !important;
}
  
.d-table {
    display: table !important;
}
  
.d-table-row {
    display: table-row !important;
}  

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
} 

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
      display: none !important;
    }

    .d-sm-inline {
      display: inline !important;
    }

    .d-sm-inline-block {
      display: inline-block !important;
    }

    .d-sm-block {
      display: block !important;
    }

    .d-sm-table {
      display: table !important;
    }

    .d-sm-table-row {
      display: table-row !important;
    }

    .d-sm-table-cell {
      display: table-cell !important;
    }

    .d-sm-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }

    .d-sm-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
}
  
@media (min-width: 768px) {
    .d-md-none {
      display: none !important;
    }

    .d-md-inline {
      display: inline !important;
    }

    .d-md-inline-block {
      display: inline-block !important;
    }

    .d-md-block {
      display: block !important;
    }

    .d-md-table {
      display: table !important;
    }

    .d-md-table-row {
      display: table-row !important;
    }

    .d-md-table-cell {
      display: table-cell !important;
    }

    .d-md-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }

    .d-md-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
}
  
@media (min-width: 992px) {
    .d-lg-none {
      display: none !important;
    }

    .d-lg-inline {
      display: inline !important;
    }

    .d-lg-inline-block {
      display: inline-block !important;
    }

    .d-lg-block {
      display: block !important;
    }

    .d-lg-table {
      display: table !important;
    }

    .d-lg-table-row {
      display: table-row !important;
    }

    .d-lg-table-cell {
      display: table-cell !important;
    }

    .d-lg-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }

    .d-lg-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
}
  
@media (min-width: 1200px) {
    .d-xl-none {
      display: none !important;
    }

    .d-xl-inline {
      display: inline !important;
    }

    .d-xl-inline-block {
      display: inline-block !important;
    }

    .d-xl-block {
      display: block !important;
    }

    .d-xl-table {
      display: table !important;
    }
    .d-xl-table-row {
      display: table-row !important;
    }

    .d-xl-table-cell {
      display: table-cell !important;
    }

    .d-xl-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }

    .d-xl-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
}

/* Extend grid system */
/* === similar like bootstrap === */
.container {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  width: calc(1322px + 30px);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15.0px;
}

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.col {
  padding: 0 15.0px;
  position: relative;
  flex-basis: 0;
  flex-grow: 1;
}


  .col-1 {
    width: 8.333333333333332%;
    flex: 0 0 8.333333333333332%;
  }

  .col-2 {
    width: 16.666666666666664%;
    flex: 0 0 16.666666666666664%;
  }

  .col-3 {
    width: 25.000000000000000%;
    flex: 0 0 25.000000000000000%;
  }

  .col-4 {
    width: 33.333333333333330%;
    flex: 0 0 33.333333333333330%;
  }

  .col-5 {
    width: 41.666666666666670%;
    flex: 0 0 41.666666666666670%;
  }

  .col-6 {
    width: 50.000000000000000%;
    flex: 0 0 50.000000000000000%;
  }

  .col-7 {
    width: 58.333333333333336%;
    flex: 0 0 58.333333333333336%;
  }

  .col-8 {
    width: 66.666666666666660%;
    flex: 0 0 66.666666666666660%;
  }

  .col-9 {
    width: 75.000000000000000%;
    flex: 0 0 75.000000000000000%;
  }

  .col-10 {
    width: 83.333333333333340%;
    flex: 0 0 83.333333333333340%;
  }

  .col-11 {
    width: 91.666666666666660%;
    flex: 0 0 91.666666666666660%;
  }

  .col-12 {
    width: 100.000000000000000%;
    flex: 0 0 100.000000000000000%;
  }


.col-eq5 { 
  width: 20%;
  flex: 0 0 20%;
}

.col-eq7 { 
  width: 14.285714285714286%;
  flex: 0 0 14.285714285714286%;
}

@media (max-width: 991px) {
  
    .col-md-1 {
      width: 8.333333333333332%;
      flex: 0 0 8.333333333333332%;
    }
  
    .col-md-2 {
      width: 16.666666666666664%;
      flex: 0 0 16.666666666666664%;
    }
  
    .col-md-3 {
      width: 25.000000000000000%;
      flex: 0 0 25.000000000000000%;
    }
  
    .col-md-4 {
      width: 33.333333333333330%;
      flex: 0 0 33.333333333333330%;
    }
  
    .col-md-5 {
      width: 41.666666666666670%;
      flex: 0 0 41.666666666666670%;
    }
  
    .col-md-6 {
      width: 50.000000000000000%;
      flex: 0 0 50.000000000000000%;
    }
  
    .col-md-7 {
      width: 58.333333333333336%;
      flex: 0 0 58.333333333333336%;
    }
  
    .col-md-8 {
      width: 66.666666666666660%;
      flex: 0 0 66.666666666666660%;
    }
  
    .col-md-9 {
      width: 75.000000000000000%;
      flex: 0 0 75.000000000000000%;
    }
  
    .col-md-10 {
      width: 83.333333333333340%;
      flex: 0 0 83.333333333333340%;
    }
  
    .col-md-11 {
      width: 91.666666666666660%;
      flex: 0 0 91.666666666666660%;
    }
  
    .col-md-12 {
      width: 100.000000000000000%;
      flex: 0 0 100.000000000000000%;
    }
  
  .col-eq5 { 
    width: 20%;
    flex: 0 0 20%;
  }
  .col-eq7 { 
    width: 14.285714285714286%;
    flex: 0 0 14.285714285714286%;
  }
}

@media (max-width: 767px) {
  
    .col-sm-1 {
      width: 8.333333333333332%;
      flex: 0 0 8.333333333333332%;
    }
  
    .col-sm-2 {
      width: 16.666666666666664%;
      flex: 0 0 16.666666666666664%;
    }
  
    .col-sm-3 {
      width: 25.000000000000000%;
      flex: 0 0 25.000000000000000%;
    }
  
    .col-sm-4 {
      width: 33.333333333333330%;
      flex: 0 0 33.333333333333330%;
    }
  
    .col-sm-5 {
      width: 41.666666666666670%;
      flex: 0 0 41.666666666666670%;
    }
  
    .col-sm-6 {
      width: 50.000000000000000%;
      flex: 0 0 50.000000000000000%;
    }
  
    .col-sm-7 {
      width: 58.333333333333336%;
      flex: 0 0 58.333333333333336%;
    }
  
    .col-sm-8 {
      width: 66.666666666666660%;
      flex: 0 0 66.666666666666660%;
    }
  
    .col-sm-9 {
      width: 75.000000000000000%;
      flex: 0 0 75.000000000000000%;
    }
  
    .col-sm-10 {
      width: 83.333333333333340%;
      flex: 0 0 83.333333333333340%;
    }
  
    .col-sm-11 {
      width: 91.666666666666660%;
      flex: 0 0 91.666666666666660%;
    }
  
    .col-sm-12 {
      width: 100.000000000000000%;
      flex: 0 0 100.000000000000000%;
    }
  

  .col-eq5 { 
    width: 20%;
    flex: 0 0 20%;
  }

  .col-eq7 { 
    width: 14.285714285714286%;
    flex: 0 0 14.285714285714286%;
  }
}

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

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

.items-center {
  align-items: center
}

.items-stretch {
  align-items: stretch
}

.items-baseline {
  align-items: baseline
}

.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
}

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

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

.content-center {
  align-content: center
}

.content-stretch {
  align-content: stretch
}

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

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