@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,700&display=swap");

:root {
    /*Primary Colors*/
    --color-primary: #9D90D3;
    --color-background: #FFFFFF;
    --color-overlay: 0, 0, 0;
    --color-label: #6c6c6c;
    --color-border: #E2E3E4;

    --color-text: #484848;
    --color-primary-rgb: 157, 144, 211;
    --alpha: 0.75;
    /*Screen Sizes*/
    --screen-sm: 640px;
    --screen-md: 768px;
    --screen-lg: 1024px;
    --screen-xl: 1280px;
    --screen-2xl: 1536px;
    /* Typography */

    --xx-small-text: 9px;
    --x-small-text: 10px;
    --small-text: 13px;
    --medium-text: 16px;
    --large-text: 18px;
    --x-large-text: 24px;
    --xx-large-text: 32px;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}


html {
    font-size: 16px;
    letter-spacing: 0.01em;
}

body {
    background-color: var(--color-background);
    color: var(--color-body);
    font-family: Poppins, Arial, Helvetica, Pacifico, "Dancing Script", Satisfy, "Rock Salt", "Bad Script", "Reenie Beanie", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.body--fixed {
    display: flex;
    flex-flow: column;
    height: 100vh;
}

.overflow-y {
    overflow: hidden;
    overflow-y: auto;
}
.content--container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
   
}

.content--center {
    display: flex;
    justify-content: center;
}

.content--right {
    display: flex;
    justify-content: right;
}

.content--space {
    display: flex;
    justify-content: space-between;
}

.content-padding {
    padding: 0 2rem;
}

.flex {
    display: flex;
}
.absolute {
    position: absolute !important;
}



.relative {
    position: relative !important;
}

.right-bottom {
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
}

.text-right {
    text-align: right;
}

.text {
    font-size: 1.8rem;
    line-height: 3rem;
}

.grow {
    flex-grow: 1;
}

.upper-case {
    text-transform: uppercase;
}

 


h1,
h2,
h3,
h4 {
    color: var(--color-text);
    margin: 0;
}

h1 {
    font-size: var(--xx-large-text);
   
}

h2 {
    font-size: var(--x-large-text);
}

h3 {
    font-size: var(--large-text);
}

h4 {
    font-size: var(--medium-text);
}

p {
    font-size: var(--small-text);
    margin-top: 0;
}


.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);
}

.tight-top {
    margin-top: -1rem;
}

.no-margin {
    margin: 0 !important;
}

.align-end {
    align-items: end;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: var(--x-large-text) !important;
    }

    h2 {
        font-size: var(--large-text) !important;
    }

    h3 {
        font-size: var(--medium-text) !important;
    }

    h4 {
        font-size: var(--small-text) !important;
    }

    p {
        font-size: var(--x-small-text) !important;
    }

    label {
        font-size: var(--x-small-text) !important;
    }

    .button--large {
        font-size: var(--small-text) !important;
    }
}

.accent {
    color: var(--color-secondary);
}

.block {
    display: block;
}

.text--24 {
    font-size: 2.4rem;
}

.text--18 {
    font-size: 1.8rem;
}

.content-end {
    justify-content: end;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    .md--hide {
        display: none !important;
    }
}

.panel-margin {
    padding: 2rem;
}
/* Links */
a {
    text-decoration: none;
    color: var(--color-secondary);
    cursor: pointer;
}

    a:hover {
        color: blue;
    }

/* responsive container */
.responsive {
    display: flex;
    flex-flow: column;
    gap: 2rem;
}

@media screen and (min-width: 640px) {
    .responsive {
        flex-flow: row;
    }

    .responsive__horiz-center {
        align-items: center;
    }
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.align-center {
    align-items: center;
}

.grid--row-1 {
    grid-template-columns: 1fr;
}

@media screen and (min-width: 640px) {
    .grid--md-col-2 {
        grid-template-columns: 1fr 1fr;
    }

    .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;
    }
}

/* Cover Image */
.cover-image {
    display: none;
}

@media screen and (min-width: 640px) {
    .cover-image {
        background-image: url(../images/01.jpeg);
        background-size: cover;
        display: block;
        height: 100%;
        opacity: 0.7;
    }
}

/* Label */
label {
    display: block;
    font-size: var(--small-text);
    font-weight: 500;
    color: var(--color-label);
    margin-bottom: 0.5rem;
}

/* 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: red;
}

.error {
    color: red !important;
}



input.error,
select.error {
    border: none;
    outline: solid 1px red !important;
}

.input-error-label {
    position: absolute;
    bottom: 0;
    right: 0;
}

.input {
    display: inline-block;
    font-size: var(--large-text);
    font-weight: 400;
    outline: 0;
    padding: 1.25rem 1rem;
    width: 100%;
    min-width: 17rem;
}

.margin-bottom {
    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: 0.5rem !important;
    border: 1.5px solid var(--color-border) !important;
}

.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;
    }
    /*Radio Buttons*/
.rz-radiobutton {
    height: 2rem !important;
    width: 2rem !important;
}

.rz-radiobutton-box.rz-state-active {
    background-color: var(--color-background) !important;
    border-color: var(--color-primary) !important;
}

span.rz-radiobutton-icon.rzi.rzi-circle-on {
    background-color: var(--color-primary) !important;
    height: 1rem !important;
    width: 1rem !important;
}

.rz-radiobutton-label {
    font-size: var(--large-text);
    font-weight: 100 !important;
}

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;
}

.bold {
    color: var(--color-secondary);
    font-weight: bold;
}

/* date picker */
.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;
    cursor: pointer;
}

    .date-picker__label::after {
        content: url(../images/icons/calendar.svg);
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        z-index: 2;
    }

.date-picker__icon {
    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 */

.radzen-modified-btn {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    box-shadow: inset 0 0 0 var(--rz-border-width) var(--color-primary) !important;
    padding: 0.75rem 2.5rem !important;
    text-transform: uppercase;
}
.radzen-modified-btn-icon {
    color: var(--color-primary) !important;
    border: none;
    box-shadow: inset 0 0 0 var(--rz-border-width) var(--color-primary) !important;
    text-transform: uppercase;
}



.button {
    cursor: pointer;
    display: inline-block;

    outline: 0;
    padding: 1.5rem 4rem;
    width: 100%;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.button--large {
    font-size: var(--medium-text);
    padding: 1.25rem 5rem;
}

.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-primary);
    border-radius: 0.5rem;
    border: 1px solid var(--color-primary);
    color: white;
}

    .button--primary:hover {
        background-color: rgba(var(--color-primary-rgb), var(--alpha));
    }

.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-primary) !important;
}

    .button--outline:hover {
        color: var(--color-color-secondary) !important;
    }



/* 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--grouped tr td {
    padding: 1rem 1.5rem;
}

.table--grouped th {
    padding: 2rem 1.5rem 1.5rem;
}

.table--primary td.highlight {
    color: var(--color-secondary);
}

.table--primary tr:nth-child(2) td {
    padding-top: 3rem;
}

.table--primary tr,
.table--primary .table__header {
    border-bottom: 1.5px solid var(--color-border);
}

.td--right {
    text-align: right;
}

@media only screen and (max-width: 640px), (min-device-width: 640px) and (max-device-width: 1024px) {
    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;
    }
}

@media 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-primary);
    border-radius: 30px;
    margin: 2rem;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-accent);
    }

/* modal */
.modal {
    --bg-opacity: 0.25;
    background: rgba(var(--color-overlay), var(--alpha));
    transition-duration: 300ms;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
   
    z-index: 1001;
}

.modal__container {
    background-color: var(--color-background);
    border-radius: 1.25rem 1.25rem 0 0;
    width: 100%;
    min-width: 325px;
    max-width: 50rem;
    padding: 2rem 2rem 0 2rem;
    height: 95%;
    overflow: hidden;
    overflow-y: auto;
}
.modal_edit_container {
    background-color: var(--color-background);
    border-radius: 1.25rem 1.25rem 0 0;
    width: 100%;
    padding: 2rem 2rem 0 2rem;
    height: 98%;
    margin: 0px 15px;
    overflow: hidden;
    overflow-y: auto;
}
.active-btn {
    border-bottom: 3px var(--color-primary) solid !important;
}
.non-active-btn {
    border-bottom: 3px transparent solid !important;
}


.edit-ui-bot, .edit-ui-top, .edit-ui-edit {
    padding: 20px 20px;
    display: flex;
    border-left: 1px #c9c9c9 solid;
    border-right: 1px #c9c9c9 solid;
}
.edit-ui-bot, .edit-ui-edit {
    border-bottom: 1px #c9c9c9 solid;
}
.edit-ui-top {
    border-top: 1px #c9c9c9 solid;
    justify-content: space-between;
}
.editPadding{
    padding-left: 1rem;
}

.modal-body-edit {
    border: 1px #c9c9c9 solid;
}

@media screen and (max-width: 640px) {
    .modal__container {
        max-width: initial;
        width: 100%;
        height: 100%;
    }
}

.header--margin {
    margin-bottom: 5rem;
}

.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;
}

.full-width {
    width: 100%;
}

.form_container_two-col {
    width: 100%;
}

@media screen and (min-width: 1024px) {


    .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--primary {
    background-color: var(--color-primary);
    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-section {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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);
}

/* validation message */
.validation-message {
    color: red;
    font-size: var(--x-small-text);
}

/* fav */
.fav {
    position: static;
    width: 4rem;
}

    .fav .fav__checkbox,
    .fav .fav__icon {
        height: 4rem;
        right: 1rem;
        position: absolute;
        top: 1rem;
        width: 4rem;
    }

@media screen and (min-width: 640px) {
    .fav {
        position: relative;
    }

        .fav .fav__checkbox,
        .fav .fav__icon {
            right: 1rem;
            top: -2.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 {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='1' stroke-dasharray='5%2c 5' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    width: 100%;
    height: 19rem;
}

.nav {
    align-items: center;
    background-color: var(--global-nav-color);
    box-shadow: 0.438rem 0.438rem 0.313rem rgba(0,0,0,.1);
    display: flex;
    height: 5rem;
    justify-content: space-between;
    position: fixed;
    transform: translateZ(0);
    width: 100%;
    z-index: 1000 !important;
}

.iframe-border {
    border-radius: 5px;
    border: 1px solid var(--color-border);
}

.rz-data-grid {
    border: none !important;
}

.edit_form_markup{
    width: 100%;
}

.rz-expanded-row-content > td {
    background-color: transparent !important;
}