/**
	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-xss-1 {
    font-size: 0.75rem; /* 12px */
    line-height: 0.8788rem; /* 14.06px */
}

.text-xss-2 {
    font-size: 0.75rem; /* 12px */
    line-height: 0.9075rem; /* 14.50px */
}

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

.text-xs-01 {
    font-size: 0.875rem; /* 14px */
    line-height: 1.0256rem; /* 16.41px */
}

.text-xs-1 {
    font-size: 0.875rem; /* 14px */
    line-height: 0.9006rem; /* 16.41px */
}

.text-xs-2 {
    font-size: 0.875rem; /* 14px */
    line-height: 1.0588rem; /* 16.94px */
}

.text-xs-3 {
    font-size: 0.875rem; /* 14px */
    line-height: 1.1025rem; /* 17.64px */
}

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

.text-sm-2 {
    font-size: 0.9375rem; /* 15 px */
    line-height: 1.1344rem; /* 18.15 px */
}

.text-sm-21 {
    font-size: 15px; /* 15 px */
    line-height: 16.73px; /* 16.73 px */
}

.text-sm-3 {
    font-size: 1rem; /* 16 px */
    line-height: 1.1719rem; /* 18.75 px */
}

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

.text-base-2 {
    font-size: 1.125rem; /* 18px */
    line-height: 1.3181rem; /* 21.09px */
}

.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-xl-1 {
    font-size: 1.375rem; /* 22px */
    line-height: 1.5331rem; /* 24.53px */
}

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

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

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

.text-2xl-3 {
    font-size: 1.5625rem; /* 25px */
    line-height: 1.7425rem; /* 27.88px */
}

.text-2xl-4 {
    font-size: 1.625rem; /* 26px */
    line-height: 1.9044rem; /* 30.47px */
}

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

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


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

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

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

    --color-pink-light: #F7EAEF;
    --color-pink-dark: #F24A86;
    --color-turquoise-light: #E8F8EF;
    --color-turquoise-dark: #049F8C;
    --color-cyan-light: #EBF7FF;
    --color-cyan-dark: #2879B3;
    --color-purple-light: #F2EBFF;
    --color-purple-dark: #5C09A5;



    --color-table: #e4ebed;

    --color-red-default: #ec6758;

    --color-background: #edf2f4;
}

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

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

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

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

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

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

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

.text-grey-200 {
    color: 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-green-default {
    color: var(--color-green-default) !important;
}

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

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

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

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

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

/**
**/
.border-green-default {
    border-color: var(--color-green-default) !important;
}
.border-red-default {
    border-color: var(--color-red-default) !important;
}
.border-blue-light {
    border-color: var(--color-blue-light) !important;
}
.border-grey-200 {
    border-color: var(--color-grey-200) !important;
}

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

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

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

.background-grey-10 {
    background-color: var(--color-grey-10) !important;
}
.background-grey-10-hover:hover {
    background-color: var(--color-grey-10) !important;
}


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

.background-blue-20 {
    background-color: var(--color-blue-20) !important;
}

.background-pink-light {
    background-color: var(--color-pink-light) !important;
}

.background-turquoise-light {
    background-color: var(--color-turquoise-light) !important;
}

.background-cyan-light {
    background-color: var(--color-cyan-light) !important;
}

.background-purple-light {
    background-color: var(--color-purple-light) !important;
}

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

/**
*/
svg.fill-grey-50 * {
    fill: var(--color-grey-50) !important;
}

svg.stroke-grey-50 * {
    stroke: var(--color-grey-50) !important;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

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

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

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

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

/**
	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-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-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 {
    padding-right: 0.625rem !important;
    padding-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;
}

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