/*@import "00-helpers"*/

/* RESET MARGINS
————————————————— */

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  color: inherit;
}

/* GRID SETUP
————————————————— */

:root{
    --grid-cols: 6;
    --grid-margin: 16px;
    --grid-gutter: 16px
  
    /* MEDIA QUERIES
    ————————————————— */
}

/* ————————————————————
  MAIN WRAPPER
——————————————————————— */

.l_body{
  position: relative;
  margin: 0 var(--grid-margin);
  max-width: 1408px  /* highest bp - gutters * 2 */

  /* MEDIA QUERIES
  ————————————————— */
}

/* ————————————————————
  GRID COMPONENT
——————————————————————— */

.l_grid, .l_grid-helper{
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  grid-gap: var(--grid-gutter);
  grid-auto-flow: row; /* default */
}

/* ————————————————————
  GRID HELPER
——————————————————————— */

.l_grid-helper{
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100; 
  grid-gap: 0 var(--grid-gutter)
}

.l_grid-helper span{
    display: block;
    background-color: rgba(255,0,0, .05);
  }

/* spacing sytem
————————————————— */

html{
  --space-4:4px;
  --space-8:8px;
  --space-16:16px;
  --space-24:24px;
  --space-32:32px;
  --space-48:48px;
  --space-56:56px;
  --space-64:64px;
  --space-80:80px;
  --space-96:96px;
  --space-120:120px;
  --space-160:160px;
  --space-220:220px;
}

.border-top, .border-top-l, .border-top-60, .border-top-30{
  position: relative
}

.border-top::before, .border-top-l::before, .border-top-60::before, .border-top-30::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentcolor;
  }

.border-top-l::before{
    height: 3px;
  }

.border-top-60::before{opacity: .6;}

.border-top-30::before{opacity: .3;}

html{
	--color-black: #1A1A1A;
	--color-black60: #666666;
	--color-black30: #B3B3B3;
	--color-blue: #1C2F36;
	--color-yellow: #FFE200;

	--color-ui-error: #FF3C3C;
	--color-ui-valid: #03FFA5;
}

/* IMPORT FONTS
————————————————— */

@font-face {
	font-family: "walsheim";
	src: url("../fonts/gt-walsheim-pro-medium.woff") format("woff"),
		url("../fonts/gt-walsheim-pro-medium.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
}

.font-family-walsheim, .t_title, .t_title-s, .t_title-m, .t_title-l, .t_title-xl, .t_rawtext h2, .t_rawtext h3, .t_rawtext h4, .t_rawtext h5, .t_rawtext h6{font-family: "walsheim", sans;}

@font-face {
	font-family: "inter";
	src: url("../fonts/inter-regular.woff") format("woff"),
		url("../fonts/inter-regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
}

.font-family-inter, html, .t_body, .t_button, .t_rawtext p, .t_rawtext ul, .t_rawtext ol, .btn, .btn-primary, .btn-secondary, .form-field__input, .form-textarea, .form-field__select, .form-file, .form-file-selected{font-family: "inter", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;}

/* TYPE UTILITIES
————————————————— */

.t_hide{
	border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.t_dontbreakwords, .t_title, .t_title-s, .t_title-m, .t_title-l, .t_title-xl, .t_button, .t_rawtext h2, .t_rawtext h3, .t_rawtext h4, .t_rawtext h5, .t_rawtext h6, .btn, .btn-primary, .btn-secondary, .form-file{
	word-wrap: normal;
  	word-break: keep-all;
  	-webkit-hyphens: none;
  	            -ms-hyphens: none;
  	        hyphens: none;
}

/* TYPE SCALE
————————————————— */

.font-ct-14, .t_caption, .t_label, .form-field__label, .form-field__hint{font-size: 13px; line-height: 18px;}

.font-ct-16, .t_navigation, .t_body, .t_rawtext p, .t_rawtext ul, .t_rawtext ol, .form-field__input, .form-textarea, .form-field__select, .form-file-selected{font-size: 16px; line-height: 24px;}

.font-ct-20, .t_title-s, .t_rawtext h2, .t_rawtext h3, .t_rawtext h4, .t_rawtext h5, .t_rawtext h6{font-size: 20px; line-height: 28px;}

.font-ct-22{font-size: 22px; line-height: 32px;}

.font-ct-28, .t_title-m{font-size: 28px; line-height: 36px;}

.font-ct-38, .t_title-l{font-size: 38px; line-height: 44px;}

.font-ct-48, .t_title-xl{font-size: 48px; line-height: 60px; letter-spacing: -1px;}

.font-ct-68{font-size: 68px; line-height: 72px; letter-spacing: -1px;}

.font-ct-84{font-size: 84px; line-height: 84px; letter-spacing: -2px;}

/* DEFAULT TYPE SETTING
————————————————— */

html{
	font-weight: 400;
	font-style: normal;
	font-smooth: auto;
	font-smoothing: subpixel-antialiased; /* subpixel-antialiased */
	-moz-osx-font-smoothing: antialiased;
	text-rendering: auto;
	-webkit-hyphens: auto;
	            -ms-hyphens: auto;
	        hyphens: auto;
	word-wrap: break-word; /* 'break-word'   Unbreakable words may be broken at arbitrary points. */
	color: var(--color-black)
}

html.theme-dark{
		background-color: var(--color-black);
		color: #fff !important;
		/* animation-duration: 1s;
		animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
		animation-fill-mode: forwards;
		animation-name: colorIn; */
	}

/* a:not([href]),
input:not([type]){
	border: 5px solid red;
} */

/* NAVIGATION
————————————————— */

.t_navigation{

    /* MEDIA QUERIES
    ————————————————— */
}

sup {
	vertical-align: top;
	font-size: 0.8em;
}

/* BODY
————————————————— */

.t_body, .t_rawtext p, .t_rawtext ul, .t_rawtext ol, .form-field__input, .form-textarea, .form-field__select, .form-file-selected{
	/* font-weight: 400; */

	/* MEDIA QUERIES
	————————————————— */
}

.t_link{
	text-decoration: underline;
	/* color: currentColor; */
	position: relative;
	font-weight: 100

	/* MEDIA QUERIES
	————————————————— */
}

.t_link[target="_blank"]::after{
		content:" ↗";
		position: absolute;
		left: 100%;
		bottom: -4px;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

.t_link[target="_blank"]:hover::after{
		opacity: 1;
	}

/* ————————————————————
  .TITLES
——————————————————————— */

/* S
————————————————— */

.t_title-s, .t_rawtext h2, .t_rawtext h3, .t_rawtext h4, .t_rawtext h5, .t_rawtext h6 {

	/* MEDIA QUERIES
	————————————————— */	
}

/* M
————————————————— */

.t_title-m{

	/* MEDIA QUERIES
	————————————————— */	
}

/* L
————————————————— */

.t_title-l{

	/* MEDIA QUERIES
	————————————————— */	
}

/* XL
————————————————— */

.t_title-xl{

	/* MEDIA QUERIES
	————————————————— */	
}

/* ————————————————————
  .t_caption
——————————————————————— */

.t_caption{
	/* font-family: "Cinetype-mono"; */
	opacity: .6

	/* MEDIA QUERIES
	————————————————— */	
}

/* ————————————————————
  .t_label
——————————————————————— */

.t_label, .form-field__label, .form-field__hint{
	/* font-family: "Cinetype-mono"; */
	/* opacity: .6; */

	/* MEDIA QUERIES
	————————————————— */	
}

/* ————————————————————
  .t_button
——————————————————————— */

.t_button, .btn, .btn-primary, .btn-secondary, .form-file{
	text-transform: uppercase;
	font-size: 14px; line-height: 14px; letter-spacing: 0.5px;

	/* MEDIA QUERIES
	————————————————— */
	/* @media (--mq-m) {
		font-size: 16px; line-height: 24px; letter-spacing: -1px;
	}	 */
}

.t_button-small{
	font-size: 12px; line-height: 12px; letter-spacing: 0.5px;
}

/* ————————————————————
  .t_rawtext
——————————————————————— */

.t_rawtext h2, .t_rawtext h3, .t_rawtext h4, .t_rawtext h5, .t_rawtext h6{
		margin-top: var(--space-48)
	}

.t_rawtext h2 + p, .t_rawtext h2 + ul, .t_rawtext h2 + ol, .t_rawtext h3 + p, .t_rawtext h3 + ul, .t_rawtext h3 + ol, .t_rawtext h4 + p, .t_rawtext h4 + ul, .t_rawtext h4 + ol, .t_rawtext h5 + p, .t_rawtext h5 + ul, .t_rawtext h5 + ol, .t_rawtext h6 + p, .t_rawtext h6 + ul, .t_rawtext h6 + ol {
			margin-top: var(--space-16);
		}

.t_rawtext p, .t_rawtext ul, .t_rawtext ol{
		margin-bottom: var(--space-16);
	}

@-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

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

@-webkit-keyframes colorIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

@keyframes colorIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

.colorIn {
    -webkit-animation-duration: 1.6s;
            animation-duration: 1.6s;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-name: colorIn;
            animation-name: colorIn;
  }

.fadeIn {
    -webkit-animation-duration: 1.6s;
            animation-duration: 1.6s;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
  }

/* $easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
$easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
$easeInOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
$easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
$easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
$easeInOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
$easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
$easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
$easeInOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
$easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
$easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
$easeInOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
$easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
$easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
$easeInOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
$easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
$easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
$easeInOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
$easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
$easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
$easeInOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
$easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
$easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
$easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
$easeInOutFast: cubic-bezier(1, 0, 0, 1);
$authenticMotion: cubic-bezier(0.4, 0, 0.2, 1); */

/* @import "01-tokens/01-colors.css";
@import "01-tokens/02-media-queries.css"; */

/* ————————————————————
  BUTTON SPECIFIC RESET
——————————————————————— */

/* Firefox: Get rid of the inner focus border */

button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */

button{
    overflow: visible;
    background-color: transparent;
    border: 0;
    text-transform: inherit
  }

button:focus{
      outline: none;
    }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

/* button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {

} */

.btn, .btn-primary, .btn-secondary, .form-file{
  /* reset */
  -webkit-appearance: none;
             -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
             -moz-user-select: none;
              -ms-user-select: none;
          user-select: none;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  border: 0;
  max-width: 100% !important;
  padding: var(--space-16) var(--space-24);
  border-radius: 62px;
  transition: opacity 0.3s ease
}

.btn:hover, .btn-primary:hover, .btn-secondary:hover, .form-file:hover{
    opacity: .8;
  }

.btn:disabled, .btn-primary:disabled, .btn-secondary:disabled, .form-file:disabled{
    cursor: not-allowed; /* Re-set default cursor for disabled elements. */
    pointer-events: none;
    opacity: .3;
  }

.btn-small{
    /* @extend .btn; */
    /* @extend .t_button; */
    padding: var(--space-8) var(--space-16);
    font-size: 12px; line-height: 12px; letter-spacing: 0.5px;
  }

/* MODIFIER
  ————————————————— */

.btn-primary {

    color: var(--color-blue);
    background-color: var(--color-yellow);
  }

/* MODIFIER
  ————————————————— */

.btn-secondary, .form-file {

    border: 3px solid var(--color-blue);
    color: var(--color-blue);
    background-color: #fff;
  }

/* ————————————————————
  .form-field
——————————————————————— */

.form-field {
    /* border: 1px solid red; */
}

.form-field > * {
        display: block;
    }

/* ————————————————————
  .form-field_label
——————————————————————— */

.form-field__label{
    margin-bottom: var(--space-4);
}

.form-field__hint{
    margin-top: var(--space-16);
    color: var(--color-black60)
}

.form-field__hint.has-error{
        color: var(--color-ui-error);
    }

.form-field__hint + .form-field__hint{
        margin-top: var(--space-4);
    }

/* ————————————————————
  FORM SPECIFIC RESET
——————————————————————— */

html input[disabled] {
     cursor: default; /*Re-set default cursor for disabled elements. */
}

input {
    line-height: normal /*Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet.*/
}

input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input::-ms-clear {
        display: none;
    }

input[type="checkbox"], input[type="radio"] {
        padding: 0; /* Remove excess padding in IE 8/9/10.*/
    }

input {

    /**
    * Fix the cursor style for Chrome's increment/decrement buttons. For certain
    * `font-size` values of the `input`, it causes the cursor style of the
    * decrement button to change from `default` to `text`.
     */
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
        height: auto;
        -webkit-appearance: none;
        appearance: none;
        margin: 0;
    }

input {

    /**
    * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
    * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
    *    (include `-moz` to future-proof).
    */
}

input[type="search"] {
        -webkit-appearance: textfield; /* 1 */ /* 2 */
        box-sizing: content-box;
    }

input {


    /**
    * Remove inner padding and search cancel button in Safari and Chrome on OS X.
    * Safari (but not Chrome) clips the cancel button when the search input has
    * padding (and `textfield` appearance).
    */
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

/* ————————————————————
  inputs
——————————————————————— */

.form-field__input, .form-textarea, .form-file-selected {
    border: 0;
    margin: 0 !important;
    display: block;
    vertical-align: middle;
    width: 100%;
    /* text-indent: var(--space-4); */
    padding: var(--space-4) var(--space-8);
    -webkit-appearance: none;
               -moz-appearance: none;
            appearance: none;
    transition: all 0.3s ease-out;


    /* THEME
    ————————————————— */
    border-radius: 5px;
    border: 3px solid var(--color-black60);
    /* height: var(--space-48); */
    /* box-shadow: inset 4px 0 0 0 transparent; */
    background-color: #F4F4F4


    /* focus */
}

.form-field__input:focus, .form-textarea:focus, .form-file-selected:focus {
        outline: none !important;
        outline: 0;
        border: 3px solid var(--color-black);
        /* background-color: lighten($bleu-dark, 1%);
        // background-color: rgba($jaune, 0.2);
        box-shadow: inset 4px 0 0 0 $jaune; */
    }

.form-field__input, .form-textarea, .form-file-selected {


    /* disabled */
}

.form-field__input:disabled, .form-textarea:disabled, .form-file-selected:disabled {
        opacity: 0.4;
        /* // background-color: lighten($form-background-color, 10%);
        // color: $grey; */
        cursor: not-allowed;
    }

.form-field__input, .form-textarea, .form-file-selected {

    /* has error */
}

.form-field__input.has-error, .form-textarea.has-error, .form-file-selected.has-error {
        border-color: var(--color-ui-error);
        background-color: #FFECEC;
        /* background-color: rgba($rouge, 0.1);

        &:focus {
            background-color: rgba($rouge, 0.2);
            box-shadow: inset 4px 0 0 0 $rouge;
        } */
    }

.form-field__input, .form-textarea, .form-file-selected {

    /* valid field */
}

.form-field__input.is-valid, .form-textarea.is-valid, .form-file-selected.is-valid {
        border-color: var(--color-ui-valid);
        background-color: #EBFEF6;
        /* background-color: rgba($vert, 0.1);

        &:focus {
            background-color: rgba($vert, 0.2);
            box-shadow: inset 4px 0 0 0 $vert;
        } */
    }

.form-field__input, .form-textarea, .form-file-selected {


    /* placeholder text
    ————————————————— */
}

.form-field__input::-moz-placeholder, .form-textarea::-moz-placeholder, .form-file-selected::-moz-placeholder {
        /* color: $bleu-light; */
        color: var(--color-black60);
    }

.form-field__input:-ms-input-placeholder, .form-textarea:-ms-input-placeholder, .form-file-selected:-ms-input-placeholder {
        /* color: $bleu-light; */
        color: var(--color-black60);
    }

.form-field__input::placeholder, .form-textarea::placeholder, .form-file-selected::placeholder {
        /* color: $bleu-light; */
        color: var(--color-black60);
    }

.form-field__input::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder, .form-file-selected::-webkit-input-placeholder {
        padding-top: 0.1em;
    }

.textarea{
  /* Move the label to the top */
	vertical-align:top;
	
	/* Turn off scroll bars in IE unless needed */
  overflow:auto;
  
  font-family: inherit;
}

/* ————————————————————
  .form-textarea
——————————————————————— */

.form-textarea {
    height: auto;
    min-height: var(--space-48);
    text-indent: 0;
    /* padding: vr(0.5); */
    resize: none;
     overflow: auto; /* Remove default vertical scrollbar in IE 8/9/10/11. */
}

/* ————————————————————
  FORM SPECIFIC RESET
——————————————————————— */

input[type="radio"], input[type="checkbox"] {
    vertical-align: middle;
}

input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: 1px thin #000;
}

.form-choice{
    display: inline-block;
    margin-right: var(--space-8);
    cursor: pointer;
    width: 24px;
    height: 24px

}

.form-choice + label {
        cursor: pointer;
        display: inline-block;
        
    }

/* ————————————————————
  reset
——————————————————————— */

select, option {
  -webkit-appearance: none; /* To gain control over the appearance on WebKit */
  -moz-appearance: none; /* To gain control over the appearance on Gecko */
  background: none; /* To gain control over the appearance on Presto (Opera) and Trident (IE) Note that it also work on Gecko and has partial effects on WebKit */
  text-transform: none;
  
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
}

optgroup {
  font-style: normal;
  font-weight: 400;
}

select::-ms-expand {
    display: none;
  }

/* ————————————————————
  select
——————————————————————— */

.form-field__select {
    width: 100%;
    min-width: 15ch;
    max-width: 30ch;
    cursor: pointer;

    display: grid;
    grid-template-areas: "select";
    align-items: center;

    padding: var(--space-4) var(--space-8);
    border-radius: 5px;
    border: 3px solid var(--color-black60);
    background-color: #F4F4F4;
}

.form-field__select::after {
    content: "";
    width: 0.8em;
    height: 0.5em;
    background-color: #000;
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
            clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    justify-self: end;
  }

select, .form-field__select:after {
    grid-area: select;
  }

/* ————————————————————
  .select__select
——————————————————————— */

/* ————————————————————
  .form-file
——————————————————————— */

.form-file::before{
        content: '+';
        margin-right: var(--space-8);
    }

.form-file > input[type="file"]{display: none;}

/* ————————————————————
  .form-file-selected
——————————————————————— */

.form-file-selected {
    display: flex;
    padding: var(--space-8);
}

.form-file-selected__file{
    text-decoration: underline;
    max-width: 60%;
}

.form-file-selected__button{
    margin-left: auto;
    flex-grow: 0;
    align-self: flex-start;  
}

/* ————————————————————
  .outdated-browser-modal
——————————————————————— */

.outdated-browser-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99999;
  color: #fff;
  display: none;
  background-color: red;
  padding: var(--space-24);
  margin: 0;
}

.no-js .outdated-browser-modal  {
  display: block;
}

/* ————————————————————
  .header
——————————————————————— */

.header {
  
}

/* ————————————————————
  .header__banner
——————————————————————— */

.header__banner {
  background-color: var(--color-blue);
  padding:  var(--space-32) 0;
  margin-bottom: var(--space-64);
  box-shadow: -100px 0 0 var(--color-blue), 100px 0 0 var(--color-blue);
  display: flex;
  align-items: center;
  /* position: relative;
  

  &:before, &:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left:0;
    height: 100%;
    width: 1200px;
    background-color: var(--color-blue);
    z-index: -1;
  }

  &:before{
    top: 0;
    right: 100%;
    left: auto;
  }

  &:after{
    top: 0;
    left: 100%;
  } */
}

/* ————————————————————
  .header__banner__logo
——————————————————————— */

.header__banner__logo {
  height: 48px;
  margin-right: var(--space-16);
  max-width: 180px

  /* MEDIA QUERIES
  ————————————————— */
}

/* ————————————————————
  .header__banner__btn
——————————————————————— */

.header__banner__btn {
    margin-left: auto;
}

/* ————————————————————
  .form-rma
——————————————————————— */

.form-rma {
    margin-top: var(--space-96);
    display: block;
}

/* ————————————————————
  .form-rma__section
——————————————————————— */

.form-rma__section {
    display: grid;
    grid-gap: var(--grid-gutter);
    border-top: 2px solid var(--color-black);
    padding: var(--space-32) 0 var(--space-96) 0

    /* MEDIA QUERIES
    ————————————————— */
}

.form-rma__section.is-disabled{
      opacity: .5;
      pointer-events: none;
    }

.form-rma__section.no-border{
      border:0;
    }

/*@import "01-tokens/04-typography.css";*/

/*@import "00-tokens/colors.css"
@import "00-tokens/grid.css"
@import "00-tokens/media-queries.css"
@import "00-tokens/typography.css"


@import "00-atoms/icons.css"*/

@media (min-width: 600px) {

.t_title-s, .t_rawtext h2, .t_rawtext h3, .t_rawtext h4, .t_rawtext h5, .t_rawtext h6 {	font-size: 28px; 	line-height: 36px	
}

.t_title-xl{	font-size: 68px; 	line-height: 72px; 	letter-spacing: -1px	
}

.t_caption{	font-size: 16px; 	line-height: 24px	
}

.t_label, .form-field__label, .form-field__hint{	font-size: 16px; 	line-height: 24px	
}

.header__banner__logo {
    margin-right: var(--space-32);
    height: 64px;
    max-width: 200px
}
	}

@media (min-width: 900px) {

:root{
      --grid-cols: 12;
      --grid-gutter: 24px
}

.t_navigation{	font-size: 20px; 	line-height: 28px
}

.t_body, .t_rawtext p, .t_rawtext ul, .t_rawtext ol, .form-field__input, .form-textarea, .form-field__select, .form-file-selected{	font-size: 22px; 	line-height: 32px
}

.t_link{
		/* @extend .font-ct-22; */
}

.t_title-m{	font-size: 48px; 	line-height: 60px; 	letter-spacing: -1px	
}

.t_title-l{	font-size: 68px; 	line-height: 72px; 	letter-spacing: -1px	
}

.t_title-xl{	font-size: 84px; 	line-height: 84px; 	letter-spacing: -2px	
}

.form-rma__section {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-flow: column
}
    }

@media (min-width: 1200px) {

:root{
      --grid-gutter: 32px
}
    }

@media (min-width: 1440px) {

:root{
      --grid-margin: 0
}

.l_body{
    margin: 0 auto
}
  }
/*# sourceMappingURL=main.css.map */
