
/**
 * Set up a decent box model on the root element
 */
html {
    box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html,
body {
    /* Green */
    background-color: #0A5A46;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: underline;
    background-color: transparent;
}

    a:hover {
        text-decoration: none;
    }

    a.btn {
        text-decoration: none;
    }

@font-face {
    font-family: "Poppins";
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

/**
 * Basic typography style for copy text
 */
html,
body {
    /* White */
    color: #FFF;
    font-family: "Poppins", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    /* P-Medium */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.5px; /* 128.125% */
    letter-spacing: -0.56px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding-top: 0.5em;
    margin-bottom: 0.5em;
}

h1 {
    /* Heading H1 */
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 126%; /* 45.36px */
    letter-spacing: -1.26px;
    margin-bottom: 1.1em;
}

h2 {
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 500;
    line-height: 126%; /* 45.36px */
    letter-spacing: -1.26px;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.8rem;
}

.text-small {
    font-family: "Roboto", sans-serif;
    font-size: 0.75em;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    opacity: 0.8;
    letter-spacing: normal;
}

.link, .link:hover, .link:active, .link:focus {
    text-decoration: underline;
}

.pointer {
    cursor: pointer;
}

.fa-05x {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.d-none {
    display: none !important;
}

.d-flex {
    display: -webkit-box !important;
    display: flex !important;
}

.d-block {
    display: block !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: flex !important;
    }

    .d-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: flex !important;
    }

    .d-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: flex !important;
    }

    .d-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: flex !important;
    }

    .d-xl-block {
        display: block !important;
    }
}

.row-gutter {
    margin-top: -15px;
    margin-bottom: -15px;
}

    .row-gutter > .col,
    .row-gutter > [class*=col-] {
        padding-top: 15px;
        padding-bottom: 15px;
    }

.aside {
    color: #006DB5;
    padding: 1rem 0;
    border-bottom: 1px solid #ffffff;
}

.header {
    background-color: #ffffff;
}

@media (min-width: 576px) {
    .header {
        padding: 0 1rem;
    }
}

.header__nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    align-items: center;
}

.header__nav__logo {
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.header__nav__items {
    width: auto;
}

.footer {
    padding: 2rem 0;
}

    .footer hr {
        margin-top: 1rem;
        margin-bottom: 1rem;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

.footer__bottom {
    font-size: 12px;
}

.main {
    padding: 3rem 0;
}

.main__intro {
    font-size: 1.2rem;
    font-weight: 300;
}

.card {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    width: 100%;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background-color: #0A5A46;
    box-shadow: none;
    border: 1px solid #fff;
    border-radius: 10px;
}
.card-header {
    border-bottom: 1px solid #fff;
}
.list-group-item {
    background-color: #0A5A46;
    border: 1px solid #fff;
}
    .list-group-item:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .list-group-item:last-child {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

.card__header, .card__main, .card__footer {
    padding: 1.4rem;
}

.card__header--image {
    padding: 0;
}

.card__main {
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.card__footer {
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.card__image {
    width: 100%;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card__icon {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    width: 100%;
    height: 100px;
    background-color: #58A5E0;
}

    .card__icon [class*=fa-] {
        font-size: 44px;
    }

.card__subtitle + *, .card__title + *, .card__content + * {
    margin-top: 0.4em;
}

.card__subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.card__title {
    font-size: 21px;
    font-weight: 300;
}

.card__content {
    font-size: 14px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .card--row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-flow: row nowrap;
        -webkit-box-align: stretch;
        align-items: stretch;
    }

        .card--row .card__image {
            width: 200px;
            min-height: 150px;
            height: auto;
        }

        .card--row .card__icon {
            width: 200px;
            min-height: 100px;
            height: auto;
        }

        .card--row .card__header .card__image,
        .card--row .card__header .card__icon {
            height: 100%;
        }
}

.card + .card,
.card--row + .card--row {
    margin-top: 1rem;
}

.card--primary {
    color: #ffffff;
    background-color: #0E3179;
}

.card--radius {
    border-radius: 4px;
}

.card--disabled {
    opacity: 0.4;
}

.flex-center-vertical {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    justify-content: center;
}

.contact {
    padding: 2rem;
    background: #ffffff;
}

.contact__image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__name, .contact__profession, .contact__location {
    color: #006DB5;
}

.contact__name {
    font-size: 28px;
}

.contact__profession {
    font-size: 21px;
}

.contact__location {
    font-size: 16px;
    margin-top: 0.3em;
}

.contact__body {
    color: #495057;
    font-weight: 300;
    line-height: 1.8;
}

.contacts-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

    .contacts-table td + td {
        padding-left: 1rem;
    }

    .contacts-table tr + tr td {
        padding-top: 1rem;
    }

.contacts-table__contact__name {
    font-size: 16px;
    font-weight: 600;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.contacts-table__contact__detail {
    font-size: 13px;
}

.contacts-search-sticky {
    padding: 2rem 0 1rem;
    background-color: #e8f4fa;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.contacts-contact-sticky {
    padding: 2rem 0 1rem;
    background-color: #e8f4fa;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.content-media {
    color: #ffffff;
    background-color: #58a5e0;
    position: relative;
}

.content-media__media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 100vmax 100vmax rgba(88, 165, 224, 0.8);
}

@media (min-width: 768px) {
    .content-media__media {
        left: 50%;
        right: 0;
        box-shadow: unset;
    }

    .content-media__media--left {
        left: 0;
        right: 50%;
    }
}

.content-media__content {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .content-media__content {
        padding: 3rem;
    }
}

.content-media__content__title {
    font-size: 28px;
    font-weight: 300;
}

.content-media__content__body {
    font-size: 16px;
    font-weight: 300;
}

.faq {
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.faq__header, .faq__main {
    padding: 1rem;
}

.faq__header {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    align-items: center;
}

.faq__header__title {
    font-size: 18px;
    font-weight: 300;
}

    .faq__header__title + .faq__header__action {
        padding-left: 1rem;
    }

.faq__main {
    border-top: 1px solid rgba(14, 49, 121, 0.2);
}

.faq + .faq {
    margin-top: 1rem;
}

.text-danger {
    color: #ED3824 !important;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        color: #FFF;
        margin-bottom: 0.3em;
    }

.form-control {
    display: inline-flex;
    padding: 6px 10px 6px 0px;
    align-items: flex-start;
    gap: 10px;
    border: none;
    border-bottom: 0.5px solid #78A099 /*#B5CDC7*/;
    color: #FFF;
    background: transparent;
}

    .form-control::placeholder {
        opacity: 0.7;
    }

    .form-control:focus {
        color: #FFF;
        border-color: #FFF;
        background: transparent;
    }

    .form-control.input-validation-error {
        color: #ED3824;
        border-color: #ED3824;
    }

        .form-control.input-validation-error::placeholder {
            color: #ED3824;
        }

.form-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.input-group-append {
    margin-left: -2px;
    z-index: 4;
}

    .input-group-append .input-group-text {
        border-left: none;
    }

.list-links__item {
    display: block;
    padding: 0.6em 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(14, 49, 121, 0.2);
    position: relative;
}

.list-links__item__prefix {
    display: inline-block;
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

.list-links__item__content {
    display: inline-block;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.list-links__item:hover .list-links__item__prefix {
    opacity: 1;
}

.list-links__item:hover .list-links__item__content {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
}

.list-links--white .list-links__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-mobile {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    background-color: #ffffff;
    overflow-y: scroll;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-name: nav-mobile;
    animation-name: nav-mobile;
}

.nav-mobile__menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-mobile__menu--icons {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
}

.nav-mobile__menu__item {
    color: rgba(14, 49, 121, 0.7);
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
}

    .nav-mobile__menu__item:hover, .nav-mobile__menu__item:active, .nav-mobile__menu__item:focus {
        color: #0E3179;
    }

    .nav-mobile__menu__item.is-active {
        color: #0E3179;
    }

    .nav-mobile__menu__item + .nav-mobile__menu__item {
        margin-top: 1rem;
    }

@media (min-width: 576px) {
    .nav-mobile__menu__item + .nav-mobile__menu__item {
        margin-top: 2rem;
    }
}

.nav-mobile__menu--icons .nav-mobile__menu__item + .nav-mobile__menu__item {
    margin-top: 0;
    margin-left: 1rem;
}

@media (min-width: 576px) {
    .nav-mobile__menu--icons .nav-mobile__menu__item + .nav-mobile__menu__item {
        margin-left: 2rem;
    }
}

.nav-mobile__menu__item__link {
    display: block;
    padding: 0.4rem 0;
}

.nav-mobile__menu__item__link--icon {
    font-size: 18px;
}

.nav-mobile__seperator {
    width: 2px;
    height: auto;
    background-color: #e8f4fa;
    margin: 0 2rem;
}

@-webkit-keyframes nav-mobile {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes nav-mobile {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nav-steps {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (min-width: 576px) {
    .nav-steps {
        font-size: 14px;
    }
}

.nav-steps__item {
    padding: 0 6px;
    position: relative;
}

@media (min-width: 576px) {
    .nav-steps__item {
        padding: 0 12px;
    }
}

@media (min-width: 992px) {
    .nav-steps__item {
        min-width: 180px;
    }
}

.nav-steps__item__icon {
    width: 2.4em;
    height: 2.4em;
    line-height: 2.4em;
    text-align: center;
    font-size: 1.4em;
    color: #ffffff;
    border: 2px solid #e8f4fa;
    border-radius: 50%;
    background-color: #58A5E0;
    margin: 0 auto;
    background-clip: content-box;
}

.nav-steps__item__label {
    display: none;
    text-align: center;
    margin-top: 0.6em;
    color: #58A5E0;
}

@media (min-width: 768px) {
    .nav-steps__item__label {
        display: block;
    }
}

.nav-steps__item * {
    position: relative;
    z-index: 1;
}

.nav-steps__item::before,
.nav-steps__item::after {
    content: "";
    display: block;
    height: 3px;
    background-color: #58A5E0;
    position: absolute;
    z-index: 0;
    top: 1.6em;
    left: 0;
    right: 50%;
}

.nav-steps__item::after {
    left: 50%;
    right: 0;
}

.nav-steps__item:first-child::before,
.nav-steps__item:last-child::after {
    display: none;
}

.nav-steps__item.is-active .nav-steps__item__icon {
    background-color: #0E3179;
}

.nav-steps__item.is-active .nav-steps__item__label {
    color: #0E3179;
}

.nav-tabs {
    border-width: 1px;
}

    .nav-tabs .nav-item {
        margin-bottom: -2px;
    }

        .nav-tabs .nav-item .nav-link {
            border-top: none;
            border-left: none;
            border-right: none;
            padding-left: 0;
            padding-right: 0;
        }

        .nav-tabs .nav-item + .nav-item .nav-link {
            margin-left: 2rem;
        }

.nav-user {
    position: absolute;
    top: 60px;
    right: 0;
    width: 230px;
    font-size: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #006DB5;
}

.nav-user__item__link {
    display: block;
    color: #ffffff;
    padding: 0.6rem 1rem;
}

    .nav-user__item__link:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.05);
        -webkit-transition: background-color 0.4s ease;
        transition: background-color 0.4s ease;
    }

    .nav-user__item__link [class*=fa-] {
        display: inline-block;
        width: 1.5em;
        text-align: center;
        margin-right: 0.6rem;
    }

.nav-user__profile .nav-user__item__link {
    padding: 1rem;
    background-color: #58A5E0;
}

    .nav-user__profile .nav-user__item__link:hover {
        background: #4fa0de;
    }

.nav-user__profile__title {
    font-size: 18px;
    font-weight: bold;
}

.nav-user__divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav {
    font-size: 14px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav__menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    align-items: center;
    height: 60px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav__menu__item {
    color: rgba(14, 49, 121, 0.7);
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
}

    .nav__menu__item:hover, .nav__menu__item:active, .nav__menu__item:focus {
        color: #0E3179;
    }

    .nav__menu__item.is-active {
        color: #0E3179;
    }

    .nav__menu__item + .nav__menu__item {
        margin-left: 1rem;
    }

@media (min-width: 576px) {
    .nav__menu__item + .nav__menu__item {
        margin-left: 2rem;
    }
}

.nav__menu__item__link {
    display: block;
    padding: 0.4rem 0;
}

.nav__menu__item__link--icon {
    font-size: 18px;
}

.nav__seperator {
    width: 2px;
    height: auto;
    background-color: #e8f4fa;
    margin: 0 2rem;
}

.speed-dial {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    color: #ffffff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
}

    .speed-dial > * {
        z-index: 2;
    }

    .speed-dial::before {
        border-radius: 50%;
        background-color: #58A5E0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: 1;
    }

    .speed-dial:hover {
        color: #ffffff;
    }

        .speed-dial:hover::before {
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
        }

.table-cards {
    border-collapse: separate;
    border-spacing: 0 1rem;
}

    .table-cards tr {
        margin-bottom: 1rem;
    }

    .table-cards th {
        padding: 0 1rem;
    }

    .table-cards td {
        padding: 1rem;
        vertical-align: top;
        background-color: #ffffff;
    }

        .table-cards td:first-child {
            padding-left: 2rem;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .table-cards td:last-child {
            padding-right: 2rem;
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .table-cards .is-disabled {
        opacity: 0.4;
    }

    .table-cards td.table-cards__status {
        padding-left: 1rem;
        padding-right: 0;
        min-width: 40px;
    }

.auth {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    min-height: 100vh;
}

.auth__background {
    display: none;
}

@media (min-width: 576px) {
    .auth {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-flow: row nowrap;
    }

    .auth__background {
        display: block;
    }
}

.auth__logo {
    padding: 1rem;
}

    .auth__logo img {
        height: 37px;
    }

@media (min-width: 576px) {
    .auth__logo {
        padding: 2rem;
    }
}

.auth__form {
    padding: 2rem 1rem;
}

@media (min-width: 576px) {
    .auth__form {
        padding: 2rem;
    }
}

@media (min-width: 576px) {
    .auth__body {
        width: 576px;
    }
}

.auth__background {
    -webkit-box-flex: 1;
    flex: 1;
    background-image: url("../../images/auth-picture.jpg");
    /*
        url("https://images.unsplash.com/photo-1571772996211-2f02c9727629?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1800&q=80&flip=h")
      */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.auth__body {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
}

/** BUTTON */
.btn {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 39px;
}

.btn-primary {
    border: none;
    background: #FFF;
    color: #282828;
    box-shadow: none;
}

    .btn-primary:hover {
        border: none;
        background: #A9D6CA;
        color: #282828;
        box-shadow: none;
    }

    .btn-primary:focus, .btn-primary.focus {
        border: none;
        background: #A9D6CA;
        color: #282828;
        box-shadow: none;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        border: none;
        background: #A9D6CA;
        color: #282828;
        box-shadow: none;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
        / border: none;
        background: #A9D6CA;
        color: #282828;
        box-shadow: none;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: none;
        }

/* Hide cookie consent */
*[aria-label="cookieconsent"] {
    display: none;
}


.warning-text {
    color: red;
    font-weight: 500;
}

.flex {
    display: flex;
}

.flex-justify-center {
    justify-content: center;
}


input[type="checkbox"] {
    display: none;
}

    input[type="checkbox"] + label {
        cursor: pointer;
    }

        input[type="checkbox"] + label:before,
        label:has(input[type="checkbox"]):before {
            font-family: "Font Awesome 6 Free";
            content: "\f0c8";
            font-size: 20px;
            margin-right: 8px;
            color: #FFF;
        }

    input[type="checkbox"]:checked + label:before,
    label:has(input[type="checkbox"]:checked):before {
        font-weight: 900;
        content: "\f14a";
    }
