/**
	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-neutral-black: #2E2E2E;
    --color-neutral-grey-200: #545A67;
    --color-neutral-grey-100: #6A7180;
    --color-neutral-grey-50: #A5AAB2;
    --color-neutral-grey-20: #E1E3E6;
    --color-neutral-grey-10: #F0F2F3;
    --color-neutral-pearl-10: #EDF2F4;
    --color-neutral-pearl-20: #E4EBED;

    --color-green-default-300: #406119;
    --color-green-default-200: #618F28;
    --color-green-default-100: #76AE32;
    --color-green-forest-300: #2F493B;
    --color-green-forest-200: #416552;
    --color-green-forest-100: #527E66;
    --color-green-grass-100: #2F9A0D;
    --color-green-grass-20: #DEF9D5;
    --color-green-emerald-100: #049F61;
    --color-green-emerald-20: #D6F5DF;
    --color-green-jade-100: #0B7D76;
    --color-green-jade-20: #CFEBE9;
    --color-green-turquoise-100: #049F8C;
    --color-green-turquoise-20: #E8F8EF;
    --color-green-teal-100: #15AEA5;
    --color-green-teal-20: #E0FCFA;

    --color-red-default-300: #974036;
    --color-red-default-200: #C95548;
    --color-red-default-100: #EC6758;
    --color-red-default-20: #FADFDD;
    --color-red-rubis-100: #99052A;

    --color-blue-azure-100: #2EA9E8;
    --color-blue-cobalt-100: #4485B6;
    --color-blue-cobalt-20: #DAEDF9;
    --color-blue-cyan-100: #2879B3;
    --color-blue-cyan-40: #DBF1FF;
    --color-blue-cyan-20: #EBF7FF;

    --color-yellow-sun-100: #F1BF42;
    --color-yellow-sun-20: #FFFAED;
    --color-yellow-beige-100: #9C7127;
    --color-yellow-beige-20: #FFF2D0;

    --color-pink-100: #F24A86;
    --color-pink-20: #F7EAEF;

    --color-orange-100: #FF9900;
}

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

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

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

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

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

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

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

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

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

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

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

.text-yellow-sun-100 {
    color: var(--color-yellow-sun-100);
}

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


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


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

.has-background-red-default {
    background-color: var(--color-red-default-100) !important;
}

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


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

.mt--50 {
    margin-top: -2.5rem !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-85 {
    width: 85%;
}

.width-60 {
    width: 60%;
}

.width-55 {
    width: 55%;
}

.width-50 {
    width: 50%;
}

.width-45 {
    width: 45%;
}

.width-40 {
    width: 40%;
}

.width-30 {
    width: 30%;
}

.width-25 {
    width: 25%;
}

.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
**/
.transparent-border-2 {
    border: var(--thickness-2) solid transparent;
}

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

.red-border-2 {
    border: var(--thickness-2) solid var(--color-red-default-100) !important;
}

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

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

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

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

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


/**
Background
 */

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