@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,700&display=swap");

@font-face {
    font-family: "Cambria Math";
    panose-1: 2 4 5 3 5 4 6 3 2 4;
}

@font-face {
    font-family: Calibri;
    panose-1: 2 15 5 2 2 2 4 3 2 4;
}

@font-face {
    font-family: "Poppins Light";
}

.mobileHide {
    display: inline;
}

.flex {
    display: flex;
}

.grow {
    flex-grow: 1;
}

.Due--Date {
    width: 94%;
    float: right;
}

@media only screen and (min-device-width: 350px) and (max-device-width: 480px) {
    .mobileHide {
        display: none;
    }
}

@media only screen and (max-width: 639px) {
    .mobile--Width {
        width: 100% !important;
    }

    .Due--Date {
        width: 94%;
        float: none !important;
    }
}

@media only screen and (max-width: 820px), screen and (device-width: 1024px) and (orientation: landscape) {
    .md--hide {
        display: none !important;
    }

    .md--column-reverse {
        flex-flow: column-reverse;
    }

    .md--margin-bottom {
        margin: 0 0 1.5rem 0;
    }

    .md--margin-top {
        margin: 1.5rem 0 0 0;
    }

    .md--items-start {
        align-items: start;
    }

    .md--items-end {
        align-items: end;
    }
}

:root {
    --color-background: #faf7f2;
    --color-primary: #491817;
    --color-secondary: #c76238;
    --color-accent: #2b4a57;
    --color-error: #eb6664;
    --color-warning: #edbb85;
    --color-done: #89b153;
    --color-body: #252525;
    --color-description: #909090;
    --color-border: #e7e7e7;
    --color-form-value: #3f3f3f;
    --color-selected-menu: #bbc9cb;
    --screen-sm: 640px;
    --screen-md: 768px;
    --screen-lg: 1024px;
    --screen-xl: 1280px;
    --screen-2xl: 1536px;
    --color-HighLight: #eb6664;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

/* Typography */
html {
    font-size: 62.5%;
}

body {
    background-color: var(--color-background);
    color: var(--color-body);
    font-family: "Poppins", serif;
    font-size: 1rem;
    line-height: 1.5;
}

.body--fixed {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

.content--center {
    display: flex;
    justify-content: center;
}

.content--right {
    display: flex;
    justify-content: right;
}

.relative {
    position: relative;
}

.text-right {
    text-align: right;
}

.text {
    font-size: 1.8rem;
    line-height: 3rem;
}

@media only screen and (min-width: 640px) {
    .md-right-bottom {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

h1,
h2,
h3,
h4 {
    color: var(--color-text-heading);
    margin: 0;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    font-size: 1.4rem;
    margin-top: 0;
}

sub {
    font-size: 1.2rem;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semiBold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-bold-italic {
    font-weight: 700;
    font-style: italic;
}

.form-value {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-form-value);
}

.form-value__label {
    font-size: 1.8rem;
    font-weight: 100;
    color: var(--color-body);
    width: -5%;
}

.tight-top {
    margin-top: -1rem;
}

.no-margin {
    margin: 0 !important;
}

.align-end {
    align-items: end;
}

.hr {
    border-bottom: 1.5px solid var(--color-border);
    margin: 1rem 3rem;
}

@media only screen and (min-width: 1024px) {
    .hr {
        margin: 0 3rem;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1.4rem;
    }
}

.accent {
    color: var(--color-secondary);
}

.block {
    display: block !important;
}

.text--24 {
    font-size: 2.4rem;
}

.text--18 {
    font-size: 1.8rem;
}

.content-end {
    justify-content: end;
}

.panel-margin {
    padding: 1rem;
}
/* Links */
a {
    text-decoration: none;
    color: var(--color-secondary);
    cursor: pointer;
}

    a:hover {
        color: blue;
    }

/* responsive container */
.responsive {
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.responsive-gap1 {
    gap: 1.5rem;
}

@media only screen and (min-width: 1024px) {
    .responsive {
        gap: 2rem;
    }
}

@media only screen and (min-width: 640px) {
    .responsive {
        flex-flow: row;
    }

    .responsive__horiz-center {
        align-items: center;
    }
}

/* Grid */
.grid {
    display: grid;
    gap: 1rem;
}

.grid--no-gap {
    gap: 0;
}

.align-center {
    align-items: center;
}

.grid--row-1 {
    grid-template-columns: 1fr;
}

@media only screen and (min-width: 1024px) {
    .grid {
        gap: 2rem;
    }

    .grid--lg-col-1 {
        grid-template-columns: 1fr;
    }
    
    .grid--lg-col-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid--lg-col-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid--lg-col-3-middle-border {
        grid-template-columns: 1fr 1px 1fr 1px 1fr;
    }

    .grid--lg-col-1_3-middle-border {
        grid-template-columns: 1fr 1px 3fr;
    }

    .grid--lg-col-2__min-left {
        grid-template-columns: min-content auto;
    }

    .grid--lg-col-2__min-right {
        grid-template-columns: auto min-content;
    }
}

@media only screen and (min-width: 768px) {
    .grid__col-border {
        width: 1px;
        background-color: var(--color-border);
    }

    .grid--md-col-1 {
        grid-template-columns: 1fr;
    }

    .grid--md-col-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid--md-col-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid--md-col-3-middle-border {
        grid-template-columns: 1fr 1px 1fr 1px 1fr;
    }

    .grid--md-col-1_3-middle-border {
        grid-template-columns: 1fr 1px 3fr;
    }

    .grid--md-col-2__min-left {
        grid-template-columns: min-content auto;
    }

    .grid--md-col-2__min-right {
        grid-template-columns: auto min-content;
    }

    .grid--fixed-left {
        grid-template-columns: 400px 1fr;
    }
}

.full-width {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .lg-and-less__full-width {
        width: 100%;
    }
}

/* Cover Image */
.cover-image {
    display: none;
}

@media only screen and (min-width: 640px) {
    .cover-image {
        background-image: url('../images/loginimage.jpg');
        background-size: cover;
        display: block;
        height: 100vh;
        opacity: 1.0;
    }
}

/* Label */
label {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
}

.label--inline {
    display: inline-block;
    margin: 0 0 0 2rem;
    font-size: 1.7rem;
    font-weight: bold;
}

.label--disabled {
    color: gray
}

/* Input */

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--color-description);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--color-description);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--color-description);
}

.required:after {
    content: " *";
    color: var(--color-error);
}

.done {
    color: var(--color-done);
}

.warning {
    color: var(--color-warning);
}

.error {
    color: var(--color-error) !important;
    display: inline-flex;
}
/* validation message */
.validation-message {
    color: var(--color-error) !important;
    display: inline;
    font-size: 1.4rem;
    font-weight: 500;
}

.error-bold {
    color: var(--color-error);
    font-weight: bold;
}

input.error,
select.error {
    border: none;
    outline: solid 1px red !important;
}

.input {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 400;
    outline: 0;
    padding: 1.5rem 2rem;
    width: 100%;
    min-width: 17rem;
}

.margin-bottom {
    margin: 0 0 1.5rem 0;
}

.margin-bottom--radio {
    margin: 0 0 2rem 0;
}

.margin-left {
    margin: 0 0 0 1.5rem;
}

.input--inline {
    width: 200px;
    margin: 0 0 0 2rem;
}

.input--primary {
    border-radius: 25px;
    border: 1.5px solid var(--color-border);
    font-family: "Calibri",sans-serif;
}

.input--rect {
    border-radius: 0;
}

.input-group {
    display: inline-flex;
    justify-items: center;
    align-items: center;
    padding: 0 1rem;
}

    .input-group input {
        border: none;
        margin: 0 1rem;
        padding-left: 0;
        padding-right: 0;
    }

    .input-group img {
        width: 20px;
        height: 20px;
    }

.input-radio {
    accent-color: var(--color-secondary);
    width: 2.5rem;
    height: 2.5rem;
}

.input-radio__label {
    font-size: 1.7rem;
    padding: 0 2.5rem 0 1rem;
}

@media only screen and (max-width: 640px) {
    .input-radio__label {
        padding: 0 0.3rem 0 0.3rem;
    }
}

select {
    background: url(../images/icons/br_down.webp) no-repeat right #fff;
    background-position: calc(100% - 2rem) center !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

select {
    color: var(--color-body);
}

    select option {
        color: inherit;
    }

.bold {
    color: var(--color-secondary);
    font-weight: bold;
}

/* date picker */
.date-picker {
    position: relative;
}

.date-picker__content {
    position: relative;
}

.date-picker__label {
    background: white;
    border-radius: 25px;
    border: 1.5px solid var(--color-border);
    color: black;
    outline: none;
    position: relative;
    height: 100%;
    line-height: 1.15;
    transition: all 0.2s ease-in-out;
    font-family: "Calibri",sans-serif;
}

.date-picker__btn::after {
    cursor: pointer;
    content: url(../images/icons/calendar.svg);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 2;
}

.date-picker__btn:hover::after {
    transform: scale(1.5);
}

@media (hover: none) and (pointer: coarse) {
    .date-picker__btn::after {
        top: 2rem;
        transform: scale(1.5);
    }
}

.date-picker__input {
    border: none;
    height: 0;
    opacity: 0;
    outline: none;
    display: flex;
    padding: 0;
    width: 0;
    margin: 0;
}

::-webkit-calendar-picker-indicator {
    background-image: url("../images/icons/calendar.svg");
}

/* Button */
.button {
    cursor: pointer;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    outline: 0;
    padding: 1rem 4rem;
    width: 100%;
    border: 0;
}

.button--large {
    font-size: 1.7rem;
    padding: 2rem 4rem;
}

.button--medium {
    width: 14rem;
    padding-right: 0;
    padding-left: 0;
}

.button--tiny {
    width: 12rem;
    padding-right: 0;
    padding-left: 0;
}

.button--primary {
    background-color: var(--color-accent);
    border-radius: 25px;
    border: 1px solid var(--color-accent);
    color: white;
}

    .button--primary:hover {
        background-color: white;
        color: var(--color-accent);
    }

.button--secondary {
    background-color: var(--color-secondary);
    border-radius: 25px;
    border: 0;
    border: 1px solid var(--color-secondary);
    color: white;
}

    .button--secondary:hover {
        color: var(--color-secondary);
        background-color: white;
    }

.button--outline {
    background-color: white;
    border-radius: 25px;
    border: 0;
    border: 1px solid var(--color-secondary) !important;
    color: var(--color-secondary) !important;
    color: white;
}

    .button--outline:hover {
        background-color: var(--color-secondary);
        color: white !important;
    }

.button--groupd__container {
    font-size: 0;
    margin-right: 2rem;
}

.button--groupd {
    margin: 0;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    border: 1px solid var(--color-border) !important;
}

.button--disabled {
    background-color: #e5dedc;
    border-radius: 25px;
    border: 0;
    color: white;
    cursor: not-allowed;
}

.button--end {
    border-top-right-radius: 5rem;
    border-bottom-right-radius: 5rem;
}

.button--start {
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

.button--selected {
    font-weight: bold;
}

.button--arrow-top {
    border: none;
    background: url("/images/icons/chevron_circle_up.svg") no-repeat top left;
    width: 60px;
    height: 60px;
    padding: 0;
}

    .button--arrow-top:hover {
        background: url("/images/icons/chevron_circle_up-active.svg") no-repeat top left;
    }

/* Logo */
.login {
    font-size: 3.6rem;
    margin-top: 2rem;
    color: var(--color-text-heading);
    font-size: 4rem;
    margin-bottom: 2rem !important;
    font-weight: bold;
}

/* Nav */
.nav {
    display: flex;
}

    .nav .nav__logo {
        background-color: var(--color-primary);
        border-bottom-right-radius: 30px;
        color: var(--color-background);
        display: inline-block;
        font-size: 3.7rem;
        padding: 1.5rem 2rem;
        width: 150pt;
        cursor: pointer;
    }

    .nav .nav__bar {
        align-items: center;
        background-color: var(--color-background);
        display: inline-flex;
        height: 60px;
        justify-content: space-between;
        width: 100%;
    }

.nav__bar__path {
    font-size: 1.5rem;
    margin-left: 40px;
}

/* Hamburger menu */
.menu {
    position: relative;
    align-self: baseline;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome */
}

    .menu .menu__checkbox,
    .menu .menu__button {
        position: fixed;
    }

    .menu .menu__checkbox {
        position: fixed;
        display: block;
        height: 32px;
        width: 32px;
        top: 20px;
        right: 20px;
        z-index: 12;
        opacity: 0;
        cursor: pointer;
    }

.menu__button {
    display: block;
    height: 26px;
    width: 32px;
    top: 17px;
    right: 20px;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu__button__line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
}

.menu__button--line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.menu__button--line2 {
    transition: transform 0.2s ease-in-out;
}

.menu__button--line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.menu input[type="checkbox"]:checked ~ .menu__button .menu__button--line1 {
    transform: rotate(45deg);
}

.menu input[type="checkbox"]:checked ~ .menu__button .menu__button--line2 {
    transform: scaleY(0);
}

.menu input[type="checkbox"]:checked ~ .menu__button .menu__button--line3 {
    transform: rotate(-45deg);
}

.menu__container {
    background-color: var(--color-background);
    position: fixed;
    display: flex;
    flex-flow: column;
    padding-top: 5rem;
    right: 0;
    top: 0;
    height: 100vh;
    width: 40rem;
    z-index: 10;
    opacity: 0;
    overflow: scroll;
    transform: translate(100%, 0);
    transition: all 0.3s ease;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-left: 1rem solid var(--color-primary);
}

@media only screen and (max-width: 639px) {
    .menu__container {
        width: 100%;
        border: none;
    }
}

.menu__category {
    margin-top: 2rem;
    width: 100%;
}

    .menu__category ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

.menu input[type="checkbox"]:checked ~ .menu__container {
    opacity: 100;
    transform: scaleX(1);
}

.menu__category .category__header {
    display: flex;
    align-items: center;
}

    .menu__category .category__header img {
        margin: 0 2.6rem;
        width: 2.6rem;
        height: 2.6rem;
    }

    .menu__category .category__header .tag {
        margin-left: 2.6rem;
    }

.menu__category ul li {
    position: relative;
    padding: 1.4rem 1rem 1.4rem 8rem;
}

.menu__category h1 {
    padding: 1.4rem 0;
}

.menu__category h1,
.menu__category h3 {
    font-weight: 600;
}

.menu__category ul li a {
    color: var(--color-body);
    transition: all 0.3s ease;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    white-space: nowrap;
    width: 100%;
}

    .menu__category ul li a:after {
        position: absolute;
        content: "";
        background: var(--color-selected-menu);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        transform: scaleY(0);
        z-index: -1;
        transition: transform 0.3s ease;
    }

    .menu__category ul li a:hover:after,
    .menu__category .selected__item a:after {
        transform: scaleY(1);
    }

    .menu__category ul li a:hover,
    .menu__category .selected__item a {
        color: var(--color-form-value);
    }

.menu__category .inactive img,
.menu__category .inactive h1 {
    opacity: 0.5;
}

.menu__profile {
    padding-bottom: 2rem;
}

    .menu__profile h4 {
        color: black;
        padding-left: 8rem;
    }

        .menu__profile h4:hover {
            color: var(--color-done);
        }

    .menu__profile h1 {
        padding: 0;
        font-weight: 400;
        color: black;
    }

        .menu__profile h1:hover {
            color: var(--color-error);
        }

.menu__gap {
    flex-grow: 1;
}

/* path */
.path {
    font-weight: bold;
}

.path__main {
    color: var(--color-secondary);
}

.path__item {
    color: var(--color-body);
}

    .path__item::before {
        content: " / ";
    }

/* column */
.column {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.column--screen {
    min-height: 100vh;
    min-height: 100vh;
    /* fallback for Js load */
    min-height: calc(calc(100 * var(--vh)) - 1px);
}

/* row */
.row {
    align-items: center;
    display: flex;
    justify-items: center;
    padding: 1.1rem 2rem;
}

/* copy-rights */
.copy-rights__content {
    align-items: center;
    display: flex;
    flex-direction: row;
    line-height: 1.8rem;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
}

.copy-rights .copy-rights__text p {
    margin-bottom: 0;
}

.copy-rights .copy-rights__logo {
    width: 50px;
    height: 50px;
}

/* Table */
table {
    border-collapse: collapse;
    width: 100%;
}

th {
    text-align: left;
    cursor: pointer;
}

.table__header .th {
    text-transform: uppercase;
}

.table--primary__container {
    overflow: scroll;
}

.table--primary tr td,
.table--primary tr.table__header th {
    padding: 1.5rem;
    font-size: 1.7rem;
}

.table--primary tr.table__header th {
    font-weight: 700;
}

.table--primary tr,
.table--primary .table__header {
    border-bottom: 1.5px solid var(--color-border);
}

.table--grouped tr {
    position: relative;
    border-bottom: 0;
}

    .table--grouped tr::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.5px;
        background-color: #d2d4e1;
        left: 0%;
        bottom: 0;
    }

.table--grouped__last-row::after {
    background-color: #828471 !important;
}

.table--grouped__header::after {
    display: none;
}

.table--grouped__header th div {
    padding: 1.5rem 0 0.2rem 0;
}

.table--grouped__header__main {
    cursor: auto !important;
    padding: 0rem 0 0.2rem 0 !important;
}

.table--grouped tr:not(.table--grouped__header) th div,
.table--grouped td div {
    margin-left: 1rem;
}

.table--grouped__header:first-child th div {
    padding-top: 0;
}

.table--grouped tr td {
    padding: 1rem 1.5rem;
}

.table--grouped th {
    padding: 2rem 1.5rem 1rem;
    font-size: 1.5rem;
}

.table--primary td.highlight {
    color: var(--color-secondary);
}

.table--primary tr:nth-child(2) td {
    padding-top: 3rem;
}

th .text--18 {
    font-weight: 100;
}

.td--right {
    text-align: right;
}

.td--center {
    text-align: center;
}

@media only screen and (max-width: 639px) {
    table,
    thead,
    tbody,
    th,
    tr,
    td {
        display: block;
    }

    .table__header {
        display: none;
    }

    .table--primary tr {
        cursor: pointer;
        margin-top: 2rem;
        position: relative;
        width: 100%;
    }

    .table--responsive tr::before {
        content: url(../images/icons/greater-than.svg);
        position: absolute;
        right: 0;
        top: 50%;
    }

    .table--primary tr:nth-child(2) td,
    .table--primary tr td,
    .table--primary tr th {
        padding: 0;
    }

    .table--grouped__titles {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    .sort {
        cursor: pointer;
    }

        .sort::after {
            content: url(../images/icons/greater-than.svg);
            display: inline-block;
            text-align: center;
            width: 15px;
            margin-left: 0.5rem;
        }

    .sort--asc::after {
        transform: rotate(-90deg);
    }

    .sort--desc::after {
        transform: rotate(90deg);
    }
}

/* Scroll bar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    margin: 2rem;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
    margin: 2rem;
}

::-webkit-scrollbar-thumb {
    background: var(--color-body);
    border-radius: 30px;
    margin: 2rem;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-accent);
    }

/* modal */
.modal {
    --bg-opacity: 0.25;
    /*background: var(--color-background);*/
    bottom: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transition-duration: 300ms;
    width: 100vw;
    z-index: 20;
    background-color: rgb(0 0 0 / 55%);
    /*backdrop-filter: blur(0px);*/
}

.modal__container {
    background-color: white;
    border-radius: 10px;
    position: relative;
    padding: 3rem;
    margin: 2rem;
    min-height: calc(100vh - 4rem);
    height: fit-content;
    width: 100%;
}

@media only screen and (min-width: 1024px) {
    .modal__container {
        width: auto;
    }
}

.header--margin {
    margin-bottom: 5rem;
}

.modal-open {
    overflow: hidden;
}

.modal__header--close {
    background: url(../images/icons/close.svg) no-repeat center;
    cursor: pointer;
    padding: 2rem;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    transition: all 0.5s;
}

    .modal__header--close:hover {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
        background-size: 50%;
        width: 2rem;
    }

.form-col {
    display: flex;
    flex-flow: column;
}

.form_container {
    width: 100%;
}

.form_container_two-col {
    width: 100%;
}

@media only screen and (min-width: 1024px) {
    .form_container {
        width: 52rem;
    }

    .form_container_two-col {
        width: 46rem;
    }

    .form_container_four-col {
        width: 91rem;
    }
}

/* drag_upload */
.drag_upload {
    padding: 4rem;
    border: 1px solid var(--color-border);
    font-size: 1.4rem;
    text-align: center;
    border-radius: 1rem;
}

/* Tag */
.tag {
    display: block;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    margin: 0;
    width: fit-content;
}

.tag--green {
    background-color: var(--color-done);
    color: white;
    font-weight: 500;
    font-style: italic;
}

.tag--orange {
    background-color: #edc193;
    color: white;
    font-weight: 500;
    font-style: italic;
}

.tag--orange {
    background-color: #edc193;
    color: white;
    font-weight: 500;
    font-style: italic;
}

.tag--border {
    margin-bottom: 0.5rem;
}

.tag--primary {
    background-color: var(--color-error);
    color: white;
    font-weight: 500;
    font-style: italic;
}

.tag--error {
    background-color: var(--color-error);
    color: white;
    font-weight: 500;
    font-style: italic;
}

.tag--outline {
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 300;
}

/* loader */
.loader {
    -ms-transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    -webkit-transform: translateZ(0);
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    border-radius: 50%;
    font-size: 20px;
    height: 1em;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    width: 1em;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* loading modal */
.loading {
    position: fixed;
    inset: 0;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    display: flex;
    overflow: hidden;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    background-color: var(--color-background);
    color: var(--color-accent);
}

/* fav */
.fav {
    position: static;
    width: 4rem;
}

    .fav .fav__checkbox,
    .fav .fav__icon {
        height: 24px;
        width: 24px;
        right: 1rem;
        position: absolute;
        top: 1rem;
    }

@media only screen and (min-width: 640px) {
    .fav {
        position: relative;
    }

        .fav .fav__checkbox,
        .fav .fav__icon {
            right: 1rem;
            top: -1.5rem;
        }
}

.fav .fav__checkbox {
    cursor: pointer;
    display: block;
    opacity: 0;
    z-index: 2;
}

.fav .fav__icon {
    background-size: contain;
    background: url(../images/icons/fav.svg);
    display: block;
    transition: all 0.3s ease-out;
    z-index: 1;
}

    .fav .fav__icon:hover,
    .fav input[type="checkbox"]:checked ~ .fav__icon {
        background: url(../images/icons/fav-selected.svg);
    }

/* signature */
.signature-container {
    position: relative;
    width: 100%;
    height: 19rem;
    border: 1px solid #f4f4f4;
    background-image: url("data:image/png;base64,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");
    background-repeat: no-repeat;
    background-position: 50% 70%;
}

.signature {
    width: 100%;
    height:65%;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
}

.signature-clear {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.signature-adopt {
    border: solid 1px #dedede;
    border-radius: 10px 10px 10px 10px;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

.drop-zone {
    padding: 4rem;
    border: 1px solid var(--color-border);
    font-size: 1.4rem;
    text-align: center;
    border-radius: 1rem;
    cursor: pointer;
    height: 15rem;
    padding: 18px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
}

    .drop-zone__thumb::after {
        content: attr(data-label);
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 5px 0;
        color: #ffffff;
        font-size: 14px;
        text-align: center;
    }

.file-drop-zone {
    display: flex;
    width: 100%;
    border: 3px dotted #fb275d;
    align-items: center;
    margin-bottom: 2px;
}

.hover {
    border-style: solid;
    background-color: #00ca71;
}

.image-container {
    display: flex;
    justify-content: center;
}

    .image-container img {
        width: 50%;
    }

::deep input[type="file"] {
    width: 100%;
    padding: 20px;
}

.error-message-container {
    color: red;
    text-align: center;
}

.payment-date {
    float: right;
    width: 94%;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-form-value);
}

.grouped-status {
    font-size: 2.4rem;
    font-weight: 500;
}

.img iframe {
    width: 100% !important;
    height: 100% !important;
}

select:focus {
    border-color: var(--color-HighLight);
}

input:not([type="button"]):focus {
    border-color: var(--color-HighLight) !important;
}

.focus-box:focus {
    border-color: var(--color-HighLight) !important;
}

.payment-modal-loading {
    --bg-opacity: 0.25;
    bottom: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transition-duration: 300ms;
    width: 100vw;
    z-index: 20;
    backdrop-filter: blur(3px);
}

#ScrollTopBtn {
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /*background-color: var(--color-secondary);*/
    color: white;
    border: none;
    font-size: 35px;
}

.purchaseCaption1 {
    font-size: 2.5rem;
    font-weight: 500;
}

.purchaserCaption2 {
    font-size: 2.4rem;
    font-weight: 700;
}

/* Border */
.border--top {
    border-top: 1px solid var(--color-border);
}

.border--left {
    border-left: 1px solid var(--color-border);
}

.border--right {
    border-right: 1px solid var(--color-border);
}

/*  CARD    */
.card {
    display: flex;
    align-items: center;
    padding: 1rem;
}

    .card img {
        border-style: none;
        border-radius: 0.5rem;
        width: 30rem;
        height: 15rem;
    }

.card__content {
    flex-grow: 1;
    padding: 2rem;
}

.iti {
    font-size: 1.7rem;
    border-radius: 25px;
    border: 1.5px solid var(--color-border);
    line-height: 2.8;
    width: 100%;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
    border: none !important;
    left: 2%;
}

.iti--allow-dropdown {
    margin: 0 0 1.5rem 0;
}

input:focus[type="tel"] {
    outline: none;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent !important;
}

.iti__country-list {
    max-height: 300px !important;
}

div.iti:has(input:focus) {
    border-color: var(--color-HighLight);
}

.date-picker__label:disabled {
    border-color: rgb(219 219 219);
    background-color: #fbfbfb;
    cursor: not-allowed;
}
