/**
	font-family
**/
.font-outfit {
    font-family: Outfit;
}

.font-roboto {
    font-family: Roboto;
}

.font-comfortaa {
    font-family: Comfortaa;
}

/**
	font-size
**/
.text-xxxs {
    font-size: 0.5rem; /* 8px */
    line-height: 1rem; /* 16px */
}

.text-xxs {
    font-size: 0.625rem; /* 10px */
    line-height: 1rem; /* 16px */
}

.text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* 16px */
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}

.text-base {
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}

.text-xl {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
}

.text-2xl {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
}

.text-3xl {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}

.text-4xl {
    font-size: 5.25rem; /* 84px */
    line-height: 6.75rem; /* 108px */
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

/**
	colors
**/
body {
    --color-white: #FFFFFF;

    --color-green-1kmapied: #76AE32;
    --color-green-default: #657B6F;
    --color-green: #FFFFFF;
    --color-green-light: #cfebe9;
    --color-green-dark: #0b7d76;
    --color-green-turquoise: #049F8C;
    --color-light-turquoise: #E8F8EF;
    --color-sky-blue: #00A6ED;
    --color-blue-dark: #4485b6;
    --color-blue-20: #DAEDF9;
    --color-light-blue: #2EA9E8;

    --color-grey: #94a5a8;
    --color-grey-neutral: #EDF2F4;
    --color-grey-light: #afafaf;
    --color-grey-darker: #687182;
    --color-grey-200: #545a67;
    --color-grey-100: #6a7180;
    --color-grey-50: #a5aab2;
    --color-grey-20: #E1E3E6;
    --color-grey-10: #F0F2F3;

    --color-table: #e4ebed;

    --color-red-default: #ec6758;
    --color-red-20: #FADFDD;
    --color-red-press: #BD5346;
    --color-red-dark: #99052A;

    --color-yellow: #F1BF42;
    --color-yellow-20: #FFF9E3;
    --color-orange: #ff9900;
}

.text-white {
    color: var(--color-white);
}

.text-table {
    color: var(--color-table) !important;
}

.text-green-1kmapied {
    color: var(--color-green-1kmapied) !important;
}

.text-green-turquoise {
    color: var(--color-green-turquoise) !important;
}

.text-sky-blue {
    color: var(--color-sky-blue) !important;
}

.text-dark-blue {
    color: var(--color-blue-dark) !important;
}

.text-light-blue {
    color: var(--color-light-blue) !important;
}

.text-grey {
    color: var(--color-grey) !important;
}

.text-grey-light {
    color: var(--color-grey-light) !important;
}

.svg-fill-grey-light {
    fill: var(--color-grey-light) !important;
}

.text-grey-darker {
    color: var(--color-grey-darker) !important;
}

.text-grey-200 {
    color: var(--color-grey-200) !important;
}

.svg-fill-grey-200 {
    fill: var(--color-grey-200) !important;
}

.text-grey-100 {
    color: var(--color-grey-100) !important;
}

.text-grey-50 {
    color: var(--color-grey-50) !important;
}

.text-red-default {
    color: var(--color-red-default) !important;
}

.text-red-press {
    color: var(--color-red-press) !important;
}

.text-red-dark {
    color: var(--color-red-dark) !important;
}

.text-orange {
    color: var(--color-orange) !important;
}

/**
**/
.has-background-green-1kmapied {
    background-color: var(--color-green-1kmapied) !important;
}

.has-background-table {
    background-color: var(--color-table) !important;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.has-fill-success {
    fill: var(--color-green-1kmapied) !important;
}

.has-fill-show {
    fill: var(--color-white) !important;
}

.underline {
    text-decoration-line: underline;
}

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

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

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

/**
	spacing from design system
**/

.pa-5 {
    padding: 0.313rem !important;
}

.pax-5 {
    padding-right: 0.313rem !important;
    padding-left: 0.313rem !important;
}

.pay-5 {
    padding-top: 0.313rem !important;
    padding-bottom: 0.313rem !important;
}

.pat-5 {
    padding-top: 0.313rem !important;
}

.par-5 {
    padding-right: 0.313rem !important;
}

.pab-5 {
    padding-bottom: 0.313rem !important;
}

.pal-5 {
    padding-left: 0.313rem !important;
}

.p-10 {
    padding: 0.625rem !important;
}

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

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

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

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

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

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

.p-15 {
    padding: 0.9375rem !important;
}

.px-15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.625rem !important;
}

.py-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
}

.pt-15 {
    padding-top: 0.9375rem !important;
}

.pr-15 {
    padding-right: 0.9375rem !important;
}

.pb-15 {
    padding-bottom: 0.9375rem !important;
}

.pl-15 {
    padding-left: 0.9375rem !important;
}

.p-20 {
    padding: 1.25rem !important;
}

.px-20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
}

.py-20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.pt-20 {
    padding-top: 1.25rem !important;
}

.pr-20 {
    padding-right: 1.25rem !important;
}

.pb-20 {
    padding-bottom: 1.25rem !important;
}

.pl-20 {
    padding-left: 1.25rem !important;
}

.p-30 {
    padding: 1.875rem !important;
}

.px-30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
}

.py-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
}

.pt-30 {
    padding-top: 1.875rem !important;
}

.pr-30 {
    padding-right: 1.875rem !important;
}

.pb-30 {
    padding-bottom: 1.875rem !important;
}

.pl-30 {
    padding-left: 1.875rem !important;
}

.p-40 {
    padding: 2.5rem !important;
}

.px-40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

.py-40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.pt-40 {
    padding-top: 2.5rem !important;
}

.pr-40 {
    padding-right: 2.5rem !important;
}

.pb-40 {
    padding-bottom: 2.5rem !important;
}

.pl-40 {
    padding-left: 2.5rem !important;
}

.p-50 {
    padding: 3.125rem !important;
}

.px-50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
}

.py-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
}

.pt-50 {
    padding-top: 3.125rem !important;
}

.pr-50 {
    padding-right: 3.125rem !important;
}

.pb-50 {
    padding-bottom: 3.125rem !important;
}

.pl-50 {
    padding-left: 3.125rem !important;
}

.p-60 {
    padding: 3.75rem !important;
}

.px-60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
}

.py-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
}

.pt-60 {
    padding-top: 3.75rem !important;
}

.pr-60 {
    padding-right: 3.75rem !important;
}

.pb-60 {
    padding-bottom: 3.75rem !important;
}

.pl-60 {
    padding-left: 3.75rem !important;
}

.p-70 {
    padding: 4.375rem !important;
}

.px-70 {
    padding-right: 4.375rem !important;
    padding-left: 4.375rem !important;
}

.py-70 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
}

.pt-70 {
    padding-top: 4.375rem !important;
}

.pr-70 {
    padding-right: 4.375rem !important;
}

.pb-70 {
    padding-bottom: 4.375rem !important;
}

.pl-70 {
    padding-left: 4.375rem !important;
}

.ma-2 {
    margin: 0.125rem !important;
}

.max-2 {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
}

.may-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
}

.mat-2 {
    margin-top: 0.125rem !important;
}

.mar-2 {
    margin-right: 0.125rem !important;
}

.mab-2 {
    margin-bottom: 0.125rem !important;
}

.mal-2 {
    margin-left: 0.125rem !important;
}

.ma-5 {
    margin: 0.313rem !important;
}

.max-5 {
    margin-right: 0.313rem !important;
    margin-left: 0.313rem !important;
}

.may-5 {
    margin-top: 0.313rem !important;
    margin-bottom: 0.313rem !important;
}

.mat-5 {
    margin-top: 0.313rem !important;
}

.mar-5 {
    margin-right: 0.313rem !important;
}

.mab-5 {
    margin-bottom: 0.313rem !important;
}

.mal-5 {
    margin-left: 0.313rem !important;
}

.m-10 {
    margin: 0.625rem !important;
}

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

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

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

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

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

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

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

.m-15 {
    margin: 0.938rem !important;
}

.mx-15 {
    padding-right: 0.938rem !important;
    padding-left: 0.938rem !important;
}

.my-15 {
    padding-top: 0.938rem !important;
    padding-bottom: 0.938rem !important;
}

.mt-15 {
    margin-top: 0.938rem !important;
}

.mr-15 {
    margin-right: 0.938rem !important;
}

.mb-15 {
    margin-bottom: 0.938rem !important;
}

.ml-15 {
    margin-left: 0.938rem !important;
}

.m-20 {
    margin: 1.25rem !important;
}

.mx-20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
}

.my-20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}

.mt-20 {
    margin-top: 1.25rem !important;
}

.mr-20 {
    margin-right: 1.25rem !important;
}

.mb-20 {
    margin-bottom: 1.25rem !important;
}

.ml-20 {
    margin-left: 1.25rem !important;
}

.m-30 {
    margin: 1.875rem !important;
}

.mx-30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
}

.my-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
}

.mt-30 {
    margin-top: 1.875rem !important;
}

.mr-30 {
    margin-right: 1.875rem !important;
}

.mb-30 {
    margin-bottom: 1.875rem !important;
}

.ml-30 {
    margin-left: 1.875rem !important;
}

.m-40 {
    margin: 2.5rem !important;
}

.mx-40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
}

.my-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.mt-40 {
    margin-top: 2.5rem !important;
}

.mr-40 {
    margin-right: 2.5rem !important;
}

.mb-40 {
    margin-bottom: 2.5rem !important;
}

.ml-40 {
    margin-left: 2.5rem !important;
}

.m-50 {
    margin: 3.125rem !important;
}

.mx-50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
}

.my-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
}

.mt-50 {
    margin-top: 3.125rem !important;
}

.mr-50 {
    margin-right: 3.125rem !important;
}

.mb-50 {
    margin-bottom: 3.125rem !important;
}

.ml-50 {
    margin-left: 3.125rem !important;
}

.m-60 {
    margin: 3.75rem !important;
}

.mx-60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
}

.my-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
}

.mt-60 {
    margin-top: 3.75rem !important;
}

.mr-60 {
    margin-right: 3.75rem !important;
}

.mb-60 {
    margin-bottom: 3.75rem !important;
}

.ml-60 {
    margin-left: 3.75rem !important;
}

.m-70 {
    margin: 4.375rem !important;
}

.mx-70 {
    margin-right: 4.375rem !important;
    margin-left: 4.375rem !important;
}

.my-70 {
    margin-top: 4.375rem !important;
    margin-bottom: 4.375rem !important;
}

.mt-70 {
    margin-top: 4.375rem !important;
}

.mr-70 {
    margin-right: 4.375rem !important;
}

.mb-70 {
    margin-bottom: 4.375rem !important;
}

.ml-70 {
    margin-left: 4.375rem !important;
}

.is-absolute {
    position: absolute;
}

.width-fit-content {
    width: fit-content;
}

.right-0 {
    right: 0;
}

.width-auto {
    width: auto;
}

.width-100 {
    width: 100%;
}

.width-50 {
    width: 50%;
}

.width-45 {
    width: 45%;
}

.width-40 {
    width: 40%;
}

.width-15 {
    width: 15%;
}

.height-100 {
    height: 100%;
}

body {
    --thickness-1: 0.063rem;
    --thickness-1-5: 0.094rem;
    --thickness-2: 0.125rem;
}

.flex-basis-0 {
    flex-basis: 0;
}

/**
Borders
**/
.red-border {
    border: var(--thickness-1) solid var(--color-red-default);
}

.blue-dark-border-1-5 {
    border: var(--thickness-1-5) solid var(--color-blue-dark);
}

.blue-dark-border-2 {
    border: var(--thickness-2) solid var(--color-blue-dark);
}

.green-dark-border-1-5 {
    border: var(--thickness-1-5) solid var(--color-green-dark);
}

.grey-50-border-bottom {
    border-bottom: var(--thickness-1) solid var(--color-grey-50);
}

.grey-100-border-bottom {
    border-bottom: var(--thickness-1) solid var(--color-grey-100);
}


/**
Background
 */

.neutral-background {
    background-color: var(--color-grey-neutral);
}